/* --- DESIGN SYSTEM VARIABLES --- */
        :root {
            --bg-matte: #0B0B0B;
            --primary-gold: #C8A44D;
            --gold-glow: rgba(200, 164, 77, 0.15);
            --text-pure: #FFFFFF;
            --text-muted: #B8B8B8;
            --glass-surface: rgba(20, 20, 20, 0.7);
            --glass-border: rgba(200, 164, 77, 0.12);
            --font-heading: 'Cormorant Garamond', serif;
            --font-body: 'Poppins', sans-serif;
            --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* --- CSS RESET & CORE STYLES --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            outline: none;
        }

        html, body {
            background-color: var(--bg-matte);
            color: var(--text-pure);
            font-family: var(--font-body);
            overflow-x: hidden;
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }

        /* --- LOADING ANIMATION --- */
        #loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000000;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .loader-ring {
            width: 80px;
            height: 80px;
            border: 2px solid transparent;
            border-top: 2px solid var(--primary-gold);
            border-radius: 50%;
            animation: spin 2s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* --- NAVIGATION (APPLE STYLE) --- */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: var(--glass-surface);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            height: 70px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-logo {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 500;
            letter-spacing: 4px;
            color: var(--text-pure);
            text-decoration: none;
            transition: var(--transition-smooth);
        }
        .nav-logo span {
            color: var(--primary-gold);
        }
        .nav-links {
            display: flex;
            gap: 2.5rem;
        }
        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 400;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: var(--transition-smooth);
            cursor: pointer;
            position: relative;
            padding: 0.5rem 0;
        }
        .nav-links a:hover, .nav-links a.active {
            color: var(--text-pure);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 1px;
            background: var(--primary-gold);
            transition: var(--transition-smooth);
            transform: translateX(-50%);
        }
        .nav-links a:hover::after, .nav-links a.active::after {
            width: 100%;
        }

        /* --- MOBILE TOGGLE COMPONENT --- */
        /* --- DESKTOP STYLES (Defaults) --- */
.mobile-toggle {
    display: none;
}

/* --- MOBILE & TABLET RESPONSIVE OVERRIDES --- */
@media (max-width: 768px) {
    /* Force display flex so the menu can actually be seen when active */
    .nav-container .nav-links {
        display: flex !important; 
        position: fixed;
        top: 0;
        right: -100%; /* Hidden off-screen by default */
        width: 100%;
        height: 100vh;
        background: rgba(11, 11, 11, 0.98); /* Matte black */
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1050;
    }

    /* Slide the menu in when the .is-open class is applied */
    .nav-container .nav-links.is-open {
        right: 0 !important;
    }

    .nav-links a {
        font-size: 1.4rem;
        letter-spacing: 3px;
        display: block;
        width: auto;
    }

    /* Hamburger Menu Icon Rules */
    .mobile-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 14px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1100;
        padding: 0;
    }

    .mobile-toggle .bar {
        width: 100%;
        height: 1.5px;
        background-color: #FFFFFF;
        transition: all 0.4s ease;
    }

    /* Elegant "X" Animation when open */
    .mobile-toggle.is-active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
        background-color: #C8A44D;
    }

    .mobile-toggle.is-active .bar:nth-child(2) {
        transform: translateY(-6px) rotate(-45deg);
        background-color: #C8A44D;
    }
}

        /* --- APP PAGES ROUTER CONTAINER --- */
        .page-view {
            display: none;
            opacity: 0;
            transform: translateY(15px);
            transition: opacity 0.6s ease, transform 0.6s ease;
            padding-top: 70px;
            min-height: 100vh;
        }
        .page-view.active-view {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        /* --- AMBIENT GLOW EFFECTS --- */
        .gold-glow-orb {
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--gold-glow) 0%, rgba(0,0,0,0) 70%);
            top: 35%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            pointer-events: none;
        }
       
        /* --- HERO SECTION --- */
        .hero {
            position: relative;
            /* height: calc(100vh - 70px); */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 1.5rem;
            overflow: hidden;
        }
      
        .hero-button {
            position: relative;
            height: calc(50vh - 35px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 1.5rem;
            overflow: hidden;
        }

        .hero-logo-container {
            z-index: 2;
            margin-bottom: 2rem;
            max-width: 280px;
            width: 100%;
        }
        .hero-logo-container img {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 0 30px rgba(200, 164, 77, 0.2));
        }
        .hero-title {
            font-family: var(--font-heading);
            font-size: 4rem;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            color: var(--text-pure);
            z-index: 2;
        }
        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 600px;
            line-height: 1.8;
            margin-bottom: 2.5rem;
            font-weight: 300;
            z-index: 2;
        }
        .premium-btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            border: 1px solid var(--primary-gold);
            color: #000000;
            background: var(--primary-gold);
            text-decoration: none;
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 2px;
            font-weight: 500;
            border-radius: 4px;
            transition: var(--transition-smooth);
            z-index: 2;
            box-shadow: 0 4px 20px rgba(200, 164, 77, 0.15);
        }
        .premium-btn:hover {
            background: transparent;
            color: var(--primary-gold);
            box-shadow: 0 4px 30px rgba(200, 164, 77, 0.4);
            transform: translateY(-2px);
        }
        /* for amazon and flipkart */
        .premium-btn_shop {
            display: inline-block;
            border: 1px solid var(--primary-gold);
            color: #000000;
            background: var(--primary-gold);
            border-radius: 0.5rem;
            transition: var(--transition-smooth);
            z-index: 2;
            box-shadow: 0 4px 20px rgba(200, 164, 77, 0.15);
        }
        .premium-btn_shop:hover {
            background: transparent;
            color: var(--primary-gold);
            box-shadow: 0 5px 30px rgba(200, 164, 77, 0.4);
            transform: translateY(-4px);
        }

        /* --- LAYOUT SECTIONS & SPACING --- */
        section {
            padding: 10rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }
        .section-header h2 {
            font-family: var(--font-heading);
            font-size: 3.2rem;
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
        }
        .section-header p {
            color: var(--text-muted);
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.8;
            font-weight: 300;
        }

        /* --- GRID DESIGNS --- */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }
        .glass-card {
            background: var(--glass-surface);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            padding: 3rem 2.5rem;
            transition: var(--transition-smooth);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        .glass-card:hover {
            transform: translateY(-5px);
            border-color: rgba(200, 164, 77, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .glass-card h3 {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 400;
            margin-bottom: 1rem;
            color: var(--text-pure);
        }
        .glass-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            font-weight: 300;
        }

        /* --- VALUE METRICS & LISTS --- */
        .values-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }
        .value-item {
            border-left: 2px solid var(--primary-gold);
            padding-left: 1.5rem;
        }
        .value-item h4 {
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: var(--text-pure);
        }
        .value-item p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* --- CATEGORIES DISPLAY --- */
        .categories-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
            text-align: center;
        }
        .category-pill {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 2.5rem 1.5rem;
            border-radius: 8px;
            font-family: var(--font-heading);
            font-size: 1.6rem;
            letter-spacing: 1px;
            color: var(--text-pure);
            transition: var(--transition-smooth);
        }
        .category-pill:hover {
            background: rgba(200, 164, 77, 0.04);
            border-color: var(--primary-gold);
            color: var(--primary-gold);
        }

        /* --- MARKETPLACE FOOTPRINT --- */
        .marketplace-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        .market-logo {
            font-size: 1.8rem;
            font-weight: 600;
            letter-spacing: 2px;
            color: var(--text-muted);
            opacity: 1;
            transition: var(--transition-smooth);
            text-transform: uppercase;
        }
        .market-logo:hover {
            opacity: 1;
            color: var(--text-pure);
            text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
        }

        /* --- CONTACT FLOW & FORMS --- */
        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 5rem;
            align-items: start;
        }
        .contact-info h3 {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
        }
        .contact-info p {
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 3rem;
            font-weight: 300;
        }
        .email-link {
            color: var(--primary-gold);
            text-decoration: none;
            font-size: 1.4rem;
            font-family: var(--font-heading);
            letter-spacing: 1px;
            transition: var(--transition-smooth);
            display: inline-block;
            border-bottom: 1px dashed var(--primary-gold);
            padding-bottom: 4px;
        }
        .email-link:hover {
            color: var(--text-pure);
            border-bottom-color: var(--text-pure);
        }
        .contact-form {
            background: rgba(15, 15, 15, 0.6);
            border: 1px solid var(--glass-border);
            padding: 3.5rem;
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }
        .form-group {
            margin-bottom: 2rem;
        }
        .form-group label {
            display: block;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-muted);
            margin-bottom: 0.75rem;
            font-weight: 500;
        }
        .form-group input, .form-group textarea {
            width: 100%;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 1rem 1.2rem;
            color: var(--text-pure);
            font-family: var(--font-body);
            font-size: 0.95rem;
            border-radius: 6px;
            transition: var(--transition-smooth);
        }
        .form-group input:focus, .form-group textarea:focus {
            border-color: var(--primary-gold);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 0 15px rgba(200, 164, 77, 0.1);
        }
        .submit-btn {
            width: 100%;
            padding: 1.2rem;
            background: transparent;
            border: 1px solid var(--primary-gold);
            color: var(--primary-gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        .submit-btn:hover {
            background: var(--primary-gold);
            color: #000000;
            box-shadow: 0 5px 25px rgba(200, 164, 77, 0.2);
        }

        /* --- FOOTER DESIGN --- */
        footer {
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding: 2rem 0rem;
            background: #050505;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .footer-text {
            color: var(--text-muted);
            font-size: 0.85rem;
            font-weight: 300;
        }

        /* --- SCROLL-DRIVEN FADE IN SCROLL ANIMATION --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- RESPONSIVE ADAPTATIONS --- */
        @media (max-width: 992px) {
            .contact-layout {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
            .section-header h2 { font-size: 2.6rem; }
            .hero-title { font-size: 3rem; }
                          }
        @media (max-width: 768px) {
            section { padding: 6rem 1.5rem; }
            .marketplace-row { gap: 2rem; }
            }