.gyg-card {
    display: block;
}

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: #fff1ee;
    color: #FF5533;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .28rem .7rem;
}

.thumb-btn {
    border: 2px solid transparent;
}

.thumb-btn.is-active,
.thumb-btn:hover {
    border-color: #FF5533;
}

.calendar-day {
    height: 2.35rem;
    border-radius: .7rem;
    font-size: .8rem;
    font-weight: 700;
}

.calendar-day.is-available {
    background: #fff1ee;
    color: #1A2B49;
}

.calendar-day.is-selected {
    background: #FF5533;
    color: #fff;
}

.calendar-day:disabled {
    cursor: default;
    color: #c5cad3;
}

.time-slot {
    border: 1px solid #E6E9EF;
    border-radius: .7rem;
    padding: .55rem .3rem;
    font-size: .8rem;
    font-weight: 800;
    background: #fff;
    cursor: pointer;
}

.time-slot:hover {
    border-color: #1A2B49;
}

.time-slot.is-selected {
    background: #FF5533;
    border-color: #FF5533;
    color: #fff;
}

.gyg-picker {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid #E6E9EF;
    border-radius: 0.9rem;
    background: #fff;
    padding: 0.85rem 1rem;
    text-align: left;
}

.gyg-picker:hover,
.gyg-picker.is-open {
    border-color: #1A2B49;
}

.gyg-picker-icon {
    font-size: 1.05rem;
}

.option-card {
    width: 100%;
    border: 1.5px solid #E6E9EF;
    border-radius: 0.9rem;
    background: #fff;
    padding: 0.9rem 1rem;
    text-align: left;
}

.option-card:hover {
    border-color: #1A2B49;
}

.option-card.is-selected {
    border-color: #046FEA;
    box-shadow: inset 0 0 0 1px #046FEA;
}

.option-card.is-disabled {
    cursor: not-allowed;
    opacity: .45;
}

.option-card-radio {
    display: inline-flex;
    height: 1.05rem;
    width: 1.05rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border: 2px solid #C5CAD3;
    border-radius: 999px;
}

.option-card.is-selected .option-card-radio {
    border-color: #046FEA;
    background: #046FEA;
    box-shadow: inset 0 0 0 3px #fff;
}

.booking-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 1px solid #E6E9EF;
    border-radius: 0.9rem;
    background: #F5F7FA;
    padding: 1.4rem 1rem;
}

.booking-spinner {
    width: 1.75rem;
    height: 1.75rem;
    border: 3px solid #E6E9EF;
    border-top-color: #FF5533;
    border-radius: 999px;
    animation: booking-spin .7s linear infinite;
}

.book-now-spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    vertical-align: -0.15rem;
    border: 2px solid rgba(255,255,255,.35);
    border-top-color: #fff;
    border-radius: 999px;
    animation: booking-spin .7s linear infinite;
}

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

.unit-title {
    color: #1A2B49;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
}

.unit-age {
    margin-top: 0.15rem;
    color: #5C6578;
    font-size: 0.9rem;
    font-weight: 500;
}

.qty-btn {
    display: inline-flex;
    height: 1.85rem;
    width: 1.85rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #046FEA;
    border-radius: 999px;
    background: #fff;
    color: #046FEA;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1;
}

.qty-btn:hover:not(:disabled) {
    background: #F0F6FF;
}

.qty-btn:disabled {
    border-color: #D0D5DD;
    color: #D0D5DD;
    cursor: default;
}

.qty-input {
    width: 1.5rem;
    border: 0;
    background: transparent;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 800;
    color: #1A2B49;
}

.product-copy p {
    margin-bottom: 0.75rem;
}

.product-copy ul,
.product-copy ol {
    margin: 0.5rem 0 0.75rem 1.1rem;
    list-style: disc;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.28rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.status-pill--success {
    background: #e8f8ef;
    color: #0f7b3b;
}

.status-pill--warning {
    background: #fff6e5;
    color: #a15c00;
}

.status-pill--danger {
    background: #ffece8;
    color: #c0392b;
}

.status-pill--neutral {
    background: #F5F7FA;
    color: #5C6578;
}

.ticket-card {
    border: 1px dashed #E6E9EF;
    border-radius: 1rem;
    background: #F5F7FA;
    padding: 1rem;
}

.photo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 16, 32, 0.92);
    padding: 3.5rem 4.5rem 4rem;
}

.photo-lightbox[hidden] {
    display: none;
}

.photo-lightbox img {
    max-height: min(82vh, 900px);
    max-width: min(92vw, 1200px);
    border-radius: 1rem;
    object-fit: contain;
}

.photo-lightbox-close,
.photo-lightbox-nav {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    line-height: 1;
}

.photo-lightbox-close {
    top: 1rem;
    right: 1.25rem;
    height: 2.5rem;
    width: 2.5rem;
    font-size: 2rem;
}

.photo-lightbox-nav {
    top: 50%;
    height: 3rem;
    width: 3rem;
    transform: translateY(-50%);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 2rem;
}

.photo-lightbox-prev { left: 0.75rem; }
.photo-lightbox-next { right: 0.75rem; }

.photo-lightbox-counter {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
}

@media print {
    header, footer, button {
        display: none !important;
    }
    .booking-page {
        max-width: none;
        padding: 0;
    }
}
