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

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

.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: contain;
    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-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;
    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-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

/* 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;
    border-radius: 0 0 12px 12px;
}

.gallery-main {
    position: relative;
    background: #e5e7eb;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.gallery-main img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.gallery-placeholder {
    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: 8px;
    padding: 4px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: #f3f4f6;
    border-radius: 0 0 12px 12px;
}

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

.gallery-thumbs .thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 8px;
    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;
    border-radius: 4px;
}

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

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

.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;
}

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

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

/* Truncatable content - 6 lines max */
.truncate-wrap {
    max-height: calc(1.7em * 6);
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.truncate-wrap.expanded {
    max-height: 2000px;
}

.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-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;
}

/* 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;
        align-items: baseline;
        gap: 6px;
        margin-bottom: 16px;
    }

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

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

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

    .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;
}

.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;
}

.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;
    align-items: center;
}

/* 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: #f9fafb;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
    padding: 20px 0 0;
}

.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;
    padding-top: 12px;
}

.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 0;
    }
}

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

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

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

    .drawer-summary {
        padding: 16px 0 0;
    }

    .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;
    padding-top: 70px;
}

.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;
}

.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-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-page {
        padding-top: 80px;
    }

    .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;
    }
}
