        :root {
            --hero-bg: #b87979;
            --red-highlight: #571b23;
            --purple-box: #847687;
            --white: #e6c3c3;
            --dark-text: #6a0c0c;
            --footer-bg: #caa2a2;
            --transition-slow: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            background-color: var(--white);
            color: #333;
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
            line-height: 1.6;
        }

        .tangerine-regular { font-family: "Tangerine", cursive; font-weight: 400; }
        .tangerine-bold { font-family: "Tangerine", cursive; font-weight: 700; }

        h1, h2, h3, .logo, .quote { font-family: 'Tangerine', cursive; font-weight: 700; }

        /* --- NAVIGATION --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            height:100px;
            z-index: 1000;
            padding: 25px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition-slow);
            background: transparent;
        }

        header.scrolled {
            background: rgba(102, 34, 34, 0.95);
            padding: 15px 5%;
            backdrop-filter: blur(10px);
        }

.logo {
    display: inline-block;
    cursor: pointer;
}

.logo-img {
    height: 200px;   /* adjust as needed */
    object-fit: contain;
}
        nav { display: flex; gap: 35px; align-items: center; }
        nav a { color: var(--white); text-decoration: none; font-size: 1rem; letter-spacing: 1px; transition: 0.3s; }
        nav a:hover { color: var(--red-highlight); }

        .cart-icon-wrapper { position: relative; cursor: pointer; color: var(--white); }
        .cart-badge {
            position: absolute; -top: 8px; -right: 12px;
            background: var(--red-highlight); color: white;
            font-size: 0.7rem; padding: 2px 6px; border-radius: 10px;
        }

        /* --- REVEAL ANIMATIONS --- */
        .reveal { opacity: 0; transform: translateY(40px); transition: var(--transition-slow); }
        .reveal.active { opacity: 1; transform: translateY(0); }

        /* --- HERO --- */
        .hero {
            background: var(--hero-bg);
            min-height: 110vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--white);
            padding: 120px 5% 60px;
            position: relative;
        }

        .hero-logo { font-size: 7rem; margin-bottom: 0; line-height: 1; }
        .hero-quote { font-size: 3rem; margin-bottom: 80px; font-weight: 400; }

        .hero-layout {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            width: 100%;
            max-width: 1200px;
            gap: 60px;
            align-items: center;
        }

        .hero-left { position: relative; }
        .red-accent-box {
            background: var(--red-highlight);
            width: 90%;
            height: 550px;
            position: relative;
        }
        .hero-main-img {
            position: absolute;
            top: -50px; left: 40px;
            width: 80%; height: 600px;
            object-fit: cover;
            box-shadow: 30px 30px 80px rgba(0,0,0,0.5);
        }

        .hero-right p { font-size: 1.2rem; line-height: 2.2; margin-bottom: 30px; }

        /* --- PARALLAX SECTIONS --- */
        .parallax-section { display: flex; min-height: 100vh; position: relative; }
        .parallax-section.reverse { flex-direction: row-reverse; }

        .text-box {
            flex: 1;
            padding: 100px 8%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            z-index: 2;
        }

        .bg-fixed {
            flex: 1;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .purple-section { background-color: var(--purple-box); color: var(--dark-text); }
        .dark-section { background-color: var(--hero-bg); color: var(--white); }

        .text-box h2 { font-size: 5rem; margin-bottom: 25px; line-height: 1; }
        .text-box p { font-size: 1.15rem; margin-bottom: 20px; font-weight: 300; }

        /* --- COMMITMENT --- */
        .commitment-bar {
            background: var(--red-highlight);
            color: var(--white);
            padding: 100px 5%;
            text-align: center;
        }
        .commitment-bar h2 { font-size: 5.5rem; margin-bottom: 10px; }
        .commitment-bar p { font-size: 1.4rem; font-weight: 300; }

        /* --- GRID --- */
        .fixed-grid { display: flex; height: 700px; }
        .grid-img {
            flex: 1; background-size: cover; background-position: center;
            background-attachment: fixed; filter: grayscale(20%); transition: 0.6s;
        }
        .grid-img:hover { flex: 1.5; filter: grayscale(0%); }

        /* --- FEATURES --- */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            background: #fff;
        }
        .feature-card {
            padding: 100px 15%;
            text-align: center;
            border-right: 1px solid #eee;
            transition: 0.4s;
        }
        .feature-card:last-child { border-right: none; }
        .feature-card i { color: var(--red-highlight); margin-bottom: 30px; }
        .feature-card h3 { font-size: 3rem; margin-bottom: 20px; }
        .feature-card p { font-size: 1rem; color: #666; }

        /* --- SHOP / COLLECTION --- */
        .shop-page { padding: 180px 10% 100px; background: #fafafa; }
        .filter-nav { display: flex; justify-content: center; gap: 20px; margin-bottom: 60px; }
        .filter-btn {
            padding: 12px 30px; border: 1px solid #ccc;
            background: transparent; cursor: pointer; font-family: inherit;
            transition: 0.3s; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px;
        }
        .filter-btn.active { background: var(--hero-bg); color: white; border-color: var(--hero-bg); }

        .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 50px; }
        .p-card { background: white; border-radius: 0; transition: 0.5s; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
        .p-card:hover { transform: translateY(-15px); box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
        .p-img { width: 100%; height: 450px; object-fit: cover; }
        .p-content { padding: 30px; text-align: center; }
        .p-price { font-size: 1.4rem; margin: 15px 0; color: var(--red-highlight); }
        .p-btn {
            width: 100%; padding: 18px; background: var(--hero-bg);
            color: white; border: none; cursor: pointer; letter-spacing: 2px;
            font-weight: 600; text-transform: uppercase; font-size: 0.75rem;
        }

        /* --- CART SIDEBAR --- */
        #cart {
            position: fixed; right: -450px; top: 0; width: 450px; height: 100vh;
            background: white; z-index: 2000; transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 50px; display: flex; flex-direction: column;
            box-shadow: -20px 0 50px rgba(0,0,0,0.2);
        }
        #cart.open { right: 0; }
        .cart-title { font-size: 4rem; border-bottom: 1px solid #eee; padding-bottom: 20px; }
        .cart-list { flex: 1; overflow-y: auto; padding: 20px 0; }
        .cart-item { display: flex; gap: 20px; align-items: center; margin-bottom: 25px; }
        .cart-item img { width: 80px; height: 80px; object-fit: cover; }
        .cart-item-info h4 { font-family: 'Montserrat', sans-serif; font-weight: 600; }
        .cart-total-box { padding-top: 30px; border-top: 2px solid var(--hero-bg); }

        /* --- SUB-PAGES (Privacy, etc) --- */
        .content-page { padding: 180px 15% 100px; min-height: 100vh; }
        .content-page h1 { font-size: 6rem; margin-bottom: 40px; text-align: center; }
        .content-block { margin-bottom: 60px; }
        .content-block h2 { font-size: 3.5rem; margin-bottom: 20px; color: var(--hero-bg); }
        .content-block p { font-size: 1.1rem; color: #444; margin-bottom: 15px; }

        /* --- FOOTER --- */
        footer { background: var(--footer-bg); color: rgb(34, 7, 7); padding: 100px 10% 40px; }
        .footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 2fr; gap: 60px; margin-bottom: 80px; }
        .footer-logo { font-size: 3.5rem; margin-bottom: 20px; }
        .footer-col h4 { text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; margin-bottom: 30px; color: var(--red-highlight); }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 15px; }
        .footer-col a { color: #3e0b0b; text-decoration: none; transition: 0.3s; font-size: 0.95rem; }
        .footer-col a:hover { color: white; }

        .newsletter-box { background: #1a1a1a; padding: 30px; border-radius: 0; }
        .newsletter-form { display: flex; margin-top: 20px; }
        .newsletter-form input {
            background: transparent; border: 1px solid #444; padding: 12px 20px;
            color: white; flex: 1; border-radius: 0; outline: none;
        }
        .newsletter-form button {
            background: var(--red-highlight); border: none; padding: 12px 25px;
            color: white; cursor: pointer; transition: 0.3s;
        }
        .unsub-link { display: inline-block; margin-top: 15px; font-size: 0.7rem; color: #555; text-decoration: none; }
        .unsub-link:hover { color: #999; }

        .page-node { display: none; }
        .page-node.active { display: block; }

        @media (max-width: 1024px) {
            .hero-layout { grid-template-columns: 1fr; }
            .footer-main { grid-template-columns: 1fr 1fr; }
            .parallax-section, .parallax-section.reverse { flex-direction: column; }
            .bg-fixed { height: 400px; background-attachment: scroll; }
            .features-grid { grid-template-columns: 1fr; }
            #cart { width: 100%; right: -100%; }
        }
/* Desktop Nav */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    transition: color 0.2s;
}

.desktop-nav a:hover {
    color: #a77f5e;
}

/* Cart Badge */
.cart-icon-wrapper {
    position: relative;
    cursor: pointer;
}

.cart-icon-wrapper i {
    font-size: 1.5rem;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #e74c3c;
    color: #a01a1a;
    font-size: 0.75rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    font-weight: bold;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    background: #111;
    border-radius: 2px;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 15px;
    padding: 20px 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 999;
}

.mobile-nav a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
}

/* Responsive Breakpoint */
@media (max-width: 900px) {
    .desktop-nav { display: none; }
    .hamburger { display: flex; }
}