/* 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;
}

.resort-booking-lock-notice {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.resort-booking-lock-notice__text {
	flex: 1 1 auto;
	font-weight: 600;
}

.resort-booking-lock-notice__actions {
	flex: 0 0 auto;
}

.resort-booking-lock-notice__cancel {
	white-space: nowrap;
}

/* Dedicated processing page mode shown after Proceed to Payment */
body.resort-processing-mode .resort-processing-host,
body.resort-processing-mode .resort-processing-host .resort-booking-form,
body.resort-processing-mode .resort-processing-host .resort-message,
body.resort-processing-mode .resort-processing-host .resort-booking-summary {
	display: none !important;
}

.resort-processing-page {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px;
	background: #ffffff;
	overflow: hidden;
}

.resort-processing-sky {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: min(48vh, 380px);
	pointer-events: none;
	z-index: 0;
	background:
		radial-gradient(circle at 16% 20%, rgba(255, 205, 128, 0.48) 0%, rgba(255, 205, 128, 0) 34%),
		radial-gradient(circle at 72% 30%, rgba(255, 236, 188, 0.36) 0%, rgba(255, 236, 188, 0) 42%),
		linear-gradient(180deg, #8dc6ef 0%, #b8def8 24%, #ffdca9 68%, rgba(255, 255, 255, 0.14) 100%);
	overflow: hidden;
}

.resort-processing-sky::before,
.resort-processing-sky::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.resort-processing-sky::before {
	background:
		radial-gradient(ellipse at 20% 36%, rgba(255, 255, 255, 0.36) 0%, rgba(255, 255, 255, 0) 52%),
		radial-gradient(ellipse at 64% 46%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 58%),
		radial-gradient(ellipse at 84% 26%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 50%);
	opacity: 0.9;
}

.resort-processing-sky::after {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 42%);
	opacity: 0.8;
}

.resort-processing-sun {
	position: absolute;
	width: clamp(72px, 11vw, 136px);
	height: clamp(72px, 11vw, 136px);
	right: clamp(28px, 7vw, 120px);
	top: clamp(20px, 5vw, 56px);
	border-radius: 50%;
	background: radial-gradient(circle at 34% 34%, #fff9dd 0%, #ffe08c 42%, #ffb960 76%, rgba(255, 185, 96, 0.84) 100%);
	box-shadow:
		0 0 0 18px rgba(255, 206, 120, 0.2),
		0 0 0 40px rgba(255, 206, 120, 0.09),
		0 20px 44px rgba(237, 144, 45, 0.38);
	animation: resortSunPulse 8.6s ease-in-out infinite;
}

.resort-processing-cloud {
	position: absolute;
	height: clamp(20px, 2.8vw, 32px);
	border-radius: 999px;
	background:
		radial-gradient(ellipse at 18% 55%, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.18) 56%, rgba(255, 255, 255, 0) 76%),
		radial-gradient(ellipse at 64% 42%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.22) 54%, rgba(255, 255, 255, 0) 74%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.56) 0%, rgba(242, 248, 255, 0.3) 100%);
	filter: blur(0.55px) saturate(102%);
	box-shadow:
		0 10px 24px rgba(87, 118, 153, 0.1),
		inset 0 -10px 16px rgba(171, 194, 217, 0.16);
	animation: resortCloudDrift linear infinite;
	will-change: transform;
}

.resort-processing-cloud::before,
.resort-processing-cloud::after {
	content: '';
	position: absolute;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(235, 245, 255, 0.06));
}

.resort-processing-cloud::before {
	width: 52%;
	height: 74%;
	left: 12%;
	top: -40%;
	filter: blur(0.9px);
	opacity: 0.72;
}

.resort-processing-cloud::after {
	width: 42%;
	height: 64%;
	right: 10%;
	top: -28%;
	filter: blur(1px);
	opacity: 0.6;
}

.resort-processing-cloud--1 {
	width: 154px;
	left: -170px;
	top: 16%;
	animation-duration: 44s;
	animation-delay: -3s;
	opacity: 0.82;
	transform: scale(1.02);
}

.resort-processing-cloud--2 {
	width: 120px;
	left: -140px;
	top: 32%;
	animation-duration: 52s;
	animation-delay: -12s;
	opacity: 0.68;
	transform: scale(0.9);
}

.resort-processing-cloud--3 {
	width: 172px;
	left: -180px;
	top: 23%;
	animation-duration: 62s;
	animation-delay: -20s;
	opacity: 0.62;
	transform: scale(1.08);
}

.resort-processing-shells {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

.resort-processing-beach {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: min(34vh, 300px);
	max-height: 300px;
	pointer-events: none;
	z-index: 2;
	overflow: hidden;
}

.resort-processing-beach__wave {
	position: absolute;
	left: -8%;
	right: -8%;
	border-radius: 50% 50% 0 0 / 56% 56% 0 0;
	background: linear-gradient(180deg, rgba(191, 225, 255, 0.74) 0%, rgba(126, 188, 232, 0.8) 72%, rgba(112, 174, 221, 0.82) 100%);
	animation: resortBeachWave 11.5s ease-in-out infinite;
}

.resort-processing-beach__wave--1 {
	height: 150px;
	bottom: 110px;
	opacity: 0.78;
}

.resort-processing-beach__wave--2 {
	height: 112px;
	bottom: 84px;
	opacity: 0.62;
	animation-duration: 13.5s;
	animation-delay: -3.6s;
}

.resort-processing-beach__foam {
	position: absolute;
	left: -6%;
	right: -6%;
	bottom: 74px;
	height: 26px;
	background:
		radial-gradient(circle at 12% 40%, rgba(255, 255, 255, 0.9) 0 6px, transparent 7px),
		radial-gradient(circle at 24% 65%, rgba(255, 255, 255, 0.84) 0 5px, transparent 6px),
		radial-gradient(circle at 39% 35%, rgba(255, 255, 255, 0.86) 0 6px, transparent 7px),
		radial-gradient(circle at 56% 62%, rgba(255, 255, 255, 0.8) 0 5px, transparent 6px),
		radial-gradient(circle at 71% 30%, rgba(255, 255, 255, 0.88) 0 6px, transparent 7px),
		radial-gradient(circle at 86% 58%, rgba(255, 255, 255, 0.82) 0 5px, transparent 6px);
	animation: resortBeachFoam 9.8s linear infinite;
}

.resort-processing-beach__sand {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 96px;
	background:
		radial-gradient(circle at 14% 26%, rgba(255, 255, 255, 0.2) 0 2px, transparent 3px),
		radial-gradient(circle at 37% 42%, rgba(255, 255, 255, 0.15) 0 2px, transparent 3px),
		radial-gradient(circle at 68% 30%, rgba(255, 255, 255, 0.17) 0 2px, transparent 3px),
		linear-gradient(180deg, #f2dfbb 0%, #ebd2a7 58%, #e4c597 100%);
	box-shadow: inset 0 8px 18px rgba(145, 105, 59, 0.14);
}

.resort-processing-shell {
	position: absolute;
	display: block;
	border-radius: 56% 44% 62% 38% / 46% 42% 58% 54%;
	background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(223, 239, 255, 0.72));
	border: 1px solid rgba(255, 255, 255, 0.86);
	box-shadow: 0 24px 54px rgba(26, 61, 94, 0.18);
	filter: blur(0.1px);
	animation: resortShellDrift 10s ease-in-out infinite;
	transform-origin: center;
	opacity: 0.94;
	will-change: transform;
}

img.resort-processing-shell {
	border-radius: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	width: auto;
	height: auto;
	max-width: min(28vw, 240px);
	max-height: min(28vw, 240px);
	object-fit: contain;
	filter: drop-shadow(0 18px 28px rgba(15, 52, 89, 0.24));
}

.resort-processing-shell::before {
	content: '';
	position: absolute;
	inset: 16% 20% auto 20%;
	height: 18%;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.7);
	filter: blur(1px);
}

.resort-processing-shell--1 {
	width: clamp(132px, 20vw, 230px);
	height: clamp(132px, 20vw, 230px);
	left: -56px;
	top: 9%;
	animation-delay: -0.4s;
}

.resort-processing-shell--2 {
	width: clamp(108px, 15vw, 176px);
	height: clamp(108px, 15vw, 176px);
	left: 14%;
	bottom: -52px;
	animation-delay: -2.3s;
}

.resort-processing-shell--3 {
	width: clamp(150px, 24vw, 286px);
	height: clamp(150px, 24vw, 286px);
	right: -82px;
	top: 18%;
	animation-delay: -1.1s;
}

.resort-processing-shell--4 {
	width: clamp(92px, 12vw, 148px);
	height: clamp(92px, 12vw, 148px);
	right: 19%;
	bottom: 12%;
	animation-delay: -3.2s;
}

.resort-processing-shell--5 {
	width: clamp(64px, 8vw, 96px);
	height: clamp(64px, 8vw, 96px);
	left: 29%;
	top: 16%;
	animation-delay: -1.7s;
}

.resort-processing-shell--6 {
	width: clamp(78px, 10vw, 132px);
	height: clamp(78px, 10vw, 132px);
	right: 34%;
	top: -26px;
	animation-delay: -2.8s;
}

.resort-processing-card {
	position: relative;
	z-index: 3;
	max-width: 640px;
	width: min(92vw, 640px);
	padding: clamp(28px, 5vw, 44px);
	border-radius: 28px;
	background: rgba(255, 252, 247, 0.84);
	backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.8);
	box-shadow: 0 28px 70px rgba(22, 33, 43, 0.2);
	text-align: center;
	animation: resortProcessingCardIn 540ms ease-out;
}

.resort-processing-eyebrow {
	margin: 0 0 10px;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #176b6a;
}

.resort-processing-title {
	margin: 0;
	font-size: clamp(30px, 5.1vw, 46px);
	line-height: 1.07;
	letter-spacing: -0.02em;
	color: #16212b;
}

.resort-processing-subtitle {
	margin: 14px auto 0;
	max-width: 42ch;
	font-size: clamp(14px, 1.9vw, 17px);
	line-height: 1.58;
	color: rgba(22, 33, 43, 0.78);
}

.resort-processing-alert {
	margin: 14px auto 0;
	max-width: 46ch;
	padding: 9px 12px;
	border-radius: 999px;
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1.35;
	color: #7c4b00;
	background: rgba(255, 238, 204, 0.84);
	border: 1px solid rgba(233, 175, 67, 0.55);
}

.resort-processing-tipbox {
	margin: 18px auto 0;
	max-width: 520px;
	padding: 14px 16px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.58);
	border: 1px solid rgba(255, 255, 255, 0.78);
}

.resort-processing-tipbox__title {
	font-size: 0.77rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #176b6a;
}

.resort-processing-tipbox__list {
	list-style: disc;
	margin: 10px 0 0;
	padding: 0 0 0 18px;
	text-align: left;
	min-height: 44px;
}

.resort-processing-tipbox__item {
	font-size: 0.94rem;
	line-height: 1.5;
	color: rgba(22, 33, 43, 0.84);
	animation: resortProcessingTipIn 360ms ease;
}

.resort-processing-tipbox__item.is-next {
	opacity: 0.66;
	margin-top: 4px;
}

.resort-processing-spinner {
	margin: 24px auto 0;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: 3px solid rgba(22, 33, 43, 0.14);
	border-top-color: #176b6a;
	animation: resortProcessingSpin 950ms linear infinite;
}

.resort-processing-page.is-error .resort-processing-spinner {
	border-top-color: #b34141;
	animation-duration: 1300ms;
}

.resort-processing-page.is-error .resort-processing-card {
	box-shadow: 0 28px 70px rgba(120, 31, 31, 0.2);
}

.resort-processing-page.is-success .resort-processing-spinner {
	border-top-color: #176b6a;
	animation-duration: 700ms;
}

@keyframes resortShellDrift {
	0% {
		transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
	}
	25% {
		transform: translate3d(14px, -18px, 0) rotate(5deg) scale(1.04);
	}
	50% {
		transform: translate3d(-10px, 12px, 0) rotate(-4deg) scale(0.98);
	}
	75% {
		transform: translate3d(12px, 20px, 0) rotate(3deg) scale(1.03);
	}
	100% {
		transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
	}
}

@keyframes resortProcessingSpin {
	to {
		transform: rotate(360deg);
	}
}

@keyframes resortProcessingCardIn {
	from {
		opacity: 0;
		transform: translate3d(0, 18px, 0) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
	}
}

@keyframes resortSunPulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.025);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes resortCloudDrift {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(100vw + 260px));
	}
}

@keyframes resortBeachWave {
	0% {
		transform: translateX(0) scaleY(1);
	}
	50% {
		transform: translateX(1.3%) scaleY(1.05);
	}
	100% {
		transform: translateX(0) scaleY(1);
	}
}

@keyframes resortBeachFoam {
	0% {
		transform: translateX(0);
		opacity: 0.82;
	}
	50% {
		transform: translateX(0.9%);
		opacity: 0.9;
	}
	100% {
		transform: translateX(0);
		opacity: 0.82;
	}
}

@media (prefers-reduced-motion: reduce) {
	.resort-processing-sun,
	.resort-processing-cloud,
	.resort-processing-beach__wave,
	.resort-processing-beach__foam,
	.resort-processing-shell,
	.resort-processing-spinner,
	.resort-processing-tipbox__item {
		animation: none !important;
	}
}

@keyframes resortProcessingTipIn {
	from {
		opacity: 0;
		transform: translateY(4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 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;
	}

	.resort-booking-lock-notice {
		flex-direction: column;
		align-items: stretch;
	}

	.resort-booking-lock-notice__cancel {
		width: 100%;
	}

	.resort-processing-page {
		padding: 18px;
	}

	.resort-processing-card {
		padding: 28px 22px;
		border-radius: 24px;
	}

	.resort-processing-sky {
		height: min(42vh, 300px);
	}

	.resort-processing-sun {
		right: 22px;
		top: 16px;
	}

	.resort-processing-cloud {
		height: clamp(18px, 4vw, 28px);
	}

	.resort-processing-shell--1 {
		width: 170px;
		height: 170px;
	}

	.resort-processing-shell--3 {
		width: 200px;
		height: 200px;
	}

	.resort-processing-shell--6 {
		display: none;
	}

	.resort-processing-beach {
		height: min(30vh, 220px);
		max-height: 220px;
	}

	.resort-processing-beach__wave--1 {
		height: 110px;
		bottom: 82px;
	}

	.resort-processing-beach__wave--2 {
		height: 84px;
		bottom: 66px;
	}

	.resort-processing-beach__foam {
		bottom: 56px;
	}

	.resort-processing-beach__sand {
		height: 74px;
	}
}

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

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

	.btn {
		padding: 12px 15px;
	}

	.resort-processing-page {
		padding: 14px;
	}

	.resort-processing-card {
		width: min(94vw, 640px);
		padding: 22px 16px;
		border-radius: 20px;
	}

	.resort-processing-shell--5 {
		display: none;
	}

	img.resort-processing-shell {
		max-width: min(34vw, 160px);
		max-height: min(34vw, 160px);
	}
}

/* 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;
	}
}

.resort-booking-zone-map-card {
	border: 1px solid #dce6f0;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 14px 30px rgba(20, 43, 69, 0.08);
	background: #fff;
}

.resort-booking-zone-map__hint {
	margin-top: 0;
	margin-bottom: 12px;
}

.resort-booking-zone-map {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #d6e1ec;
	background: #f1f7fd;
}

.resort-booking-zone-map__image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.resort-booking-zone-map__overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	pointer-events: none;
}

.resort-booking-zone-map__link,
.resort-booking-zone-map__link .resort-booking-zone-map__path {
	pointer-events: auto;
	cursor: pointer;
}

.resort-booking-zone-map__path {
	fill: rgba(14, 80, 135, 0.2);
	stroke: none;
	transition: fill 0.2s ease;
}

.resort-booking-zone-map__link:hover .resort-booking-zone-map__path,
.resort-booking-zone-map__link:focus-visible .resort-booking-zone-map__path {
	fill: rgba(15, 125, 167, 0.38);
}

.resort-booking-zone-map__link.is-selected .resort-booking-zone-map__path {
	fill: rgba(16, 146, 111, 0.45);
}

.resort-booking-zone-map__path.is-unmapped {
	fill: rgba(132, 149, 166, 0.16);
	stroke: none;
	pointer-events: none;
}

@media (max-width: 720px) {
	.resort-booking-zone-map-card .card-body {
		padding: 14px;
	}

	.resort-booking-zone-map__hint {
		margin-bottom: 10px;
	}
}

/* ─── 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;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.rbf-map-section #rbf-image-map-container {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	cursor: grab;
	overflow: hidden;
	position: relative;
}

@media (max-width: 600px) {
	.rbf-map-section #rbf-image-map-container.is-mobile-viewport {
		height: 400px;
	}

	.rbf-map-section #rbf-image-map-container.is-mobile-viewport #rbf-map-image {
		position: absolute;
		top: 0;
		left: 0;
		width: auto !important;
		height: auto !important;
		max-width: none !important;
	}

	.rbf-map-section #rbf-image-map-container.is-mobile-viewport #rbf-map-overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: auto;
		height: auto;
	}
}

.rbf-map-section #rbf-image-map-container.is-dragging {
	cursor: grabbing;
}

.rbf-map-section #rbf-map-image,
.rbf-map-section #rbf-map-overlay {
	will-change: transform;
	transition: transform 0.12s ease-out;
}

/* Adaptive spot-code labels: keep inline text only when it fits, otherwise reveal fallback on hover/selection. */
.rbf-map-section .resort-place-node.is-compact-label .resort-place-label--inline {
	display: none;
}

.rbf-map-section #rbf-image-map-container.is-dragging #rbf-map-image,
.rbf-map-section #rbf-image-map-container.is-dragging #rbf-map-overlay {
	transition: none;
}

.rbf-map-zoom-controls {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 35;
	display: inline-flex;
	gap: 6px;
	padding: 6px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid #d1deea;
	box-shadow: 0 8px 18px rgba(8, 25, 42, 0.16);
}

.rbf-map-zoom-btn {
	border: 1px solid #bdd0e2;
	border-radius: 8px;
	background: #fff;
	color: #264463;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	padding: 7px 9px;
	min-width: 34px;
	min-height: 32px;
	cursor: pointer;
}

.rbf-map-zoom-btn:hover {
	background: #f3f8fd;
	border-color: #9eb9d2;
}

.rbf-map-zoom-btn.is-reset {
	font-size: 11px;
	min-width: 52px;
}

/* 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;
	}
}