
        :root {
            --white: #FFFFFF;
            --black: #000000;
            --accent-red: #9E3B3B;
            --hover-blue: #607B8F;
            --gray-light: #F9F9F9;
            --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Instrument Serif', serif;
            background-color: var(--white);
            color: var(--black);
            overflow-x: hidden;
            line-height: 1.5;
        }

        /* --- TYPOGRAPHY --- */
        .serif-italic { font-family: 'Instrument Serif', serif; font-style: italic; }
        .serif-regular { font-family: 'Instrument Serif', serif; font-style: normal; }
        
        h1, h2, h3 { font-weight: 400; line-height: 1.1; }
        p { font-size: 1.1rem; opacity: 0.8; }

        /* --- HEADER --- */
        header {
            position: fixed;
            top: 20px;
            left: 20px;
            right: 20px;
            background: var(--white);
            border: 1px solid rgba(0,0,0,0.1);
            padding: 1.5rem 2.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: var(--transition);
        }

        header.scrolled {
            transform: translateY(-120%);
            opacity: 0;
        }

.logo {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;   /* Adjust size here */
    width: auto;
    object-fit: contain;
    transition: 0.3s ease;
}

.logo img:hover {
    opacity: 0.85;
    transform: scale(1.05);
}
        .nav-group { display: flex; gap: 2rem; align-items: center; }
        .nav-group a {
            text-decoration: none;
            color: var(--black);
            font-size: 1.2rem;
            transition: color 0.3s ease;
            cursor: pointer;
        }
        .nav-group a:hover { color: var(--hover-blue); }

        /* --- HERO SPLIT LAYOUT --- */
        .hero {
            display: flex;
            height: 150vh;
            width: 100%;
            overflow: hidden;
        }

.hero-left {
    width: 50%;
    height: 150vh;
    background-image: url('https://i.pinimg.com/736x/38/c3/c9/38c3c9889f6602422dec92792b4b4cfa.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


        .hero-right {
            width: 50%;
            background-image: url('https://i.pinimg.com/736x/42/69/65/426965fc229c7971282a50535e64ac53.jpg');
            color: var(--white);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 10% 8%;
            position: relative;
        }
        .look-left {
    width: 50%;
    height: 150vh;
    background-image: url('https://i.pinimg.com/736x/af/ce/b0/afceb04e4e0a2911584c8c1152af6af5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

        .look-right{
                        width: 50%;
            background-image: url('https://i.pinimg.com/736x/25/06/79/2506792430abbbacf576f40fe80721be.jpg');
            color: var(--white);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 10% 8%;
            position: relative;
        }

                .journal-left {
    width: 50%;
    height: 150vh;
    background-image: url('https://i.pinimg.com/736x/1a/63/ad/1a63ad24718d1d99c014a872f6818adf.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

        .journal-right
        {
                                    width: 50%;
            background-image: url('https://i.pinimg.com/736x/d8/be/ec/d8beeca0cb770e9170ef61e6599f7cb0.jpg');
            color: var(--white);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 10% 8%;
            position: relative;


        }

        

        .hero-right h1 {
            font-size: clamp(4rem, 8vw, 10rem);
            margin-bottom: 4rem;
            margin-right: 20rem;
        }

        .hero-right p {
            font-size: 1rem;
            max-width: 500px;
            opacity: 0.9;
            margin-bottom: 15rem;
        }

        /* --- SECTIONS --- */
        .section { padding: 120px 8%; }

        .dual-image {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .dual-image img {
            width: 100%;
            height: 80vh;
            object-fit: cover;
            transition: var(--transition);
        }

        .image-caption {
            text-align: center;
            margin-top: 1.5rem;
            font-size: 1.3rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .color-block-layout {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            height: 90vh;
        }

        .cb-left img { width: 100%; height: 100%; object-fit: cover; }
        .cb-right {
            background-color: var(--accent-red);
            color: var(--white);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 4rem;
            text-align: center;
        }

        .cb-right img {
            width: 60%;
            aspect-ratio: 1;
            object-fit: cover;
            margin-bottom: 3rem;
            border: 1px solid rgba(255,255,255,0.2);
        }

        /* --- NEW ARRIVALS SCROLL --- */
        .new-arrivals {
            overflow-x: auto;
            display: flex;
            gap: 30px;
            padding: 20px 0;
            scrollbar-width: thin;
            scrollbar-color: var(--black) transparent;
        }

        .arrival-card {
            min-width: 400px;
            cursor: pointer;
        }

        .arrival-card img {
            width: 100%;
            height: 550px;
            object-fit: cover;
            transition: var(--transition);
        }

        .arrival-card:hover img { transform: scale(1.03); }

        /* --- SHOP PAGE (Grid Style) --- */
        .shop-container {
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 60px;
            padding: 150px 5% 100px;
        }

        .filters h3 { font-size: 2rem; margin-bottom: 2rem; border-bottom: 1px solid #ddd; padding-bottom: 10px; }
        .filter-group { margin-bottom: 2.5rem; }
        .filter-item {
            display: block;
            margin-bottom: 10px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: 0.3s;
        }
        .filter-item:hover { padding-left: 10px; color: var(--hover-blue); }

        .shop-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .product-card {
            text-align: center;
            border: 1px solid transparent;
            padding: 10px;
            transition: 0.3s;
        }

        .product-card:hover { border: 1px solid #eee; }

        .product-img {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            margin-bottom: 1.5rem;
        }

        /* --- AUTH --- */
        .auth-container {
            max-width: 500px;
            margin: 200px auto;
            padding: 3rem;
            border: 1px solid #000;
        }

        .form-input {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            font-family: inherit;
            font-size: 1.1rem;
        }

        .btn-luxury {
            background: var(--black);
            color: var(--white);
            border: none;
            padding: 18px 40px;
            width: 100%;
            font-family: inherit;
            font-size: 1.2rem;
            cursor: pointer;
            transition: 0.3s;
            text-transform: uppercase;
        }

        .btn-luxury:hover { background: var(--accent-red); }

        /* --- MODAL --- */
        .modal {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(255,255,255,0.98);
            z-index: 2000;
            display: none;
            overflow-y: auto;
        }

        .modal-content {
            max-width: 1200px;
            margin: 100px auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            padding: 50px;
        }

        /* --- FOOTER --- */
        footer {
            padding: 80px 5%;
            border-top: 1px solid #eee;
            text-align: center;
        }

        .footer-links { display: flex; justify-content: center; gap: 3rem; margin: 30px 0; }
        .footer-links a { text-decoration: none; color: var(--black); font-weight: 500; }

        /* --- PAGE DISPLAY --- */
        .page { display: none; }
        .page.active { display: block; }

        @media (max-width: 1024px) {
            .hero { flex-direction: column; height: auto; }
            .hero-left, .hero-right { width: 100%; height: 600px; }
            .shop-container { grid-template-columns: 1fr; }
            .shop-grid { grid-template-columns: repeat(2, 1fr); }
            .dual-image { grid-template-columns: 1fr; }
        }
        .popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-content {
    background: white;
    padding: 60px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
}

.popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-content.large {
    background: white;
    padding: 80px;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}

.popup-article p {
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.popup-article h3 {
    margin: 40px 0 15px 0;
    font-size: 1.6rem;
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 2rem;
    cursor: pointer;
}

.popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.popup-content.large {
    background: white;
    width: 80%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 60px;
    position: relative;
}

.close-btn {
    position: absolute;
    right: 30px;
    top: 20px;
    font-size: 28px;
    cursor: pointer;
}

.popup-content h2 {
    margin-bottom: 30px;
    font-size: 2rem;
}

.popup-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.85;
}
.footer-subscribe {
    margin-top: 60px;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-subscribe p {
    opacity: 0.7;
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.subscribe-form input {
    padding: 12px 15px;
    border: 1px solid #ccc;
    width: 250px;
    font-size: 0.9rem;
}

.subscribe-form button {
    padding: 12px 20px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.subscribe-form button:hover {
    opacity: 0.8;
}

.unsubscribe-btn {
    background: transparent;
    color: black;
    border: 1px solid black;
}

.subscribe-message {
    margin-top: 15px;
    font-size: 0.9rem;
}


/* ============================= */
/* MOBILE RESPONSIVE HEADER */
/* ============================= */

.mobile-toggle {
    display: none;
    cursor: pointer;
}

/* Mobile Only */
@media (max-width: 1024px) {

    header {
        padding: 15px 20px;
        justify-content: space-between;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-group {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 260px;
        background: white;
        flex-direction: column;
        padding: 100px 30px;
        gap: 25px;
        transition: 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    .nav-group a {
        font-size: 1.2rem;
    }

    .nav-group.active {
        right: 0;
    }

    /* Keep logo centered on mobile */
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Hide cart + login from inline layout */
    header > .nav-group:last-child {
        display: none;
    }
}