:root {
    --bg-dark: #232530;
    --bg-card: #2f3242;
    --bg-light: #f5f3ef;
    
    --text-primary: #ffffff;
    --text-dark: #000000;
    --text-muted: #8a8a93;
    
    --accent-gold: #e5b869; /* Soft champagne gold */
    --accent-gold-dark: #c59b4c;
    
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
}

.legal-page {
    padding: 8rem 5% 4rem;
    max-width: 1000px;
    margin: 0 auto;
    color: var(--text-primary);
}
.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}
.legal-page h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--accent-gold);
    font-weight: 600;
}
.legal-page h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: rgba(255, 255, 255, 0.7);
}
.legal-page p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
}
.legal-page ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}
.legal-page li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-size: 1.05rem;
}
.legal-page a {
    color: var(--accent-gold);
    text-decoration: none;
}
.legal-page a:hover {
    text-decoration: underline;
}

a {
    text-decoration: none;
    color: inherit;
}

.accent-text {
    color: var(--accent-gold);
}

/* Navbar */
.navbar {
    padding: 1.5rem 4rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(24, 24, 30, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    line-height: 1;
}

.logo-main {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 4px; /* Small gap between text lines */
}

.logo-sub {
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a.active {
    color: var(--accent-gold);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
    transition: transform 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--text-dark);
}

.btn-dark {
    background-color: #1a1a20;
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.1);
}

.hamburger-menu {
    display: none;
}

/* Mobile cart icon — always hidden on desktop, shown on mobile */
.mobile-cart-icon {
    display: none;
    align-items: center;
    gap: 4px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    position: relative;
    z-index: 1001;
    transition: background 0.2s ease;
}
.mobile-cart-icon:hover { background: #ffcc00; }
.mobile-cart-badge {
    background: var(--red);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 1px 6px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 140px 4rem 4rem 4rem;
    min-height: 85vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(24,24,30,0.45) 0%, rgba(24,24,30,0.0) 40%, rgba(24,24,30,0.0) 60%, rgba(24,24,30,0.45) 100%), 
                linear-gradient(to bottom, rgba(24,24,30,0.2) 0%, rgba(24,24,30,0) 20%, rgba(24,24,30,0) 80%, rgba(24,24,30,0.55) 100%);
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 320px;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-end;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-left {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    font-style: italic;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    word-break: break-word;
}

.hero-subtitle {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatars {
    display: flex;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #333;
    border: 2px solid var(--bg-dark);
    margin-left: -10px;
}
.avatar:first-child { margin-left: 0; }

.rating-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.rating-text strong {
    color: var(--text-primary);
}
.stars {
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.hero-bottom-center {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 2rem;
}

.hero-pagination {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.hero-pagination .dot {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.hero-pagination .dot.active {
    width: 20px;
    border-radius: 4px;
    background: var(--accent-gold);
}

.watch-video {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(10,10,12,0.8);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
}

.play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.watch-video span {
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-right {
    background: rgba(45,48,65,0.70);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}
.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-text {
    display: flex;
    flex-direction: column;
}
.feature-text strong {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}
.feature-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Stats Bar */
.stats-bar {
    max-width: 1600px;
    margin: 2rem auto;
    width: calc(100% - 8rem); /* Aligns perfectly with padded sections */
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
}

.stat-item svg {
    width: 32px;
    height: 32px;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-text strong {
    font-size: 1.8rem;
    line-height: 1;
}

.stat-text span {
    font-size: 0.75rem;
    font-weight: 700;
    color: #555;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(0,0,0,0.1);
}

/* Main Content Grid */
.main-content-grid {
    max-width: calc(1600px + 8rem); /* Compensate for internal padding */
    margin: 4rem auto;
    display: grid;
    grid-template-columns: 1fr 340px; /* Fixed width sidebar, the rest for cards */
    gap: 4rem; /* Larger gap to separate carousel from sidebar clearly */
    padding: 0 4rem;
}

.main-content-grid > * {
    min-width: 0; /* Prevent CSS Grid blowout from wide content */
}

.simulators-section {
    min-width: 0;
    width: 100%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
}

.compare-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    cursor: pointer;
}
.compare-btn svg { width: 16px; height: 16px; }

.experience-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: #1a1a20;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}
.tab-btn.active {
    background: var(--accent-gold);
    color: var(--text-dark);
    border-color: var(--accent-gold);
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 45px;
    box-sizing: border-box;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(18,18,21,0.8);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s;
    backdrop-filter: blur(4px);
}

.nav-btn.prev {
    left: 0;
}

.nav-btn.next {
    right: 0;
}

.nav-btn:hover {
    background: rgba(255,255,255,0.2);
}

.simulator-cards {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
    width: 100%;
}
.simulator-cards::-webkit-scrollbar { display: none; }

.sim-card {
    min-width: 260px; /* Increased from 220px to fill space better and force scrolling */
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 1rem;
    position: relative;
    flex-shrink: 0; /* Ensure cards don't shrink */
}

.sim-card.active {
    border-color: rgba(255,255,255,0.2);
}

.sim-img-wrap {
    width: 100%;
    height: 120px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}
.sim-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--accent-gold);
    color: var(--text-dark);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.sim-type {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
}

.sim-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.sim-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sim-price {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.btn-card {
    width: 100%;
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 700;
    padding: 0.8rem;
}

.btn-card.primary {
    background: var(--accent-gold);
}

/* Sidebar Widgets */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4.5rem; /* Align with the cards */
}

.promo-widget, .venue-widget {
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem;
}

.promo-header { margin-bottom: 1rem; }
.this-weekend { font-size: 0.7rem; color: var(--text-muted); font-weight: 700; letter-spacing: 1px; }
.promo-header h3 { font-size: 1.8rem; font-style: italic; font-weight: 800; margin: 0.2rem 0; }
.promo-header p { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.5px; }

.promo-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.promo-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.promo-price { line-height: 1; }
.promo-price strong { font-size: 1.8rem; color: var(--accent-gold); }
.promo-price span { font-size: 0.6rem; color: var(--text-muted); display: block; margin-top: 2px; }
.promo-footer .btn-card { width: auto; padding: 0.6rem 1.5rem; font-size: 0.8rem; }

.venue-widget h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.venue-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.venue-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
}
.v-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}
.v-icon svg { width: 24px; height: 24px; color: var(--accent-gold); }
.v-icon span { font-size: 0.65rem; font-weight: 600; color: var(--text-muted); line-height: 1.3; }

/* Events Section */
.events-section {
    max-width: calc(1600px + 8rem); /* Compensate for internal padding */
    margin: 0 auto 4rem auto;
    padding: 0 4rem;
}
.view-all {
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 700;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.event-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 150px;
    border: 1px solid rgba(255,255,255,0.1);
}
.e-bg {
    position: absolute;
    inset: 0;
}
.e-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}
.e-content {
    position: absolute;
    inset: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(to right, rgba(10,10,12,0.9) 0%, transparent 100%);
}
.e-content h3 { font-size: 1.2rem; }
.e-content p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }

/* Light Footer */
.light-footer {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 4rem;
}

.footer-top {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 3rem;
}

.newsletter h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.newsletter p { font-size: 0.8rem; color: #555; margin-bottom: 1.5rem; }
.input-group {
    display: flex;
    background: white;
    border-radius: 4px;
    border: 1px solid #ddd;
    overflow: hidden;
    margin-bottom: 2rem;
    max-width: 300px;
}
.input-group input {
    flex: 1;
    border: none;
    padding: 0.8rem 1rem;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    margin: 0;
}
.input-group button {
    background: var(--accent-gold);
    border: none;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    margin: 0;
}
.input-group button svg { width: 16px; height: 16px; }

.copyright { font-size: 0.75rem; color: #888; }

.footer-brand { display: flex; flex-direction: column; gap: 2rem; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; }

.socials { display: flex; gap: 1rem; }
.socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.footer-links { display: flex; gap: 3rem; }
.col h4 { font-size: 0.85rem; margin-bottom: 1.5rem; }
.col a, .col p {
    display: block;
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 0.8rem;
}

.footer-hours h4 { font-size: 0.85rem; margin-bottom: 1.5rem; }
.footer-hours p { font-size: 0.8rem; color: #555; margin-bottom: 1rem; }

.legal { margin-top: 2rem; display: flex; gap: 1rem; }
.legal a { font-size: 0.75rem; color: #888; }

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero-grid { grid-template-columns: 1fr 1fr; }
    .hero-right { display: none; }
    .main-content-grid { grid-template-columns: 1fr; gap: 2rem; }
    .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .navbar { padding: 1rem 2rem; }
    .hero-section { padding: 120px 2rem 3rem 2rem; }
    .hero-title { font-size: 3.5rem; }
    .stats-bar { padding: 1.5rem 2rem; width: calc(100% - 4rem); }
    .main-content-grid { padding: 0 2rem; gap: 1.5rem; }
    .events-section { padding: 0 2rem; }
    .light-footer { padding: 3rem 2rem; }
}

@media (max-width: 768px) {
    /* Mobile Menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10,10,12,0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        padding: 2rem;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    .nav-links.active { right: 0; }
    .navbar .btn { display: none; }
    
    .hamburger-menu { 
        display: flex; 
        flex-direction: column; 
        gap: 5px; 
        background: none; 
        border: none; 
        z-index: 1001; 
        cursor: pointer;
    }
    /* Show the mobile cart icon button next to hamburger */
    .mobile-cart-icon { display: flex; }
    .hamburger-menu span { 
        width: 25px; 
        height: 2px; 
        background: white; 
        transition: 0.3s; 
    }
    .hamburger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger-menu.active span:nth-child(2) { opacity: 0; }
    .hamburger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    
    /* Cart button in mobile menu - make it stand out */
    .nav-links .nav-cart-btn {
        margin-top: 0.5rem;
        padding: 10px 28px !important;
        font-size: 1rem;
        border-radius: 24px;
        background: var(--gold);
        color: #000 !important;
        display: inline-flex !important;
        align-items: center;
        gap: 8px;
    }
    .nav-links .cart-badge-nav {
        font-size: 0.8rem;
        padding: 3px 8px;
    }
    
    .hero-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .hero-title { font-size: 2.8rem; }
    .hero-actions { flex-direction: column; }
    .hero-bottom-center { flex-direction: column; align-items: flex-start; gap: 2rem; }
    
    .stats-bar { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
    .stat-divider { width: 100%; height: 1px; }
    
    .sidebar { grid-template-columns: 1fr; }
    .venue-widget { padding: 1rem; }
    .venue-icons { gap: 1rem; }
    .events-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    
    .carousel-container { margin: 0; width: 100%; padding: 0; }
    .nav-btn { display: none; /* Hide carousel arrows on mobile, rely on native swipe */ }
    .simulator-cards { padding-left: 0; padding-right: 0; width: 100%; }
    .sim-card { min-width: 240px; }
}

/* Modals & Booking UI */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: rgba(10, 10, 12, 0.6);
    backdrop-filter: blur(25px);
    padding: 4rem;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    max-width: 900px;
    width: 90%;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.close-modal:hover { opacity: 1; }

.month-selector {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

.month-btn {
    text-align: center;
    cursor: pointer;
}

.month-circle {
    width: 280px;
    height: 180px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.month-circle:hover {
    border-color: var(--primary-color);
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 51, 51, 0.2);
}

.month-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.month-overlay span {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.month-overlay .year {
    font-size: 3rem;
    color: #ff3333;
    font-style: italic;
    line-height: 1;
}

.month-btn p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Date & Time Picker Modal */
.date-time-content {
    max-width: 600px;
    padding: 3rem;
}

.calendar-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(255,255,255,0.1);
}

.calendar-grid::-webkit-scrollbar {
    height: 6px;
}
.calendar-grid::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}
.calendar-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 1rem;
}

.date-btn {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.time-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.date-btn:disabled, .time-btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
    text-decoration: line-through;
}

.date-btn:not(:disabled):hover, .time-btn:not(:disabled):hover {
    border-color: var(--primary-color);
    background: rgba(255, 51, 51, 0.1);
}

.date-btn.active, .time-btn.active {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
    font-weight: 700;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.3);
}

/* Slide-out Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: rgba(10, 10, 12, 0.7);
    backdrop-filter: blur(30px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: right 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: -20px 0 50px rgba(0,0,0,0.8);
}

.cart-drawer.open {
    right: 0;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.cart-body {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cart-item-details p {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 0.2rem;
}

.cart-price {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #0a0a0c;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.cart-total .total-amount {
    font-size: 1.5rem;
    font-weight: 700;
}

/* About Section */
.about-section {
    padding: 0 0 6rem 0;
    overflow: hidden;
    position: relative;
    background: var(--bg-dark);
}

.marquee {
    background: var(--accent-gold);
    color: #000;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 1rem 0;
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    text-transform: uppercase;
    margin-bottom: 5rem;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-left h2 {
    font-size: 3.5rem;
    font-style: italic;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.about-subtitle {
    display: block;
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-left p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.f-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.f-box:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 184, 105, 0.3);
}

.f-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.f-box h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.f-sub {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.f-box p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .cart-drawer { width: 100vw; right: -100vw; }
    .date-time-content { padding: 2rem 1rem; }
    .time-grid { grid-template-columns: repeat(2, 1fr); }
    .about-container { grid-template-columns: 1fr; gap: 3rem; }
    .feature-grid { grid-template-columns: 1fr; gap: 1rem; }
    .about-left h2 { font-size: 2.5rem; }
}

 . l e g a l - p a g e   {   p a d d i n g :   8 r e m   5 %   4 r e m ;   m a x - w i d t h :   1 0 0 0 p x ;   m a r g i n :   0   a u t o ;   c o l o r :   v a r ( - - t e x t - c o l o r ) ;   } 
 . l e g a l - p a g e   h 1   {   f o n t - s i z e :   3 r e m ;   m a r g i n - b o t t o m :   2 r e m ;   c o l o r :   v a r ( - - t e x t - c o l o r ) ;   } 
 . l e g a l - p a g e   h 2   {   f o n t - s i z e :   1 . 8 r e m ;   m a r g i n :   2 . 5 r e m   0   1 r e m ;   c o l o r :   v a r ( - - a c c e n t - g o l d ) ;   f o n t - w e i g h t :   6 0 0 ;   } 
 . l e g a l - p a g e   h 3   {   f o n t - s i z e :   1 . 4 r e m ;   m a r g i n :   2 r e m   0   1 r e m ;   c o l o r :   v a r ( - - t e x t - l i g h t ) ;   } 
 . l e g a l - p a g e   p   {   m a r g i n - b o t t o m :   1 . 2 r e m ;   l i n e - h e i g h t :   1 . 7 ;   f o n t - s i z e :   1 . 0 5 r e m ;   } 
 . l e g a l - p a g e   u l   {   m a r g i n - b o t t o m :   1 . 5 r e m ;   p a d d i n g - l e f t :   1 . 5 r e m ;   } 
 . l e g a l - p a g e   l i   {   m a r g i n - b o t t o m :   0 . 8 r e m ;   l i n e - h e i g h t :   1 . 6 ;   f o n t - s i z e :   1 . 0 5 r e m ;   } 
 . l e g a l - p a g e   a   {   c o l o r :   v a r ( - - a c c e n t - g o l d ) ;   t e x t - d e c o r a t i o n :   n o n e ;   } 
 . l e g a l - p a g e   a : h o v e r   {   t e x t - d e c o r a t i o n :   u n d e r l i n e ;   } 
  
 
.logo-unit-text { font-size: 0.35rem; color: var(--text-muted); letter-spacing: 1px; margin-top: 12px !important; text-transform: uppercase; font-weight: 500; display: block; }


/* Floating Cart Button */
.floating-cart-btn { position: fixed; bottom: 30px; right: 30px; background: var(--gold); color: #000; border: none; border-radius: 50%; width: 60px; height: 60px; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.5); z-index: 99; transition: transform 0.3s ease, background 0.3s ease; }
.floating-cart-btn:hover { transform: scale(1.1); background: #ffcc00; }
.floating-cart-btn .cart-badge { position: absolute; top: -5px; right: -5px; background: var(--red); color: white; font-size: 0.8rem; font-weight: bold; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* Nav Cart Button */
.nav-cart-btn { 
    display: inline-flex; 
    align-items: center; 
    gap: 6px; 
    position: relative; 
    background: var(--gold, #f5a623); 
    color: #000 !important; 
    padding: 7px 16px !important; 
    border-radius: 20px; 
    font-weight: 700 !important; 
    font-size: 0.9rem;
    transition: background 0.2s ease, transform 0.15s ease;
    text-decoration: none !important;
    line-height: 1;
}
.nav-cart-btn:hover { background: #ffcc00; transform: scale(1.05); }
.cart-badge-nav { 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e53e3e; 
    color: #fff; 
    font-size: 0.7rem; 
    padding: 2px 7px; 
    border-radius: 999px; 
    font-weight: 800; 
    min-width: 18px;
    height: 18px;
    line-height: 1;
    vertical-align: middle;
}
