﻿html {
  font-size: 14px;
}

form .input-group {
	align-items: stretch;
}

form .input-group > .form-control,
form .input-group > .btn {
	min-height: 38px;
	height: 38px;
	display: flex;
	align-items: center;
}

form .input-group > .form-control {
	padding: 0.375rem 0.75rem !important;
}

form .input-group > .btn {
	padding: 0.375rem 0.75rem !important;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.2rem rgba(48, 68, 88, 0.14);
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

:root {
    --store-font-family: "Canarao", "Source Sans 3", "Source Sans Pro", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    --store-text-color: #24384c;
    --store-bg: transparent;
    --store-card-bg: rgba(255, 255, 255, 0.95);
    --store-card-radius: 18px;
    --store-card-shadow: 0 10px 30px rgba(36, 56, 76, 0.08);
    --store-max-width: 1180px;
    --store-padding: 32px;
    --store-primary: #00a9e1;
    --store-primary-dark: #304458;
    --store-primary-text: #ffffff;
    --store-border-soft: rgba(48, 68, 88, 0.12);
    --store-border-soft-strong: rgba(48, 68, 88, 0.18);
    --store-surface-soft: #f7fafc;
}

body {
    font-family: var(--store-font-family, inherit);
    color: var(--store-text-color, inherit);
    background: var(--store-bg, transparent);
}

.store-card .store-page-title {
	color: var(--store-primary-dark);
	font-weight: 500;
	margin: 0;
	text-align: left;
	letter-spacing: -0.01em;
}

.store-card ul {
	padding-left: 1.1rem;
}

#divSummary .store-page-title {
	margin-top: 0;
}

#cardInfo {
	margin-top: 12px;
}

.store-shell {
    min-height: 100vh;
    display: flex;
    align-items: start;
    justify-content: center;
    padding: 24px 16px 40px;
}

.store-card {
    width: 100%;
    max-width: var(--store-max-width);
    background: var(--store-card-bg);
    border-radius: var(--store-card-radius);
    box-shadow: var(--store-card-shadow);
    padding: var(--store-padding);
}

body.booking-flow-layout .store-card,
.store-shell.booking-flow-layout .store-card,
.store-card.booking-flow-layout {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 12px 0 28px;
    max-width: 1220px;
}

.store-card h1,
.store-card h2,
.store-card h3,
.store-card h4,
.store-card h5,
.store-card label,
.store-card .form-check-label {
    font-family: inherit !important;
}

.nav{
    display: inline-block !important;
}

@keyframes spinner {
    to {transform: rotate(360deg);}
}

.spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    margin-left: 5px;
    margin-top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    border-top-color: #000;
    animation: spinner .6s linear infinite;
}

#timeIn {
    text-align: center;
    text-align-last: center;
    -moz-text-align-last: center;
}

body .store-card #dateIn,
body .store-card #timeIn,
body .store-card #adultCount,
body .store-card #childCount,
body .store-card #infantCount,
body .store-card #eduCount,
body .store-card #oldCount,
body .store-card #disCount {
	text-align: center;
}

body .store-card #timeIn {
	text-align-last: center;
	-moz-text-align-last: center;
}

.store-card .pages-booking {
	max-width: 1140px;
	margin: 0 auto;
 animation: booking-page-fade-in 1s cubic-bezier(0.22, 1, 0.36, 1) both;
	will-change: opacity, transform;
}

.receipt-page {
  animation: booking-page-fade-in 1s cubic-bezier(0.22, 1, 0.36, 1) both;
	will-change: opacity, transform;
}

@keyframes booking-page-fade-in {
	from {
		opacity: 0;
       transform: translateY(24px) scale(0.985);
	}
	to {
		opacity: 1;
       transform: translateY(0) scale(1);
	}
}

.store-card .pages-booking .booking-stepper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	align-items: start;
	margin: 0 auto 30px;
	max-width: 860px;
}

.store-card .pages-booking .booking-step {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
	color: rgba(48, 68, 88, 0.65);
	font-size: 0.92rem;
}

.store-card .pages-booking .booking-step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 16px;
	left: calc(50% + 24px);
	width: calc(100% - 48px);
	height: 1px;
	background: rgba(48, 68, 88, 0.18);
}

.store-card .pages-booking .booking-step-number {
	width: 34px;
	height: 34px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #eef3f8;
	color: var(--store-primary-dark);
	font-weight: 600;
	border: 1px solid rgba(48, 68, 88, 0.08);
	z-index: 1;
}

.store-card .pages-booking .booking-step.is-active .booking-step-number {
	background: var(--store-primary-dark);
	color: #fff;
	box-shadow: 0 0 0 3px rgba(0, 169, 224, 0.14);
}

.store-card .pages-booking .booking-step.is-complete .booking-step-number {
	background: rgba(48, 68, 88, 0.12);
	color: var(--store-primary-dark);
}

.store-card .pages-booking .booking-step-label {
	line-height: 1.2;
}

.store-card .pages-booking .booking-panel,
.store-card .pages-booking .booking-section,
.store-card .pages-booking .booking-inline-summary,
.store-card .pages-booking .booking-package-card,
.store-card .pages-booking .booking-extra-card,
.store-card .pages-booking .booking-pay-form-shell,
.store-card .pages-booking .booking-summary-box {
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid var(--store-border-soft);
	border-radius: 24px;
	box-shadow: 0 10px 30px rgba(36, 56, 76, 0.05);
}

.store-card .pages-booking .booking-page-header {
	display: flex;
	justify-content: space-between;
	align-items: start;
	gap: 16px;
	margin-bottom: 24px;
}

.store-card .pages-booking .booking-page-header-tight {
	margin-bottom: 18px;
}

.store-card .pages-booking .booking-page-header-pay {
	margin-bottom: 26px;
}

.store-card .pages-booking .store-page-subtitle {
	margin: 8px 0 0;
	font-size: 1rem;
	font-weight: 400;
	color: rgba(36, 56, 76, 0.74);
}

.store-card .pages-booking .store-page-subtitle span {
	display: inline-block;
	margin-left: 6px;
	font-size: 0.92rem;
	color: rgba(36, 56, 76, 0.55);
}

.store-card .pages-booking .booking-guest-grid {
	display: grid;
	gap: 14px;
}

.store-card .pages-booking .booking-guest-grid-modern {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.store-card .pages-booking .booking-guest-grid-inline {
	margin-bottom: 28px;
}

.store-card .pages-booking .booking-guest-card {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 18px 20px;
	border: 1px solid var(--store-border-soft);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.92);
}

.store-card .pages-booking .booking-guest-label {
	margin: 0;
	min-width: 0;
	line-height: 1.35;
	font-weight: 500;
}

.store-card .pages-booking .booking-guest-label-reduced {
	max-width: 320px;
}

.store-card .pages-booking .booking-guest-control {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 4px;
	border: 1px solid rgba(48, 68, 88, 0.1);
	border-radius: 999px;
	background: rgba(247, 250, 252, 0.96);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.store-card .pages-booking .booking-guest-control.is-selected {
	border-color: rgba(0, 169, 224, 0.25);
	background: rgba(233, 245, 250, 0.9);
}

.store-card .pages-booking .booking-guest-btn {
	appearance: none;
	border: 0;
	background: #fff;
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--store-primary-dark);
	line-height: 1;
	border-radius: 999px;
	box-shadow: 0 8px 18px rgba(48, 68, 88, 0.08);
}

.store-card .pages-booking .booking-guest-btn:hover {
	background: rgba(255, 255, 255, 0.92);
}

.store-card .pages-booking .booking-guest-btn:active {
	transform: translateY(1px);
}

.store-card .pages-booking .booking-guest-input {
	width: 44px;
	min-width: 44px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 0;
	margin: 0 !important;
	padding: 0 !important;
	background: transparent;
	box-shadow: none;
	text-align: center;
	font-weight: 600;
	line-height: 34px;
	color: var(--store-primary-dark);
}

.store-card .pages-booking .booking-guest-input::-webkit-outer-spin-button,
.store-card .pages-booking .booking-guest-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.store-card .pages-booking .booking-guest-input[type=number] {
	-moz-appearance: textfield;
}

.store-card .pages-booking .booking-section {
 padding: 18px 20px;
	margin-bottom: 18px;
}

.store-card .pages-booking .booking-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
}

.store-card .pages-booking .booking-section-title {
	font-weight: 500;
	color: var(--store-primary-dark);
}

.store-card .pages-booking .booking-calendar-btn,
.store-card .pages-booking .booking-strip-nav {
	appearance: none;
	border: 1px solid var(--store-border-soft);
	background: rgba(255, 255, 255, 0.7);
	color: rgba(36, 56, 76, 0.62);
	border-radius: 999px;
    width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.92rem;
	box-shadow: none;
}

.store-card .pages-booking .booking-date-panel {
	position: relative;
	overflow: visible;
}

.store-card .pages-booking .booking-date-strip-wrap {
	display: grid;
	grid-template-columns: auto 1fr auto auto;
	align-items: center;
  gap: 10px;
}

.store-card .pages-booking .booking-date-strip {
	display: grid;
	grid-auto-flow: column;
  grid-auto-columns: minmax(112px, 1fr);
	gap: 12px;
	overflow-x: auto;
    padding-bottom: 2px;
	scrollbar-width: thin;
}

.store-card .pages-booking .booking-date-chip,
.store-card .pages-booking .booking-time-chip {
	appearance: none;
	border: 1px solid var(--store-border-soft-strong);
	background: rgba(255, 255, 255, 0.92);
	color: var(--store-primary-dark);
    border-radius: 18px;
 padding: 9px 12px;
	font-weight: 500;
	text-align: center;
    min-height: 52px;
	display: flex;
	flex-direction: column;
	justify-content: center;
   gap: 2px;
}

.store-card .pages-booking .booking-date-chip {
	white-space: nowrap;
	flex-wrap: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.store-card .pages-booking .booking-date-chip.is-active,
.store-card .pages-booking .booking-time-chip.is-active {
	background: rgba(233, 245, 250, 0.95);
	color: var(--store-primary-dark);
	border-color: rgba(0, 169, 224, 0.42);
	box-shadow: 0 12px 26px rgba(0, 169, 224, 0.12);
}

.store-card .pages-booking .booking-time-chip small {
	font-size: 0.8rem;
	font-weight: 500;
	color: rgba(48, 68, 88, 0.62);
}

.store-card .pages-booking .booking-time-chip.is-sold-out {
	opacity: 0.52;
	cursor: not-allowed;
	background: rgba(247, 250, 252, 0.92);
}

.store-card .pages-booking .booking-date-picker {
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	opacity: 0;
	pointer-events: none;
	height: 0;
	padding: 0;
	border: 0;
}

.store-card .pages-booking .booking-time-grid {
	display: grid;
 grid-template-columns: repeat(auto-fit, minmax(92px, 96px));
	gap: 10px;
 justify-content: center;
}

.store-card .pages-booking .booking-time-chip {
	width: 96px;
	max-width: 100%;
   min-height: 64px;
}

.store-card .pages-booking .booking-time-loading {
  min-height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
  gap: 0;
	text-align: center;
  padding: 6px 0;
	border-radius: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.store-card .pages-booking .booking-time-loading-text {
   display: none;
}

.store-card .pages-booking .booking-time-loading-spinner {
    width: 32px;
	height: 32px;
	border-radius: 999px;
	position: relative;
 background: transparent;
	border: 3px solid rgba(0, 169, 224, 0.18);
	border-top-color: var(--store-primary-dark);
	animation: booking-time-spinner-rotate 0.7s linear infinite;
	box-shadow: none;
}

.store-card .pages-booking .booking-time-loading-spinner::before {
    content: none;
}

.store-card .pages-booking .booking-time-loading-spinner::after {
    content: none;
}

@keyframes booking-time-spinner-rotate {
	to {
		transform: rotate(360deg);
	}
}

.store-card .pages-booking .booking-inline-summary {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	padding: 18px 20px;
	margin-bottom: 24px;
}

.store-card .pages-booking .booking-inline-summary-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.store-card .pages-booking .booking-inline-summary-item span {
	font-size: 0.86rem;
	color: rgba(36, 56, 76, 0.58);
}

.store-card .pages-booking .booking-inline-summary-item strong {
	font-weight: 500;
}

.store-card .pages-booking .booking-package-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 28px;
}

.store-card .pages-booking .booking-package-card {
	appearance: none;
	padding: 0;
	text-align: left;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.store-card .pages-booking .booking-package-card:hover {
	transform: translateY(-1px);
	border-color: rgba(0, 169, 224, 0.28);
}

.store-card .pages-booking .booking-package-card.is-selected {
	border-color: rgba(0, 169, 224, 0.42);
	box-shadow: 0 16px 34px rgba(0, 169, 224, 0.18);
	transform: translateY(-2px);
}

.store-card .pages-booking .booking-package-card.is-disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.store-card .pages-booking .booking-package-card.is-unavailable {
	opacity: 0.72;
	filter: grayscale(0.18);
	border-color: rgba(48, 68, 88, 0.16);
	box-shadow: 0 8px 24px rgba(36, 56, 76, 0.04);
}

.store-card .pages-booking .booking-package-card.is-unavailable:hover {
	transform: none;
	border-color: rgba(48, 68, 88, 0.16);
}

.store-card .pages-booking .booking-package-hero {
	position: relative;
 height: 340px;
	background: #dfe8ef;
}


.store-card .pages-booking .booking-package-image {
	width: 100%;
	height: 100%;
  object-fit: cover;
    object-position: top center;
	display: block;
}

.store-card .pages-booking .booking-package-hero-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: end;
	padding: 24px;
	background: linear-gradient(180deg, rgba(16, 29, 41, 0.04) 0%, rgba(16, 29, 41, 0.58) 100%);
	color: #fff;
}

.store-card .pages-booking .booking-package-title {
 font-size: 1.7rem;
	font-weight: 600;
 margin-bottom: 6px;
 	line-height: 1.1;
}


.store-card .pages-booking .booking-package-subtitle {
 font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.9);
   line-height: 1.4;
}

.store-card .pages-booking .booking-package-note {
	display: none;
	margin-top: 14px;
	padding: 12px 14px;
	border-radius: 14px;
	background: rgba(48, 68, 88, 0.06);
	color: rgba(36, 56, 76, 0.78);
	font-size: 0.92rem;
	line-height: 1.4;
}

.store-card .pages-booking .booking-package-card.is-unavailable .booking-package-note-adult-only {
	display: block;
}

.store-card .pages-booking .booking-package-body {
    padding: 18px 20px 16px;
	flex: 1;
}

.store-card .pages-booking .booking-package-feature-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
  gap: 12px;
}

.store-card .pages-booking .booking-package-feature-list li {
	position: relative;
	padding-left: 34px;
	font-size: 0.98rem;
	line-height: 1.45;
	color: rgba(36, 56, 76, 0.84);
}


.store-card .pages-booking .booking-package-feature-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 1px;
	width: 22px;
	height: 22px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 169, 224, 0.12);
	color: var(--store-primary);
	font-size: 0.8rem;
	font-weight: 700;
}

.store-card .pages-booking .booking-package-bottom {
	padding: 20px 24px 24px;
	border-top: 1px solid rgba(48, 68, 88, 0.08);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: end;
	gap: 16px;
}

.store-card .pages-booking .booking-package-selected-badge {
	display: none;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(0, 169, 224, 0.12);
	color: var(--store-primary-dark);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border: 1px solid rgba(0, 169, 224, 0.18);
	flex-basis: 100%;
	width: fit-content;
}

.store-card .pages-booking .booking-package-card.is-selected .booking-package-selected-badge {
	display: inline-flex;
	align-items: center;
}

.store-card .pages-booking .booking-package-total-block {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.store-card .pages-booking .booking-package-total-label,
.store-card .pages-booking .booking-package-price-unit {
	font-size: 0.86rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: rgba(36, 56, 76, 0.54);
}

.store-card .pages-booking .booking-package-price-value {
	font-size: 2rem;
	font-weight: 700;
	color: var(--store-primary-dark);
	min-height: 2.5rem;
}

.store-card .pages-booking .booking-package-price-unit {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
	min-height: 1.4rem;
	text-align: right;
}

.store-card .pages-booking .booking-package-price-line {
	font-size: 0.86rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: rgba(36, 56, 76, 0.54);
}

.store-card .pages-booking .booking-package-price-line-subtle {
	font-size: 0.78rem;
	color: rgba(36, 56, 76, 0.46);
}

.store-card .pages-booking .booking-extras-grid {
	display: grid;
   grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.store-card .pages-booking .booking-extra-card {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 16px;
	padding: 18px;
}

.store-card .pages-booking .booking-extra-card--minimal {
	grid-template-columns: 64px 1fr auto;
}

.store-card .pages-booking .booking-extra-image-wrap {
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(0, 169, 224, 0.12), rgba(48, 68, 88, 0.08));
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.store-card .pages-booking .booking-extra-image-wrap--icon {
	width: 72px;
	height: 72px;
	padding: 14px;
	background: #eef5f8;
}

.store-card .pages-booking .booking-extra-image-wrap--minimal {
	border-radius: 20px;
}

@media (max-width: 1199.98px) {
	.store-card .pages-booking .booking-package-hero {
        height: 320px;
	}
}

@media (max-width: 991.98px) {
	.store-card .pages-booking .booking-package-grid,
	.store-card .pages-booking .booking-extras-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.store-card .pages-booking .booking-package-hero {
        height: 300px;
	}
}

@media (max-width: 767.98px) {
	.store-card .pages-booking .booking-package-grid,
	.store-card .pages-booking .booking-extras-grid {
		grid-template-columns: 1fr;
	}

	.store-card .pages-booking .booking-package-hero {
        height: 280px;
	}
}

.store-card .pages-booking .booking-extra-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: flex;
}

.store-card .pages-booking .booking-extra-image--icon {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.store-card .pages-booking .booking-extra-title {
	font-weight: 500;
	line-height: 1.4;
   white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.store-card .pages-booking .booking-extra-price,
.store-card .pages-booking .booking-muted {
	color: rgba(48, 68, 88, 0.68);
}

.store-card .pages-booking .booking-extra-price {
	white-space: nowrap;
}

.store-card .pages-booking .booking-extra-body {
	min-width: 0;
}

.store-card .pages-booking .booking-extra-control {
	justify-self: end;
}

.store-card .pages-booking .booking-footer-panel {
	background: transparent;
	border: 0;
	padding: 0;
	box-shadow: none;
	margin-top: 26px;
	margin-bottom: 0;
	display: flex;
	justify-content: space-between;
	gap: 12px;
	align-items: center;
}

.store-card .pages-booking .booking-footer-panel-compact {
	margin-top: 28px;
}

.store-card .pages-booking .booking-continue-btn {
	min-width: 200px;
	min-height: 46px;
	border-radius: 999px;
	padding-inline: 22px;
	border: 0;
	background: var(--store-primary-dark);
}

.store-card .pages-booking .booking-back-btn,
.store-card .pages-booking .booking-back-btn-light {
	min-width: 140px;
	min-height: 42px;
	border-radius: 999px;
	padding-inline: 18px;
	border-color: var(--store-border-soft-strong);
	color: var(--store-primary-dark);
	background: rgba(255, 255, 255, 0.72);
}

.store-card .pages-booking .booking-text-link {
	border: 0;
	background: transparent;
	color: var(--store-primary-dark);
	padding: 0;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.store-card .pages-booking .booking-pay-layout {
	align-items: start;
}

.store-card .pages-booking .booking-pay-form-shell,
.store-card .pages-booking .booking-summary-box {
	padding: 24px;
}

.store-card .pages-booking .booking-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.store-card .pages-booking .booking-form-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.store-card .pages-booking .booking-form-field-full {
	grid-column: 1 / -1;
}

.store-card .pages-booking .booking-form-field label {
	font-weight: 500;
}

.store-card .pages-booking .booking-form-field .form-control,
.store-card .pages-booking .booking-input-group-light .form-control {
	min-height: 48px;
	border-radius: 16px;
	border-color: var(--store-border-soft-strong);
	padding: 0.8rem 0.95rem !important;
	background: rgba(255, 255, 255, 0.92);
}

.store-card .pages-booking .booking-input-group-light {
	gap: 10px;
}

.store-card .pages-booking.pages-pay .booking-input-group-light {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 140px;
	align-items: center;
	gap: 12px;
	width: 100%;
}

.store-card .pages-booking .booking-input-group-light > .btn {
	border-radius: 16px !important;
	border-color: var(--store-border-soft-strong);
	background: rgba(255, 255, 255, 0.9);
	color: var(--store-primary-dark);
	min-height: 48px;
	height: 48px;
}

.store-card .pages-booking.pages-pay .booking-input-group-light > .form-control {
	width: 100%;
	min-width: 0;
	border-radius: 16px !important;
	min-height: 48px;
	height: 48px;
}

.store-card .pages-booking.pages-pay .booking-input-group-light > .btn {
	width: 140px;
	min-width: 140px;
	justify-self: end;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-inline: 16px !important;
	white-space: nowrap;
}

.store-card .pages-booking .booking-pay-actions {
	margin-top: 22px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.store-card .pages-booking .booking-form-check-light {
	padding-left: 1.6rem;
}

.store-card .pages-booking .booking-pay-cta {
	width: 100%;
	min-height: 50px;
	border-radius: 18px;
	font-weight: 500;
	border: 0;
	background: var(--store-primary-dark);
}

.store-card .pages-booking .booking-pay-cta:not(.disabled):not(:disabled),
.store-card .pages-booking .booking-pay-cta:not(.disabled):not(:disabled):hover,
.store-card .pages-booking .booking-pay-cta:not(.disabled):not(:disabled):focus {
	background: var(--store-primary-dark);
	border-color: var(--store-primary-dark);
}

.store-card .pages-booking .booking-summary-box.spinner2 {
	position: relative;
	pointer-events: none;
}

.store-card .pages-booking .booking-summary-box.spinner2::after {
	content: "";
	position: absolute;
	top: 20px;
	right: 20px;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	border: 3px solid rgba(0, 169, 224, 0.18);
	border-top-color: var(--store-primary-dark);
	animation: booking-time-spinner-rotate 0.7s linear infinite;
}

.booking-pay-notice {
	position: fixed;
	left: 50%;
	bottom: 24px;
	transform: translate(-50%, 16px);
	max-width: min(92vw, 420px);
	padding: 12px 18px;
	border-radius: 999px;
	background: rgba(36, 56, 76, 0.94);
	color: #fff;
	font-size: 0.95rem;
	line-height: 1.4;
	box-shadow: 0 18px 36px rgba(36, 56, 76, 0.22);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 3000;
	text-align: center;
}

.booking-pay-notice.is-visible {
	opacity: 1;
	transform: translate(-50%, 0);
}

.store-card .pages-booking .booking-summary-box-head {
	margin-bottom: 18px;
}

.store-card .pages-booking .booking-summary-meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 18px;
}

.store-card .pages-booking .booking-summary-meta-item,
.store-card .pages-booking .booking-summary-line,
.store-card .pages-booking .booking-summary-total {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(48, 68, 88, 0.08);
}

.store-card .pages-booking .booking-summary-meta-item {
	flex-direction: column;
	border-bottom: 0;
	padding: 0;
}

.store-card .pages-booking .booking-summary-meta-item span,
.store-card .pages-booking .booking-summary-line span,
.store-card .pages-booking .booking-summary-note {
	color: rgba(36, 56, 76, 0.62);
}

.store-card .pages-booking .booking-summary-line-section strong {
	display: none;
}

.store-card .pages-booking .booking-summary-line-accent span,
.store-card .pages-booking .booking-summary-line-accent strong {
	color: #0077c8;
}

.store-card .pages-booking .booking-summary-line-subtle strong {
	font-weight: 500;
}

.store-card .pages-booking .booking-summary-total {
	padding-top: 18px;
	border-bottom: 0;
	font-size: 1.05rem;
	font-weight: 600;
}

.store-card .pages-booking .booking-summary-note {
	margin-top: 18px;
	font-size: 0.94rem;
	line-height: 1.55;
}

@media (max-width: 991px) {
	.store-card .pages-booking .booking-time-grid {
     grid-template-columns: repeat(auto-fit, minmax(88px, 92px));
	}

	.store-card .pages-booking .booking-package-grid,
	.store-card .pages-booking .booking-extras-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.store-card .pages-booking .booking-inline-summary {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.store-shell {
		padding-inline: 12px;
	}

	.store-card .pages-booking .booking-stepper {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 8px;
	}

	.store-card .pages-booking .booking-step:not(:last-child)::after {
		top: 16px;
		left: calc(50% + 18px);
		width: calc(100% - 36px);
	}

	.store-card .pages-booking .booking-page-header,
	.store-card .pages-booking .booking-footer-panel,
	.store-card .pages-booking .booking-form-grid,
	.store-card .pages-booking .booking-package-grid,
	.store-card .pages-booking .booking-extras-grid,
	.store-card .pages-booking .booking-inline-summary,
	.store-card .pages-booking .booking-summary-meta {
		grid-template-columns: 1fr;
	}

	.store-card .pages-booking .booking-date-strip-wrap {
		grid-template-columns: 1fr auto;
	}

	.store-card .pages-booking .booking-page-header {
		flex-direction: column;
	}

	.store-card .pages-booking .booking-guest-grid-modern {
		grid-template-columns: 1fr;
	}

	.store-card .pages-booking .booking-guest-card,
	.store-card .pages-booking .booking-extra-card {
		flex-direction: column;
		align-items: flex-start;
	}

	.store-card .pages-booking .booking-guest-card {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		padding: 16px 18px;
	}

	.store-card .pages-booking .booking-guest-label {
		flex: 1 1 auto;
		font-size: 0.98rem;
		line-height: 1.3;
	}

	.store-card .pages-booking .booking-guest-control {
		margin-left: auto;
		flex: 0 0 auto;
		gap: 8px;
		padding: 3px;
	}

	.store-card .pages-booking .booking-guest-btn {
		width: 32px;
		height: 32px;
	}

	.store-card .pages-booking .booking-guest-input {
		width: 38px;
		min-width: 38px;
		height: 32px;
		line-height: 32px;
	}

    .store-card .pages-booking .booking-extra-card,
	.store-card .pages-booking .booking-extra-card--minimal {
		display: grid;
		grid-template-columns: 64px minmax(0, 1fr) auto;
		align-items: center;
		gap: 12px;
	}

	.store-card .pages-booking .booking-extra-card {
		flex-direction: unset;
		align-items: center;
	}

	.store-card .pages-booking .booking-extra-body {
		min-width: 0;
	}

	.store-card .pages-booking .booking-extra-control,
	.store-card .pages-booking .booking-guest-control {
		justify-self: flex-start;
	}

	.store-card .pages-booking .booking-extra-control {
		justify-self: end;
		margin-left: 0;
	}

	.store-card .pages-booking .booking-strip-nav {
		display: none;
	}

	.store-card .pages-booking .booking-time-grid {
       grid-template-columns: repeat(3, minmax(84px, 88px));
		gap: 8px;
       justify-content: center;
	}

	.store-card .pages-booking .booking-time-chip {
		width: 100%;
	}

	.store-card .pages-booking.pages-pay .booking-input-group-light {
		grid-template-columns: minmax(0, 1fr) 128px;
		gap: 10px;
	}

@media (prefers-reduced-motion: reduce) {
	.store-card .pages-booking,
	.receipt-page {
		animation: none;
	}
}

	.store-card .pages-booking.pages-pay .booking-input-group-light > .btn {
		width: 128px;
		min-width: 128px;
	}

	.store-card .pages-booking .booking-continue-btn,
	.store-card .pages-booking .booking-back-btn {
		width: 100%;
	}

	.store-card .pages-booking .booking-footer-panel {
		flex-direction: column-reverse;
	}
}

@media (max-width: 420px) {
	.store-card .pages-booking .booking-step {
		font-size: 0.78rem;
	}

	.store-card .pages-booking .booking-step-label {
		font-size: 0.76rem;
		word-break: break-word;
	}

	.store-card .pages-booking .booking-date-chip,
	.store-card .pages-booking .booking-time-chip {
        padding: 8px 10px;
		min-height: 48px;
	}
}

.ui-datepicker {
    background: rgba(255, 255, 255, 0.98);
	font-size: 13px !important;
	padding: 14px;
	border: 1px solid var(--store-border-soft) !important;
	box-shadow: 0 18px 40px rgba(36, 56, 76, 0.12);
	border-radius: 22px;
	width: 292px;
    font-family: var(--store-font-family) !important;
    box-sizing: content-box;
    position: absolute !important;
    margin-top: 10px;
    z-index: 2000 !important;
}

body.booking-datepicker-open {
    overflow-x: hidden;
}

.ui-datepicker.ui-front {
    position: absolute !important;
}

.ui-datepicker .ui-datepicker-header {
    background: transparent;
	color: var(--store-primary-dark);
	font-size: 1rem;
	font-weight: 600;
    text-align: center;
    padding: 4px 40px 12px;
	border-bottom: 1px solid rgba(48, 68, 88, 0.08);
	margin-bottom: 8px;
    position: relative;
    border-radius: 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    background: rgba(247, 250, 252, 0.96);
	border: 1px solid var(--store-border-soft);
    cursor: pointer;
    padding: 0;
	color: rgba(36, 56, 76, 0.72);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
	height: 30px;
	border-radius: 999px;
}

.ui-datepicker .ui-datepicker-prev::after, a.ui-datepicker-prev.ui-corner-all.ui-state-disabled, a.ui-datepicker-prev.ui-corner-all {
    content: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 246.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z"/></svg>');
}

.ui-datepicker .ui-datepicker-next::after, a.ui-datepicker-next.ui-corner-all {
    content: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M278.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-160 160c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L210.7 256 73.4 118.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l160 160z"/></svg>');
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    color: var(--store-primary-dark);
	border-color: rgba(0, 169, 224, 0.28);
}

.ui-datepicker .ui-datepicker-prev {
    left: 2px;
	top: 0;
}

.ui-datepicker .ui-datepicker-next {
    right: 2px;
	top: 0;
}

.ui-datepicker table {
    width: 100%;
    border-collapse: separate;
	border-spacing: 4px;
	margin-top: 2px;
}

.ui-datepicker table thead th {
    text-align: center;
    font-weight: 600;
	color: rgba(36, 56, 76, 0.55);
    padding: 5px 0;
}

.ui-datepicker table td {
    text-align: center;
    padding: 0;
    border: 1px solid transparent;
    cursor: pointer;
    width: 34px;
	height: 34px;
    vertical-align: middle;
}

.ui-datepicker table td a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    text-decoration: none;
    color: var(--store-primary-dark);
    transition: background 0.3s ease, color 0.3s ease;
    border-radius: 999px;
}

.ui-datepicker table td:hover a {
    background-color: rgba(0, 169, 224, 0.1);
	color: var(--store-primary-dark);
}

.ui-datepicker table td.ui-datepicker-current-day a {
    background-color: var(--store-primary-dark);
    color: white;
}

.swal-modal {
	border-radius: 24px;
	font-family: var(--store-font-family);
}

.swal-button {
	background: var(--store-primary-dark) !important;
	border-radius: 999px;
	padding: 10px 20px;
}

.swal-button:focus {
	box-shadow: 0 0 0 3px rgba(0, 169, 224, 0.16) !important;
}

.receipt-page {
	padding-top: 20px;
	padding-bottom: 40px;
}

.receipt-shell {
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid var(--store-border-soft);
	border-radius: 28px;
	box-shadow: 0 18px 50px rgba(36, 56, 76, 0.08);
	padding: 20px 20px 18px;
	max-width: 860px;
	margin: 0 auto;
}

.receipt-header {
	margin-bottom: 14px;
}

.receipt-brand {
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--store-primary-dark);
	margin-bottom: 14px;
}

.receipt-divider {
	height: 1px;
	background: linear-gradient(90deg, rgba(48, 68, 88, 0.16), rgba(48, 68, 88, 0.03));
}

.receipt-hero {
	margin-bottom: 18px;
}

.receipt-kicker {
	display: inline-flex;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(0, 169, 224, 0.1);
	color: var(--store-primary-dark);
	font-size: 0.84rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	margin-bottom: 14px;
}

.receipt-title {
	font-size: clamp(2rem, 3vw, 2.8rem);
	font-weight: 500;
	letter-spacing: -0.03em;
	margin: 0 0 10px;
	color: var(--store-primary-dark);
}

.receipt-intro {
	margin: 0;
	font-size: 1.06rem;
	color: rgba(36, 56, 76, 0.76);
}

.receipt-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
	gap: 24px;
}

.receipt-layout-compact {
	grid-template-columns: minmax(0, 1fr) 220px;
	align-items: start;
}

.receipt-main,
.receipt-side {
	display: grid;
	gap: 14px;
}

.receipt-main-single {
	max-width: 100%;
}

.receipt-panel,
.receipt-package-card {
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--store-border-soft);
	border-radius: 24px;
	box-shadow: 0 14px 34px rgba(36, 56, 76, 0.05);
	overflow: hidden;
}

.receipt-package-card {
	display: grid;
	grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
	min-height: 100%;
}

.receipt-package-card-compact {
	grid-template-columns: 240px minmax(0, 1fr);
}

.receipt-package-image-wrap {
	background: linear-gradient(160deg, rgba(0, 169, 224, 0.18), rgba(48, 68, 88, 0.08));
	min-height: 100%;
}

.receipt-package-card-compact .receipt-package-image-wrap {
	max-height: 340px;
}

.receipt-package-image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
}

.receipt-package-content,
.receipt-panel {
	padding: 16px 18px;
}

.receipt-layout-compact .receipt-panel,
.receipt-layout-compact .receipt-package-content {
	padding: 16px 18px;
}

.receipt-package-content {
	display: grid;
	gap: 18px;
}

.receipt-section-label {
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(36, 56, 76, 0.5);
	font-weight: 700;
}

.receipt-package-title {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: -0.02em;
	margin: 8px 0 6px;
	color: var(--store-primary-dark);
}

.receipt-package-subtitle {
	margin: 0;
	font-size: 1rem;
	color: rgba(36, 56, 76, 0.72);
}

.receipt-feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 8px;
}

.receipt-feature-list li {
	position: relative;
	padding-left: 22px;
	line-height: 1.45;
	color: rgba(36, 56, 76, 0.85);
}

.receipt-feature-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.58rem;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--store-primary);
	box-shadow: 0 0 0 4px rgba(0, 169, 224, 0.14);
}

.receipt-package-total {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 16px;
	padding-top: 18px;
	border-top: 1px solid rgba(48, 68, 88, 0.1);
	color: rgba(36, 56, 76, 0.72);
}

.receipt-package-total strong {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--store-primary-dark);
}

.receipt-panel-header {
	margin-bottom: 10px;
}

.receipt-panel-header h3 {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--store-primary-dark);
}

.receipt-summary-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 18px;
}

.receipt-summary-layout {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) minmax(0, 1.8fr);
	gap: 18px 26px;
	align-items: start;
}

.receipt-summary-buyer {
	padding-right: 10px;
}

.receipt-summary-grid-compact {
	padding-left: 22px;
	border-left: 1px solid rgba(48, 68, 88, 0.1);
}

.receipt-summary-grid span,
.receipt-contact-block span,
.receipt-line-item span {
	display: block;
	font-size: 0.92rem;
	color: rgba(36, 56, 76, 0.65);
}

.receipt-summary-grid strong,
.receipt-contact-block strong,
.receipt-line-item strong {
	display: block;
	margin-top: 2px;
	font-size: 1rem;
	color: var(--store-primary-dark);
}

.receipt-line-items {
	display: grid;
	gap: 14px;
}

.receipt-line-item {
	display: flex;
	justify-content: space-between;
	align-items: start;
	gap: 16px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(48, 68, 88, 0.1);
}

.receipt-line-item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.receipt-line-price {
	font-weight: 700;
	color: var(--store-primary-dark);
	white-space: nowrap;
}

.receipt-payment-notes {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid rgba(48, 68, 88, 0.1);
	display: grid;
	gap: 6px;
	color: rgba(36, 56, 76, 0.72);
}

.receipt-paid-line {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
}

.receipt-promo-note {
	color: rgba(36, 56, 76, 0.58);
	font-size: 0.94rem;
	white-space: nowrap;
}

.receipt-contact-block {
	display: grid;
	gap: 4px;
}

.receipt-side {
	align-content: start;
}

.receipt-panel-soft {
	background: linear-gradient(180deg, rgba(0, 169, 224, 0.08), rgba(255, 255, 255, 0.92));
}

.receipt-note,
.receipt-closing {
	margin: 0;
	line-height: 1.55;
	color: rgba(36, 56, 76, 0.76);
}

.receipt-closing {
	margin-top: 14px;
	font-weight: 600;
	color: var(--store-primary-dark);
}

.receipt-footer-actions {
	margin-top: 18px;
	display: flex;
	justify-content: flex-start;
	gap: 10px;
}

@media (max-width: 991.98px) {
	.receipt-layout {
		grid-template-columns: 1fr;
	}

	.receipt-layout-compact {
		grid-template-columns: 1fr;
	}

	.receipt-package-card {
		grid-template-columns: 1fr;
	}

	.receipt-package-image-wrap {
		max-height: 300px;
	}
}

@media (max-width: 575.98px) {
	.receipt-shell {
		padding: 16px;
		border-radius: 22px;
	}

	.receipt-summary-grid {
		grid-template-columns: 1fr;
	}

	.receipt-summary-layout {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.receipt-summary-grid-compact {
		padding-left: 0;
		border-left: 0;
		padding-top: 10px;
		border-top: 1px solid rgba(48, 68, 88, 0.1);
	}

	.receipt-line-item,
	.receipt-package-total {
		flex-direction: column;
		align-items: flex-start;
	}
}

@page {
	size: A4;
	margin: 12mm;
}

@media print {
	html,
	body {
		background: #fff !important;
		margin: 0;
		padding: 0;
	}

	body {
		margin-bottom: 0;
		font-size: 11pt;
	}

	.navbar,
	footer,
	.receipt-footer-actions,
	.btn,
	.no-print {
		display: none !important;
	}

	main,
	.container,
	.receipt-page {
		max-width: none !important;
		width: 100% !important;
		padding: 0 !important;
		margin: 0 !important;
	}

	.receipt-shell,
	.receipt-panel,
	.receipt-package-card {
		box-shadow: none !important;
		background: #fff !important;
	}

	.receipt-shell {
		max-width: none;
		border: 0;
		padding: 0;
	}

	.receipt-hero {
		margin-bottom: 18px;
	}

	.receipt-main {
		gap: 14px;
	}

	.receipt-summary-layout {
		gap: 10px 18px;
	}

	.receipt-package-card-compact {
		grid-template-columns: 180px minmax(0, 1fr);
	}

	.receipt-package-card-compact .receipt-package-image-wrap {
		max-height: 220px;
	}

	.receipt-package-content,
	.receipt-panel {
		padding: 14px;
	}

	.receipt-title {
		font-size: 22pt;
	}

	.receipt-intro,
	.receipt-note,
	.receipt-closing,
	.receipt-summary-grid span,
	.receipt-contact-block span,
	.receipt-line-item span {
		font-size: 10pt;
	}

	.receipt-package-title {
		font-size: 16pt;
	}

	.receipt-feature-list {
		gap: 6px;
	}

	.receipt-feature-list li {
		line-height: 1.3;
	}

	.receipt-line-item {
		padding-bottom: 10px;
	}

	.receipt-payment-notes {
		margin-top: 12px;
		padding-top: 12px;
	}
}
