/**
 * Escorts directory: /escorts/ — reviews left, listings right.
 */


.rudraa-browse-shell {
	min-height: 40vh;
}

.rudraa-browse-page-title {
	font-weight: 400;
	letter-spacing: 0.02em;
}

/* Listing vs search results header */
.rudraa-browse-head--search .rudraa-browse-head__title {
	font-size: clamp(1.35rem, 2.5vw, 1.85rem);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.01em;
}

.rudraa-browse-head__searched {
	opacity: 0.85;
}

.rudraa-browse-filter-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.35rem 0.6rem 0.35rem 0.85rem;
	background: rgba(40, 40, 40, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	font-size: 0.875rem;
	color: #f2f2f2;
}

.rudraa-browse-filter-chip__text {
	line-height: 1.2;
}

.rudraa-browse-filter-chip__remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.35rem;
	height: 1.35rem;
	border-radius: 50%;
	background: #ffb400;
	color: #1a1a1a;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	flex-shrink: 0;
	transition: filter 0.15s ease, transform 0.15s ease;
}

.rudraa-browse-filter-chip__remove:hover {
	filter: brightness(1.08);
	color: #1a1a1a;
	transform: scale(1.05);
}

.rudraa-browse-head__count {
	opacity: 0.88;
}

.rudraa-browse-head__rule {
	margin: 1rem 0 0;
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	opacity: 0.9;
}

.rudraa-browse-search.card {
	background: transparent !important;
	border-color: transparent !important;
}

.rudraa-browse-shortcode .rudraa-browse-shortcode-currency {
	width: 100%;
	min-width: min(100%, 18rem);
}

.rudraa-browse-reviews.card {
	background: transparent;
	border: 1px solid rgba(255,255,255,.1);
}

.rudraa-browse-reviews .card-header {
	font-weight: 700;
	font-size: 1rem;
}

.rudraa-browse-review-item a:hover {
	background: rgba(255, 180, 0, 0.06);
}

.rudraa-browse-rev-thumb-wrap {
	width: 48px;
	height: 48px;
	overflow: hidden;
	border-radius: 6px;
	background: #222;
}

.rudraa-browse-rev-thumb-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rudraa-browse-rev-ph {
	display: block;
	width: 48px;
	height: 48px;
	background: linear-gradient(145deg, #333, #222);
	border-radius: 6px;
}

.rudraa-browse-stars {
	letter-spacing: 1px;
	font-size: 0.75rem;
	line-height: 1;
}

.rudraa-browse-star {
	color: #444;
}

.rudraa-browse-star--on {
	color: #ffb400;
}

/* Listing cards */
.rudraa-browse-card {
	border-bottom: 1px solid rgba(255,255,255,.1);
	border-radius:0;
	overflow: hidden;
	padding-bottom: 22px;
}

.rudraa-browse-card--featured {
	border-color: rgba(255, 180, 0, 0.55);
}

.rudraa-browse-card-media {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 0;
}

.rudraa-browse-card-mainlink {
	display: block;
	width: 200px;
	height: 208px;
	overflow: hidden;
	flex-shrink: 0;
}

.rudraa-browse-card-mainimg {
	width: 200px !important;
	height: 208px !important;
	max-width: none;
	object-fit: cover;
	object-position: top center;
	display: block;
	border: 1px solid #fff;
}

.rudraa-browse-card-ph {
	width: 200px;
	height: 208px;
	background: linear-gradient(160deg, #2a2a2a, #151515);
}

.rudraa-browse-card-thumbs {
	display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0px;
    width: 68px;
    flex-shrink: 0;
    margin-left: 8px;
}

.rudraa-browse-card-thumb {
	width: 60px !important;
	height: 60px !important;
	max-width: none;
	object-fit: cover;
	display: block;
	border: 1px solid #fff;
}

.rudraa-browse-card-excerpt {
	line-height: 1.55;
}

.rudraa-browse-pagination .page-numbers {
	display: inline-flex;
	gap: 0.35rem;
	flex-wrap: wrap;
	padding: 0;
	list-style: none;
}

.rudraa-browse-pagination a.page-numbers,
.rudraa-browse-pagination span.page-numbers {
	padding: 0.35rem 0.65rem;
	border-radius: 6px;
	background: #222;
	border: 1px solid #444;
	color: #ffb400 !important;
	text-decoration: none;
}

.rudraa-browse-pagination span.current {
	background: #ffb400;
	color: #1a1a1a !important;
	border-color: #ffb400;
}

@media (max-width: 991px) {
	.rudraa-browse-card-media {
		flex-direction: column;
		width: 100%;
	}
	.rudraa-browse-card-mainlink,
	.rudraa-browse-card-ph {
		width: 100%;
		min-height: 220px;
		height: auto;
	}
	.rudraa-browse-card-mainimg {
		width: 100%;
		height: auto;
		min-height: 220px;
		max-width: 100%;
		object-fit: cover;
	}
	.rudraa-browse-card-thumbs {
		flex-direction: row;
		width: 100%;
		justify-content: flex-start;
		flex-wrap: wrap;
	}
}

/* —— Banner search (MR-style inside .banner on /escorts/) —— */
.banner .rudraa-mr-searchbar-wrap {
	position: relative;
	z-index: 2;
	overflow: visible;
}

.rudraa-mr-searchbar-wrap {
	
}

.rudraa-mr-searchbar__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap:6px;
	max-width: 973px;
}

.rudraa-mr-searchbar__field {
	display: flex;
	align-items: stretch;
	min-height: 44px;
}

.rudraa-mr-searchbar__select,
.rudraa-mr-searchbar__input {
	background: #1e1e1e;
	border: 1px solid #444;
	color: #eee;
	border-radius: 4px;
	font-size: 0.875rem;
	padding: 0.4rem 0.65rem;
}

.rudraa-mr-searchbar__select:focus,
.rudraa-mr-searchbar__input:focus {
	outline: none;
	border-color: #ffb400;
	box-shadow: 0 0 0 1px rgba(255, 180, 0, 0.25);
}

.rudraa-mr-searchbar__cat .rudraa-mr-searchbar__select {
	min-width: 140px;
}

.rudraa-mr-searchbar__loc {
	flex: 1 1 160px;
	position: relative;
	z-index: 5;
	overflow: visible;
}

.rudraa-mr-searchbar__loc-icon {
	position: absolute;
	left: 0.65rem;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	z-index: 1;
	pointer-events: none;
}

.rudraa-mr-searchbar__loc .rudraa-mr-searchbar__input {
	width: 100%;
	padding-left: 2rem;
}
.rudraa-mr-searchbar{
	padding: 12px 0;
}
.rudraa-mr-citysugg__dropdown {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 2px);
	z-index: 100;
	margin: 0;
	padding: 0.35rem 0;
	list-style: none;
	max-height: 280px;
	overflow-y: auto;
	background: #1a1a1a;
	border: 1px solid #444;
	border-radius: 4px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.rudraa-mr-citysugg__item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.45rem 0.65rem;
	cursor: pointer;
	color: #eee;
	font-size: 0.875rem;
	line-height: 1.3;
}

.rudraa-mr-citysugg__item:hover,
.rudraa-mr-citysugg__item:focus {
	background: #2a2a2a;
}

.rudraa-mr-citysugg__dropdown .rudraa-mr-citysugg__item strong {
	font-weight: 700;
	color: #fff;
}

.rudraa-mr-citysugg__flag {
	width: 28px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rudraa-mr-citysugg__flag img {
	display: block;
	width: 20px;
	height: auto;
	border-radius: 2px;
}

.rudraa-mr-citysugg__globe {
	color: #aaa;
	font-size: 0.85rem;
}

.rudraa-mr-citysugg__label {
	flex: 1 1 auto;
	min-width: 0;
}

.rudraa-mr-citysugg__count {
	margin-left: auto;
	color: #ccc;
	font-variant-numeric: tabular-nums;
	flex-shrink: 0;
}

.rudraa-mr-searchbar__money {
	display: flex;
	flex: 0 1 auto;
	border: 1px solid #444;
	border-radius: 4px;
	overflow: hidden;
}

.rudraa-mr-searchbar__money .rudraa-mr-searchbar__select {
	border: none;
	border-right: 1px solid #444;
	border-radius: 0;
}

.rudraa-mr-searchbar__money .rudraa-mr-searchbar__input--price {
	border: none;
	border-radius: 0;
	width: 88px;
}

.rudraa-mr-searchbar__select--narrow {
	min-width: 64px;
}

.rudraa-mr-searchbar__select--currency {
	min-width: 2rem;
	max-width: min(26rem, 100%);
}

.rudraa-mr-searchbar__svc {
	flex: 1 1 200px;
}

.rudraa-mr-searchbar__svc .rudraa-mr-searchbar__select {
	width: 100%;
	min-width: 0;
}

.rudraa-mr-searchbar__submit {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #ffb400;
	color: #1a1a1a;
	border: none;
	border-radius: 4px;
	font-weight: 700;
	padding: 0.4rem 1rem;
	min-height: 44px;
}

.rudraa-mr-searchbar__submit:hover {
	filter: brightness(1.05);
	color: #1a1a1a;
}

@media (max-width: 767px) {
	.rudraa-mr-searchbar__inner {
		flex-direction: column;
	}
	.rudraa-mr-searchbar__submit {
		width: 100%;
		justify-content: center;
	}
}

/* —— Top 3 auction spots —— */
.rudraa-auction-card {
	position: relative;
}

.rudraa-auction-card__row {
	filter: brightness(0.45);
}

.rudraa-auction-spot-row {
	position: absolute;
	z-index: 4;
	top: 0.75rem;
	left: 0.75rem;
	right: 0.75rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
}

.rudraa-auction-spot-label {
	position: static;
	font-weight: 800;
	font-size: 1.15rem;
	color: #fff;
	letter-spacing: 0.02em;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.rudraa-auction-badge {
	display: inline-block;
	font-size: 0.65rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0.2rem 0.55rem;
	border-radius: 4px;
	background: linear-gradient(180deg, #ffd45c, #f3a801);
	color: #1a1a1a;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.rudraa-browse-city-top-title {
	font-weight: 600;
	letter-spacing: 0.02em;
}

.rudraa-browse-empty-state--city {
	border: 1px dashed rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.15);
}

.rudraa-auction-why {
	position: absolute;
	z-index: 4;
	left: 0.75rem;
	bottom: 0.65rem;
	color: rgba(255, 255, 255, 0.85);
	max-width: 16rem;
}

.rudraa-auction-why__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.1rem;
	height: 1.1rem;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.6);
	font-size: 0.7rem;
	margin-right: 0.35rem;
	vertical-align: middle;
}

.rudraa-auction-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: rgba(0, 0, 0, 0.52);
}

.rudraa-auction-overlay__price {
	color: #fff;
	font-size: 1rem;
	margin: 0;
}

.rudraa-auction-overlay__cta {
	min-width: 140px;
}

.rudraa-auction-overlay__ends {
	color: rgba(255, 255, 255, 0.9);
}

/* —— Active auction slot (live): full card, no overlay —— */
.rudraa-browse-card--auction-live {
	background: #2d3e33;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
	padding-bottom: 0 !important;
}

.rudraa-browse-card--auction-live .rudraa-browse-card-mainimg,
.rudraa-browse-card--auction-live .rudraa-browse-card-thumb {
	border-color: rgba(255, 255, 255, 0.85);
}

.rudraa-auction-live-now__text {
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #8ff5a8;
}

.rudraa-auction-live-now__dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #3cff7a;
	box-shadow: 0 0 8px rgba(60, 255, 122, 0.7);
	flex-shrink: 0;
}

.rudraa-browse-card-body--auction-live .rudraa-browse-card-excerpt {
	color: rgba(255, 255, 255, 0.92) !important;
	line-height: 1.55;
}

.rudraa-auction-cta-contact {
	background: #2a2a2a !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	color: #ffb400 !important;
	font-weight: 700;
	padding: 0.45rem 1.1rem;
	border-radius: 8px;
}

.rudraa-auction-cta-contact:hover {
	background: #333 !important;
	color: #ffc533 !important;
}

/* —— Empty auction slot: boost CTA (city browse only) —— */
.rudraa-auction-card--boost-placeholder {
	background: linear-gradient(180deg, #0d1f14 0%, #050a08 100%);
	border-radius: 10px;
	box-shadow: inset 0 0 0 1px rgba(46, 204, 113, 0.12);
	min-height: 200px;
}

.rudraa-auction-card--boost-placeholder .rudraa-auction-boost-strip {
	height: 4px;
	background: #143d28;
	border-radius: 10px 10px 0 0;
}

.rudraa-auction-boost-inner {
	position: relative;
	padding: 1rem 1rem 2.75rem;
	min-height: 180px;
	display: flex;
	flex-direction: column;
}

.rudraa-auction-boost-active {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #3cff7a;
	text-shadow: 0 0 12px rgba(60, 255, 122, 0.35);
}

.rudraa-auction-boost-active__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #3cff7a;
	box-shadow: 0 0 8px #3cff7a;
}

.rudraa-auction-boost-center {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2rem 0.5rem 0.5rem;
}

.rudraa-auction-boost-headline {
	font-size: clamp(1.05rem, 2.5vw, 1.35rem);
	font-weight: 600;
	letter-spacing: 0.02em;
}

.rudraa-auction-boost-btn {
	background: linear-gradient(180deg, #2ecc71, #1e8449) !important;
	border: none !important;
	color: #fff !important;
	padding: 0.55rem 1.35rem;
	border-radius: 8px;
	font-size: 0.95rem;
	box-shadow: 0 4px 14px rgba(46, 204, 113, 0.35);
}

.rudraa-auction-boost-btn:hover {
	filter: brightness(1.08);
	color: #fff !important;
}

.rudraa-auction-boost-note {
	max-width: 22rem;
	line-height: 1.4;
}

.rudraa-auction-boost-why {
	position: absolute;
	left: 1rem;
	bottom: 0.75rem;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 0.35rem;
	color: rgba(255, 255, 255, 0.88);
	max-width: 18rem;
}

.rudraa-auction-boost-why__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.1rem;
	height: 1.1rem;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.55);
	font-size: 0.7rem;
	flex-shrink: 0;
}

.rudraa-auction-boost-why__text {
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

/* Single wide banner when no active auction (all 3 city slots empty) */
.rudraa-auction-boost-banner--full {
	background: #0a0f0a !important;
	border-radius: 12px;
	box-shadow: inset 0 0 0 1px rgba(57, 255, 20, 0.08);
	min-height: 200px;
}

.rudraa-auction-boost-banner--full .rudraa-auction-boost-strip {
	height: 6px;
	background: #3d4a38;
	border-radius: 12px 12px 0 0;
}

.rudraa-auction-boost-inner--full {
	min-height: 200px;
	padding: 1.1rem 1.25rem 3rem;
	justify-content: center;
}

.rudraa-auction-boost-banner--full .rudraa-auction-boost-active__text {
	color: #39ff14;
	text-shadow: 0 0 14px rgba(57, 255, 20, 0.45);
}

.rudraa-auction-boost-banner--full .rudraa-auction-boost-active__dot {
	background: #39ff14;
	box-shadow: 0 0 10px #39ff14;
}

.rudraa-auction-boost-banner--full .rudraa-auction-boost-center {
	padding: 2.25rem 1rem 0.5rem;
}

.rudraa-auction-boost-banner--full .rudraa-auction-boost-note {
	color: rgba(255, 255, 255, 0.92);
	max-width: 28rem;
	margin-left: auto;
	margin-right: auto;
}

.rudraa-auction-boost-btn--full {
	background: #00c853 !important;
	border: none !important;
	color: #fff !important;
	padding: 0.65rem 1.75rem;
	border-radius: 6px;
	font-size: 1rem;
	box-shadow: 0 4px 20px rgba(0, 200, 83, 0.4);
}

.rudraa-auction-boost-btn--full:hover {
	filter: brightness(1.06);
	color: #fff !important;
}

@media (min-width: 768px) {
	.rudraa-auction-boost-inner--full {
		min-height: 220px;
		padding-bottom: 3.25rem;
	}
}
