/* ==========================================================================
   Booking Pages - Extracted Inline Styles
   Combined CSS for all booking template pages
   ========================================================================== */

/* ==========================================================================
   INDEX PAGE - Hero, Tour Cards, Features
   ========================================================================== */

/* Full-width page title (above gallery & sidebar) */
.page-title-full {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1a202c;
}

.page-title-full + .product-tags {
    display: inline-flex;
    margin-bottom: 20px;
}

.price-card .product-meta {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-darker) 100%);
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 100px 100px;
}

.hero-bg {
    background: url('../img/hero-bg.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        160deg,
        rgba(15, 27, 61, 0.92) 0%,
        rgba(20, 40, 80, 0.85) 50%,
        rgba(26, 45, 94, 0.78) 100%
    );
    z-index: 1;
}

.hero-content-layer {
    z-index: 2;
}

/* Hero Tagline Badge */
.hero-tagline {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(100, 50, 170, 0.55);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(100, 50, 170, 0.6);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-title-accent {
    background: linear-gradient(135deg, #a8c8ff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}

/* Hero Iframe */
.hero-iframe-container {
    position: relative;
    padding: 12px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-iframe-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    pointer-events: none;
    box-shadow: inset 0 0 20px 10px rgba(15, 27, 61, 0.4);
}

.hero-iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 16px;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: #ffffff;
    color: #9667E0;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    color: #8654D1;
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: transparent;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-scroll-indicator i {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        justify-content: center;
        text-align: center;
    }

    .hero-section {
        padding-bottom: 4rem;
    }

    .hero-scroll-indicator {
        bottom: 1rem;
    }

    .hero-iframe-container {
        margin-top: 2rem;
    }

    .hero-iframe {
        height: 320px;
    }

    .min-vh-100 {
        min-height: auto !important;
    }
}

.min-vh-50 {
    min-height: 50vh;
}

.text-gradient-light {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-primary-subtle {
    background-color: var(--color-primary-lightest) !important;
}

/* Tour Cards */
.tour-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* Whole-card clickable: stretched link covers the card; interactive
   children (Book Now button, hover overlay) sit above via z-index. */
.tour-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    text-indent: -9999px;
    overflow: hidden;
}

.tour-card-footer .tour-book-btn {
    position: relative;
    z-index: 4;
    /* Keep "Book Now" + arrow on one line even when a strikethrough original
       price widens the price column and squeezes the footer. */
    flex-shrink: 0;
    white-space: nowrap;
}

.tour-card-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 square aspect ratio */
    overflow: hidden;
    background: #f3f4f6;
}

.tour-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.1);
}

.tour-card-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-card-placeholder img {
    max-height: 100px;
    max-width: 160px;
    opacity: 0.8;
    object-fit: contain;
    position: relative;
}

.tour-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 3;
}

.tour-card-badge-soldout {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    left: auto;
    right: 12px;
}

.tour-card-label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.25);
    z-index: 3;
}

.tour-card-special-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.tour-card-special-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.2;
    padding: 3px 8px;
    border: 1px solid #fca5a5;
    color: #dc2626;
    background: #fff;
    border-radius: 4px;
    white-space: nowrap;
}

.tour-card-footer .btn.disabled {
    opacity: 0.8;
    cursor: not-allowed;
    pointer-events: none;
}

.tour-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.tour-card:hover .tour-card-overlay {
    opacity: 1;
}

.tour-card-content {
    padding: 20px;
}

.tour-card-categories .badge {
    font-size: 0.7rem;
    font-weight: 500;
    margin-right: 4px;
}

.tour-card-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #1f2937;
}

.tour-card-description {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.tour-card-price .price-label {
    display: block;
    font-size: 0.7rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tour-card-price .price-original {
    font-size: 0.8rem;
    color: #9ca3af;
    text-decoration: line-through;
    line-height: 1;
    margin-right: 4px;
}
.tour-card-price .price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

/* On mobile, collapse "Book Now" button to just the arrow icon to save space */
@media (max-width: 575.98px) {
    .tour-book-btn .tour-book-label {
        display: none;
    }
    .tour-book-btn .fa-arrow-right {
        margin-left: 0 !important;
    }
}

/* Compact tour card (homepage 4-column) */
.tour-card-compact {
    border-radius: 12px;
}
.tour-card-compact .tour-card-image {
    padding-top: 100%;
}
.tour-card-compact .tour-card-content {
    padding: 14px;
}
.tour-card-compact .tour-card-title {
    font-size: 0.95rem;
    margin-bottom: 6px;
}
.tour-card-compact .tour-card-categories .badge {
    font-size: 0.65rem;
}
.tour-card-compact .tour-card-footer {
    padding-top: 10px;
}
.tour-card-compact .tour-card-price .price-original {
    font-size: 0.7rem;
}
.tour-card-compact .tour-card-price .price-value {
    font-size: 1rem;
}
.tour-card-compact .tour-card-price .price-label {
    font-size: 0.65rem;
}
.tour-card-compact .tour-card-badge {
    font-size: 0.65rem;
    padding: 4px 10px;
    top: 8px;
    left: 8px;
}
.tour-card-compact .tour-card-badge-soldout {
    left: auto;
    right: 8px;
}
.tour-card-compact .tour-card-label {
    font-size: 0.65rem;
    padding: 4px 10px;
    top: 8px;
    left: 8px;
}
.tour-card-compact .tour-card-special-tags {
    gap: 4px;
    margin-top: 8px;
}
.tour-card-compact .tour-card-special-tag {
    font-size: 0.65rem;
    padding: 2px 6px;
}
.tour-card-compact .tour-card-meta {
    font-size: 0.78rem;
    color: #6b7280;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tour-card-compact .tour-card-meta i {
    width: 14px;
    text-align: center;
    margin-right: 5px;
    color: #9ca3af;
    font-size: 0.7rem;
}
.tour-card-compact:hover {
    transform: translateY(-5px);
}

/* Homepage Carousel */
.homepage-carousel {
    position: relative;
    overflow: hidden;
}
.homepage-carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 8px;
}
.homepage-carousel-track::-webkit-scrollbar {
    display: none;
}
.homepage-carousel-item {
    flex: 0 0 calc(25% - 12px);
    min-width: 0;
}
/* Compact variant used inside hero side panel: shows 2 cards at a time */
.homepage-carousel-pair .homepage-carousel-item {
    flex: 0 0 calc(50% - 8px);
}
.hero-side-panel {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 8px;
}
.hero-image-card {
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #1f2937;
    text-decoration: none;
}
.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.hero-image-card:hover img {
    transform: scale(1.05);
}
.hero-image-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #f59e0b;
    color: #1f2937;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 3px 8px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    z-index: 2;
}
.hero-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 2rem;
}
.hero-side-panel .homepage-carousel::before,
.hero-side-panel .homepage-carousel::after {
    display: none;
}
@media (max-width: 991.98px) {
    .homepage-carousel-pair .homepage-carousel-item {
        flex: 0 0 calc(50% - 8px);
    }
}
@media (max-width: 575.98px) {
    .homepage-carousel-pair .homepage-carousel-item {
        flex: 0 0 calc(85% - 8px);
    }
}
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s ease;
    color: #374151;
    font-size: 0.85rem;
}
.carousel-nav:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.carousel-nav-prev { left: 0; }
.carousel-nav-next { right: 0; }

/* Fade edge hints for scrollable content */
.homepage-carousel::before,
.homepage-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 32px;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.homepage-carousel::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.9), transparent);
}
.homepage-carousel::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,0.9), transparent);
}
.homepage-carousel.has-scroll-left::before { opacity: 1; }
.homepage-carousel.has-scroll-right::after { opacity: 1; }

@media (max-width: 767.98px) {
    .homepage-carousel-item {
        flex: 0 0 calc(50% - 8px);
    }
    .carousel-nav {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .homepage-carousel-item {
        flex: 0 0 calc(33.333% - 11px);
    }
}

/* Destination Cards */
.destination-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 16px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
}
.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.destination-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary-light, #e5e7eb) 0%, var(--color-primary-lightest, #f3f4f6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--color-primary-dark, #4b5563);
    font-size: 1.1rem;
}
.destination-card:hover .destination-card-icon {
    background: linear-gradient(135deg, var(--color-primary-dark, #374151) 0%, var(--color-primary, #6b7280) 100%);
    color: #fff;
}
.destination-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}
.destination-card-desc {
    font-size: 0.78rem;
    color: #6b7280;
    margin-bottom: 8px;
    line-height: 1.4;
}
.destination-card-link {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-primary-dark, #4b5563);
    transition: color 0.2s ease;
}
.destination-card:hover .destination-card-link {
    color: var(--color-primary, #6b7280);
}

/* Destinations Carousel */
.dest-carousel-card {
    width: calc(25% - 12px);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dest-carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.dest-carousel-img {
    position: relative;
    height: 160px;
    overflow: hidden;
}
.dest-carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.dest-carousel-card:hover .dest-carousel-img img {
    transform: scale(1.08);
}
.dest-carousel-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
    color: #9ca3af;
}
.dest-carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
    pointer-events: none;
}
.dest-carousel-body {
    padding: 14px 16px 16px;
}
.dest-carousel-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}
.dest-carousel-desc {
    font-size: 0.78rem;
    color: #6b7280;
    margin-bottom: 8px;
    line-height: 1.4;
}
.dest-carousel-link {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-primary-dark, #4b5563);
    transition: color 0.2s ease;
}
.dest-carousel-card:hover .dest-carousel-link {
    color: var(--color-primary, #6b7280);
}
@media (max-width: 991.98px) {
    .dest-carousel-card { width: calc(50% - 8px); }
}
@media (max-width: 575.98px) {
    .dest-carousel-card { width: calc(80%); }
    .dest-carousel-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .dest-carousel-track { scroll-snap-type: x mandatory; }
    .dest-carousel-card { scroll-snap-align: start; }
}

/* Features Section */
.features-section {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.feature-item {
    padding: 24px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary-lightest) 0%, var(--color-primary-light) 100%);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-primary-dark);
}

/* Empty State */
.empty-state {
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    background: var(--color-primary-lightest);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   VIEW PAGE - Product Detail, Gallery, Experience Cards
   ========================================================================== */

/* Modern Booking Page Styles */
.booking-page {
    background: #f8fafc;
    padding-bottom: 100px;
}

/* Gallery */
.gallery-section {
    background: #f3f4f6;
}

.gallery-main {
    position: relative;
    background: #f3f4f6;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    aspect-ratio: 16 / 9;
}

.gallery-main img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.2s ease;
}

.gallery-placeholder {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder img {
    width: auto;
    height: auto;
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
    opacity: 0.7;
}

.featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    width: auto;
    height: auto;
}

.gallery-thumbs {
    display: flex;
    justify-content: center;
    gap: 2px;
    padding: 2px 0px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: #f3f4f6;
}

.gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.gallery-thumbs .thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    padding: 2px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.gallery-thumbs .thumb.active {
    border-color: #9667E0;
}

.gallery-thumbs .thumb:hover {
    border-color: #94a3b8;
}

.gallery-thumbs .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs .thumb-more {
    position: relative;
}

.gallery-thumbs .thumb-more img {
    filter: brightness(0.55);
}

.thumb-more-overlay {
    position: absolute;
    inset: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
    pointer-events: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.gallery-clickable {
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    color: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: background 0.2s, transform 0.2s;
}

.gallery-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.06);
}

.gallery-nav-prev { left: 12px; }
.gallery-nav-next { right: 12px; }

/* Gallery Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0 20px;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: 16px;
}

.lightbox-next {
    right: 16px;
}

.lightbox-content {
    position: relative;
    z-index: 5;
    max-width: 90vw;
    max-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.lightbox-caption {
    position: relative;
    z-index: 10;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    text-align: center;
    padding: 12px 20px 0;
    max-width: 90vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lightbox-thumbs {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 8px;
    padding: 12px 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 90vw;
}

.lightbox-thumbs::-webkit-scrollbar {
    display: none;
}

.lightbox-thumbs .lb-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    background: none;
    opacity: 0.5;
    transition: border-color 0.2s, opacity 0.2s;
}

.lightbox-thumbs .lb-thumb.active {
    border-color: #ffffff;
    opacity: 1;
}

.lightbox-thumbs .lb-thumb:hover {
    opacity: 0.85;
}

.lightbox-thumbs .lb-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Section */
.product-section {
    padding: 24px 0;
}

/* Header */
.product-header {
    margin-bottom: 24px;
}

.product-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.product-tags .tag {
    background: #F1F5F9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.product-title {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px;
    line-height: 1.25;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6b7280;
}

.meta-item i {
    color: #10b981;
}

/* Page with Sidebar Layout */
.page-with-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.page-main-col {
    min-width: 0;
}

.sidebar-col {
    display: none;
}

/* Description */
.product-description {
    margin-bottom: 24px;
}

.product-description h2 {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 12px;
}

.description-text {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
    overflow-wrap: break-word;
    word-wrap: break-word;
    min-width: 0;
}

.description-text,
.description-text * {
    max-width: 100%;
}

.description-text img,
.description-text video,
.description-text iframe {
    height: auto;
}

.description-text pre {
    white-space: pre-wrap;
    word-break: break-word;
}

.description-text table {
    display: block;
    overflow-x: auto;
}

.description-text p {
    margin: 0 0 12px;
}

.description-text p:last-child {
    margin-bottom: 0;
}

/* Truncatable content - 6 lines max (mobile only; desktop/tablet show full content) */
.truncate-wrap {
    position: relative;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .truncate-wrap {
        max-height: calc(1.7em * 6);
        overflow: hidden;
    }

    .truncate-wrap.expanded {
        max-height: none;
        overflow: visible;
    }
}

.see-more-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 12px;
    color: #6b7280;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    padding: 8px 0;
    background: transparent;
    gap: 4px;
    transition: color 0.3s ease;
}

.see-more-toggle::after {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #6b7280;
    border-bottom: 1.5px solid #6b7280;
    transform: rotate(45deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.truncate-wrap.expanded + .see-more-toggle::after {
    transform: rotate(-135deg);
}

.see-more-toggle:hover {
    color: #4b5563;
}

.see-more-toggle:hover::after {
    border-color: #4b5563;
}

/* Experience Section */
.experiences-section {
    margin-bottom: 24px;
}

.experiences-section h2 {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px;
}

.section-desc {
    color: #6b7280;
    font-size: 14px;
    margin: 0 0 20px;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.experience-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.experience-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(107,114,128,0.15);
}

.exp-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.exp-info {
    flex: 1;
}

.exp-title {
    font-size: 17px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px;
}

.exp-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.exp-price {
    text-align: right;
    flex-shrink: 0;
}

.exp-price .from {
    display: block;
    font-size: 11px;
    color: #9ca3af;
    text-transform: uppercase;
}

.exp-price .amount {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

.exp-price-inline {
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.exp-price-inline .label {
    font-size: 12px;
    color: #9ca3af;
    text-transform: lowercase;
}
.exp-price-inline .amount {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}
.exp-price-inline .price-original {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
}

.exp-variants {
    background: #f9fafb;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 16px;
    flex-grow: 1;
}

.variant {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.variant:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.variant:first-child {
    padding-top: 0;
}

.variant-name {
    font-size: 14px;
    color: #4b5563;
}

.variant-price {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.btn-select {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    background: #9667E0;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: auto;
}

.btn-select:hover {
    background: #8654D1;
    color: #fff;
}

.btn-select.btn-select-soldout {
    background: #9ca3af;
    cursor: not-allowed;
}

.btn-select.btn-select-soldout:hover {
    background: #9ca3af;
}

.price-sold-out {
    color: #ef4444;
}

/* Experience Card - Upcoming Dates */
.exp-dates {
    background: #f9fafb;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 16px;
}

/* Index card overrides: match description spacing */
.tour-card-content .exp-dates,
.card-content .exp-dates {
    background: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 16px;
}

.exp-dates-label {
    font-size: 12px;
    font-weight: 400;
    color: #6b7280;
    margin-bottom: 8px;
}

.exp-dates-label i {
    color: #7c3aed;
    margin-right: 4px;
}

.exp-dates-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.exp-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 38px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    background: #fff;
    border: 1px solid #e5e7eb;
}

.exp-date-month {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: #7c3aed;
    padding: 1px 0;
}

.exp-date-day {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #374151;
    padding: 1px 0 3px;
    line-height: 1.2;
}

.exp-date-more .exp-date-day {
    color: #6b7280;
}

.exp-date-badge.exp-date-past .exp-date-month {
    background: #9ca3af;
}

.exp-date-badge.exp-date-past .exp-date-day {
    color: #9ca3af;
}

/* Info Sections */
.info-sections {
    margin-top: 8px;
    border-top: 1px solid #e5e7eb;
}

.info-section {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid #e5e7eb;
}

.info-section-header {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    padding-top: 2px;
}

.info-section-body {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.7;
}

.info-section-body ul,
.info-section-body ol {
    padding-left: 20px;
    margin: 0;
}

.info-section-body li {
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .info-section {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 16px 0;
    }
}

/* Mobile Sticky CTA */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    background: #fff;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 100;
}

.cta-price {
    display: flex;
    flex-direction: column;
}

.cta-from {
    font-size: 11px;
    color: #9ca3af;
    text-transform: uppercase;
}

.cta-amount {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

.cta-button {
    flex: 1;
    max-width: 200px;
    padding: 14px 24px;
    background: #9667E0;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.cta-button:hover {
    background: #8654D1;
    color: #fff;
}

.cta-button.cta-button-soldout {
    background: #9ca3af;
    cursor: not-allowed;
}

.cta-button.cta-button-soldout:hover {
    background: #9ca3af;
}

.price-info {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: 8px;
}

.price-info .price-original {
    white-space: nowrap;
}

/* Tablet and Desktop */
@media (min-width: 768px) {
    .booking-page {
        padding-top: 20px;
        padding-bottom: 60px;
    }

    .gallery-main {
        border-radius: 20px 20px 0 0;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .gallery-thumbs .thumb {
        width: 80px;
        height: 80px;
    }

    .product-section {
        padding: 40px 0;
    }

    .product-title {
        font-size: 32px;
    }

    .page-title-full {
        font-size: 32px;
    }

    /* Page + Sidebar grid */
    .page-with-sidebar {
        grid-template-columns: 1fr 300px;
        gap: 24px;
        align-items: start;
    }

    .sidebar-col {
        display: block;
        position: sticky;
        top: 20px;
    }

    /* Sidebar Price Card */
    .sidebar-price-card {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        border-radius: 16px;
        padding: 20px;
        margin-bottom: 16px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }

    .sidebar-price-card .price-info {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
        gap: 6px;
        margin-bottom: 16px;
    }

    .sidebar-price-card .price-info.has-original .price-per {
        flex-basis: 100%;
    }

    .price-label {
        font-size: 14px;
        color: #6b7280;
    }

    .price-value {
        font-size: 28px;
        font-weight: 700;
        color: #111827;
    }

    .price-value.price-sold-out {
        color: #ef4444;
    }

    .sidebar-price-card .price-info .price-original {
        font-size: 16px;
        color: #9ca3af;
        text-decoration: line-through;
    }

    .price-per {
        font-size: 13px;
        color: #9ca3af;
    }

    /* Price Card Details */
    .price-card-details {
        border-top: 1px solid #f0f0f0;
        padding: 12px 0;
        margin-bottom: 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .price-card-detail {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        color: #4b5563;
    }

    .price-card-detail i {
        width: 16px;
        text-align: center;
        color: #9667E0;
        font-size: 13px;
        flex-shrink: 0;
    }

    .price-card-dates {
        padding-top: 12px;
        margin-bottom: 4px;
    }

    .price-card-dates-label {
        font-size: 12px;
        font-weight: 400;
        color: #6b7280;
        margin-bottom: 8px;
    }

    .price-card-dates-label i {
        color: #7c3aed;
        margin-right: 4px;
    }

    .btn-book {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 14px 24px;
        background: #9667E0;
        color: #fff;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.2s;
        border: none;
        cursor: pointer;
    }

    .btn-book:hover {
        background: #8654D1;
        color: #fff;
    }

    .btn-book.btn-book-soldout {
        background: #9ca3af;
        cursor: not-allowed;
    }

    .btn-book.btn-book-soldout:hover {
        background: #9ca3af;
    }

    .product-description h2 {
        font-size: 15px;
    }

    .experience-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .experience-card {
        padding: 24px;
    }

    .exp-header {
        flex-direction: column;
        gap: 8px;
    }

    .exp-price {
        text-align: left;
    }

    .mobile-cta {
        display: none;
    }
}

@media (min-width: 1024px) {
    .page-with-sidebar {
        grid-template-columns: 1fr 320px;
    }

    .experience-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   ADDONS PAGE - Addon Cards, Badges, Benefits
   ========================================================================== */

/* Header Enhancement */
.addons-header-content {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.addons-header-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.addons-header-icon i {
    font-size: 24px;
    color: #ffffff;
}

.addons-header-text h2 {
    margin: 0 0 4px 0;
}

/* Optional Note */
.addons-optional-note {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid #86efac;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-6);
    font-size: var(--text-sm);
    color: #166534;
}

.addons-optional-note i {
    color: #22c55e;
    font-size: var(--text-lg);
    flex-shrink: 0;
}

/* Modern Addon Cards Grid */
.addon-cards-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-5);
    margin-bottom: var(--space-6);
}

/* Modern Addon Card */
.addon-card-modern {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    display: flex;
    gap: var(--space-4);
    position: relative;
    transition: all var(--transition-base);
    animation: addonFadeIn var(--transition-base) ease-out backwards;
}

.addon-card-modern:hover {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.addon-card-modern.has-quantity {
    border-color: #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

/* Icon Section */
.addon-card-icon-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    flex-shrink: 0;
}

.addon-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary-lightest) 0%, var(--color-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.addon-card-icon i {
    font-size: 22px;
    color: var(--color-primary-dark);
    transition: all var(--transition-base);
}

.addon-card-modern.has-quantity .addon-card-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.addon-card-modern.has-quantity .addon-card-icon i {
    color: #ffffff;
}

/* Badges */
.addon-badge {
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.addon-required-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
}

.addon-popular-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #ffffff;
}

/* Main Content */
.addon-card-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.addon-card-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: #111827;
    margin: 0 0 var(--space-2);
    line-height: 1.3;
}

.addon-card-desc {
    font-size: var(--text-sm);
    color: #6b7280;
    margin: 0 0 var(--space-4);
    line-height: 1.5;
    flex: 1;
}

/* Bottom Section */
.addon-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-4);
    border-top: 1px solid #f3f4f6;
    margin-top: auto;
}

.addon-pricing-modern {
    display: flex;
    flex-direction: column;
}

.addon-price-value {
    font-size: var(--text-lg);
    font-weight: 700;
    color: #111827;
}

.addon-price-type {
    font-size: var(--text-xs);
    color: #9ca3af;
    margin-top: 2px;
}

/* Addon Variants List */
.addon-variants-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    padding-top: var(--space-4);
    border-top: 1px solid #f3f4f6;
    margin-top: auto;
}

.addon-variant-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-2) 0;
}

.addon-variant-item .addon-pricing-modern {
    flex-direction: row;
    align-items: baseline;
    gap: var(--space-2);
}

.addon-variant-item .addon-price-value {
    font-size: var(--text-sm);
    font-weight: 600;
    color: #374151;
}

.addon-variant-item .addon-price-type {
    font-size: var(--text-sm);
    color: #111827;
    font-weight: 600;
    margin-top: 0;
}

/* Selected Indicator */
.addon-selected-check {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-base);
}

.addon-selected-check i {
    color: #ffffff;
    font-size: 12px;
}

.addon-card-modern.has-quantity .addon-selected-check {
    opacity: 1;
    transform: scale(1);
}

/* Benefits Strip */
.addons-benefits-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-6);
    padding: var(--space-5);
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: var(--radius-lg);
    margin-top: var(--space-2);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: #6b7280;
}

.benefit-item i {
    color: #10b981;
    font-size: var(--text-base);
}

/* No Addons Modern */
.no-addons-modern {
    text-align: center;
    padding: var(--space-10) var(--space-6);
}

.no-addons-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
}

.no-addons-icon i {
    font-size: 48px;
    color: #10b981;
}

.no-addons-modern h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: #111827;
    margin: 0 0 var(--space-3);
}

.no-addons-modern p {
    font-size: var(--text-base);
    color: #6b7280;
    margin: 0 0 var(--space-5);
    line-height: 1.6;
}

.no-addons-reassurance {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: #1e40af;
}

.no-addons-reassurance i {
    color: #3b82f6;
}

/* Animations */
@keyframes addonFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive - Addons */
@media (max-width: 768px) {
    .addons-header-content {
        flex-direction: column;
        text-align: center;
    }

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

    .addon-card-modern {
        flex-direction: column;
        text-align: center;
    }

    .addon-card-icon-section {
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }

    .addon-card-bottom {
        flex-direction: column;
        gap: var(--space-4);
    }

    .addon-card-bottom .quantity-selector-modern {
        justify-content: center;
    }

    .addons-benefits-strip {
        flex-direction: column;
        align-items: center;
        gap: var(--space-3);
    }

    .addons-optional-note {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   EDIT TRAVELERS PAGE - Traveler Cards, Progress, Tips
   ========================================================================== */

/* Cutoff Warning Banner */
.cutoff-warning-banner {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4);
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    color: #92400e;
}

.cutoff-warning-banner > i {
    font-size: var(--text-lg);
    margin-top: 2px;
    color: #d97706;
    flex-shrink: 0;
}

.cutoff-warning-banner strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: 700;
    color: #92400e;
    margin-bottom: 2px;
}

.cutoff-warning-banner p {
    margin: 0;
    font-size: var(--text-sm);
    line-height: 1.5;
    color: #a16207;
}

/* Travelers Header Badge */
.travelers-header-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    backdrop-filter: blur(4px);
}

.travelers-header-badge.badge-complete {
    background: rgba(16, 185, 129, 0.3);
}

/* Traveler Card Modern */
.traveler-card-modern {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-4);
    overflow: hidden;
    transition: all var(--transition-base);
    border-left: 4px solid #d1d5db;
}

.traveler-card-modern.traveler-saved {
    border-left-color: #10b981;
}

.traveler-card-modern.traveler-empty {
    border-left-color: #d1d5db;
}

.traveler-card-modern:hover {
    box-shadow: var(--shadow-md);
}

/* Card Header */
.traveler-card-header-modern {
    padding: var(--space-4) var(--space-5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background var(--transition-base);
    user-select: none;
}

.traveler-card-header-modern:hover {
    background: #f9fafb;
}

.traveler-header-left {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.traveler-number-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EEEAFD 0%, #D8CAFC 100%);
    color: #9667E0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-xl);
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.traveler-number-circle.circle-saved {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
}

.traveler-header-info {
    display: flex;
    flex-direction: column;
}

.traveler-header-title {
    margin: 0;
    font-size: var(--text-base);
    font-weight: 600;
    color: #1f2937;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.traveler-header-subtitle {
    font-size: var(--text-xs);
    margin-top: 2px;
}

.traveler-status-saved {
    color: #059669;
    font-weight: 500;
}

.traveler-status-required {
    color: var(--color-primary);
    font-weight: 500;
}

.traveler-variant-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1d4ed8;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Group header divider between variant groups */
.traveler-group-header {
    padding: var(--space-3) 0;
    margin-bottom: var(--space-2);
    border-bottom: 2px solid var(--color-primary-lightest);
}

.traveler-group-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary-dark);
}

.traveler-group-count {
    font-weight: 400;
    color: #6b7280;
    margin-left: 8px;
}

.traveler-unit-group {
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    margin-bottom: var(--space-4);
    background: #fafbfc;
}

.traveler-unit-group .traveler-card-modern {
    border-left-width: 2px;
}

.traveler-unit-group .traveler-card-modern:last-child {
    margin-bottom: 0;
}

.traveler-unit-group-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: #6b7280;
    margin-bottom: var(--space-3);
}

.traveler-collapse-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.traveler-card-modern:not(.is-collapsed) .traveler-collapse-toggle {
    transform: rotate(180deg);
    background: var(--color-primary-lightest);
    color: var(--color-primary);
}

/* Collapsible Body */
.traveler-card-body-modern {
    padding: 0 var(--space-5) var(--space-5);
    max-height: 1500px;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    opacity: 1;
}

.traveler-card-modern.is-collapsed .traveler-card-body-modern {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
}

/* Field Sections */
.traveler-field-section {
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid #f3f4f6;
}

.traveler-field-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.traveler-section-label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: #374151;
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
}

.traveler-section-label i {
    color: var(--color-primary);
    font-size: var(--text-base);
}

.traveler-section-label .optional-text {
    margin-left: var(--space-2);
}

/* Optional Text */
.optional-text {
    font-weight: 400;
    color: #9ca3af;
    font-size: var(--text-xs);
}

/* Contact info banner override */
.contact-info-banner p {
    margin: 0 0 4px;
}
.contact-info-banner p:last-child {
    margin-bottom: 0;
}

/* Sidebar - Travelers Progress */
.travelers-progress-section {
    padding: var(--space-4) 0;
    border-top: 1px solid #f3f4f6;
}

.travelers-progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2);
    font-size: var(--text-sm);
    color: #374151;
    font-weight: 500;
}

.travelers-progress-count {
    font-weight: 700;
    color: var(--color-primary-dark);
}

.travelers-progress-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.travelers-progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: var(--radius-full);
    transition: width 0.6s ease;
    min-width: 0;
}

/* Tips Card */
.travelers-tips-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-top: var(--space-4);
    border: 1px solid #e5e7eb;
}

.travelers-tips-header {
    padding: var(--space-4) var(--space-5);
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
    border-bottom: 1px solid #fde68a;
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.travelers-tips-header i {
    color: #f59e0b;
    font-size: var(--text-xl);
}

.travelers-tips-header h4 {
    margin: 0;
    font-size: var(--text-base);
    font-weight: 600;
    color: #92400e;
}

.travelers-tips-list {
    list-style: none;
    padding: var(--space-4) var(--space-5);
    margin: 0;
}

.travelers-tips-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    color: #4b5563;
    line-height: 1.5;
}

.travelers-tips-list li i {
    color: #10b981;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: var(--text-xs);
}

/* Sidebar sticky */
.travelers-sidebar-card {
    position: sticky;
    top: var(--space-5);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form row for two columns */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

/* Mobile Responsive - Edit Travelers */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .travelers-header-badge {
        font-size: var(--text-xs);
        padding: 4px 10px;
    }

    .traveler-card-header-modern {
        padding: var(--space-3) var(--space-4);
    }

    .traveler-card-body-modern {
        padding: 0 var(--space-4) var(--space-4);
    }

    .traveler-number-circle {
        width: 36px;
        height: 36px;
        font-size: var(--text-base);
    }
}

/* ==========================================================================
   VERIFY TRAVELERS PAGE - Verification Form, Blocked State
   ========================================================================== */

/* Verification Booking Reference */
.verify-booking-ref {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.05) 0%, rgba(107, 114, 128, 0.1) 100%);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-5);
    border: 1px solid rgba(107, 114, 128, 0.15);
}

.verify-booking-ref-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6B7280 0%, #4B5563 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    flex-shrink: 0;
}

.verify-booking-ref-label {
    display: block;
    font-size: var(--text-xs);
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.verify-booking-ref-title {
    display: block;
    font-size: var(--text-base);
    font-weight: 600;
    color: #1f2937;
}

/* Blocked / Rate Limited State */
.verify-blocked-state {
    text-align: center;
    padding: var(--space-8) var(--space-4);
}

.verify-blocked-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
    color: #dc2626;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--space-4);
}

.verify-blocked-icon.verify-blocked-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
}

.verify-blocked-state h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 var(--space-2);
}

.verify-blocked-state p {
    font-size: var(--text-sm);
    color: #6b7280;
    max-width: 400px;
    margin: 0 auto var(--space-5);
    line-height: 1.6;
}

/* Override contact-info-banner paragraph (verify page) */
.verify-blocked-state .contact-info-banner p {
    margin: 0;
}

/* ==========================================================================
   PAYMENT PROCESSING PAGE - Spinner, Timeout
   ========================================================================== */

.payment-spinner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(172, 136, 232, 0.1) 0%, rgba(172, 136, 232, 0.2) 100%);
    color: #AC88E8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--space-5);
}

.payment-spinner-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
}

.payment-processing-spinner h2,
.payment-processing-timeout h2 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 var(--space-2);
}

.payment-processing-spinner p,
.payment-processing-timeout p {
    font-size: var(--text-sm);
    color: #6b7280;
    max-width: 380px;
    margin: 0 auto;
    line-height: 1.6;
}

.payment-processing-ref {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    padding: var(--space-3) var(--space-5);
    background: #f9fafb;
    border-radius: var(--radius-lg);
    margin-top: var(--space-5);
}

.payment-processing-ref span {
    font-size: var(--text-xs);
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.payment-processing-ref strong {
    font-size: var(--text-base);
    color: #1f2937;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
}

.payment-processing-note {
    font-size: var(--text-xs) !important;
    color: #9ca3af !important;
    margin-top: var(--space-5) !important;
}

/* ==========================================================================
   PAYMENT FAILED PAGE - Error State
   ========================================================================== */

.payment-failed-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #dc2626;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: var(--space-5);
}

.payment-failed-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 var(--space-2);
}

.payment-failed-message {
    font-size: var(--text-sm);
    color: #6b7280;
    max-width: 380px;
    margin: 0 auto;
    line-height: 1.6;
}

.payment-failed-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.payment-failed-actions .btn-continue {
    min-width: 200px;
    text-align: center;
}

.payment-failed-actions .btn-back {
    min-width: 200px;
    text-align: center;
    border: none;
    background: #f3f4f6;
    color: #6b7280;
    padding: var(--space-3) var(--space-5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    transition: all 0.2s ease;
}

.payment-failed-actions .btn-back:hover {
    background: #e5e7eb;
    color: #374151;
}

.payment-failed-support {
    font-size: var(--text-xs) !important;
    color: #9ca3af !important;
    margin-top: var(--space-6) !important;
    max-width: 320px;
}

/* ==========================================================================
   BOOKING DRAWER - Slide-in panel for ticket selection on view page
   ========================================================================== */

.booking-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 1050;
    visibility: hidden;
    pointer-events: none;
}

.booking-drawer-overlay.active {
    visibility: visible;
    pointer-events: auto;
}

.drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-drawer-overlay.active .drawer-backdrop {
    opacity: 1;
}

.booking-drawer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 520px;
    max-width: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}

.booking-drawer-overlay.active .booking-drawer {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.drawer-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

/* Keep auto-scrolled sections clear of the sticky drawer header */
#drawer-date-section,
#drawer-timeslot-container,
#drawer-variant-section,
#drawer-pickup-section,
#drawer-addons-section {
    scroll-margin-top: 84px;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s;
    line-height: 1;
}

.drawer-close:hover {
    background: #f3f4f6;
    color: #1f2937;
}

/* Drawer Loading */
.drawer-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    gap: 16px;
}

.drawer-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e5e7eb;
    border-top-color: var(--color-primary-dark, #2563eb);
    border-radius: 50%;
    animation: drawer-spin 0.8s linear infinite;
}

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

.drawer-loading p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

/* Drawer Error */
.drawer-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    gap: 12px;
    text-align: center;
}

.drawer-error i {
    font-size: 32px;
    color: #ef4444;
}

.drawer-error p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

.btn-retry {
    background: var(--color-primary-dark, #2563eb);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-retry:hover {
    opacity: 0.9;
}

/* Drawer Content */
.drawer-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.drawer-content form {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0 24px;
    gap: 20px;
}

.drawer-product-info {
    padding-top: 20px;
}

.drawer-type-name {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px;
}

.drawer-type-desc {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Drawer inner sections inherit horizontal padding from form */
.drawer-content .ticket-variant-card {
    flex-direction: row;
    flex-wrap: wrap;
    text-align: left;
    align-items: center;
    gap: 8px;
    padding: 16px;
}

.drawer-content .quantity-selector-modern {
    justify-content: flex-start;
}

/* Per-variant sold-out (exclusive mode): variant capacity exhausted. */
.ticket-variant-card.variant-sold-out {
    opacity: 0.6;
}

/* Withheld for this slot (status = unavailable): not offered, so hide the card. */
.ticket-variant-card.variant-unavailable {
    display: none;
}

.variant-soldout-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 8px;
    background: #f3f4f6;
    color: #b91c1c;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border: 1px solid #e5e7eb;
}

.drawer-content .ticket-variant-info {
    flex: 0 0 100%;
}

.drawer-content .ticket-variant-name {
    font-size: 14px;
}

.drawer-content .ticket-variant-price {
    font-size: 15px;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ticket-variant-price .price-original {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
}

.ticket-variant-price .price-unit-label {
    color: #9ca3af;
    font-size: 12px;
    font-weight: 400;
}

/* Variant Description Toggle */
.ticket-variant-info {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 8px;
}

.ticket-variant-info .ticket-variant-name {
    flex: 1;
    min-width: 0;
    margin: 0;
}

.variant-desc-toggle {
    font-size: 13px;
    color: #7c3aed;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    flex-shrink: 0;
    white-space: nowrap;
}

.variant-desc-toggle:hover {
    color: #6d28d9;
}

.variant-desc-arrow {
    font-size: 10px;
    transition: transform 0.2s;
}

.ticket-variant-description {
    flex: 0 0 100%;
}

/* Drawer Summary */
.drawer-summary {
    background: linear-gradient(135deg, var(--color-primary-lightest) 0%, #f8fafc 100%);
    border-top: 1px solid #e5e7eb;
    margin: auto -24px 0;
    padding: 20px 24px;
}

.drawer-summary-header h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 12px;
}

.drawer-summary .order-items {
    margin-bottom: 12px;
}

.drawer-summary .order-total-section {
    border-top: 1px solid #e5e7eb;
    margin: 0 -24px -20px;
    padding: 12px 24px 20px;
}

.btn-continue-total {
    display: none;
}

/* Drawer Actions */
.drawer-actions {
    padding: 16px 0;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    position: sticky;
    bottom: 0;
}

.drawer-actions .btn-continue {
    width: 100%;
}

.drawer-actions-total {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-drawer {
        width: 100%;
    }

    .drawer-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .drawer-actions-total {
        display: flex;
        flex-direction: column;
        min-width: 0;
    }

    .actions-total-label {
        font-size: 0.75rem;
        color: #6b7280;
        font-weight: 500;
    }

    .actions-total-amount {
        font-size: 1.1rem;
        font-weight: 700;
        color: #1f2937;
        white-space: nowrap;
    }

    .drawer-actions .btn-continue {
        width: auto;
        flex-shrink: 0;
    }

    .btn-continue-total {
        display: none;
    }

    .drawer-content form .drawer-summary {
        order: -1;
        margin-top: 0;
        border-top: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 16px 24px;
    }
}

@media (max-width: 480px) {
    .drawer-header {
        padding: 16px;
    }

    .drawer-content form {
        padding: 0 16px;
        gap: 16px;
    }

    .drawer-product-info {
        padding-top: 16px;
    }

    .drawer-content form .drawer-summary {
        margin-left: -16px;
        margin-right: -16px;
        padding: 16px;
    }

    .drawer-summary .order-total-section {
        margin: 0 -16px -16px;
        padding: 12px 16px 16px;
    }

    .drawer-actions {
        padding: 12px 0;
    }
}

/* Drawer Addon Cards */
.drawer-addon-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.drawer-addon-card.has-quantity {
    border-color: var(--accent-color, #d4a574);
    box-shadow: 0 0 0 1px var(--accent-color, #d4a574);
}

.drawer-addon-header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.drawer-addon-icon {
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #6b7280;
    font-size: 14px;
}

.drawer-addon-card.has-quantity .drawer-addon-icon {
    background: var(--accent-color, #d4a574);
    color: #fff;
}

.drawer-addon-info {
    flex: 1;
    min-width: 0;
}

.drawer-addon-name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 2px;
}

.drawer-addon-desc {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.drawer-addon-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 99px;
    flex-shrink: 0;
}

.drawer-addon-badge.required {
    background: #fef2f2;
    color: #dc2626;
}

.drawer-addon-price-row,
.drawer-addon-variant-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 8px;
}

.drawer-addon-variant-row + .drawer-addon-variant-row {
    border-top: 1px solid #f3f4f6;
    margin-top: 6px;
    padding-top: 10px;
}

.drawer-addon-pricing,
.drawer-addon-variant-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.drawer-addon-price-value,
.drawer-addon-variant-price {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.drawer-addon-price-type {
    font-size: 11px;
    color: #9ca3af;
}

.drawer-addon-variant-name {
    font-size: 13px;
    color: #374151;
}

.drawer-addons-list .quantity-selector-modern {
    transform: scale(0.9);
    transform-origin: right center;
}

/* ==========================================================================
   PRODUCTS INDEX PAGE - Product Listing, Sidebar, Filters, Cards
   ========================================================================== */

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --bg-page: #fafafa;
    --bg-card: #ffffff;
    --border: #e5e7eb;
    --radius: 12px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --transition: 0.2s ease;
}

/* Page Layout */
.products-page {
    background: var(--bg-page);
    min-height: 100vh;
    /* Navbar is position:relative on booking-layout (see theme.css), so it
       already occupies flow height — no extra top padding needed here. The
       .products-container top padding provides the breathing room. */
}

.products-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px 16px 100px;
    display: flex;
    gap: 32px;
}

/* Sidebar */
.products-sidebar {
    display: none;
    width: 220px;
    flex-shrink: 0;
}

.sidebar-inner {
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    /* Room so the scrollbar doesn't overlap checkbox labels */
    padding-right: 4px;
    /* Slim scrollbar, hidden until hover (Firefox) */
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
    transition: scrollbar-color 0.2s ease;
}

.sidebar-inner:hover {
    scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

/* Slim scrollbar, hidden until hover (WebKit/Chromium) */
.sidebar-inner::-webkit-scrollbar {
    width: 5px;
}

.sidebar-inner::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-inner::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 3px;
    transition: background 0.2s ease;
}

.sidebar-inner:hover::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
}

.sidebar-inner:hover::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.32);
}

.sidebar-heading {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin: 0 0 16px;
    padding: 0 12px;
}

.category-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.category-item {
    display: block;
    padding: 10px 12px;
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
}

.category-item:hover {
    color: var(--text-primary);
    background: rgba(0,0,0,0.04);
}

.category-item.active {
    color: var(--primary-dark);
    background: rgba(99, 102, 241, 0.08);
    font-weight: 500;
}

/* Checkbox Filters */
.filter-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 4px;
}

.filter-checkbox-row {
    border-radius: 8px;
    transition: var(--transition);
}
.filter-checkbox-row:hover {
    background: rgba(0,0,0,0.04);
}
.filter-checkbox-row .filter-checkbox-item:hover {
    background: transparent;
}
.destination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    margin-right: 6px;
}
.destination-link:hover {
    background: var(--primary);
    color: #fff;
}

.filter-checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    font-size: 14px;
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    margin: 0;
}

.filter-checkbox-item:hover {
    color: var(--text-primary);
    background: rgba(0,0,0,0.04);
}

.filter-checkbox-item input[type="checkbox"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
    cursor: pointer;
    flex-shrink: 0;
}

.filter-checkbox-item span {
    line-height: 1.3;
}

/* Sidebar Sections */
.sidebar-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* Price Filter - Range Slider */
.price-filter-form {
    padding: 0 12px;
}

.price-slider-container {
    margin-bottom: 16px;
}

.price-slider-labels {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.price-slider-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.price-slider-dash {
    font-size: 13px;
    color: var(--text-muted);
}

.price-slider-track-wrap {
    position: relative;
    height: 36px;
    display: flex;
    align-items: center;
}

.price-slider-track {
    position: absolute;
    width: 100%;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    pointer-events: none;
}

.price-slider-range {
    position: absolute;
    height: 4px;
    background: #7C3AED;
    border-radius: 2px;
    pointer-events: none;
}

.price-range-input {
    position: absolute;
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
    margin: 0;
    padding: 0;
}

.price-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    margin-top: -8px;
    border-radius: 50%;
    background: #7C3AED;
    border: 3px solid white;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    cursor: pointer;
    pointer-events: all;
    position: relative;
    z-index: 1;
}

.price-range-input::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #7C3AED;
    border: 3px solid white;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    cursor: pointer;
    pointer-events: all;
    position: relative;
    z-index: 1;
}

.price-range-input::-webkit-slider-runnable-track {
    height: 4px;
    background: transparent;
}

.price-range-input::-moz-range-track {
    height: 4px;
    background: transparent;
    border: none;
}

.price-filter-btn {
    display: block;
    width: auto;
    margin: 0 auto;
    padding: 6px 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition);
}

.price-filter-btn:hover {
    background: var(--primary-dark);
}

.price-clear-link {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
}

.price-clear-link:hover {
    color: var(--primary);
}

/* Main Content */
.products-main {
    flex: 1;
    min-width: 0;
}

.products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.header-left {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.clear-search-link {
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
}

.clear-search-link:hover {
    text-decoration: underline;
}

.products-header h1 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.product-count {
    font-size: 14px;
    color: var(--text-muted);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sort-dropdown {
    display: flex;
    align-items: center;
}

.sort-select {
    padding: 8px 32px 8px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-primary);
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E") no-repeat right 10px center;
    appearance: none;
    cursor: pointer;
    transition: border-color var(--transition);
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary);
}

.sort-select:hover {
    border-color: var(--text-muted);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
}

/* Product Card */
.product-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.card-image {
    position: relative;
    aspect-ratio: 3/2;
    background: #f3f4f6;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.03);
}

.card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-placeholder img {
    max-width: 120px;
    max-height: 60px;
    opacity: 0.7;
    object-fit: contain;
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--text-primary);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.card-content {
    padding: 16px 18px 18px;
}

.card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 6px;
}

.card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px;
    line-height: 1.35;
}

.card-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0 0 16px;
}

.card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.price-from {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.price-amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.card-action {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.card-action svg {
    transition: transform var(--transition);
}

.product-card:hover .card-action svg {
    transform: translateX(3px);
}

/* Products Empty State */
.products-page .empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
}

.products-page .empty-icon {
    color: var(--border);
    margin-bottom: 16px;
}

.products-page .empty-state p {
    color: var(--text-secondary);
    margin: 0 0 12px;
}

.empty-link {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}

.empty-link:hover {
    text-decoration: underline;
}

/* Mobile Filter Toggle */
.mobile-filter-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-primary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    cursor: pointer;
    z-index: 100;
}

/* Mobile Filter Drawer */
.mobile-filter-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
}

.mobile-filter-drawer.open {
    display: block;
}

.mobile-filter-drawer .drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-filter-drawer.open .drawer-backdrop {
    opacity: 1;
}

.mobile-filter-drawer .drawer-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 16px 16px 0 0;
    max-height: 70vh;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.mobile-filter-drawer.open .drawer-content {
    transform: translateY(0);
}

.mobile-filter-drawer .drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
}

.mobile-filter-drawer .drawer-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
}

.drawer-body {
    padding: 16px 20px 32px;
    max-height: calc(70vh - 60px);
    overflow-y: auto;
}

.drawer-section {
    margin-bottom: 24px;
}

.drawer-section:last-child {
    margin-bottom: 0;
}

.drawer-section-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin: 0 0 12px;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.drawer-item {
    display: block;
    padding: 12px 14px;
    font-size: 15px;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 10px;
}

.drawer-item.active {
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary-dark);
    font-weight: 500;
}

/* Drawer Price Filter */
.drawer-price-form {
    padding: 0;
}

.drawer-price-form .price-slider-labels {
    margin-bottom: 20px;
}

.drawer-price-form .price-slider-value {
    font-size: 16px;
}

.drawer-price-form .price-range-input::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
    margin-top: -10px;
}

.drawer-price-form .price-range-input::-moz-range-thumb {
    width: 24px;
    height: 24px;
}

.drawer-apply-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.drawer-apply-btn:active {
    background: var(--primary-dark);
}

.drawer-clear-link {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
}

/* Responsive - Products Index */
@media (min-width: 540px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .products-container {
        padding: 32px 24px 60px;
    }

    .products-sidebar {
        display: block;
    }

    .products-header h1 {
        font-size: 28px;
    }

    .mobile-filter-toggle,
    .mobile-filter-drawer {
        display: none !important;
    }
}

@media (min-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .products-container {
        max-width: 1140px;
    }
}

/* ==========================================================================
   Mobile Accordion - Product Detail Sections
   Active only on mobile (<768px). Desktop shows all content normally.
   ========================================================================== */

@media (max-width: 768px) {

    html,
    body.booking-layout {
        overflow-x: hidden;
    }

    .booking-page {
        padding-top: 16px;
    }

    .mob-accordion-header {
        position: relative;
        cursor: pointer;
        padding-right: 32px;
        -webkit-user-select: none;
        user-select: none;
    }

    /* Chevron indicator (pure CSS) */
    .mob-accordion-header::after {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        border-right: 2px solid var(--color-primary-dark, #9667E0);
        border-bottom: 2px solid var(--color-primary-dark, #9667E0);
        position: absolute;
        right: 4px;
        top: 50%;
        transform: translateY(-70%) rotate(45deg);
        transition: transform 0.3s ease;
    }

    /* Rotate chevron when open */
    .mob-accordion.is-open > .mob-accordion-header::after {
        transform: translateY(-30%) rotate(-135deg);
    }

    /* Accordion body: collapsed by default */
    .mob-accordion-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease-out, opacity 0.25s ease-out;
        opacity: 0;
    }

    /* Prevent FOUC for default-open sections before JS initializes */
    .mob-accordion[data-mob-default="open"] > .mob-accordion-body {
        max-height: 2000px;
        opacity: 1;
    }

    /* Accordion body: expanded */
    .mob-accordion.is-open > .mob-accordion-body {
        opacity: 1;
    }

    /* Section separator */
    .mob-accordion {
        border-bottom: 1px solid #e5e7eb;
    }

    /* Product description sections */
    .product-description.mob-accordion {
        margin-bottom: 0;
        padding: 16px 0;
    }

    .product-description.mob-accordion h2 {
        margin-bottom: 0;
        transition: margin-bottom 0.2s ease;
    }

    .product-description.mob-accordion.is-open h2 {
        margin-bottom: 12px;
    }

    /* Experiences section */
    .experiences-section.mob-accordion {
        padding: 16px 0;
    }

    .experiences-section.mob-accordion h2 {
        margin-bottom: 0;
        transition: margin-bottom 0.2s ease;
    }

    .experiences-section.mob-accordion.is-open h2 {
        margin-bottom: 4px;
    }

    /* Remove double border between preceding accordion and info-sections wrapper */
    .info-sections {
        border-top: none;
        margin-top: 0;
    }

    /* Info sections: match product-description accordion sizing */
    .info-section.mob-accordion {
        gap: 0;
        padding: 16px 0;
        border-bottom: none;
    }

    .info-section.mob-accordion .info-section-header {
        padding: 0;
        margin: 0;
    }

    .info-section.mob-accordion .info-section-body {
        padding: 0;
    }

    /* Reviews section */
    .pdp-section.mob-accordion {
        padding: 16px 0;
    }

    .pdp-section.mob-accordion .pdp-section-header {
        margin-bottom: 0;
        transition: margin-bottom 0.2s ease;
    }

    .pdp-section.mob-accordion.is-open .pdp-section-header {
        margin-bottom: 16px;
    }
}

/* Desktop: force all content visible, no accordion behavior */
@media (min-width: 769px) {

    .mob-accordion-header::after {
        display: none !important;
    }

    .mob-accordion-body {
        max-height: none !important;
        overflow: visible !important;
        opacity: 1 !important;
    }

    .mob-accordion-header {
        cursor: default !important;
    }
}

/* ======================================================================
   Contact Details "Optional" accordion (checkout review page)
   Collapsed by default; JS toggles .expanded on the collapsible panel.
   Bootstrap's collapse plugin is not loaded here, so this is self-contained.
   ====================================================================== */
.contact-accordion-toggle {
    cursor: pointer;
    user-select: none;
    gap: var(--space-4);
}

.contact-accordion-heading h2 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* "optional" pill sitting beside the Contact Details title */
.contact-optional-tag {
    display: inline-block;
    padding: 0.1rem 0.55rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #6b7280;
    background: rgba(107, 114, 128, 0.12);
}

.contact-accordion-chevron {
    flex-shrink: 0;
    color: #8654D1;
    transition: transform 0.2s ease;
}

.contact-accordion-toggle[aria-expanded="true"] .contact-accordion-chevron {
    transform: rotate(180deg);
}

.contact-collapsible {
    display: none;
}

.contact-collapsible.expanded {
    display: block;
}

/* Collapsed: drop the body padding so no empty white strip shows under the
   header. The card's overflow:hidden rounds the header's bottom corners. */
.contact-accordion-toggle[aria-expanded="false"] + .ticket-selection-body {
    padding: 0;
}

/* ==========================================================================
   Transfer search bar (B2C) — pill fields, accent radios, orange search
   ========================================================================== */
.transfer-search-bar {
    --ts-accent: var(--brand-primary, #16a34a);
    --ts-accent-dark: var(--brand-primary-dark, #15803d);
    --ts-accent-ring: var(--brand-primary-light, #bbf7d0);
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.75rem 1.75rem 1.75rem;
    box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0,0,0,.1));
}

/* --- Search-mode tabs (By flight number / By pick-up time) --- */
.ts-tabs {
    display: flex;
    gap: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1.25rem;
}
.ts-tab {
    appearance: none;
    background: none;
    border: 0;
    padding: .35rem 0 .75rem;
    margin-bottom: -1px;
    font-size: 1rem;
    font-weight: 700;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: color .15s ease, border-color .15s ease;
}
.ts-tab:hover {
    color: #111827;
}
.ts-tab.is-active {
    color: var(--ts-accent);
    border-bottom-color: var(--ts-accent);
}
.ts-tab:focus-visible {
    outline: none;
    color: var(--ts-accent);
}

/* --- Direction radios --- */
.ts-direction {
    display: flex;
    gap: 2rem;
    margin-top: .5rem;
    margin-bottom: 1.5rem;
}
.ts-radio {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
    font-size: 1rem;
    color: #1f2937;
    user-select: none;
}
.ts-radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.ts-radio-mark {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    flex: 0 0 auto;
    transition: border-color .15s ease;
}
.ts-radio input:checked + .ts-radio-mark {
    border-color: var(--ts-accent);
}
.ts-radio input:checked + .ts-radio-mark::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: var(--ts-accent);
    border-radius: 50%;
}
.ts-radio input:focus-visible + .ts-radio-mark {
    box-shadow: 0 0 0 3px var(--ts-accent-ring);
}

/* --- Fields row --- */
.ts-fields {
    display: flex;
    gap: .75rem;
    align-items: stretch;
}
.ts-field {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    background: #f3f4f6;
    border: 1px solid transparent;
    border-radius: .9rem;
    padding: .55rem .9rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: border-color .15s ease, background .15s ease;
}
.ts-field:focus-within {
    background: #fff;
    border-color: var(--ts-accent);
}
.ts-field-label {
    font-size: .8rem;
    color: #9ca3af;
    line-height: 1.2;
    margin-bottom: .1rem;
}
.ts-field-input {
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    width: 100%;
    outline: none;
}
.ts-field-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}
.ts-field-input.is-invalid {
    color: #dc2626;
}
.ts-field:has(.is-invalid) {
    border-color: #dc2626;
    background: #fff;
}
.ts-datetime {
    font-weight: 600;
    color: #111827;
}

/* Date field opens the product-style calendar modal */
.ts-date-trigger {
    display: flex;
    align-items: center;
    gap: .4rem;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.3;
    color: #9ca3af;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ts-date-trigger.has-value {
    color: #111827;
    font-weight: 600;
}
.ts-date-trigger > .fa-calendar-alt {
    color: var(--ts-accent);
    font-size: .9rem;
    flex: 0 0 auto;
}
.ts-date-trigger.is-invalid {
    color: #dc2626;
}

/* --- Autocomplete suggestions --- */
.ts-suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    /* Grow wider than the (narrow) field so a full location name fits on one
       line, but never overflow the viewport on small screens. */
    min-width: 440px;
    max-width: min(560px, calc(100vw - 2rem));
    width: max-content;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: .75rem;
    box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0,0,0,.15));
    z-index: 30;
    max-height: 380px;
    overflow-y: auto;
    padding: .35rem;
}
.ts-suggestion {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    padding: .7rem .8rem;
    border-radius: .5rem;
    font-size: .95rem;
    line-height: 1.35;
    color: #1f2937;
    cursor: pointer;
}
.ts-suggestion:hover {
    background: #f3f4f6;
}
.ts-suggestion-main {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    min-width: 0;
}
.ts-suggestion-icon {
    margin-top: .2rem;
    font-size: 1rem;
    color: #6b7280;
    flex: 0 0 auto;
}
.ts-suggestion-text {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    min-width: 0;
}
.ts-suggestion-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    /* Keep the whole airport name on a single line. */
    white-space: nowrap;
}
.ts-suggestion-city {
    font-size: .82rem;
    color: #9ca3af;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ts-suggestion-tag {
    flex: 0 0 auto;
    font-size: .9rem;
    text-transform: none;
    letter-spacing: 0;
    color: #c99a2e;
}
.ts-suggestion-empty {
    padding: .5rem .6rem;
    font-size: .8rem;
    color: #9ca3af;
    text-align: center;
}
.ts-suggestion-empty {
    padding: .5rem .6rem;
    font-size: .8rem;
    color: #9ca3af;
    text-align: center;
}

/* --- Passengers --- */
.ts-pax {
    flex: 0 0 auto;
    min-width: 180px;
}
.ts-pax-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
}
.ts-pax-toggle .fa-chevron-down {
    color: #6b7280;
    font-size: .8rem;
}
.ts-pax-popover {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    /* Anchor to the toggle's left edge but size to content so the stepper
       never overflows the 180px trigger. */
    min-width: 320px;
    max-width: min(360px, 90vw);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: .9rem;
    box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0,0,0,.15));
    z-index: 30;
    padding: 1rem 1.15rem;
}
.ts-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #1f2937;
}
.ts-stepper-label {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.ts-stepper-title {
    font-weight: 600;
    color: #1f2937;
}
.ts-stepper-sub {
    font-size: .8rem;
    font-weight: 400;
    color: #9ca3af;
}
.ts-stepper-controls {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex: 0 0 auto;
}
.ts-step {
    width: 38px;
    height: 38px;
    border: 0;
    background: #f3f4f6;
    border-radius: .6rem;
    font-size: 1.15rem;
    line-height: 1;
    color: #374151;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, color .15s ease;
}
.ts-step:hover {
    background: var(--ts-accent-ring, #dcfce7);
    color: var(--ts-accent);
}
.ts-step-count {
    min-width: 1.75rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.05rem;
}

/* --- Combined date + time modal --- */
/* Double class beats the base .calendar-modal { max-width: 500px }. */
.calendar-modal.transfer-dt-modal {
    --ts-accent: var(--brand-primary, #16a34a);
    --ts-accent-dark: var(--brand-primary-dark, #15803d);
    max-width: 860px;
    width: min(860px, 96vw);
    position: relative;
    overflow: hidden;
}
.transfer-dt-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}
.transfer-dt-body {
    display: flex;
    align-items: stretch;
}
.transfer-dt-cal {
    flex: 1 1 520px;
    min-width: 0;
    border-right: 1px solid #eef0f2;
}
.transfer-dt-time {
    flex: 1 1 300px;
    padding: 2.25rem 1.75rem 1.5rem;
    min-width: 0;
}
.transfer-dt-time-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #374151;
    margin: 0 0 .5rem;
}
.transfer-dt-time-help {
    font-size: .9rem;
    color: #9ca3af;
    line-height: 1.4;
    margin: 0 0 1.25rem;
}
.transfer-dt-time-selects {
    display: flex;
    align-items: center;
    gap: .6rem;
}
.transfer-dt-select {
    flex: 1 1 auto;
    min-width: 72px;
    appearance: none;
    -webkit-appearance: none;
    background: #fff 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='%236b7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right .9rem center;
    border: 1px solid #d1d5db;
    border-radius: .75rem;
    padding: .7rem 2.2rem .7rem 1rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
}
.transfer-dt-select:focus {
    outline: none;
    border-color: var(--ts-accent);
    box-shadow: 0 0 0 3px var(--ts-accent-ring, #bbf7d0);
}
.transfer-dt-colon {
    font-size: 1.25rem;
    font-weight: 700;
    color: #6b7280;
    flex: 0 0 auto;
}

/* Plain white calendar look inside the transfer modal */
.transfer-dt-modal .booking-calendar {
    box-shadow: none;
    margin-bottom: 0;
    border-radius: 0;
}
/* Let each day cell fill its 1fr track. The shared calendar sets
   aspect-ratio:1 + min-height, which forces a min width and pushes the
   grid wider than its column here, clipping the Saturday column. */
.transfer-dt-modal .calendar-day {
    aspect-ratio: auto;
    min-height: 52px;
}
/* Double class (.calendar-modal.transfer-dt-modal, 0,3,0) beats the global
   body.booking-layout .calendar-header green gradient in theme.css (0,2,1). */
.calendar-modal.transfer-dt-modal .calendar-header {
    background: #fff;
    padding-top: 1.5rem;
}
.calendar-modal.transfer-dt-modal .calendar-header::before {
    display: none;
}
.calendar-modal.transfer-dt-modal .calendar-month-title {
    color: #1f2937;
}
.calendar-modal.transfer-dt-modal .calendar-nav-btn {
    background: transparent;
    border-color: transparent;
    color: #374151;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.calendar-modal.transfer-dt-modal .calendar-nav-btn:hover:not(:disabled) {
    background: #f3f4f6;
    border-color: #e5e7eb;
    box-shadow: none;
}

/* Footer with note + actions */
.transfer-dt-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid #eef0f2;
}
.transfer-dt-note {
    font-size: .85rem;
    color: #9ca3af;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
.transfer-dt-actions {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.transfer-dt-btn {
    border: 0;
    border-radius: .75rem;
    padding: .6rem 1.6rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}
.transfer-dt-btn-cancel {
    background: transparent;
    color: #374151;
}
.transfer-dt-btn-cancel:hover {
    background: #f3f4f6;
}
.transfer-dt-btn-ok {
    background: var(--ts-accent);
    color: #fff;
}
.transfer-dt-btn-ok:hover {
    background: var(--ts-accent-dark);
}

@media (max-width: 575.98px) {
    .transfer-dt-body {
        flex-direction: column;
    }
    .transfer-dt-cal {
        border-right: 0;
        border-bottom: 1px solid #eef0f2;
    }
    .transfer-dt-time {
        padding: 1.25rem 1.5rem;
    }
}

/* --- Flight date trigger + date-only modal (transfer review) --- */
.fd-date-trigger {
    display: flex;
    align-items: center;
    gap: .5rem;
    text-align: left;
    cursor: pointer;
    color: #9ca3af;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fd-date-trigger.has-value {
    color: #374151;
    font-weight: 600;
}
.fd-date-trigger > .fa-calendar-alt {
    color: var(--brand-primary, #16a34a);
    flex: 0 0 auto;
}

/* Date-only variant: single calendar column, no time pane. */
.calendar-modal.transfer-dt-modal--date {
    max-width: 460px;
    width: min(460px, 96vw);
}
.transfer-dt-modal--date .transfer-dt-cal {
    flex: 1 1 auto;
    border-right: 0;
}
.transfer-dt-modal--date .transfer-dt-time {
    display: none;
}

/* --- Results left rail (why-choose + services filter) --- */
.transfer-rail-card {
    --ts-accent: var(--brand-primary, #16a34a);
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm, 0 1px 2px rgba(0,0,0,.05));
    padding: 1.25rem 1.5rem;
}
.transfer-why-card {
    background: #f3f4f6;
    border-color: #e5e7eb;
}
.transfer-rail-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem;
}
.transfer-why-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.transfer-why-list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    color: #374151;
    font-size: .95rem;
    line-height: 1.4;
    margin-bottom: .5rem;
}
.transfer-why-list li:last-child {
    margin-bottom: 0;
}
.transfer-why-list li > i {
    color: var(--ts-accent);
    font-size: 1rem;
    margin-top: .15rem;
    flex: 0 0 auto;
}
.transfer-service-check {
    padding: .3rem 0;
    margin: 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f3f4f6;
}
.transfer-service-check:last-of-type {
    border-bottom: 0;
}
.transfer-service-check .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0;
    margin-left: 0;
    float: none;
    border-color: #cbd5e1;
    border-radius: .35rem;
    cursor: pointer;
    flex: 0 0 auto;
}
.transfer-service-check .form-check-input:checked {
    background-color: var(--ts-accent);
    border-color: var(--ts-accent);
}
.transfer-service-check .form-check-input:focus {
    border-color: var(--ts-accent);
    box-shadow: 0 0 0 .2rem rgba(22, 163, 74, .18);
}
.transfer-service-check .form-check-label {
    margin-left: .65rem;
    color: #374151;
    font-size: .8rem;
    cursor: pointer;
}
.transfer-services-clear {
    display: inline-block;
    margin-top: .75rem;
    font-size: .85rem;
    color: var(--ts-accent);
    text-decoration: none;
}
.transfer-services-clear:hover {
    text-decoration: underline;
}

/* --- Search button --- */
.ts-search-btn {
    flex: 0 0 auto;
    border: 0;
    background: var(--ts-accent);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 0 2rem;
    border-radius: .9rem;
    cursor: pointer;
    transition: background .15s ease;
}
.ts-search-btn:hover {
    background: var(--ts-accent-dark);
}

/* A locked/read-only value shown as plain text (e.g. flight no. at review) */
.transfer-readonly-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
    padding: 0.35rem 0;
}

/* --- Trust badges --- */
.transfer-trust {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.transfer-trust-item {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    padding: .25rem;
}
.transfer-trust-item > i {
    color: var(--brand-primary, #16a34a);
    font-size: 1.6rem;
    line-height: 1.4;
    flex: 0 0 auto;
    width: 2rem;
    text-align: center;
}
.transfer-trust-title {
    font-weight: 700;
    color: #1f2937;
    font-size: .95rem;
}
.transfer-trust-text {
    color: #6b7280;
    font-size: .85rem;
    line-height: 1.35;
}

/* --- Popular airports --- */
.transfer-airport-card {
    display: block;
    height: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: .9rem;
    padding: 1rem 1.1rem;
    text-decoration: none;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.transfer-airport-card:hover {
    border-color: var(--brand-primary, #16a34a);
    box-shadow: var(--shadow-md, 0 4px 6px -1px rgba(0,0,0,.1));
    transform: translateY(-2px);
}
.transfer-airport-title {
    font-weight: 700;
    color: #1f2937;
    font-size: .95rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}
.transfer-airport-price {
    color: #6b7280;
    font-size: .85rem;
}
.transfer-airport-price span {
    color: var(--brand-primary, #16a34a);
    font-weight: 700;
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
    .ts-fields {
        flex-wrap: wrap;
    }
    .ts-field,
    .ts-pax {
        flex: 1 1 45%;
        min-width: 45%;
    }
    .ts-search-btn {
        flex: 1 1 100%;
        padding: .75rem;
    }
}
@media (max-width: 575.98px) {
    .ts-direction {
        gap: 1.25rem;
    }
    .ts-field,
    .ts-pax {
        flex: 1 1 100%;
        min-width: 100%;
    }
    .ts-pax-popover {
        min-width: 0;
        left: 0;
        right: 0;
        max-width: none;
    }
}

/* ======================================================================
   TRANSFER REVIEW - Additional Services (stepper rows)
   Colours are pulled from the theme tokens. Under body.booking-layout the
   --color-primary-* scale resolves to a neutral grey ramp, while
   --color-accent stays orange and --brand-primary stays green.
   ====================================================================== */
.ts-optional {
    color: var(--color-primary-accent, #9ca3af);
    font-weight: 500;
    font-size: .8em;
}
.transfer-service-row {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--color-primary-light, #e5e7eb);
}
.transfer-service-row:first-child {
    padding-top: .25rem;
}
.transfer-service-row:last-child {
    border-bottom: 0;
    padding-bottom: .25rem;
}
.transfer-service-info {
    flex: 1 1 auto;
    min-width: 0;
}
.transfer-service-name {
    font-weight: 700;
    color: var(--color-primary-darker, #374151);
    font-size: 1.05rem;
    margin-bottom: .35rem;
}
.transfer-service-desc {
    color: var(--color-primary, #6b7280);
    font-size: .92rem;
    line-height: 1.55;
}
.transfer-service-right {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .6rem;
}
.transfer-service-price {
    color: var(--brand-primary, #16a34a);
    font-weight: 700;
    font-size: 1.05rem;
    white-space: nowrap;
}
.transfer-service-stepper {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}
.transfer-service-stepper .step-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md, .5rem);
    border: 1px solid var(--color-primary-light, #e5e7eb);
    background: var(--color-primary-lightest, #f3f4f6);
    color: var(--color-primary-darker, #374151);
    font-size: .9rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-fast, 150ms ease), border-color var(--transition-fast, 150ms ease);
}
.transfer-service-stepper .step-btn:hover:not(:disabled) {
    background: var(--color-primary-light, #e5e7eb);
}
.transfer-service-stepper .step-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
}
.transfer-service-stepper .step-val {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--color-primary-darker, #374151);
}

@media (max-width: 575.98px) {
    .transfer-service-row {
        gap: 1rem;
    }
}

/* ======================================================================
   TRANSFER REVIEW - Order Summary card
   ====================================================================== */
.transfer-summary {
    position: sticky;
    top: 1rem;
    background: #fff;
    border: 1px solid var(--color-primary-light, #e5e7eb);
    border-radius: var(--radius-xl, 1rem);
    box-shadow: var(--shadow-md, 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06));
    padding: 1.5rem;
}

/* Vehicle header */
.transfer-summary-vehicle-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}
.transfer-summary-vehicle-info {
    flex: 1 1 auto;
    min-width: 0;
}
.transfer-summary-vehicle-name {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-primary-darker, #374151);
    margin: 0 0 .5rem;
}
.transfer-summary-vehicle-model {
    color: var(--color-primary, #6b7280);
    font-size: .95rem;
    margin: 0 0 .75rem;
}
.transfer-summary-vehicle-img {
    width: 120px;
    height: 78px;
    object-fit: contain;
    flex: 0 0 auto;
}
.transfer-summary-vehicle-noimg {
    width: 120px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-light, #d1d5db);
    flex: 0 0 auto;
}

.transfer-summary-capacity {
    display: flex;
    align-items: center;
    gap: .85rem;
    color: var(--color-primary-darker, #374151);
    font-weight: 600;
    font-size: .95rem;
}
.transfer-summary-capacity .cap-sep {
    color: var(--color-primary-light, #d1d5db);
    font-weight: 400;
}
.transfer-summary-capacity i {
    color: var(--color-primary-dark, #4b5563);
    margin-right: .3rem;
}
.transfer-summary-provider {
    margin-left: auto;
    color: var(--color-primary-accent, #9ca3af);
    font-size: .9rem;
    font-weight: 500;
}

.transfer-summary-divider {
    border: 0;
    border-top: 1px solid var(--color-primary-light, #e5e7eb);
    margin: 1.25rem 0;
}
.transfer-summary-divider.dashed {
    border-top: 1px dashed var(--color-primary-light, #d7dbe0);
}

/* Section blocks */
.transfer-summary-section + .transfer-summary-section {
    margin-top: 1.25rem;
}
.transfer-summary-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary-darker, #374151);
    margin: 0 0 .6rem;
}
.transfer-summary-box {
    background: var(--color-primary-lightest, #f3f4f6);
    border-radius: var(--radius-lg, .75rem);
    padding: .85rem 1rem;
    color: var(--color-primary-darker, #374151);
}
.transfer-summary-box .muted {
    color: var(--color-primary-accent, #9ca3af);
    font-weight: 400;
}
/* On mobile, drop "(Local time)" to its own line instead of wrapping mid-phrase. */
@media (max-width: 767px) {
    .transfer-summary-box .muted {
        display: block;
    }
}

/* Route (departure -> destination) with connector */
.transfer-route {
    background: var(--color-primary-lightest, #f3f4f6);
    border-radius: var(--radius-lg, .75rem);
    padding: 1rem;
}
.transfer-route-row {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
}
.transfer-route-icon {
    flex: 0 0 auto;
    width: 22px;
    text-align: center;
    color: var(--color-primary-dark, #4b5563);
    padding-top: .15rem;
}
.transfer-route-text {
    color: var(--color-primary-darker, #374151);
    line-height: 1.45;
}
.transfer-route-connector {
    width: 22px;
    display: flex;
    justify-content: center;
}
.transfer-route-connector span {
    display: block;
    width: 0;
    height: 26px;
    border-left: 2px dotted var(--color-primary-accent, #cbd0d6);
}

/* Cancel-for-free note */
.transfer-summary-cancel {
    display: flex;
    gap: .5rem;
    align-items: flex-start;
    color: var(--brand-primary, #16a34a);
    font-weight: 600;
    line-height: 1.4;
}
.transfer-summary-cancel i {
    padding-top: .15rem;
}

/* --- "Suggested pick-up timings" tip in the vehicle details drawer --- */
.transfer-tip {
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    border-radius: .75rem;
    padding: .85rem 1rem;
}
.transfer-tip-head {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    font-size: .9rem;
    color: #15803d;
    margin-bottom: .5rem;
}
.transfer-tip-head i {
    color: #f59e0b;
}
.transfer-tip-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: .85rem;
    color: #374151;
    line-height: 1.45;
}
.transfer-tip-list li + li {
    margin-top: .35rem;
}
.transfer-tip-list strong {
    color: #1f2937;
}

/* --- "Details" link on vehicle result cards --- */
.transfer-details-link {
    font-size: .875rem;
    font-weight: 600;
    color: var(--brand-primary, #16a34a);
    text-decoration: none;
    transition: color .15s ease, gap .15s ease;
}
.transfer-details-link:hover,
.transfer-details-link:focus {
    color: var(--brand-primary-dark, #15803d);
    gap: .4rem !important;
}
.transfer-details-link i {
    font-size: .7em;
    transition: transform .15s ease;
}
.transfer-details-link:hover i,
.transfer-details-link:focus i {
    transform: translateX(2px);
}

/* --- Vehicle details drawer: scroll-spy content --- */
/* Three fixed-height regions: intro + tabs stay put, only the sections scroll. */
.vehicle-drawer-body {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.vehicle-drawer-intro {
    flex: 0 0 auto;
}
.vehicle-drawer-tabs {
    flex: 0 0 auto;
    border-bottom: 1px solid #e5e7eb;
    gap: 1.25rem;
    flex-wrap: nowrap;
    background: #fff;
    padding-top: .5rem;
    /* Horizontally scrollable so the active tab can be centred into view. */
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;          /* Firefox */
    -ms-overflow-style: none;       /* IE/legacy Edge */
}
.vehicle-drawer-tabs::-webkit-scrollbar {
    height: 0;
    display: none;                  /* Chrome/Safari */
}
.vehicle-drawer-scroll {
    flex: 1 1 auto;
    position: relative;
    overflow-y: auto;
    scroll-behavior: smooth;
    /* Hide the vertical scrollbar while keeping scroll functionality. */
    scrollbar-width: none;          /* Firefox */
    -ms-overflow-style: none;       /* IE/legacy Edge */
}
.vehicle-drawer-scroll::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;                  /* Chrome/Safari */
}
.vehicle-drawer-section + .vehicle-drawer-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}
.vehicle-drawer-tabs .nav-item {
    margin-bottom: -1px;
}
.vehicle-drawer-tabs .nav-link {
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    background: none;
    padding: .5rem .1rem;
    font-weight: 600;
    font-size: .95rem;
    color: #6b7280;
    white-space: nowrap;
}
.vehicle-drawer-tabs .nav-link:hover {
    color: #111827;
}
.vehicle-drawer-tabs .nav-link.active {
    color: #111827;
    border-bottom-color: transparent;
    background: none;
}
.vehicle-drawer-tab-content h6 {
    color: #1f2937;
}
.vehicle-drawer-list {
    margin: 0;
    padding-left: 1.15rem;
    color: #374151;
    font-size: .9rem;
    line-height: 1.5;
}
.vehicle-drawer-list li {
    margin-bottom: .4rem;
}
.vehicle-drawer-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .transfer-summary {
        position: static;
    }
}
