/* Frontend Styles */

/* .resort-booking-form-wrapper — inherits full width from multi-booking.css container */
.resort-booking-form-wrapper {
	width: 100%;
}

.resort-booking-form {
	display: block;
}

/* Row + column grid helpers used inside the form (matches admin .row/.col-md-*) */
.rbf-row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -8px;
	margin-right: -8px;
}

.rbf-col {
	box-sizing: border-box;
	padding: 0 8px;
	margin-bottom: 16px;
	flex: 1 1 200px;
	width: 100%;
}

.rbf-col-full {
	box-sizing: border-box;
	padding: 0 8px;
	margin-bottom: 16px;
	width: 100%;
}

.rbf-row-3 .rbf-col {
	flex: 1 1 33.333%;
	max-width: 33.333%;
}

.rbf-row-2 .rbf-col {
	flex: 1 1 50%;
	max-width: 50%;
}

.rbf-duration-mode {
	padding: 0 8px 10px;
}

.rbf-duration-toggle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: #223245;
	cursor: pointer;
}

.rbf-duration-toggle input[type="checkbox"] {
	width: 16px;
	height: 16px;
	margin: 0;
}

.rbf-addon-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px 12px;
}

.rbf-addon-col {
	min-width: 0;
}

.rbf-policy-note {
	margin-top: 12px;
	padding: 10px 12px;
	border-radius: 8px;
	background: #fdecea;
	border-left: 4px solid #d64545;
	color: #8a2424;
	font-size: 12px;
	line-height: 1.45;
}

@media (max-width: 960px) {
	.rbf-row-3 .rbf-col,
	.rbf-row-2 .rbf-col {
		flex: 1 1 100%;
		max-width: 100%;
	}

	.rbf-addon-grid {
		grid-template-columns: 1fr;
	}
}

.rbf-form-label {
	display: block;
	font-weight: 600;
	color: #223245;
	font-size: 14px;
	margin-bottom: 6px;
}

.rbf-required-star {
	color: #c0392b;
	margin-left: 2px;
}

.rbf-form-control {
	display: block;
	width: 100%;
	min-height: 42px;
	padding: 9px 12px;
	border: 1px solid #b9cbde;
	border-radius: 10px;
	font-size: 14px;
	font-family: inherit;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 0.2s, box-shadow 0.2s;
	appearance: auto;
}

select.rbf-form-control,
.resort-booking-form-wrapper select.form-control,
.resort-booking-form-wrapper .form-select {
	-webkit-appearance: none;
	appearance: none;
	padding-right: 34px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235b7087' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px 8px;
}

.rbf-form-control:focus {
	outline: none;
	border-color: #87accc;
	box-shadow: 0 0 0 3px rgba(31, 111, 178, 0.14);
}

.rbf-form-text {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	color: #5b7087;
}

/* Submit button */
.rbf-submit-row {
	margin-top: 6px;
	padding-top: 16px;
	border-top: 1px solid #edf2f8;
}

.rbf-btn-primary {
	display: inline-block;
	padding: 11px 28px;
	background: #1f6fb2;
	color: #fff;
	border: none;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
	letter-spacing: 0.01em;
	transition: background 0.2s;
}

.rbf-btn-primary:hover {
	background: #165489;
}

/* ─── Bootstrap-less scaffolding for .card / .form-control ─────────────────
   These ensure the form renders correctly when Bootstrap is not loaded on
   the frontend. They only apply inside the booking form wrapper so they
   cannot accidentally affect the rest of the page.
   ─────────────────────────────────────────────────────────────────────── */

.resort-booking-form-wrapper .card {
	position: relative;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

.resort-booking-form-wrapper .card-header,
.resort-booking-form-wrapper .card-body {
	box-sizing: border-box;
}

.resort-booking-form-wrapper .card-header {
	padding: 14px 20px;
}

.resort-booking-form-wrapper .card-body {
	padding: 20px;
}

/* Base styles for .form-control / .form-label / .form-select when Bootstrap
   is absent. These are intentionally lightweight — border, radius and focus
   ring are handled by multi-booking.css's .multi-booking-container selectors. */
.resort-booking-form-wrapper .form-label {
	display: block;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 6px;
	color: var(--resort-text, #223245);
}

.resort-booking-form-wrapper .form-control,
.resort-booking-form-wrapper .form-select {
	display: block;
	width: 100%;
	padding: 9px 12px;
	font-size: 14px;
	font-family: inherit;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 0.2s, box-shadow 0.2s;
}

/* flatpickr alt-input inherits .resort-date-alt-input styling from
   multi-booking.css; hide only Flatpickr's hidden source input */
.resort-booking-form-wrapper input.flatpickr-input[type="hidden"] {
	display: none;
}

/* Keep the old .form-group / .btn classes working for any other pages that use them */
.form-group {
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
}

.form-group input[type="number"] {
	min-width: 0;
}

.btn {
	padding: 12px 30px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.btn-primary {
	background: #0073aa;
	color: white;
	width: 100%;
}

.btn-primary:hover {
	background: #005a87;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,115,170,0.3);
}

.btn-primary:active {
	transform: translateY(0);
}

/* Map Styles */

.resort-map-wrapper {
	background: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	margin: 20px 0;
}

.resort-map-wrapper h3 {
	margin-top: 0;
	color: #333;
	font-size: 20px;
	margin-bottom: 15px;
}

.resort-map-wrapper canvas {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid #ddd;
	border-radius: 4px;
	margin-bottom: 15px;
	background: white;
	cursor: pointer;
}

.place-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding-top: 15px;
	border-top: 1px solid #eee;
}

.legend-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #666;
}

.legend-color {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 2px solid #333;
}

/* Booking Info */

.resort-booking-summary {
	background: #f9f9f9;
	padding: 20px;
	border-radius: 4px;
	margin: 20px 0;
}

.resort-booking-summary h4 {
	margin-top: 0;
	color: #333;
	font-size: 16px;
}

.booking-info-row {
	display: flex;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px solid #eee;
}

.booking-info-row:last-child {
	border-bottom: none;
}

.booking-info-label {
	color: #666;
	font-weight: 500;
}

.booking-info-value {
	color: #333;
	font-weight: 600;
}

.booking-price-total {
	font-size: 18px;
	color: #0073aa;
	font-weight: bold;
}

/* Messages */

.resort-message {
	padding: 15px;
	border-radius: 4px;
	margin-bottom: 20px;
}

.resort-message.success {
	background: #d4edda;
	color: #155724;
	border-left: 4px solid #28a745;
}

.resort-message.error {
	background: #f8d7da;
	color: #721c24;
	border-left: 4px solid #f5c6cb;
}

.resort-message.warning {
	background: #fff3cd;
	color: #856404;
	border-left: 4px solid #ffeaa7;
}

.resort-message.info {
	background: #d1ecf1;
	color: #0c5460;
	border-left: 4px solid #bee5eb;
}

/* Responsive */

@media (max-width: 768px) {
	.resort-booking-form-wrapper {
		padding: 20px;
		margin: 15px;
	}

	.btn {
		padding: 10px 20px;
		font-size: 14px;
	}

	.place-legend {
		flex-direction: column;
		gap: 10px;
	}

	.resort-map-wrapper canvas {
		max-height: 300px;
	}

	.booking-info-row {
		flex-direction: column;
		gap: 5px;
	}
}

@media (max-width: 480px) {
	.resort-booking-form-wrapper {
		border-radius: 0;
		padding: 15px;
		margin: 0;
	}

	.form-group {
		margin-bottom: 15px;
	}

	.btn {
		padding: 12px 15px;
	}
}

/* All Zones Directory */

.resort-all-zones {
	max-width: 1200px;
	margin: 32px auto;
	padding: 28px;
	border-radius: 22px;
	border: 1px solid var(--fisher-zone-shell-border, #d1e1f2);
	background:
		radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 40%),
		linear-gradient(156deg, var(--fisher-zone-shell-bg-start, #f4f9ff) 0%, var(--fisher-zone-shell-bg-end, #f8fcff) 100%);
	box-shadow: 0 18px 40px rgba(12, 43, 78, 0.12);
}

.resort-all-zones__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 18px;
}

.resort-all-zones__title {
	margin: 0;
	font-size: 34px;
	line-height: 1.06;
	letter-spacing: -0.02em;
	color: var(--fisher-zone-title, #123554);
}

.resort-all-zones__subtitle {
	margin: 8px 0 0;
	font-size: 14px;
	line-height: 1.55;
	color: var(--fisher-zone-subtitle, #4b6a88);
	max-width: 66ch;
}

.resort-season-pill {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: var(--fisher-zone-chip-text, #244f77);
	background: var(--fisher-zone-chip-bg, #e8f3ff);
	border: 1px solid var(--fisher-zone-card-border, #d6e1ec);
	white-space: nowrap;
}

.resort-all-zones__empty {
	padding: 24px;
	background: #f5f9ff;
	border: 1px solid var(--fisher-zone-card-border, #d8e4f0);
	border-radius: 14px;
	text-align: center;
	color: var(--fisher-zone-subtitle, #59718b);
	font-weight: 600;
}

.resort-all-zones__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
}

.resort-zone-tile {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: var(--fisher-zone-card-bg, #ffffff);
	border: 1px solid var(--fisher-zone-card-border, #d6e1ec);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 24px rgba(16, 47, 82, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.resort-zone-tile:hover {
	transform: translateY(-3px);
	border-color: var(--fisher-zone-card-hover-border, #3d8ff6);
	box-shadow: 0 14px 28px rgba(16, 57, 98, 0.14);
}

.resort-zone-tile__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, #dce9f7 0%, #f2f7fd 100%);
	overflow: hidden;
	text-decoration: none;
}

.resort-zone-tile__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.resort-zone-tile:hover .resort-zone-tile__media img {
	transform: scale(1.05);
}

.resort-zone-tile__media-placeholder {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	padding: 14px;
	text-align: center;
	font-size: 15px;
	font-weight: 700;
	color: var(--fisher-zone-title, #365473);
	background: radial-gradient(circle at 30% 20%, #f7fbff 0%, #d6e4f3 100%);
}

.resort-zone-tile__places-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 10;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: var(--fisher-zone-badge-text, #ffffff);
	background: var(--fisher-zone-badge-bg, rgba(11, 47, 82, 0.9));
	--badge-indicator: #9fd3ff;
	backdrop-filter: blur(1px);
	white-space: nowrap;
}

.resort-zone-tile__places-badge::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--badge-indicator);
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.resort-zone-tile__places-badge.is-high {
	background: var(--fisher-lagoon, #176b6a);
	--badge-indicator: #9ef0bf;
}

.resort-zone-tile__places-badge.is-medium {
	background: var(--fisher-gold, #b98b35);
	--badge-indicator: #ffe39a;
}

.resort-zone-tile__places-badge.is-low,
.resort-zone-tile__places-badge.is-full {
	background: var(--fisher-coral, #db6b3a);
	--badge-indicator: #ffcf9f;
}

.resort-zone-tile__places-badge.is-inactive,
.resort-zone-tile__places-badge.is-empty {
	background: var(--fisher-ink, #2f3b4a);
	--badge-indicator: #c8d5e2;
}

.resort-zone-tile__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 18px 14px 16px;
	text-align: center;
	flex: 1;
}

.resort-zone-tile__name {
	margin: 0;
	font-size: 21px;
	line-height: 1.2;
	color: var(--fisher-zone-title, #153b5f);

.resort-zone-detail-page__topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}

.resort-zone-detail-page__title {
	margin: 0;
	font-size: clamp(24px, 4vw, 36px);
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #173857;
}
}

.resort-zone-tile__summary {
	justify-content: center;
	gap: 4px;
	margin-bottom: 0;
	padding: 6px 11px;
	border-radius: 999px;
	border: 1px solid #c8d7e6;
	background: #ffffff;
	line-height: 1.5;
	font-weight: 700;
	font-size: 12px;
	line-height: 1;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #315d84;
	white-space: nowrap;
}

.resort-zone-tile__availability {
	text-decoration: none;
	background: #f5f9fd;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	border: 1px solid var(--fisher-zone-card-border, #d0deeb);
	background: var(--fisher-zone-chip-bg, #f3f8ff);
	color: var(--fisher-zone-chip-text, #345474);
	flex-wrap: wrap;
	justify-content: center;
}

.resort-zone-tile__availability.is-active {
	background: rgba(23, 107, 106, 0.12);
	border-color: rgba(23, 107, 106, 0.28);
	color: var(--fisher-lagoon, #1f6b40);
}

.resort-zone-tile__availability.is-inactive {
	background: rgba(219, 107, 58, 0.12);
	border-color: rgba(219, 107, 58, 0.3);
	color: #8b2938;
}

.resort-zone-tile__availability-label {
	opacity: 0.88;
}

.resort-zone-tile__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: calc(100% - 4px);
	width: auto;
	margin-top: auto;
	padding: 11px 16px;
	border-radius: 10px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #ffffff;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.resort-zone-tile__cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 9px 18px rgba(23, 115, 223, 0.24);
	filter: brightness(1.03);
}

/* Zone details page */

.resort-zone-detail-page {
	max-width: 1120px;
	margin: 28px auto;
	padding: 14px;
}

.resort-zone-detail-page--empty {
	padding: 28px;
	text-align: center;
	background: #f6fbff;
	border: 1px solid #dae5f0;
	border-radius: 14px;
	color: #4d6682;
	font-weight: 600;
}

.resort-zone-detail-page__page-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}

.resort-zone-detail-page__hero {
	display: grid;
	grid-template-columns: minmax(300px, 370px) minmax(0, 1fr);
	gap: 16px;
	align-items: stretch;
	margin-bottom: 14px;
}

.resort-zone-detail-page__panel {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 16px;
	border-radius: 12px;
	background: linear-gradient(180deg, #f8fbff 0%, #f1f6fc 100%);
	border: 1px solid #d8e4ef;
	box-shadow: 0 12px 26px rgba(18, 57, 97, 0.08);
}

.resort-zone-detail-page__back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 6px 10px;
	border-radius: 8px;
	border: 1px solid #1e4d7a;
	background: #163957;
	text-decoration: none;
	font-weight: 700;
	font-size: 11px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #ffffff;
}

.resort-zone-detail-page__back:hover {
	text-decoration: none;
	background: #ffffff;
	color: #163957;
	border-color: #163957;
}

.resort-zone-detail-page__back:active {
	text-decoration: none;
	background: #163957;
	color: #ffffff;
	border-color: #1e4d7a;
}

.resort-zone-detail-page__title {
	margin: 0;
	font-size: clamp(26px, 2.5vw, 34px);
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #163957;
}

.resort-zone-slider {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	background: #0f2740;
	box-shadow: 0 18px 36px rgba(8, 29, 50, 0.3);
	margin-bottom: 16px;
}

.resort-zone-slider__track {
	display: flex;
	transition: transform 0.45s ease;
	will-change: transform;
}

.resort-zone-slide {
	position: relative;
	min-width: 100%;
	height: 460px;
	margin: 0;
}

.resort-zone-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.resort-zone-slide.is-empty {
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, #223e5d 0%, #1a2f48 100%);
}

.resort-zone-slide__empty {
	color: #d2deea;
	font-weight: 700;
	font-size: 16px;
	text-align: center;
	padding: 18px;
}

.resort-zone-slider__summary {
	margin: 0;
	font-size: 15px;
	line-height: 1.45;
	max-width: none;
	color: #2f4b65;
}

.resort-zone-slider__book {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	padding: 12px 18px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	background: #57bf96;
	color: #0a4c3a;
	border: 1px solid #48a681;
	box-shadow: 0 8px 16px rgba(20, 100, 76, 0.18);
	transition: transform 0.2s ease, filter 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.resort-zone-slider__book:hover {
	transform: translateY(-1px);
	background: #7ed7af;
	color: #06624a;
	filter: none;
}

.resort-zone-detail-page .resort-zone-slider__book.is-disabled {
	background: #f7fbff;
	color: #33546f;
	border: 1px solid #b9ccde;
	box-shadow: none;
	cursor: not-allowed;
}

.resort-zone-slider__control {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 999px;
	background: rgba(6, 25, 42, 0.5);
	color: #ffffff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	z-index: 2;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.resort-zone-slider__control:hover {
	background: rgba(6, 25, 42, 0.72);
	transform: translateY(-50%) scale(1.04);
}

.resort-zone-slider__control.is-prev {
	left: 14px;
}

.resort-zone-slider__control.is-next {
	right: 14px;
}

.resort-zone-slider__dots {
	position: absolute;
	left: 50%;
	bottom: 14px;
	transform: translateX(-50%);
	display: flex;
	gap: 7px;
	z-index: 2;
}

.resort-zone-slider__dot {
	width: 9px;
	height: 9px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.48);
	cursor: pointer;
	padding: 0;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.resort-zone-slider__dot.is-active {
	background: #ffffff;
	transform: scale(1.3);
}

.resort-zone-detail-page__facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(150px, 1fr));
	gap: 12px;
}

.resort-zone-detail-page__fact {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	min-height: 48px;
	padding: 13px 14px;
	border: 1px solid #d6e2ee;
	border-radius: 8px;
	background: #f7fbff;
	gap: 8px;
}

.resort-zone-detail-page__fact.is-active {
	background: #ebfff2;
	border-color: #b9e8cb;
}

.resort-zone-detail-page__fact.is-inactive {
	background: #fff5f6;
	border-color: #efc5cb;
}

.resort-zone-detail-page__fact-label {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.01em;
	text-transform: none;
	color: #607994;
	margin-bottom: 0;
}

.resort-zone-detail-page__fact-value {
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	color: #164068;
	white-space: nowrap;
}

.resort-zone-detail-page__information {
	padding: 10px 12px;
	border: 1px solid #d8e5ef;
	border-radius: 8px;
	background: #ffffff;
}

.resort-zone-detail-page__information-title {
	margin: 0 0 8px;
	font-size: 14px;
	font-weight: 700;
	color: #18466f;
}

.resort-zone-detail-page__information-list {
	margin: 0;
	padding-left: 18px;
	font-size: 13px;
	line-height: 1.5;
	color: #355571;
}

.resort-zone-detail-page__information-list li + li {
	margin-top: 4px;
}

.resort-zone-detail-page__other-places {
	margin-top: 16px;
	padding-top: 10px;
}

.resort-zone-detail-page__other-title {
	margin: 0 0 10px;
	font-size: 18px;
	line-height: 1.2;
	color: #173d61;
}

.resort-zone-detail-page__other-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 10px;
}

.resort-zone-detail-page__other-card {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 10px;
	border-radius: 8px;
	border: 1px solid #d3dfeb;
	background: #ffffff;
	text-decoration: none;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.resort-zone-detail-page__other-card:hover {
	transform: translateY(-1px);
	border-color: #afc6dc;
	box-shadow: 0 10px 20px rgba(17, 62, 103, 0.1);
}

.resort-zone-detail-page__other-name {
	font-size: 14px;
	font-weight: 700;
	color: #123f66;
}

.resort-zone-detail-page__other-thumb-wrap {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 6px;
	background: #edf3f9;
	margin-bottom: 4px;
}

.resort-zone-detail-page__other-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.resort-zone-detail-page__other-meta {
	font-size: 12px;
	font-weight: 600;
	color: #5c7690;
}

.resort-zone-detail-page__season {
	margin: 0 0 12px;
	font-size: 13px;
	font-weight: 700;
	color: #1f7280;
}

.resort-zone-detail-page__description {
	padding: 20px;
	border-radius: 14px;
	border: 1px solid #d9e4ee;
	background: #ffffff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
	font-size: 15px;
	line-height: 1.68;
	color: #35516b;
}

.resort-zone-detail-page__description p {
	margin-top: 0;
	margin-bottom: 12px;
}

@media (max-width: 992px) {
	.resort-zone-detail-page {
		padding: 12px;
	}

	.resort-zone-detail-page__hero {
		grid-template-columns: 1fr;
	}

	.resort-zone-detail-page__page-head {
		margin-bottom: 12px;
	}

	.resort-zone-detail-page__panel {
		padding: 14px;
	}

	.resort-zone-slide {
		height: 360px;
	}
}

@media (max-width: 640px) {
	.resort-zone-detail-page {
		padding: 10px;
	}

	.resort-zone-detail-page__title {
		font-size: 24px;
	}

	.resort-zone-slide {
		height: 280px;
	}

	.resort-zone-detail-page__facts {
		grid-template-columns: 1fr;
	}

	.resort-zone-slider__summary {
		font-size: 14px;
	}

	.resort-zone-detail-page__other-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 480px) {
	.resort-zone-detail-page__page-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.resort-zone-detail-page__back {
		align-self: flex-start;
		width: auto;
		padding: 5px 8px;
		font-size: 10px;
	}

	.resort-zone-detail-page__other-grid {
		grid-template-columns: 1fr;
	}
}

/* Price Estimator */

.resort-price-estimator {
	max-width: 980px;
	margin: 28px auto;
	padding: 24px;
	background: #fff;
	border: 1px solid #dce4ef;
	border-radius: 16px;
	box-shadow: 0 14px 30px rgba(16, 54, 94, 0.07);
}

.rpe-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
}

.rpe-title {
	margin: 0;
	font-size: 26px;
	line-height: 1.1;
	color: #123a60;
}

.rpe-subtitle {
	margin: 6px 0 0;
	font-size: 14px;
	line-height: 1.4;
	color: #4d6780;
}

.rpe-field label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #415d79;
	margin-bottom: 6px;
}

.rpe-field input,
.rpe-field select,
.rpe-field textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccdae9;
	border-radius: 10px;
	font-size: 14px;
	background: #fff;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rpe-field input:focus,
.rpe-field select:focus,
.rpe-field textarea:focus {
	outline: none;
	border-color: #2585f4;
	box-shadow: 0 0 0 3px rgba(37, 133, 244, 0.16);
}

.rpe-field--dates,
.rpe-field--inline {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 10px;
}

.rpe-btn {
	margin-top: 4px;
	padding: 12px 14px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(90deg, #0f7f7f, #10a3a3);
	color: #fff;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.rpe-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 18px rgba(16, 139, 139, 0.25);
	filter: brightness(1.04);
}

.rpe-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.rpe-result {
	margin-top: 14px;
	padding: 14px;
	border-radius: 12px;
	border: 1px solid #d3e2f2;
	background: #f7fbff;
}

.rpe-result.success {
	border-color: #a9c9ee;
	background: #f2f8ff;
	color: #244f7a;
}

.rpe-result.error {
	border-color: #efc4ca;
	background: #fff5f6;
	color: #8a2131;
	font-weight: 700;
}

.rpe-result__table {
	width: 100%;
	border-collapse: collapse;
}

.rpe-result__table th,
.rpe-result__table td {
	padding: 8px 0;
	text-align: left;
	border-bottom: 1px solid #dbe7f4;
	font-size: 14px;
}

.rpe-result__table th {
	color: #3f5a77;
	font-weight: 700;
	width: 45%;
}

.rpe-result__table td {
	color: #1f4d79;
	font-weight: 600;
}

.rpe-result__table tr:last-child th,
.rpe-result__table tr:last-child td {
	border-bottom: 0;
}

.rpe-result__total th,
.rpe-result__total td {
	font-size: 16px;
	font-weight: 800;
	color: #0f4270;
}

@media (max-width: 960px) {
	.resort-all-zones,
	.resort-zone-detail-page,
	.resort-price-estimator {
		margin: 20px 10px;
		padding: 18px;
	}

	.resort-all-zones__title {
		font-size: 26px;
	}

	.rpe-title {
		font-size: 23px;
	}
}

@media (max-width: 720px) {
	.resort-all-zones__header,
	.rpe-header {
		flex-direction: column;
		align-items: stretch;
	}

	.resort-all-zones__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.resort-season-pill {
		white-space: normal;
	}

	.resort-zone-slide {
		height: 390px;
	}

	.resort-zone-slider__summary {
		font-size: 14px;
	}

	.resort-zone-slider__book {
		width: 100%;
	}

	.resort-zone-slider__control {
		width: 36px;
		height: 36px;
		font-size: 20px;
	}

	.resort-zone-detail-page__description {
		padding: 16px;
	}
}

@media (max-width: 480px) {
	.resort-all-zones,
	.resort-zone-detail-page,
	.resort-price-estimator {
		border-radius: 12px;
		padding: 14px;
	}

	.resort-all-zones__title {
		font-size: 24px;
	}

	.resort-all-zones__grid {
		grid-template-columns: 1fr;
	}

	.resort-zone-slide {
		height: 320px;
	}

	.resort-zone-slider__summary {
		font-size: 13px;
	}
}

/* ─── Frontend Booking Map (rbf-* = Resort Booking Form) ─────────────────── */

.rbf-map-section {
	margin-top: 4px;
	margin-bottom: 20px;
}

.rbf-map-section-label {
	font-weight: 600;
	margin-bottom: 10px;
	color: #333;
	font-size: 14px;
}

.rbf-required-star {
	color: #c0392b;
	margin-left: 2px;
}

/* Loading indicator */
.rbf-map-loading {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 0;
	font-size: 13px;
	color: #555;
}

.rbf-spinner {
	display: inline-block;
	width: 18px;
	height: 18px;
	border: 2px solid #ccc;
	border-top-color: #0073aa;
	border-radius: 50%;
	animation: rbf-spin 0.75s linear infinite;
	flex-shrink: 0;
}

@keyframes rbf-spin {
	to { transform: rotate(360deg); }
}

/* Error message */
.rbf-map-error {
	padding: 10px 14px;
	border-radius: 4px;
	background: #fff3cd;
	color: #856404;
	border-left: 4px solid #ffc107;
	font-size: 13px;
	margin-bottom: 10px;
}

/* Map shell overrides (keeps parity with admin map shell) */
.rbf-map-section .resort-map-shell {
	margin-bottom: 10px;
	border: 1px solid #dde5ed;
	border-radius: 6px;
	overflow: hidden;
}

/* Leaflet map height on frontend */
.rbf-leaflet-map {
	height: 400px;
	width: 100%;
}

/* Selected place feedback */
.rbf-selected-place {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	padding: 10px 14px;
	border-radius: 4px;
	background: #d4edda;
	color: #155724;
	border-left: 4px solid #28a745;
	font-size: 13px;
}

.rbf-selected-check {
	font-size: 16px;
	font-weight: bold;
	color: #28a745;
	flex-shrink: 0;
}

/* Legend overrides for frontend context */
.rbf-map-section .resort-availability-legend {
	margin-top: 8px;
	margin-bottom: 4px;
}

/* Resort Customer Login Widget Styles */
.resort-customer-login {
	max-width: 400px;
	margin: 40px auto;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 4px 32px rgba(30, 60, 90, 0.10);
	padding: 32px 28px 24px 28px;
	font-family: inherit;
}
.rcl-tabs {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 24px;
}
.rcl-tab {
	background: none;
	border: none;
	font-size: 16px;
	font-weight: 600;
	color: #1f6fb2;
	padding: 8px 18px;
	border-radius: 8px 8px 0 0;
	cursor: pointer;
	transition: background 0.18s, color 0.18s;
}
.rcl-tab--active {
	background: #eaf3fa;
	color: #123554;
}
.rcl-panel {
	margin-bottom: 0;
}
.rcl-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.rcl-field {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.rcl-field--inline {
	flex-direction: row;
	gap: 12px;
}
.rcl-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 0;
	border: none;
	border-radius: 8px;
	background: #1f6fb2;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	margin-top: 8px;
	transition: background 0.18s;
	width: 100%;
}
.rcl-btn:hover {
	background: #165489;
}
.rcl-btn--google {
	background: #fff;
	color: #223245;
	border: 1.5px solid #d3e2f2;
	box-shadow: 0 2px 8px rgba(66,133,244,0.07);
	font-weight: 600;
	margin-top: 0;
}
.rcl-btn--google:hover {
	background: #f5fafd;
	border-color: #4285f4;
}
.rcl-google-icon {
	display: inline-block;
	vertical-align: middle;
	margin-right: 8px;
}
.rcl-divider {
	display: flex;
	align-items: center;
	text-align: center;
	color: #b0b8c1;
	font-size: 13px;
	margin: 18px 0 10px 0;
}
.rcl-divider span {
	background: #fff;
	padding: 0 12px;
	z-index: 1;
}
.rcl-divider:before, .rcl-divider:after {
	content: '';
	flex: 1;
	border-bottom: 1px solid #e3eaf2;
	margin: 0 0 0 0;
}
.rcl-notice {
	padding: 10px 14px;
	border-radius: 6px;
	margin-bottom: 10px;
	font-size: 14px;
}
.rcl-notice--error {
	background: #f8d7da;
	color: #721c24;
	border-left: 4px solid #f5c6cb;
}
.rcl-notice--success {
	background: #d4edda;
	color: #155724;
	border-left: 4px solid #28a745;
}
.rcl-forgot {
	text-align: right;
	margin-bottom: 0;
}
.rcl-forgot a {
	color: #1f6fb2;
	font-size: 13px;
	text-decoration: none;
	transition: color 0.18s;
}
.rcl-forgot a:hover {
	color: #123554;
}
@media (max-width: 600px) {
	.resort-customer-login {
		padding: 18px 6px 16px 6px;
		border-radius: 10px;
	}
	.rbf-leaflet-map {
		height: 280px;
	}
}
