        :root {
            --plum: #6B3F69;
            --pink: #F5BABB;
            --beige: #FFF5F2;
            --gray: #DDC3C3;
            --white: #ffffff;
            --transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            background-color: var(--beige);
            color: var(--plum);
            font-family: 'Barlow Condensed', sans-serif;
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, .editorial-font { font-family: 'Tapestry', serif; font-weight: normal; }

        /* --- Custom Scrollbar --- */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--beige); }
        ::-webkit-scrollbar-thumb { background: var(--gray); border-radius: 10px; }

        /* --- Header --- */
        header {
            position: fixed;
            top: 0; width: 100%;
            padding: 25px 5%;
            background: var(--beige);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: var(--transition);
        }
        header.scrolled {
            padding: 15px 5%;
            box-shadow: 0 10px 30px rgba(107, 63, 105, 0.08);
            background: rgba(255, 245, 242, 0.95);
            backdrop-filter: blur(10px);
        }

.logo { 
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px; /* optional if you keep an icon next to logo */
}

.logo-img {
    height: 120px; /* adjust size as needed */
    width: auto;
    display: block;
}        nav { display: flex; gap: 40px; }
        nav a { 
            text-decoration: none; color: var(--plum); 
            font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2.5px;
            cursor: pointer; transition: 0.3s;
            position: relative;
        }
        nav a::after {
            content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px;
            background: var(--pink); transition: 0.3s;
        }
        nav a:hover::after { width: 100%; }
        nav a:hover { color: var(--pink); }

        .nav-actions { display: flex; gap: 30px; align-items: center; }
        .icon-btn { cursor: pointer; position: relative; transition: 0.4s; color: var(--plum); display: flex; align-items: center; gap: 8px; }
        .icon-btn:hover { color: var(--pink); transform: translateY(-2px); }
        .cart-count {
            position: absolute; top: -10px; right: -12px;
            background: var(--pink); color: var(--white);
            font-size: 0.75rem; width: 20px; height: 20px; 
            display: flex; align-items: center; justify-content: center;
            border-radius: 50%;
        }

        /* --- Transitions --- */
        .page { display: none; min-height: 100vh; opacity: 0; transition: opacity 0.8s ease; }
        .page.active { display: block; opacity: 1; }

        /* --- Hero Section --- */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            margin: 0 20px;
            border-radius: 0 0 50px 50px;
        }
        .hero-video-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(rgba(107, 63, 105, 0.3), rgba(107, 63, 105, 0.2)), 
                        url('https://i.pinimg.com/1200x/be/2d/63/be2d638362c70b0ca9cfabb683b9ca64.jpg');
            background-size: cover;
            background-position: center;
            transform: scale(1.1);
            animation: kenBurns 30s infinite alternate;
        }
        @keyframes kenBurns { 
            0% { transform: scale(1.1) translate(0, 0); }
            100% { transform: scale(1.2) translate(-2%, -2%); }
        }

        .hero-content {
            position: relative; z-index: 10;
            padding: 80px; text-align: center; max-width: 850px;
            border-radius: 40px; box-shadow: 0 30px 60px rgba(0,0,0,0.15);
            backdrop-filter: blur(5px);
        }
        .hero-content h1 { font-size: 5.5rem; color: var(--plum); margin-bottom: 25px; line-height: 0.9; }
        .hero-content p { font-size: 1.4rem; margin-bottom: 40px; color: #4a4a4a; letter-spacing: 1px; }

        .btn {
            display: inline-block; padding: 18px 45px;
            background: var(--pink); color: var(--white);
            text-decoration: none; border-radius: 50px;
            text-transform: uppercase; letter-spacing: 3px;
            transition: var(--transition); border: none; cursor: pointer;
            font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
        }
        .btn:hover { background: var(--plum); transform: translateY(-8px); box-shadow: 0 15px 30px rgba(107, 63, 105, 0.25); }
        .btn-outline { background: transparent; border: 1.5px solid var(--plum); color: var(--plum); }

        /* --- Collection Layouts --- */
        .section-header { text-align: center; margin-bottom: 80px; }
        .section-header h2 { font-size: 4.5rem; margin-bottom: 10px; }
        .section-header p { text-transform: uppercase; letter-spacing: 4px; color: var(--pink); font-weight: bold; }

        .grid-asymmetric {
            display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; padding: 0 5%; margin-bottom: 120px;
        }
        .featured-main { position: relative; cursor: pointer; border-radius: 30px; overflow: hidden; }
        .featured-main img { width: 100%; height: 800px; object-fit: cover; transition: 1.5s; }
        .featured-main:hover img { transform: scale(1.05); }
        .featured-overlay {
            position: absolute; bottom: 0; left: 0; width: 100%;
            padding: 60px; background: linear-gradient(transparent, rgba(107,63,105,0.7));
            color: var(--white);
        }

        .card-column { display: flex; flex-direction: column; gap: 40px; }
        .editorial-card {
            background: var(--white); border-radius: 30px; overflow: hidden;
            transition: var(--transition); box-shadow: 0 15px 40px rgba(0,0,0,0.04);
            cursor: pointer; position: relative;
        }
        .editorial-card:hover { transform: translateY(-20px); box-shadow: 0 30px 60px rgba(107,63,105,0.1); }
        .editorial-card img { width: 100%; height: 350px; object-fit: cover; }
        .editorial-card-info { padding: 40px; }

        /* --- Occasion Slider --- */
        .scroller-wrapper { overflow-x: auto; padding: 60px 5%; display: flex; gap: 40px; scrollbar-width: none; }
        .occasion-item {
            min-width: 450px; height: 600px; position: relative; border-radius: 35px;
            overflow: hidden; color: var(--white); display: flex; flex-direction: column;
            justify-content: flex-end; padding: 50px; transition: 0.6s;
        }
        .occasion-item img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; transition: 1s; }
        .occasion-item::before { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(107,63,105,0.1), rgba(107,63,105,0.8)); }
        .occasion-item:hover img { transform: scale(1.15); filter: saturate(1.2); }
        .occasion-content { position: relative; z-index: 2; }
        .occasion-content h3 { font-size: 3.5rem; margin-bottom: 15px; }

        /* --- Bespoke Studio --- */
        .studio-container {
            background: var(--plum); color: var(--white); padding: 120px 10%;
            border-radius: 60px; margin: 100px 40px; text-align: center;
        }
        .step-indicator { display: flex; justify-content: center; gap: 20px; margin-bottom: 60px; }
        .step-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.3); }
        .step-dot.active { background: var(--pink); transform: scale(1.5); }
        
        .option-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin: 60px 0; }
        .option-card {
            background: rgba(255,255,255,0.05); padding: 40px; border-radius: 25px;
            border: 1.5px solid rgba(255,255,255,0.1); cursor: pointer; transition: 0.4s;
        }
        .option-card:hover { background: rgba(255,255,255,0.1); border-color: var(--pink); transform: scale(1.03); }
        .option-card.selected { background: var(--white); color: var(--plum); border-color: var(--white); }

        /* --- Panel Systems --- */
        .side-panel {
            position: fixed; top: 0; right: -100%; width: 550px; height: 100%;
            background: var(--white); z-index: 2000; box-shadow: -30px 0 70px rgba(0,0,0,0.15);
            transition: var(--transition); padding: 60px; overflow-y: auto;
        }
        .side-panel.active { right: 0; }
        .overlay { 
            position: fixed; inset: 0; background: rgba(107, 63, 105, 0.4); 
            backdrop-filter: blur(8px); z-index: 1500; display: none; opacity: 0; transition: 0.5s;
        }
        .overlay.active { display: block; opacity: 1; }

        /* --- Auth Modal --- */
        .auth-modal {
            position: fixed; top: 50%; left: 50%; transform: translate(-50%, -60%);
            width: 90%; max-width: 500px; background: var(--beige); border-radius: 40px;
            padding: 70px; z-index: 3000; display: none; box-shadow: 0 40px 80px rgba(0,0,0,0.25);
        }
        .auth-modal.active { display: block; animation: modalPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
        @keyframes modalPop { from { opacity: 0; transform: translate(-50%, -55%); } to { opacity: 1; transform: translate(-50%, -50%); } }

        .input-group { margin-bottom: 25px; }
        .input-group label { display: block; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; font-size: 0.8rem; }
        .form-input { 
            width: 100%; padding: 18px 25px; border-radius: 15px; 
            border: 1.5px solid var(--gray); font-family: inherit; font-size: 1.1rem; outline: none; transition: 0.3s;
        }
        .form-input:focus { border-color: var(--plum); background: var(--white); }

        /* --- Content Sections --- */
        .legal-content { max-width: 900px; margin: 0 auto; padding: 100px 5%; }
        .legal-content h1 { font-size: 5rem; margin-bottom: 60px; text-align: center; }
        .legal-content h2 { font-size: 2.5rem; margin: 60px 0 20px; color: var(--plum); }
        .legal-content p { font-size: 1.2rem; margin-bottom: 30px; color: #555; line-height: 1.8; }

        /* --- Footer --- */
        footer { background: var(--plum); color: var(--white); padding: 120px 5% 40px; }
        .footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 80px; margin-bottom: 80px; }
        .footer-logo { font-size: 2.8rem; margin-bottom: 25px; }
        .footer-links h4 { font-size: 1.4rem; margin-bottom: 30px; letter-spacing: 2px; }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 18px; }
        .footer-links a { color: var(--gray); text-decoration: none; transition: 0.3s; font-size: 1.1rem; }
        .footer-links a:hover { color: var(--pink); padding-left: 10px; }

        .toast {
            position: fixed; bottom: 40px; left: 50%; transform: translateX(-50%);
            background: var(--plum); color: var(--white); padding: 18px 40px;
            border-radius: 50px; z-index: 5000; opacity: 0; pointer-events: none; transition: 0.5s;
        }
        .toast.active { opacity: 1; transform: translateX(-50%) translateY(-20px); }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content h1 { font-size: 3.5rem; }
            .grid-asymmetric { grid-template-columns: 1fr; }
            .footer-main { grid-template-columns: 1fr 1fr; }
            .side-panel { width: 100%; }
        }
#mainHeader nav {
    display: flex;
    gap: 25px;
}

#mainHeader nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    cursor: pointer;
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.icon-btn {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    padding: 2px 6px;
}

/* Hamburger menu - hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    #mainHeader nav {
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        display: none;
        border-top: 1px solid #eee;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    #mainHeader nav a {
        padding: 12px 20px;
        border-bottom: 1px solid #eee;
    }

    #mainHeader nav.show {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}