.mam-filter-form {
	background: #f7f7f7;
	padding: 20px;
	border-radius: 16px;
	margin-bottom: 30px;
	border: 1px solid #ececec;
}

.mam-filter-form__row {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: end;
}

.mam-filter-field {
	display: flex;
	flex-direction: column;
	min-width: 220px;
}

.mam-filter-field--search {
	min-width: 280px;
	flex: 1 1 320px;
}

.mam-filter-field label {
	font-weight: 600;
	margin-bottom: 8px;
}

.mam-filter-field select,
.mam-filter-field input[type="text"],
.mam-booking-form input,
.mam-booking-form textarea {
	height: 44px;
	padding: 0 12px;
	border: 1px solid #ddd;
	border-radius: 10px;
	background: #fff;
}

.mam-booking-form textarea {
	height: auto;
	padding: 12px;
	width: 100%;
}

.mam-filter-actions,
.mam-single-model__cta-group {
	display: flex;
	gap: 10px;
	align-items: end;
	flex-wrap: wrap;
}

.mam-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 18px;
	border-radius: 10px;
	border: none;
	text-decoration: none;
	background: #111;
	color: #fff;
	cursor: pointer;
}

.mam-button--secondary {
	background: #e0e0e0;
	color: #111;
}

.mam-button--whatsapp {
	background: #25D366;
	color: #fff;
}

.mam-ajax-results.is-loading {
	opacity: 0.7;
	transition: opacity 0.2s ease;
}

.mam-loading {
	padding: 18px 20px;
	border: 1px dashed #ccc;
	border-radius: 12px;
	background: #fafafa;
	text-align: center;
}

.mam-model-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

.mam-model-card {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.mam-model-card--featured {
	border: 2px solid #111;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.mam-model-card__image {
	position: relative;
}

.mam-model-card__image img {
	width: 100%;
	height: 340px;
	object-fit: cover;
	display: block;
}

.mam-model-card__badge {
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	background: #111;
	color: #fff;
}

.mam-favorite-btn {
	position: absolute;
	top: 14px;
	right: 14px;
	z-index: 2;
	width: 38px;
	height: 38px;
	border: none;
	border-radius: 999px;
	background: rgba(255,255,255,0.95);
	cursor: pointer;
	font-size: 16px;
}

.mam-favorite-btn.is-active {
	background: #111;
	color: #fff;
}

.mam-model-card__content {
	padding: 20px;
}

.mam-model-card__title {
	margin: 0 0 15px;
	font-size: 22px;
	line-height: 1.2;
}

.mam-model-card__title a {
	text-decoration: none;
	color: #111;
}

.mam-model-card__meta {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
}

.mam-model-card__meta li {
	margin-bottom: 8px;
	font-size: 14px;
}

.mam-model-card__button {
	display: inline-block;
	padding: 10px 16px;
	border-radius: 10px;
	text-decoration: none;
	background: #111;
	color: #fff;
}

.mam-pagination {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
}

.mam-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border-radius: 10px;
	text-decoration: none;
	border: 1px solid #ddd;
	background: #fff;
	color: #111;
}

.mam-pagination .page-numbers.current {
	background: #111;
	color: #fff;
	border-color: #111;
}

.mam-single-model {
	max-width: 1200px;
	margin: 40px auto;
	padding: 0 20px;
}

.mam-single-model__container {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 40px;
	margin-bottom: 40px;
}

.mam-single-model__main-image img {
	width: 100%;
	border-radius: 18px;
	display: block;
}

.mam-single-model__thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 12px;
	margin-top: 15px;
}

.mam-single-model__thumb img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	border-radius: 12px;
	display: block;
	cursor: pointer;
}

.mam-single-model__title {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 36px;
	line-height: 1.1;
}

.mam-single-model__top-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	margin-bottom: 18px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	background: #111;
	color: #fff;
}

.mam-single-model__details {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mam-single-model__details li {
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}

.mam-single-model__booking,
.mam-single-model__bio {
	background: #fff;
	padding: 24px;
	border-radius: 18px;
	border: 1px solid #eee;
	margin-top: 30px;
}

.mam-booking-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
	margin-bottom: 12px;
}

.mam-booking-response {
	margin-top: 12px;
}

.mam-success {
	color: #0a7f35;
}

.mam-error {
	color: #b42318;
}

.mam-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.88);
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.mam-lightbox img {
	max-width: 92vw;
	max-height: 88vh;
	border-radius: 12px;
}

.mam-lightbox__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 42px;
	height: 42px;
	border: none;
	border-radius: 999px;
	font-size: 24px;
	cursor: pointer;
}

@media (max-width: 900px) {
	.mam-single-model__container {
		grid-template-columns: 1fr;
	}
}


/* ===== V3.1.1 Black / Gold / White Theme ===== */
body .mam-filter-form,
body .mam-single-model__bio,
body .mam-single-model__booking {
	background: #111111;
	border-color: #d4af37;
	color: #ffffff;
}

body .mam-filter-field label,
body .mam-single-model,
body .mam-single-model h1,
body .mam-single-model h2,
body .mam-single-model h3,
body .mam-single-model p,
body .mam-single-model li,
body .mam-single-model strong {
	color: #ffffff;
}

body .mam-filter-field select,
body .mam-filter-field input[type="text"],
body .mam-booking-form input,
body .mam-booking-form textarea {
	background: #ffffff;
	border: 1px solid #d4af37;
	color: #111111;
}

body .mam-button,
body .mam-model-card__button {
	background: #d4af37;
	color: #111111;
	font-weight: 700;
	border: 1px solid #d4af37;
}

body .mam-button--secondary {
	background: #ffffff;
	color: #111111;
	border: 1px solid #d4af37;
}

body .mam-button--whatsapp {
	background: #d4af37;
	color: #111111;
}

body .mam-model-card {
	background: #111111;
	border: 1px solid #d4af37;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

body .mam-model-card--featured {
	border: 2px solid #d4af37;
	box-shadow: 0 12px 32px rgba(212, 175, 55, 0.18);
}

body .mam-model-card__title a,
body .mam-model-card__meta li,
body .mam-model-card__city {
	color: #ffffff;
}

body .mam-model-card__badge {
	background: #d4af37;
	color: #111111;
}

body .mam-favorite-btn {
	background: rgba(255,255,255,0.95);
	color: #111111;
	border: 1px solid #d4af37;
}

body .mam-favorite-btn.is-active {
	background: #d4af37;
	color: #111111;
}

body .mam-pagination .page-numbers {
	background: #111111;
	color: #ffffff;
	border-color: #d4af37;
}

body .mam-pagination .page-numbers.current {
	background: #d4af37;
	color: #111111;
	border-color: #d4af37;
}

body .mam-single-model__top-badge {
	background: #d4af37;
	color: #111111;
}

body .mam-single-model__details li {
	border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

body .mam-lightbox__close {
	background: #d4af37;
	color: #111111;
}

/* ===== Directory card simplified ===== */
body .mam-model-card--directory .mam-model-card__content {
	padding: 18px 20px 22px;
	text-align: center;
}

body .mam-model-card--directory .mam-model-card__title {
	margin: 0 0 8px;
	font-size: 24px;
}

body .mam-model-card--directory .mam-model-card__city {
	margin: 0 0 18px;
	font-size: 15px;
	color: #d4af37;
	font-weight: 600;
}

body .mam-model-card--directory .mam-model-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 150px;
}

body .mam-model-card--directory .mam-model-card__image img {
	height: 380px;
}


/* v3.2 AJAX UX */
.mam-ajax-results.is-loading {
	transition: opacity .2s ease;
}
.mam-filter-form select,
.mam-filter-form input[type="text"] {
	transition: border-color .2s ease, box-shadow .2s ease;
}
.mam-filter-form select:focus,
.mam-filter-form input[type="text"]:focus {
	outline: none;
	border-color: #d4af37;
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}
