:root {
        --black: #000000;
        --white: #ffffff;
        --gray: #1a1a1a;
        --light-gray: #f0f0f0;
        --mid-gray: #888;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
        background: var(--black);
        color: var(--white);
        font-family: 'Space Mono', monospace;
        cursor: default;
        overflow-x: hidden;
    }

    /* Custom Cursor */
    .cursor {
        display: none;
    }

    /* Noise overlay */
    body::before {
        content: '';
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 1000;
        opacity: 0.5;
    }

    /* NAVBAR */
    nav {
        position: fixed; top: 0; width: 100%; z-index: 100;
        display: flex; align-items: center; justify-content: space-between;
        padding: 20px 40px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        background: rgba(0,0,0,0.9);
        backdrop-filter: blur(10px);
    }

    .nav-logo {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 28px;
        letter-spacing: 4px;
        display: flex; align-items: center; gap: 10px;
    }

    .nav-logo .smiley {
        width: 32px; height: 32px;
        border: 2.5px solid white;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        font-size: 16px;
        animation: spin-slow 8s linear infinite;
    }

    @keyframes spin-slow { to { transform: rotate(360deg); } }

    .nav-links {
        display: flex; gap: 40px; list-style: none;
    }
    .nav-links a {
        color: var(--white); text-decoration: none;
        font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
        position: relative; cursor: pointer;
    }
    .nav-links a::after {
        content: ''; position: absolute; bottom: -4px; left: 0;
        width: 0; height: 1px; background: white;
        transition: width 0.3s ease;
    }
    .nav-links a:hover::after { width: 100%; }

    .nav-actions { display: flex; gap: 20px; align-items: center; }
    .nav-actions button {
        background: none; border: 1px solid rgba(255,255,255,0.3);
        color: white; padding: 8px 20px;
        font-family: 'Space Mono', monospace;
        font-size: 11px; letter-spacing: 2px;
        cursor: pointer; transition: all 0.3s;
    }
    .nav-actions button:hover { background: white; color: black; }

    /* HERO */
    .hero {
        height: 100vh;
        display: flex; align-items: center;
        padding: 0 40px;
        position: relative;
        overflow: hidden;
    }

    .hero-bg-text {
        position: absolute; right: -20px; top: 50%;
        transform: translateY(-50%);
        font-family: 'Anton', sans-serif;
        font-size: 28vw; line-height: 0.85;
        color: rgba(255,255,255,0.03);
        user-select: none; pointer-events: none;
        letter-spacing: -5px;
    }

    .hero-content { max-width: 700px; position: relative; z-index: 2; }

    .hero-tag {
        font-size: 11px; letter-spacing: 4px;
        color: var(--mid-gray); margin-bottom: 20px;
        text-transform: uppercase;
    }

    .hero-title {
        font-family: 'Anton', sans-serif;
        font-size: clamp(60px, 10vw, 130px);
        line-height: 0.9;
        letter-spacing: -2px;
        margin-bottom: 30px;
        animation: slide-up 1s ease forwards;
    }

    @keyframes slide-up {
        from { opacity: 0; transform: translateY(60px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .hero-subtitle {
        font-size: 13px; line-height: 1.8;
        color: var(--mid-gray);
        max-width: 400px; margin-bottom: 50px;
    }

    .hero-cta {
        display: flex; gap: 20px; align-items: center;
    }

    .btn-primary {
        background: white; color: black;
        border: none; padding: 16px 40px;
        font-family: 'Space Mono', monospace;
        font-size: 12px; letter-spacing: 3px;
        text-transform: uppercase; cursor: pointer;
        transition: all 0.3s;
        position: relative; overflow: hidden;
    }
    .btn-primary::before {
        content: ''; position: absolute;
        top: 0; left: -100%; width: 100%; height: 100%;
        background: #000; transition: left 0.3s ease;
        z-index: 0;
    }
    .btn-primary:hover::before { left: 0; }
    .btn-primary:hover { color: white; border: 1px solid white; }
    .btn-primary span { position: relative; z-index: 1; }

    .btn-secondary {
        background: none; border: none; color: white;
        font-family: 'Space Mono', monospace;
        font-size: 12px; letter-spacing: 3px;
        text-transform: uppercase; cursor: pointer;
        text-decoration: underline;
        text-underline-offset: 6px;
    }

    .hero-smiley {
        position: absolute; right: 80px; bottom: 10%;
        width: 300px; height: 300px;
        animation: float 6s ease-in-out infinite;
        opacity: 0.15;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(5deg); }
    }

    /* MARQUEE */
    .marquee-wrap {
        overflow: hidden;
        background: white; color: black;
        padding: 14px 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .marquee {
        display: flex; gap: 60px;
        white-space: nowrap;
        animation: marquee 20s linear infinite;
    }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    .marquee span {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 18px; letter-spacing: 4px;
        flex-shrink: 0;
    }

    /* PRODUCTS */
    .section { padding: 100px 40px; }

    .section-header {
        display: flex; justify-content: space-between; align-items: flex-end;
        margin-bottom: 60px;
    }

    .section-title {
        font-family: 'Anton', sans-serif;
        font-size: clamp(40px, 6vw, 80px);
        line-height: 1;
        letter-spacing: -1px;
    }

    .section-link {
        color: var(--mid-gray); text-decoration: none;
        font-size: 11px; letter-spacing: 3px;
        text-transform: uppercase; border-bottom: 1px solid var(--mid-gray);
        padding-bottom: 3px; transition: color 0.3s, border-color 0.3s; cursor: pointer;
    }
    .section-link:hover { color: white; border-color: white; }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2px;
    }

    .product-card {
        position: relative; overflow: hidden;
        background: var(--gray);
        cursor: none;
    }

    .product-img {
        width: 100%; aspect-ratio: 4/5;
        background: #111;
        display: flex; align-items: center; justify-content: center;
        overflow: hidden; position: relative;
        transition: transform 0.5s ease;
    }

    .product-card:hover .product-img { transform: scale(1.03); }

    /* Placeholder product visuals */
    .product-img .tshirt-visual {
        width: 65%; height: 65%;
        display: flex; align-items: center; justify-content: center;
        font-family: 'Bebas Neue', sans-serif;
        transition: transform 0.5s ease;
    }
    .product-card:hover .tshirt-visual { transform: translateY(-5px); }

    .tshirt-bg {
        position: absolute; inset: 0;
        display: flex; align-items: center; justify-content: center;
        overflow: hidden;
    }

    .product-overlay {
        position: absolute; bottom: 0; left: 0; right: 0;
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
        padding: 30px 20px 20px;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    .product-card:hover .product-overlay { transform: translateY(0); }

    @media (max-width: 768px) {
        .product-overlay {
            transform: translateY(0);
        }
    }

    .overlay-btn {
        width: 100%; padding: 12px;
        background: white; color: black;
        border: none; font-family: 'Space Mono', monospace;
        font-size: 11px; letter-spacing: 2px;
        text-transform: uppercase; cursor: pointer;
    }

    .product-info { padding: 16px; }
    .product-name {
        font-size: 13px; letter-spacing: 2px;
        text-transform: uppercase; margin-bottom: 6px;
    }
    .product-details {
        display: flex; justify-content: space-between; align-items: center;
    }
    .product-price { font-size: 15px; font-weight: 700; }
    .product-tag {
        font-size: 9px; letter-spacing: 2px;
        color: var(--mid-gray); text-transform: uppercase;
    }

    .badge {
        position: absolute; top: 16px; left: 16px;
        background: white; color: black;
        font-size: 9px; letter-spacing: 2px;
        padding: 4px 10px; text-transform: uppercase;
    }

    /* BRAND STATEMENT */
    .statement {
        padding: 120px 40px;
        display: grid; grid-template-columns: 1fr 1fr;
        gap: 80px; align-items: center;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .statement-left .big-logo {
        width: 100%; max-width: 400px;
        filter: invert(0);
    }

    .statement-right .quote {
        font-family: 'Anton', sans-serif;
        font-size: clamp(32px, 4vw, 56px);
        line-height: 1.1; margin-bottom: 30px;
    }

    .statement-right p {
        font-size: 12px; line-height: 2;
        color: var(--mid-gray); max-width: 380px;
    }

    /* FEATURED KIT */
    .kit-section {
        background: var(--white); color: var(--black);
        padding: 100px 40px;
        position: relative; overflow: hidden;
    }
    .kit-section .section-title { color: black; }
    .kit-section .section-link { color: #666; border-color: #666; }
    .kit-section .section-link:hover { color: black; border-color: black; }

    .kit-grid {
        display: grid; grid-template-columns: 1.5fr 1fr;
        gap: 4px; margin-top: 60px;
    }

    .kit-main {
        background: #111; aspect-ratio: 3/4;
        display: flex; align-items: center; justify-content: center;
        position: relative; overflow: hidden;
    }

    .kit-side { display: flex; flex-direction: column; gap: 4px; }
    .kit-side-item {
        background: #1a1a1a; flex: 1;
        display: flex; align-items: center; justify-content: center;
    }

    .kit-label {
        position: absolute; bottom: 20px; left: 20px;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 32px; letter-spacing: 4px;
        color: white;
    }

    /* NEWSLETTER */
    .newsletter {
        padding: 100px 40px;
        border-top: 1px solid rgba(255,255,255,0.1);
        display: flex; align-items: center;
        justify-content: space-between; gap: 60px;
        flex-wrap: wrap;
    }

    .newsletter h2 {
        font-family: 'Anton', sans-serif;
        font-size: clamp(36px, 5vw, 64px);
        max-width: 400px; line-height: 1;
    }

    .newsletter-form {
        display: flex; flex: 1; max-width: 500px;
        border-bottom: 1px solid rgba(255,255,255,0.3);
    }

    .newsletter-form input {
        flex: 1; background: none; border: none;
        color: white; padding: 16px 0;
        font-family: 'Space Mono', monospace;
        font-size: 13px; outline: none;
    }
    .newsletter-form input::placeholder { color: var(--mid-gray); }
    .newsletter-form button {
        background: none; border: none; color: white;
        font-family: 'Space Mono', monospace;
        font-size: 11px; letter-spacing: 3px;
        text-transform: uppercase; cursor: none;
        padding: 16px 0;
        transition: color 0.3s;
    }
    .newsletter-form button:hover { color: #ccc; }

    /* FOOTER */
    footer {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding: 60px 40px 40px;
    }

    .footer-grid {
        display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 60px; margin-bottom: 60px;
    }

    .footer-brand .logo {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 32px; letter-spacing: 4px;
        margin-bottom: 16px;
    }

    .footer-brand p {
        font-size: 11px; line-height: 2;
        color: var(--mid-gray); max-width: 240px;
    }

    .footer-col h4 {
        font-size: 10px; letter-spacing: 4px;
        text-transform: uppercase; color: var(--mid-gray);
        margin-bottom: 24px;
    }

    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 12px; }
    .footer-col a {
        color: white; text-decoration: none;
        font-size: 12px; letter-spacing: 1px;
        transition: color 0.3s;
    }
    .footer-col a:hover { color: var(--mid-gray); }

    .footer-bottom {
        display: flex; justify-content: space-between;
        align-items: center; padding-top: 40px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .footer-bottom p {
        font-size: 10px; color: var(--mid-gray);
        letter-spacing: 2px;
    }

    .social-links { display: flex; gap: 20px; }
    .social-links a {
        color: var(--mid-gray); text-decoration: none;
        font-size: 10px; letter-spacing: 2px;
        text-transform: uppercase; transition: color 0.3s;
    }
    .social-links a:hover { color: white; }

    /* SVG Smiley */
    .smiley-svg {
        width: 100%; height: 100%;
    }

    @media (max-width: 768px) {
        nav { padding: 16px 20px; }
        .nav-links { display: none; }
        .hero { padding: 0 20px; }
        .hero-smiley { display: none; }
        .section { padding: 60px 20px; }
        .statement { grid-template-columns: 1fr; padding: 60px 20px; }
        .kit-grid { grid-template-columns: 1fr; }
        .footer-grid { grid-template-columns: 1fr 1fr; }
        .newsletter { flex-direction: column; }
    }
/* =====================
CART DRAWER
===================== */
#cart-overlay {
display: none;
position: fixed; inset: 0;
background: rgba(0,0,0,0.6);
z-index: 998;
backdrop-filter: blur(3px);
}
#cart-overlay.open { display: block; }

#cart-drawer {
position: fixed; top: 0; right: -480px;
width: 440px; max-width: 100vw;
height: 100vh;
background: #0d0d0d;
border-left: 1px solid rgba(255,255,255,0.1);
z-index: 999;
display: flex; flex-direction: column;
transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#cart-drawer.open { right: 0; }

.cart-header {
display: flex; justify-content: space-between; align-items: center;
padding: 24px 28px;
border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cart-header h3 {
font-family: 'Bebas Neue', sans-serif;
font-size: 22px; letter-spacing: 4px;
}
.cart-close {
background: none; border: none; color: white;
font-size: 22px; cursor: pointer;
width: 36px; height: 36px;
display: flex; align-items: center; justify-content: center;
border: 1px solid rgba(255,255,255,0.15);
transition: background 0.2s;
}
.cart-close:hover { background: rgba(255,255,255,0.1); }

#cart-body {
flex: 1; overflow-y: auto; padding: 20px 28px;
scrollbar-width: thin; scrollbar-color: #333 transparent;
}

.cart-empty {
height: 100%; display: flex; flex-direction: column;
align-items: center; justify-content: center;
color: #555; font-size: 12px; letter-spacing: 2px;
text-transform: uppercase; text-align: center;
padding: 60px 0;
}

.cart-item {
display: flex; gap: 16px; padding: 16px 0;
border-bottom: 1px solid rgba(255,255,255,0.07);
}
.cart-item-img {
width: 70px; height: 85px; flex-shrink: 0;
background: #1a1a1a;
display: flex; align-items: center; justify-content: center;
overflow: hidden;
}
.cart-item-img svg { width: 100%; height: 100%; }

.cart-item-info { flex: 1; }
.cart-item-name {
font-size: 11px; letter-spacing: 2px;
text-transform: uppercase; margin-bottom: 6px;
}
.cart-item-price {
font-family: 'Anton', sans-serif;
font-size: 16px; margin-bottom: 12px;
}
.cart-item-qty {
display: flex; align-items: center; gap: 10px;
}
.qty-btn {
background: none; border: 1px solid rgba(255,255,255,0.2);
color: white; width: 28px; height: 28px;
font-size: 16px; cursor: pointer;
display: flex; align-items: center; justify-content: center;
transition: background 0.2s;
}
.qty-btn:hover { background: rgba(255,255,255,0.1); }
.cart-item-qty span { font-size: 13px; min-width: 20px; text-align: center; }
.remove-btn {
background: none; border: none; color: #555;
font-size: 13px; cursor: pointer; margin-left: auto;
transition: color 0.2s;
}
.remove-btn:hover { color: white; }

#cart-footer {
padding: 20px 28px 28px;
border-top: 1px solid rgba(255,255,255,0.1);
}
.cart-total-row {
display: flex; justify-content: space-between;
align-items: center; margin-bottom: 20px;
}
.cart-total-row span:first-child {
font-size: 11px; letter-spacing: 3px;
text-transform: uppercase; color: #888;
}
#cart-total {
font-family: 'Anton', sans-serif;
font-size: 22px; letter-spacing: 2px;
}
.checkout-btn {
width: 100%; padding: 16px;
background: white; color: black;
border: none; font-family: 'Space Mono', monospace;
font-size: 12px; letter-spacing: 3px;
text-transform: uppercase; cursor: pointer;
transition: background 0.3s, color 0.3s;
margin-bottom: 10px;
}
.checkout-btn:hover { background: #ddd; }
.whatsapp-btn {
width: 100%; padding: 14px;
background: none; color: white;
border: 1px solid rgba(255,255,255,0.2);
font-family: 'Space Mono', monospace;
font-size: 11px; letter-spacing: 2px;
text-transform: uppercase; cursor: pointer;
transition: border-color 0.3s, background 0.3s;
}
.whatsapp-btn:hover { border-color: white; background: rgba(255,255,255,0.05); }