                   :root {

           
           --rust: #D53E0F;
            --black: #000000;
            --white: #ffffff;
            --divider: #000000;
        }

        body {
            font-family: 'PT Sans', sans-serif;
            background-color: var(--white);
            color: var(--black);
            margin: 0;
            overflow-x: hidden;
            font-weight: 400;
        }

        /* Enforce Thin Typography */
        h1, h2, h3, h4, h5, h6, button, a, span, p {
            font-weight: 400 !important;
            letter-spacing: 0.05em;
        }

        .container-margin {
            margin-left: 6%;
            margin-right: 6%;
        }

        hr {
            border: 0;
            border-top: 1px solid var(--divider);
            margin: 0;
            width: 100%;
        }

        /* Animations */
        @keyframes kenBurns {
            0% { transform: scale(1); }
            100% { transform: scale(1.1); }
        }
        .hero-zoom {
            animation: kenBurns 20s infinite alternate ease-in-out;
        }

        /* Sidebar Cart & Mobile Menu */
        .side-panel {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 450px;
            height: 100%;
            background: var(--white);
            z-index: 3000;
            transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
            border-left: 1px solid var(--black);
            display: flex;
            flex-direction: column;
        }
        .side-panel.active {
            right: 0;
        }
        .overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.3);
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
            z-index: 2500;
        }
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Product Cards */
        .product-card img {
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .product-card:hover img {
            transform: scale(1.03);
        }

        .scroller {
            display: flex;
            overflow-x: auto;
            gap: 2rem;
            padding-bottom: 2rem;
            scrollbar-width: none;
        }
        .scroller::-webkit-scrollbar { display: none; }

        /* Page Routing */
        .page-view { display: none; }
        .page-view.active { display: block; }

        .btn-sq {
            border: 1px solid var(--black);
            padding: 1rem;
            text-align: center;
            transition: 0.3s;
            text-transform: uppercase;
            font-size: 10px;
            cursor: pointer;
        }
        .btn-sq:hover {
            background: var(--black);
            color: var(--white);
        }

        .img-container {
            aspect-ratio: 1/1;
            overflow: hidden;
            background: #f9f9f9;
        }
        .img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
