        :root {
            --terracotta: #D97A2B;
            --cream: #F8F3E1;
            --chartreuse: #D8E983;
        }

        body {
            font-family: 'Fira Sans', sans-serif;
            background-color: var(--cream);
            color: #2b2b2b;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        /* Color Utilities */
        .text-terracotta { color: var(--terracotta); }
        .bg-terracotta { background-color: var(--terracotta); }
        .bg-cream { background-color: var(--cream); }
        .bg-chartreuse { background-color: var(--chartreuse); }
        .border-terracotta { border-color: var(--terracotta); }

        /* Typography */
        .fira-black { font-weight: 900; }
        .fira-extrabold { font-weight: 800; }
        .fira-bold { font-weight: 700; }
        .fira-light-italic { font-weight: 300; font-style: italic; }

        /* Custom Navigation */
        .nav-link {
            position: relative;
            cursor: pointer;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -5px;
            left: 0;
            background-color: var(--chartreuse);
            transition: width 0.3s ease;
        }
        .nav-link:hover::after { width: 100%; }

        /* Hero Zoom Animation */
        .hero-container {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
.hero-bg {
    position: absolute;
    inset: 0;
    background: 
                url('https://i.pinimg.com/1200x/41/c1/ad/41c1ad047c580d04dc17829563b3bcd6.jpg');
    background-position: center center; /* Centers image */
    background-repeat: no-repeat;
}
        /* Page Management */
        .page-view { display: none; }
        .page-view.active { display: block; animation: pageFadeIn 0.6s ease-out; }
        @keyframes pageFadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Custom UI Elements */
        .editorial-grid-item {
            transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .editorial-grid-item:hover { transform: translateY(-10px); }

        .search-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: var(--cream);
            z-index: 1000;
            padding: 10% 5%;
        }

        .cart-dot {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--chartreuse);
            color: #000;
            font-size: 10px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
        }

        /* Hide scrollbars */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--cream); }
        ::-webkit-scrollbar-thumb { background: var(--terracotta); }
    