        :root {
            --text-color: #9E3B3B;
            --hero-gradient: linear-gradient(135deg, #F8FAB4 0%, #e79595 100%);
            --accent-bg: #FFBCBC;
            --white: #FFFFFF;
            --cursive: 'Satisfy', cursive;
            --sans: 'Plus Jakarta Sans', sans-serif;
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--sans);
            color: var(--text-color);
            background-color: var(--white);
            overflow-x: hidden;
            line-height: 1.7;
        }

        h1, h2, h3, .cursive {
            font-family: var(--cursive);
            font-weight: 400;
        }

        /* --- Custom Scrollbar --- */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { background: var(--text-color); border-radius: 10px; }

        /* --- Navigation --- */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 25px 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: var(--transition);
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.98);
            padding: 15px 8%;
            box-shadow: 0 10px 30px rgba(158, 59, 59, 0.08);
        }

        .logo {
            font-size: 2.5rem;
            text-decoration: none;
            color: var(--text-color);
            font-family: var(--cursive);
            cursor: pointer;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .nav-links a:hover { opacity: 0.7; }

        .cart-trigger {
            background: none;
            border: none;
            color: var(--text-color);
            cursor: pointer;
            position: relative;
            display: flex;
            align-items: center;
        }

        #cart-count {
            position: absolute;
            top: -8px;
            right: -10px;
            background: var(--text-color);
            color: white;
            font-size: 0.7rem;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--sans);
        }

        /* --- Page Management --- */
        .page {
            display: none;
            padding-top: 0;
            animation: fadeIn 0.6s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .page.active { display: block; }

        /* --- Hero --- */
        .hero {
            min-height: 100vh;
            background: var(--hero-gradient);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 5% 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-bg-anim {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: 0;
            opacity: 0.4;
            pointer-events: none;
        }

        .hero-content { position: relative; z-index: 10; }

        .hero h1 { font-size: 7rem; line-height: 0.9; margin-bottom: 20px; }
        .hero p { max-width: 650px; font-size: 1.2rem; margin: 0 auto 40px; font-weight: 400; }

        .btn {
            display: inline-block;
            padding: 18px 50px;
            border: 2.5px solid var(--text-color);
            background: transparent;
            color: var(--text-color);
            font-family: var(--cursive);
            font-size: 2.2rem;
            text-decoration: none;
            border-radius: 60px;
            transition: var(--transition);
            cursor: pointer;
        }

        .btn:hover {
            background: var(--text-color);
            color: white;
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 30px rgba(158, 59, 59, 0.2);
        }

        .hero-gallery {
            display: flex;
            gap: 5px;
            min-height: fit-content;
            margin-top: 50px;
            width: 90%;
            max-width: 1000px;
            z-index: 10;
        }

        .hero-gallery img {
            width: 50%;
            height: 800px;
            object-fit: cover;
        }

        /* --- Sections --- */
        .section-split {
            background: var(--hero-gradient);
            padding: 120px 10%;
        }

        .split-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-bottom: 100px;
            align-items: start;
        }

        .split-row h2 { font-size: 4.5rem; line-height: 1; }
        .split-row p { font-size: 1.15rem; color: #7a2c2c; }

        /* --- BOGO Section (Scroll Animation) --- */
        .bogo-section {
            padding: 140px 5%;
            background: #e79595;
            text-align: center;
            overflow: hidden;
        }

        .bogo-header { font-size: 6rem; margin-bottom: 100px; }

        .reveal-row {
            display: flex;
            justify-content: center;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto 120px;
            align-items: center;
        }

        .reveal-img {
            width: 48%;
            height: 550px;
            object-fit: cover;
            border-radius: 40px;
            opacity: 0;
            transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .reveal-img.from-left { transform: translateX(-150px); }
        .reveal-img.from-right { transform: translateX(150px); }

        .reveal-img.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* --- Marquee --- */
        .marquee-block {
            padding: 0 5% 100px;
        }

        .marquee-image-wrap {
            position: relative;
            border-radius: 60px 60px 0 0;
            overflow: hidden;
            height: 700px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        }

        .marquee-image-wrap img { width: 100%; height: 100%; object-fit: cover; }

        .marquee-track {
            position: absolute;
            bottom: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            padding: 30px 0;
            overflow: hidden;
        }

        .marquee-content {
            display: flex;
            width: max-content;
            animation: marquee-move 30s linear infinite;
        }

        .marquee-content span {
            font-family: var(--cursive);
            font-size: 3.5rem;
            color: var(--text-color);
            padding-right: 100px;
            white-space: nowrap;
        }

        @keyframes marquee-move {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* --- Shop --- */
        .shop-header { padding: 180px 5% 60px; text-align: center; background: var(--hero-gradient); }
        
        .filter-bar {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .filter-chip {
            padding: 12px 30px;
            border: 1.5px solid var(--text-color);
            background: white;
            color: var(--text-color);
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.3s;
        }

        .filter-chip.active { background: var(--text-color); color: white; }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 40px;
            padding: 80px 8%;
        }

        .card {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid #f0f0f0;
            display: flex;
            flex-direction: column;
        }

        .card:hover { transform: translateY(-15px); box-shadow: 0 30px 60px rgba(158, 59, 59, 0.1); }

        .card-img-wrap { height: 300px; overflow: hidden; position: relative; }
        .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
        .card:hover .card-img-wrap img { transform: scale(1.1); }

        .card-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
        .card-content h3 { font-size: 2.2rem; margin-bottom: 8px; }
        .card-content .price { font-weight: 800; font-size: 1.1rem; color: #333; margin-bottom: 20px; }

        .card-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: auto; }
        .small-btn {
            padding: 12px;
            border-radius: 15px;
            border: 1px solid var(--text-color);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.3s;
        }
        .btn-view { background: white; color: var(--text-color); }
        .btn-add { background: var(--text-color); color: white; }

        /* --- Cart Sidebar --- */
        .cart-overlay {
            position: fixed;
            top: 0; right: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.4);
            z-index: 2000;
            visibility: hidden;
            opacity: 0;
            transition: 0.4s;
        }

        .cart-overlay.open { visibility: visible; opacity: 1; }

        .cart-sidebar {
            position: absolute;
            right: -450px;
            top: 0;
            width: 450px;
            height: 100%;
            background: white;
            box-shadow: -10px 0 50px rgba(0,0,0,0.1);
            transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            flex-direction: column;
            padding: 40px;
        }

        .cart-overlay.open .cart-sidebar { right: 0; }

        .cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
        .cart-items { flex-grow: 1; overflow-y: auto; }
        .cart-item { display: flex; gap: 15px; margin-bottom: 25px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
        .cart-item img { width: 80px; height: 80px; border-radius: 10px; object-fit: cover; }
        .cart-footer { padding-top: 30px; border-top: 2px solid var(--hero-gradient); }

        /* --- Modal --- */
        .modal {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 3000;
            display: none;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }

        .modal-box {
            background: white;
            width: 95%;
            max-width: 1000px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            border-radius: 40px;
            overflow: hidden;
            position: relative;
            animation: zoomIn 0.4s ease;
        }

        @keyframes zoomIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

        .modal-image { height: 600px; width: 100%; object-fit: cover; }
        .modal-info { padding: 60px; }
        .modal-info h2 { font-size: 4rem; margin-bottom: 20px; }
        .close-btn { position: absolute; top: 25px; right: 25px; cursor: pointer; color: var(--text-color); }

        /* --- Footer --- */
        footer {
            background: #0a0a0a;
            color: var(--text-color);
            padding: 100px 8% 40px;
            border-top: 10px solid var(--accent-bg);
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 80px;
        }

        .footer-col h4 { font-size: 1.6rem; margin-bottom: 30px; color: var(--white); }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 15px; }
        .footer-col a { color: var(--text-color); text-decoration: none; transition: 0.3s; font-weight: 500; cursor: pointer; }
        .footer-col a:hover { color: white; padding-left: 5px; }

        .sub-box { margin-top: 25px; }
        .sub-box input {
            width: 100%;
            padding: 18px;
            background: #1a1a1a;
            border: 1px solid #333;
            color: white;
            border-radius: 12px;
            margin-bottom: 10px;
            outline: none;
        }

        .sub-btn {
            width: 100%;
            padding: 15px;
            background: var(--text-color);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 800;
            cursor: pointer;
            text-transform: uppercase;
        }

        .footer-bottom {
            padding-top: 40px;
            border-top: 1px solid #1a1a1a;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }

        @media (max-width: 900px) {
            .footer-main, .split-row, .modal-box { grid-template-columns: 1fr; }
            .hero h1 { font-size: 4rem; }
            .reveal-row { flex-direction: column; }
            .reveal-img { width: 100%; height: 350px; }
            .cart-sidebar { width: 100%; right: -100%; }
        }
    