/* Ensure FA 4.7.0 wins over icons.css FA 4.6.3 — needed for fa-bath on stat strip */
@font-face {
	font-family: 'FontAwesome';
	src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),
	     url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),
	     url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype');
	font-weight: normal;
	font-style: normal;
}

/* Property Detail Page
================================================== */

/* Photo slider wrapper */
.listing-slider-wrap {
	position: relative;
}

/* Remove the template's dark overlay on non-active slides */
.listing-slider-wrap .listing-slider .item.slick-slide:before {
	opacity: 0 !important;
}

/* Taller slider on property detail page */
.listing-slider-wrap .listing-slider,
.listing-slider-wrap .listing-slider .item {
	height: 72vh !important;
	min-height: 520px !important;
	max-height: none !important;
}

/* "View all photos" button */
.view-all-photos-btn {
	position: absolute;
	bottom: 20px;
	right: 24px;
	z-index: 10;
	display: flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,0.92);
	color: #1a1a2e;
	border: none;
	padding: 10px 18px;
	font-family: 'Lato', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.3px;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s ease;
	box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.view-all-photos-btn:hover {
	background: #fff;
}

.view-all-photos-btn i {
	font-size: 14px;
}

/* ─── Photo overlay title ───────────────────────── */
.listing-slider-wrap.slider-with-overlay {
	position: relative;
}

.property-photo-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 5;
	background:
		linear-gradient(to top, rgba(8,6,20,0.75) 0%, transparent 35%),
		radial-gradient(ellipse 110% 150% at 0% 100%, rgba(8,6,20,0.85) 0%, rgba(8,6,20,0.4) 35%, rgba(8,6,20,0.08) 60%, transparent 78%);
	padding: 48px 48px 56px 68px;
	pointer-events: none;
}

.photo-overlay-eyebrow {
	font-family: 'Raleway', sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #FFC21F;
	display: block;
	margin-bottom: 12px;
}

.photo-overlay-title {
	font-size: 50px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 14px;
	line-height: 1.05;
	text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.photo-overlay-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgba(255,255,255,0.8);
	font-size: 14px;
	flex-wrap: wrap;
}

.photo-overlay-stat {
	display: flex;
	align-items: center;
	gap: 6px;
}

.photo-overlay-stat i { color: #FFC21F; font-size: 12px; }

.photo-overlay-dot {
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: rgba(255,255,255,0.35);
}

/* Magnific Popup must render above the mosaic overlay */
.mfp-bg  { z-index: 100000 !important; }
.mfp-wrap { z-index: 100001 !important; }

/* Photo mosaic overlay
================================================== */
.photo-mosaic-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgb(249, 249, 249);
	display: flex;
	flex-direction: column;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.photo-mosaic-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}

body.mosaic-open {
	overflow: hidden;
}

/* Mosaic header */
.photo-mosaic-header {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 28px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	background: #1a1a2e;
}

.photo-mosaic-title {
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(255,255,255,0.7);
}

.photo-mosaic-title span {
	color: rgba(255,255,255,0.35);
	font-weight: 400;
	margin-left: 6px;
}

.photo-mosaic-close {
	display: flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: 1px solid rgba(255,255,255,0.15);
	color: rgba(255,255,255,0.7);
	padding: 8px 16px;
	border-radius: 4px;
	font-family: 'Lato', sans-serif;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.photo-mosaic-close:hover {
	border-color: rgba(255,255,255,0.4);
	color: #fff;
}

.photo-mosaic-close i {
	font-size: 15px;
}

/* Mosaic scrollable body */
.photo-mosaic-body {
	flex: 1;
	overflow-y: auto;
	padding: 24px 28px 40px;
}

/* Mosaic grid — 6 virtual columns, alternating rows of 2 and 3 photos */
.photo-mosaic-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 6px;
	max-width: 1200px;
	margin: 0 auto;
}

/* Default: span 3 of 6 → 2-photo row */
.photo-mosaic-item {
	grid-column: span 3;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	border-radius: 3px;
	cursor: pointer;
	background: #e8e8e8;
}

/* Every 3rd, 4th, 5th in each group of 5 → span 2 of 6 → 3-photo row */
.photo-mosaic-item:nth-child(5n+3),
.photo-mosaic-item:nth-child(5n+4),
.photo-mosaic-item:nth-child(5n+5) {
	grid-column: span 2;
}

.photo-mosaic-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.photo-mosaic-item:hover img {
	transform: scale(1.04);
}

/* Responsive — single column on tablet and mobile */
@media (max-width: 1024px) {
	.photo-mosaic-grid {
		grid-template-columns: 1fr;
	}

	.photo-mosaic-item,
	.photo-mosaic-item:nth-child(5n+3),
	.photo-mosaic-item:nth-child(5n+4),
	.photo-mosaic-item:nth-child(5n+5) {
		grid-column: span 1;
	}
}

@media (max-width: 700px) {
	.photo-mosaic-header {
		padding: 14px 16px;
	}

	.photo-mosaic-body {
		padding: 16px 16px 40px;
	}

	.view-all-photos-btn {
		bottom: auto;
		top: 14px;
		right: 14px;
		font-size: 12px;
		padding: 8px 14px;
	}

	/* Overlay text — scale down for mobile */
	.property-photo-overlay {
		padding: 24px 20px 32px 24px;
	}

	.photo-overlay-title {
		font-size: 32px;
		margin-bottom: 8px;
	}

	.photo-overlay-eyebrow {
		font-size: 9px;
		letter-spacing: 2px;
		margin-bottom: 8px;
	}

	.photo-overlay-meta {
		font-size: 12px;
		gap: 8px;
	}
}

/* Section nav — navy bar
================================================== */
#listing-nav.listing-nav-container {
	background: #1a1a2e;
	position: sticky;
	top: 72px; /* height of sticky #header-container */
	z-index: 500;
	width: 100%;
}

/* Suppress the JS-cloned duplicate — we use CSS sticky instead */
#listing-nav.listing-nav-container.cloned {
	display: none !important;
}

#listing-nav .listing-nav {
	background: #1a1a2e;
	border-bottom: none;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	min-height: 56px;
	padding: 0;
	list-style: none;
}

#listing-nav .listing-nav li {
	display: flex;
	align-items: center;
	height: 56px;
}

#listing-nav .listing-nav li a {
	font-family: 'Lato', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: rgba(255,255,255,0.4);
	border-bottom: 2px solid transparent;
	padding: 4px 2px;
	transition: color 0.2s ease, border-color 0.2s ease;
}

#listing-nav .listing-nav li a:hover {
	color: rgba(255,255,255,0.75);
	border-bottom-color: rgba(255,255,255,0.2);
}

/* Active: gold color + underline, same size/font as rest */
#listing-nav .listing-nav li a.active {
	color: #FFC21F;
	border-bottom-color: #FFC21F;
}

/* "Book Now" gold pill */
#listing-nav .listing-nav li a.outline {
	background: #FFC21F;
	color: #1a1a2e;
	border: none;
	border-radius: 4px;
	padding: 8px 18px;
	font-family: 'Lato', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-left: 8px;
}

#listing-nav .listing-nav li a.outline:hover {
	background: #e6ae1a;
	color: #1a1a2e;
	border-bottom-color: transparent;
}

/* Subtle permanent shadow — reads as elevated when sticky */
#listing-nav.listing-nav-container {
	box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

/* Keep nav spacing below */
#listing-nav + .container {
	margin-top: 32px;
}

/* Property stat strip
================================================== */
.property-stat-strip {
	display: flex;
	align-items: center;
	padding: 28px 0;
	margin-bottom: 32px;
	border-top: 1px solid #efefef;
	border-bottom: 1px solid #efefef;
}

.property-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1;
	gap: 6px;
}

.stat-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.property-stat i {
	color: #FFC21F;
	font-size: 20px;
}

.property-stat .stat-value {
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 22px;
	color: #1a1a2e;
	line-height: 1;
}

.property-stat .stat-label {
	font-family: 'Raleway', sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #aaa;
}

.stat-divider {
	width: 1px;
	height: 36px;
	background: #e8e8e8;
	flex-shrink: 0;
}

/* Read More button */
#read-more.button.border {
	background: transparent;
	color: #1a1a2e;
	border: 1.5px solid #1a1a2e;
	border-radius: 4px;
	font-family: 'Lato', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 10px 22px;
	transition: background 0.2s ease, color 0.2s ease;
}

#read-more.button.border:hover {
	background: #1a1a2e;
	color: #fff;
}

@media (max-width: 600px) {
	.property-stat .stat-value {
		font-size: 18px;
	}

	.property-stat .stat-label {
		font-size: 8px;
		letter-spacing: 1px;
	}

	.property-stat i {
		font-size: 13px;
	}
}

/* Mobile — show the nav as a horizontally scrollable bar */
@media (max-width: 768px) {
	#listing-nav.listing-nav-container {
		display: block !important; /* overrides style.css display:none !important */
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		top: 56px; /* mobile header height */
		margin: 0; /* clear template's -15px negative margins */
		padding: 0;
		width: 100%;
	}

	#listing-nav .listing-nav {
		display: flex;
		flex-wrap: nowrap;
		white-space: nowrap;
		min-width: max-content;
		margin-bottom: 0;
		border-bottom: none;
		padding: 0 4px;
	}

	#listing-nav .listing-nav li {
		flex-shrink: 0;
	}

	#listing-nav .listing-nav li a {
		font-size: 9px;
		letter-spacing: 1.2px;
		padding: 4px 10px;
	}

	#listing-nav .listing-nav li a.outline {
		font-size: 9px;
		padding: 6px 12px;
		margin-left: 4px;
	}
}

/* Booking widget sticky sidebar
================================================== */
@media (min-width: 992px) {
	.sticky-wrapper > .sticky {
		position: sticky;
		top: 140px;
	}
}

/* Booking widget
================================================== */
#booking-widget-anchor.booking-widget {
	border-radius: 8px;
	overflow: hidden;
	border: none;
	box-shadow: 0 4px 32px rgba(0,0,0,0.12);
	padding: 0;
}

.booking-widget-header {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	padding: 28px 28px 24px;
}

.booking-eyebrow {
	display: block;
	font-family: 'Raleway', sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #FFC21F;
	margin-bottom: 0;
}

.booking-widget-header h3 {
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	font-weight: 600;
	color: #fff;
	margin: 0;
	padding: 0;
	background: none;
	border-bottom: none;
}

.booking-widget-header h3 i {
	color: #FFC21F;
	font-size: 18px;
	margin-right: 6px;
}

.booking-widget-body {
	padding: 24px 24px 28px;
}

/* Date picker — split check-in / check-out */
.booking-date-split {
	position: relative;
	display: flex;
	align-items: center;
	border: 1.5px solid #FFC21F;
	border-radius: 6px;
	background: #fffdf7;
	cursor: pointer;
	margin-bottom: 20px;
	min-height: 64px;
	transition: box-shadow 0.2s ease;
}

.booking-date-split:hover {
	box-shadow: 0 0 0 3px rgba(255,194,31,0.15);
}

.date-split-checkin,
.date-split-checkout {
	flex: 1;
	padding: 10px 16px 10px 20px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.date-split-checkout {
	padding-left: 16px;
}

.date-split-label {
	font-family: 'Raleway', sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: #FFC21F;
}

.date-split-value {
	font-family: 'Lato', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #1a1a2e;
	letter-spacing: 0.2px;
}

.date-split-value.placeholder {
	color: #ccc;
	font-weight: 400;
}

.date-split-divider {
	width: 1px;
	height: 32px;
	background: rgba(255,194,31,0.4);
	flex-shrink: 0;
}

/* Hidden input covers the whole split container to trigger the calendar */
.booking-date-split .date-picker {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	opacity: 0 !important;
	cursor: pointer !important;
	z-index: 1;
	border: none !important;
	padding: 0 !important;
}

/* Inquire button */
#booking-widget-anchor .inquire-now {
	background: #FFC21F !important;
	color: #1a1a2e !important;
	border: none !important;
	border-radius: 6px !important;
	font-family: 'Lato', sans-serif !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	letter-spacing: 1px !important;
	text-transform: uppercase !important;
	padding: 14px !important;
	display: block;
	text-align: center;
	transition: background 0.2s ease !important;
}

#booking-widget-anchor .inquire-now:hover {
	background: #e6ae1a !important;
}

/* Phone CTA */
.booking-phone-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin: 18px 0 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #f0f0f0;
}

.booking-phone-cta a {
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	font-weight: 600;
	color: #1a1a2e;
	letter-spacing: 0.5px;
	transition: color 0.2s ease;
}

.booking-phone-cta a:hover {
	color: #FFC21F;
}

.booking-phone-cta a i {
	font-size: 16px;
	margin-right: 4px;
	color: #FFC21F;
}

.booking-phone-cta span {
	font-family: 'Raleway', sans-serif;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #aaa;
	margin-top: 4px;
}

/* Trust signals */
.booking-trust-list {
	list-style: none;
	padding: 0;
	margin: 0 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 16px;
}

.booking-trust-list li {
	font-family: 'Lato', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: #555;
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 0;
	margin: 0;
}

.booking-trust-list li::before {
	content: '\f058';
	font-family: 'FontAwesome';
	color: #FFC21F;
	font-size: 14px;
	flex-shrink: 0;
}

/* Cancellation policy */
.booking-cancel-policy {
	background: #f8f8f8;
	border-radius: 6px;
	padding: 16px;
}

.booking-cancel-title {
	font-family: 'Raleway', sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #888;
	margin: 0 0 8px;
}

.booking-cancel-policy p:last-child {
	font-size: 12px;
	color: #777;
	line-height: 1.6;
	margin: 0;
}

/* Price breakdown overrides
================================================== */
#booking-widget-anchor ul.booking-details {
	border-top: none;
	padding-top: 0;
	margin: 0 0 20px;
}

#booking-widget-anchor ul.booking-details li {
	font-family: 'Lato', sans-serif;
	font-size: 13px;
	color: #888;
	padding: 8px 0;
	border-bottom: 1px solid #f2f2f2;
	line-height: 1.4;
}

#booking-widget-anchor ul.booking-details li span {
	color: #444;
	font-weight: 600;
}

#booking-widget-anchor ul.booking-details li.event-notice {
	background: #fff8e6;
	border: 1px solid rgba(255,194,31,0.35);
	border-radius: 6px;
	color: #9a7a00;
	font-size: 12px;
	padding: 10px 12px;
	margin-bottom: 8px;
	font-weight: 500;
}

#booking-widget-anchor ul.booking-details li.booking-details-total {
	background: none;
	color: #1a1a2e;
	font-family: 'Lato', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.3px;
	border-radius: 0;
	padding: 14px 0;
	border-top: 1px solid #FFC21F;
	border-bottom: none;
	margin-top: 4px;
}

#booking-widget-anchor ul.booking-details li.booking-details-total span {
	font-size: 21px;
	color: #444;
	font-weight: 300;
}

#booking-widget-anchor ul.booking-details li.res-breakdown {
	background: #fafafa;
	padding-left: 16px;
	font-size: 12px;
	color: #aaa;
	border-bottom: 1px solid #f2f2f2;
}

/* Room cards
================================================== */
.room-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin: 16px 0 36px;
}

/* --- Option A: Soft gray card, bed type as hero --- */
.room-cards-a .room-card {
	background: #f7f7f7;
	border: none;
	border-radius: 8px;
	padding: 20px 20px 16px;
}

.room-cards-a .room-card-label {
	font-family: 'Raleway', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #aaa;
	margin-bottom: 6px;
}

.room-cards-a .room-card-bed {
	font-family: 'Lato', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 10px;
}

.room-cards-a .room-card-sub {
	font-family: 'Lato', sans-serif;
	font-size: 13px;
	color: #bbb;
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 4px;
}

.room-cards-a .room-card-sub .fa {
	color: #FFC21F;
	font-size: 10px;
}

/* --- Option B: White card, shadow, left gold stripe --- */
.room-cards-b .room-card {
	background: #fff;
	border: none;
	border-left: 3px solid #FFC21F;
	border-radius: 0 6px 6px 0;
	padding: 16px 18px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.room-cards-b .room-card-name {
	font-family: 'Lato', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 10px;
}

.room-cards-b .room-card-details {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.room-cards-b .room-card-details li {
	font-family: 'Lato', sans-serif;
	font-size: 12px;
	color: #888;
	display: flex;
	align-items: center;
	gap: 8px;
}

.room-cards-b .room-card-details .fa {
	color: #FFC21F;
	font-size: 11px;
	width: 13px;
	text-align: center;
}

/* --- Option C: Inline name + bed badge, extras below --- */
.room-cards-c .room-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 6px;
	padding: 14px 16px;
}

.room-cards-c .room-card-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.room-cards-c .room-card-name {
	font-family: 'Lato', sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: #1a1a2e;
}

.room-cards-c .room-card-badge {
	font-family: 'Lato', sans-serif;
	font-size: 11px;
	font-weight: 700;
	color: #1a1a2e;
	background: rgba(255,194,31,0.15);
	border: 1px solid rgba(255,194,31,0.4);
	border-radius: 20px;
	padding: 3px 10px;
	white-space: nowrap;
}

.room-cards-c .room-card-extras {
	margin-top: 8px;
	display: flex;
	gap: 12px;
}

.room-cards-c .room-card-extras span {
	font-family: 'Lato', sans-serif;
	font-size: 11px;
	color: #bbb;
	display: flex;
	align-items: center;
	gap: 5px;
}

.room-cards-c .room-card-extras .fa {
	color: #FFC21F;
	font-size: 10px;
}

@media (max-width: 992px) {
	.room-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
	.room-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* Amenity options
================================================== */

/* A: 3-column compact grid */
.amenity-grid-a {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	margin-bottom: 10px;
}

.amenity-item-a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 0;
	border-bottom: 1px solid #f2f2f2;
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	color: #444;
}

.amenity-item-a .fa {
	color: #FFC21F;
	font-size: 14px;
	width: 16px;
	text-align: center;
	flex-shrink: 0;
}

/* B: Flowing pill badges */
.amenity-grid-b {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 10px;
}

.amenity-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 14px;
	border: 1px solid #e8e8e8;
	border-radius: 100px;
	font-family: 'Lato', sans-serif;
	font-size: 13px;
	color: #444;
	background: #fff;
}

.amenity-pill .fa {
	color: #FFC21F;
	font-size: 12px;
}

/* C: 2-col, dividers, no icons */
.amenity-grid-c {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	margin-bottom: 10px;
}

.amenity-item-c {
	font-family: 'Lato', sans-serif;
	font-size: 14px;
	color: #555;
	padding: 11px 0;
	border-bottom: 1px solid #f2f2f2;
	padding-left: 14px;
	position: relative;
}

.amenity-item-c::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #FFC21F;
}

/* ---- Section Headings ---- */
.listing-section-heading { display: inline-block; }
.listing-section-heading .listing-desc-headline { margin-top: 8px; }

.listing-eyebrow {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FFC21F;
}

/* ---- Review Cards (Option B: editorial quote style) ---- */
.review-list { margin-top: 10px; }

.review-card {
    position: relative;
    padding: 32px 0 32px 44px;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
    background: transparent;
}
.review-card:last-child { border-bottom: none; }

.review-card::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: 18px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 96px;
    line-height: 1;
    color: #FFC21F;
    opacity: 0.25;
}

.review-title {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin: 0 0 8px;
}
.review-body {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin: 0 0 18px;
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.review-card-author {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.review-name {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #1a1a2e;
}
.review-verified {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #19b453;
    text-transform: uppercase;
}
.review-verified .fa { margin-right: 3px; }

.review-card-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}
.review-date {
    display: inline;
    font-size: 12px;
    color: #bbb;
}

.listing-reviews-short .review-card:nth-child(n+4) { display: none; }

#listing-reviews { padding-bottom: 80px; }

#see-all-reviews {
    background: transparent !important;
    color: #1a1a2e !important;
    border: 2px solid #FFC21F !important;
    border-radius: 4px;
    padding: 12px 32px !important;
    font-family: 'Lato', sans-serif;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
}
#see-all-reviews:hover {
    background: #FFC21F !important;
    color: #1a1a2e !important;
}

/* ---- Mobile / tablet (< 992px) layout fixes ---- */
@media (max-width: 991px) {
    /* Booking widget reorder: sidebar above main content */
    .sticky-wrapper {
        display: flex;
        flex-direction: column;
    }
    .sticky-wrapper > [class*="col-"] {
        float: none;
        width: 100%;
    }
    .sticky-wrapper > .sticky {
        order: -1;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    .sticky-wrapper > .col-lg-4 {
        margin-top: 0 !important;
    }

    /* Stat strip: scale down for narrower widths */
    .property-stat-strip {
        padding: 16px 0;
        margin-bottom: 24px;
    }
    .property-stat .stat-value {
        font-size: 16px;
    }
    .property-stat i {
        font-size: 14px;
    }
    .stat-row {
        gap: 4px;
    }
    .stat-divider {
        height: 24px;
    }

    /* Amenity grid: single column so text doesn't wrap */
    .amenity-grid-a {
        grid-template-columns: 1fr;
    }
    .amenity-item-a {
        padding: 12px 0;
    }
}
