:root {
            --charcoal: #2c2c2c;
            --zinc-50: #fafafa;
            --zinc-100: #f4f4f5;
            --zinc-200: #e4e4e7;
            --zinc-300: #d4d4d8;
            --zinc-400: #a1a1aa;
            --zinc-500: #71717a;
            --zinc-600: #52525b;
            --zinc-800: #27272a;
            --zinc-900: #18181b;
            --paper: #ffffff;
            --brand-red: #e11d48;
            --brand-red-hover: #be123c;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            font-size: 16px;
            scroll-behavior: smooth;
            max-width: 100%;
        }

        body {
            max-width: 100%;
            min-width: 100%;
            background-color: var(--paper);
            color: var(--zinc-800);
            font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
            -webkit-font-smoothing: antialiased;
            line-height: 1.5;
           
         
        }

        ::selection {
            background-color: var(--brand-red);
            color: white;
        }

        button {
            background: none;
            border: none;
            cursor: pointer;
            font-family: inherit;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul { list-style: none; }

        /* --- UTILITIES --- */
        .container {
            max-width: 94rem; /* 1280px */
            margin: 0 10vw;
            padding: 0 10vw;
        }
         
        

        

        .flex { display: flex; }
        .flex-col { flex-direction: column; }
        .items-center { align-items: center; }
        .justify-center { justify-content: center; }
        .justify-between { justify-content: space-between; }
        .flex-grow { flex-grow: 1; }
        .flex-shrink-0 { flex-shrink: 0; }
        
        .hidden { display: none !important; }
        .block { display: block; }
        
        .text-center { text-align: center; }
        .uppercase { text-transform: uppercase; }
        .font-bold { font-weight: 700; }
        .font-black { font-weight: 900; }
        
        [x-cloak] { display: none !important; }

        /* --- HEADER & NAV --- */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 40;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 2px solid var(--zinc-800);
            padding: 10px 20px;
            max-height: 80px;
            min-height: 80px;
            display: flex;
            flex-flow: column wrap;
            justify-content: center;
            align-items: stretch;
        }

        .logo {
           
            color: var(--brand-red);
            padding:0;
            font-size: 2.4rem;
            font-weight: 900;
            letter-spacing: -0.05em;
            line-height: 1;
            transition: background-color 0.2s;
            letter-spacing: 1px;
        }
        @media (max-width: 500px) { /* sm */
            .logo {
               display: none;
            }
            
        }

        
        .nav-links {
            display: none;
            gap: 2rem;
            font-weight: 700;
            font-size: 0.625rem; /* 10px */
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--zinc-400);
        }
        .nav-links a:hover { color: var(--zinc-800); }

        .cart-trigger {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .cart-label {
            display: none;
            text-transform: uppercase;
            font-size: 0.625rem;
            font-weight: 900;
            letter-spacing: 0.1em;
            border-bottom: 2px solid var(--zinc-800);
            color: var(--zinc-800);
        }
        .cart-badge {
            background-color: var(--zinc-800);
            color: white;
            width: 2.5rem;
            height: 2.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 700;
            transition: background-color 0.2s;
        }
        .cart-trigger:hover .cart-badge { background-color: var(--brand-red); }

        /* --- HERO SECTION --- */
        .hero-section {
            position: relative;
            overflow: hidden;
            border-bottom: 2px solid var(--zinc-800);
            background-color: rgba(250, 250, 250, 0.5);
        }
        
        .bg-grid-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.05;
            pointer-events: none;
            background-image: radial-gradient(var(--charcoal) 1px, transparent 0);
            background-size: 32px 32px;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            padding: 6rem 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .hero-tag {
            border: 2px solid var(--brand-red);
            padding: 0.25rem 1rem;
            margin-bottom: 2rem;
            font-size: 0.625rem;
            font-weight: 900;
            letter-spacing: 0.4em;
            background-color: white;
            color: var(--brand-red);
            text-transform: uppercase;
        }

        .hero-title {
            font-size: 3.75rem;
            line-height: 0.85;
            margin-bottom: 2rem;
            letter-spacing: -0.05em;
            text-transform: uppercase;
        }
        .hero-title span { color: var(--brand-red); }

        .hero-desc {
            font-size: 1.125rem;
            color: var(--zinc-500);
            margin-bottom: 3rem;
            max-width: 32rem;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: -0.025em;
        }

        /* Neo Button */
        .btn-neo {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: var(--paper);
            border: 2px solid var(--charcoal);
            box-shadow: 3px 3px 0px var(--charcoal);
            padding: 1.25rem 3rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            font-size: 0.75rem;
            color: var(--charcoal);
            transition: all 0.1s;
        }
        .btn-neo:hover {
            background-color: var(--brand-red);
            border-color: var(--brand-red);
            color: white;
            box-shadow: 3px 3px 0px var(--charcoal); 
        }
        .btn-neo:active {
            transform: translate(2px, 2px);
            box-shadow: 0px 0px 0px var(--charcoal);
        }
        .btn-neo svg { transition: transform 0.2s; width: 1rem; height: 1rem; }
        .btn-neo:hover svg { transform: translateX(4px); }

        /* --- SHOP SECTION --- */
        .shop-container { padding: 5rem 10px; }
        
        .shop-header {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-bottom: 4rem;
            border-bottom: 2px solid var(--zinc-100);
            padding-bottom: 2rem;
        }
        
        .section-title {
            font-size: 2.25rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.05em;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .section-title span { color: var(--zinc-200); }

        .filters {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            font-size: 0.625rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.3em;
        }
        .filter-btn {
            position: relative;
            padding: 0.25rem 0;
            color: var(--zinc-300);
            transition: color 0.2s;
        }
        .filter-btn:hover { color: var(--brand-red); }
        .filter-btn.active { color: var(--brand-red); }
        .active-line {
            position: absolute;
            bottom: -0.25rem;
            left: 0;
            width: 100%;
            height: 0.25rem;
            background-color: var(--brand-red);
        }

        /* --- PRODUCT GRID --- */
        .product-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        /* Product Card */
        .product-card {
            background-color: white;
            border: 2px solid var(--charcoal);
            display: flex;
            flex-direction: column;
            height: 100%;
            transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.2s cubic-bezier(0.2, 0, 0, 1);
        }
        
        .product-card.is-hovered {
            transform: translate(-4px, -4px);
            box-shadow: 4px 4px 0px var(--charcoal);
        }

        .card-image-wrapper {
            aspect-ratio: 4 / 5;
            background-color: rgba(250, 250, 250, 0.5);
            padding:0;
            position: relative;
            overflow: hidden;
            border-bottom: 2px solid var(--charcoal);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover; 
            display: block;
            transition: transform 0.3s ease;
        }
        .card-image-wrapper:hover .product-img {
            transform: scale(1.05);
        }
        
        .card-image-wrapper {
            /* Ensure overflow is hidden so the zoom stays inside */
            overflow: hidden; 
            position: relative;
            aspect-ratio: 1 / 1; /* Force square aspect ratio if needed */
            background-color: var(--zinc-100);
        }

        .ref-tag {
            position: absolute;
            top: 1rem;
            left: 1rem;
            border: 1px solid var(--charcoal);
            background-color: white;
            padding: 0.125rem 0.5rem;
            font-size: 0.5rem;
            font-weight: 900;
            text-transform: uppercase;
            z-index: 10;
        }

        .product-svg {
            width: 7rem;
            height: 7rem;
            color: var(--zinc-200);
            transition: all 0.7s ease-out;
        }
        .card-image-wrapper.hovered .product-svg {
            color: var(--brand-red);
            transform: scale(1.1);
        }

        .card-overlay {
            position: absolute;
            inset: 0;
            background-color: var(--charcoal);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            transition: transform 0.5s;
            transform: translateY(100%);
        }
        .card-overlay.visible { transform: translateY(0); }

        .btn-add-overlay {
            width: 100%;
            padding: 1rem;
            background-color: white;
            color: var(--charcoal);
            font-weight: 900;
            text-transform: uppercase;
            font-size: 0.625rem;
            letter-spacing: 0.1em;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: background-color 0.2s;
        }
        .btn-add-overlay:hover {
            background-color: var(--brand-red);
            color: white;
        }

        .card-details {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.5rem;
        }
        
        .product-title {
            font-size: 0.75rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        .product-price { font-size: 0.75rem; font-weight: 700; }
        .product-cat {
            font-size: 0.6rem;
            color: var(--zinc-400);
            text-transform: uppercase;
            font-weight: 900;
            letter-spacing: 0.1em;
        }

        .btn-mobile-add {
            margin-top: 1.5rem;
            width: 100%;
            padding: 0.75rem;
            border: 2px solid var(--zinc-800);
            background-color: var(--zinc-800);
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.625rem;
            letter-spacing: 0.1em;
        }
        .btn-mobile-add:active { background-color: var(--brand-red); border-color: var(--brand-red); }

        /* --- FOOTER --- */
        .site-footer {
            background-color: var(--zinc-800);
            color: var(--zinc-50);
            padding: 8rem calc(4rem + 1vw - 5px);
            width: 100%;
            min-width: 100%;

        }
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 5rem;
            margin-bottom: 5rem;
        }
        .footer-brand h3 {
            font-size: 2.25rem;
            font-weight: 900;
            font-style: italic;
            color: var(--brand-red);
            margin-bottom: 0;
            letter-spacing: -0.05em;
        }
        .footer-brand p {
            color: var(--zinc-400);
            font-size: 0.625rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.4em;
            line-height: 2;
            max-width: 28rem;
        }
        .footer-links {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            font-size: 0.55rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.3em;
        }
        .link-group { display: flex; flex-direction: column; gap: 1.5rem; color: var(--zinc-500); }
        .link-group span { color: var(--zinc-600); margin-bottom: 0.5rem; }
        .link-group a { display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
        .link-group a:hover { color: var(--brand-red); }
        
        .footer-bottom {
            padding-top: 5rem;
            border-top: 1px solid var(--zinc-600);
            display: flex;
            flex-direction: column;
            gap: 2rem;
            font-size: 0.55rem;
            color: var(--zinc-600);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.5em;
        }

        /* --- CART DRAWER --- */
        .cart-overlay {
            position: fixed;
            inset: 0;
            z-index: 50;
        }
        .cart-backdrop {
            position: absolute;
            inset: 0;
            background-color: rgba(24, 24, 27, 0.4);
            backdrop-filter: blur(4px);
        }
        .cart-sidebar {
            position: absolute;
            top: 0;
            right: 0;
            height: 100%;
            width: 100%;
            max-width: 28rem;
            background-color: white;
            border-left: 4px solid var(--charcoal);
            box-shadow: -25px 0px 50px -12px rgba(0, 0, 0, 0.25);
            display: flex;
            flex-direction: column;
            padding: 2.5rem;
        }

        /* Cart Transitions (Alpine) */
        .fade-enter-active, .fade-leave-active { transition: opacity 0.3s ease; }
        .fade-enter-start, .fade-leave-end { opacity: 0; }
        .fade-enter-end, .fade-leave-start { opacity: 1; }

        .slide-enter-active, .slide-leave-active { transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
        .slide-enter-start, .slide-leave-end { transform: translateX(100%); }
        .slide-enter-end, .slide-leave-start { transform: translateX(0); }

        /* Cart Content */
        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 4rem;
        }
        .cart-title { font-size: 1.875rem; font-weight: 900; text-transform: uppercase; letter-spacing: -0.05em; }
        .cart-close-btn { color: var(--charcoal); transition: transform 0.5s, color 0.2s; }
        .cart-close-btn:hover { transform: rotate(180deg); color: var(--brand-red); }

        .cart-items {
            flex-grow: 1;
            overflow-y: auto;
            padding-right: 1rem;
        }

        .empty-cart {
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0.1;
            font-style: italic;
        }
        .empty-cart svg { width: 6rem; height: 6rem; stroke-width: 0.5; margin-bottom: 2rem; }

        .cart-item {
            display: flex;
            gap: 1.5rem;
            padding-bottom: 2.5rem;
            border-bottom: 1px solid var(--zinc-100);
            margin-bottom: 2.5rem;
        }
        .cart-item-img {
            width: 6rem;
            height: 6rem;
            background-color: var(--zinc-50);
            border: 1px solid var(--charcoal);
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        .qty-badge {
            position: absolute;
            top: -0.5rem;
            left: -0.5rem;
            background-color: var(--brand-red);
            color: white;
            width: 1.5rem;
            height: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.625rem;
            font-weight: 900;
        }
        .cart-item-img svg { width: 3rem; height: 3rem; color: var(--zinc-300); }
        
        .cart-item-details { flex-grow: 1; }
        .cart-item-header { display: flex; justify-content: space-between; margin-bottom: 0.5rem; }
        .cart-item-title { font-weight: 900; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.1em; }
        .cart-item-cat { font-size: 0.625rem; color: var(--zinc-400); text-transform: uppercase; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 1rem; }
        
        .cart-controls { display: flex; justify-content: space-between; align-items: center; }
        .qty-controls { display: flex; align-items: center; border: 1px solid var(--charcoal); }
        .qty-btn { padding: 0.25rem 0.5rem; transition: background 0.2s; color: var(--charcoal); }
        .qty-btn:hover { background-color: var(--brand-red); color: white; }
        .qty-display { padding: 0 1rem; font-size: 0.625rem; font-weight: 900; }
        .remove-btn {
            color: var(--zinc-300);
            text-transform: uppercase;
            font-size: 0.5rem;
            font-weight: 900;
            letter-spacing: 0.1em;
            text-decoration: underline;
            text-underline-offset: 4px;
            transition: color 0.2s;
        }
        .remove-btn:hover { color: var(--brand-red); }

        .cart-footer { margin-top: 2.5rem; padding-top: 2rem; }
        .cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.5rem; }
        .total-label { text-transform: uppercase; font-size: 0.625rem; font-weight: 900; letter-spacing: 0.3em; color: var(--zinc-400); }
        .total-amount { font-size: 2.25rem; font-weight: 900; letter-spacing: -0.05em; }
        
        .btn-checkout {
            width: 100%;
            background-color: var(--brand-red);
            color: white;
            padding: 1.5rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            font-size: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            transition: background 0.2s;
        }
        .btn-checkout:hover { background-color: var(--brand-red-hover); }

        /* --- TOAST NOTIFICATIONS --- */
        .toast-container {
            position: fixed;
            bottom: 2.5rem;
            right: 2.5rem;
            z-index: 50;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            pointer-events: none;
        }
        .toast {
            background-color: var(--brand-red);
            color: white;
            padding: 1rem 1.5rem;
            border: 2px solid white;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            font-weight: 900;
            text-transform: uppercase;
            font-size: 0.625rem;
            letter-spacing: 0.1em;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        /* Toast Transitions */
        .toast-enter-active { transition: all 0.3s ease-out; }
        .toast-leave-active { transition: all 0.3s ease-in; }
        .toast-enter-start, .toast-leave-end { transform: translateY(100%); opacity: 0; }
        .toast-enter-end, .toast-leave-start { transform: translateY(0); opacity: 1; }

        /* --- RESPONSIVE MEDIA QUERIES --- */
        @media (min-width: 640px) { /* sm */
            .nav-links { display: flex; }
            .cart-label { display: inline; }
            .product-grid { grid-template-columns: repeat(2, 1fr); }
            .hero-title { font-size: 9rem; }
            .footer-content { flex-direction: row; justify-content: space-between; }
            .footer-bottom { flex-direction: row; justify-content: space-between; }
            
        }

        @media (min-width: 1024px) { /* lg */
            .product-grid { grid-template-columns: repeat(4, 1fr); }
        
            .hero-content { padding: 10rem 1.5rem; }
        }

        :root {
    --charcoal: #121212;
    --white: #ffffff;
    --gray-light: #f4f4f4;
}

/* Grid Layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding:0 2rem;
}

/* Card Hover Logic (Replacing Alpine :class) */
.product-card {
    position: relative;
    transition: transform 0.3s ease;
}

.card-image-wrapper {
    position: relative;
    background: var(--gray-light);
    aspect-ratio: 1/1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease;
}

.product-card:hover .card-overlay {
    opacity: 1; /* Show on hover */
}

/* Cart Drawer (Hidden by default) */
.cart-overlay-wrapper {
    display: none; /* Toggle this to 'flex' to see the cart */
    position: fixed;
    inset: 0;
    z-index: 100;
}

.cart-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}

.cart-sidebar {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 400px;
    background: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

/* Mobile Quick Add */


@media (max-width: 768px) {
    .btn-mobile-add {
        display: block;
        width: 100%;
        margin-top: 1rem;
        padding: 0.75rem;
        background: var(--charcoal);
        color: white;
        border: none;
    }
    .card-overlay {
        display: none; /* Hide hover overlay on mobile */
    }
}


.horiz-container-store
{
    display: grid;
    grid-template-columns: 200px auto;
}
/* --- 1. BASE STYLES (Desktop Default) --- */
.category-sidebar {
    /* Layout */
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
    padding:0 20px;
    
    /* Visuals */
    background-color: var(--paper, #fff);
    border-right: 2px solid var(--charcoal, #333); /* Separator line on desktop */
}

.cat-header {
    font-family: 'ui-monospace', monospace;
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--brand-red, #ef4444);
    border-bottom: 4px solid var(--charcoal, #333); /* Thicker line */
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.05em;
}

.cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cat-link {
    font-family: 'ui-monospace', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--zinc-800, #27272a);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px dotted var(--zinc-300, #d4d4d8); /* Guide lines */
    transition: all 0.2s ease;
}

.cat-link:hover {
    transform: translateX(10px);
    color: var(--brand-red, #ef4444);
    border-bottom-style: solid;
    border-color: var(--brand-red, #ef4444);
}

/* --- 2. MOBILE DRAWER STYLES (Max-width 800px) --- */
@media (max-width: 800px) {
    .horiz-container-store
    {   margin: 20px;
        display: grid;
        grid-template-columns: auto;
       
    }
    .category-sidebar {
        /* Positioning: Fixed Drawer */
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0; /* Full viewport height */
        width: 85%;
        max-width: 320px;
        z-index: 999; /* Sit on top of everything */
        
        /* Reset Desktop Styles */
        border-right: 4px solid var(--charcoal, #333);
        padding: 2rem;
        
        /* Mobile Visuals */
        background-color: var(--paper, #ffffff);
        box-shadow: 100vw 0 0 rgba(0,0,0,0.5); /* Hack: Creates a backdrop overlay */
    }

    /* Mobile Close Button Styling */
    .sidebar-close-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        background: var(--zinc-100);
        border: 2px solid var(--charcoal);
        font-size: 1.5rem;
        cursor: pointer;
        transition: 0.2s;
        box-shadow: 2px 2px 0px var(--charcoal);
    }
    .sidebar-close-btn:active {
        transform: translate(2px, 2px);
        box-shadow: none;
    }
}

/* --- 3. DESKTOP OVERRIDES (Min-width 801px) --- */
@media (min-width: 801px) {
    /* Force visibility on desktop */
    .category-sidebar {
        display: flex !important; 
        position: static; /* Reset fixed position */
        width: auto;
        box-shadow: none;
        border-right: 2px solid var(--charcoal); /* Restore separator */
    }

    /* Hide the close button on desktop */
    .sidebar-close-btn {
        display: none !important;
    }
}
/* --- MOBILE CATEGORY BUTTON STYLES --- */

/* Floating Button Styles */
.floating-cat-btn {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%); /* Center it */
    z-index: 90; /* High enough to float over content */
    
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    
    background: var(--charcoal, #18181b);
    color: white;
    border: 1px solid white;
    border-radius: 50px; /* Pill shape */
    
    font-family: 'ui-monospace', monospace;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.2s;
}

.floating-cat-btn:active {
    transform: translateX(-50%) scale(0.95);
}

/* Hide on Desktop */
@media (min-width: 801px) {
    .floating-cat-btn { display: none; }
}

/* --- NEO-BRUTALIST LOGIN STYLES --- */

/* Card Container */
.neo-card {
    background-color: var(--paper);
    border: 3px solid var(--charcoal);
    box-shadow: 8px 8px 0px var(--charcoal);
    padding: 2.5rem;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

/* Typography */
.neo-title {
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1;
    color: var(--charcoal);
}

.neo-subtitle {
    font-weight: 500;
    color: var(--zinc-500);
    margin-bottom: 2rem;
    font-family: 'ui-monospace', 'Courier New', monospace;
}

/* Inputs */
.neo-input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.neo-label {
    display: block;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    /* Label Tag Style */
    border: 2px solid var(--charcoal);
    background: #facc15; /* Bright Yellow Accent (Hardcoded as it's unique here) */
    color: var(--charcoal);
    width: fit-content;
    padding: 2px 8px;
}

.neo-input {
    width: 100%;
    padding: 1rem;
    border: 3px solid var(--charcoal);
    font-family: inherit;
    font-weight: bold;
    font-size: 1rem;
    outline: none;
    background: var(--zinc-100);
    color: var(--zinc-900);
    transition: all 0.1s ease;
}

.neo-input:focus {
    transform: translate(-2px, -2px);
    box-shadow: 4px 4px 0px var(--charcoal);
    background: var(--paper);
    border-color: var(--charcoal);
}

/* Buttons */
.neo-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--charcoal);
    color: var(--paper);
    font-weight: 900;
    text-transform: uppercase;
    border: 3px solid var(--charcoal);
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.1s ease;
}

.neo-btn:hover:not(:disabled) {
    background-color: var(--paper);
    color: var(--charcoal);
    box-shadow: 6px 6px 0px var(--charcoal);
    transform: translate(-2px, -2px);
}

.neo-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Links */
.neo-link {
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    color: var(--charcoal);
    transition: background-color 0.2s;
}
.neo-link:hover {
    background-color: #facc15; /* Yellow highlight on hover */
}

/* Alerts */
.neo-alert {
    padding: 1rem;
    border: 3px solid var(--charcoal);
    font-weight: bold;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.neo-alert.success { background-color: #4ade80; /* Green */ }
.neo-alert.error { background-color: var(--brand-red); color: white; }


@media (max-width: 350px) {
    .container{
        max-width: 94rem; /* 1280px */
        margin: 0 0vw;
        padding: 30px 0;
    }
    .product-grid {
        
        padding:0 10px;
    }
    .shop-header{
        padding: 20px;
        margin: 0;
    }

}

@media (max-width: 1024px) {
    .container{
        max-width: 94rem; /* 1280px */
        margin: 8vw 0;
        padding: 2vw 4vw;
    }
    .product-grid {
        
        padding:0 10px;
    }
    .shop-header{
        padding: 20px;
        margin: 0;
    }

    .shop-container{

    }

}