        :root {
            --red: hwb(0 14% 20%);
            --red-light: #ff9e9b;
            --black: #0A0A0A;
            --gray-dark: #1A1A1A;
            --gray-mid: #2A2A2A;
            --gray-light: #E8E8E8;
            --white: #FAFAFA;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--black);
            color: var(--white);
            overflow-x: hidden;
        }

        .font-display {
            font-family: 'Bebas Neue', sans-serif;
        }

        #ticker {
            background: var(--red);
            color: var(--black);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            overflow: hidden;
            white-space: nowrap;
            padding: 8px 0;
        }

        .ticker-track {
            display: inline-block;
            animation: ticker-scroll 20s linear infinite;
        }

        @keyframes ticker-scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        nav {
            background: var(--black);
            border-bottom: 1px solid #222;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
        }

        #hero {
            position: relative;
            height: 95vh;
            min-height: 600px;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            padding-bottom: 80px;
        }

        #hero-bg {
            position: absolute;
            inset: 0;
            background: url('https://images.unsplash.com/photo-1523381210434-271e8be1f52b?w=1600&q=80') center/cover no-repeat;

        }

        #hero-bg.loaded {
            transform: scale(1);
        }

        #hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .marquee-wrap {
            overflow: hidden;
        }

        .marquee-track {
            display: flex;
            gap: 2rem;
            width: max-content;
            animation: marquee 18s linear infinite;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .product-card {
            background: var(--gray-dark);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #222;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-6px);
            border-color: var(--red);
        }

        .product-card img {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .product-card:hover img {
            transform: scale(1.04);
        }

        .product-img-wrap {
            overflow: hidden;
        }

        select {
            background: var(--gray-mid);
            border: 1px solid #333;
            color: var(--white);
            border-radius: 8px;
            padding: 8px 12px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.875rem;
            width: 100%;
            appearance: none;
            cursor: pointer;
            outline: none;
            transition: border-color 0.2s;
        }

        select:focus {
            border-color: var(--red);
        }

        .btn-add {
            width: 100%;
            background: var(--red);
            color: var(--black);
            font-weight: 600;
            font-size: 0.875rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            padding: 12px;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            transition: background 0.2s, transform 0.15s;
        }

        .btn-add:hover {
            background: var(--red-light);
            transform: translateY(-1px);
        }

        .btn-add:active {
            transform: translateY(0);
        }

        #cart-float {
            position: fixed;
            top: 18px;
            right: 20px;
            z-index: 200;
            background: var(--red);
            color: var(--black);
            border: none;
            border-radius: 50px;
            padding: 10px 18px;
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            font-size: 0.875rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: background 0.2s, transform 0.15s;
            box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
        }

        #cart-float:hover {
            background: var(--red-light);
            transform: scale(1.04);
        }

        #contador {
            background: #0A0A0A;
            color: var(--red);
            font-size: 0.75rem;
            font-weight: 800;
            min-width: 22px;
            height: 22px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        #modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(6px);
            z-index: 999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 16px;
        }

        #modal-overlay.open {
            display: flex;
        }

        #modal-box {
            background: var(--gray-dark);
            border: 1px solid #333;
            border-radius: 20px;
            width: 100%;
            max-width: 460px;
            max-height: 85vh;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            animation: modal-in 0.25s ease;
        }

        @keyframes modal-in {
            from {
                transform: translateY(30px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        #modal-body {
            overflow-y: auto;
            flex: 1;
            padding: 20px;
        }

        #modal-footer {
            padding: 16px 20px;
            border-top: 1px solid #2a2a2a;
        }

        .cart-item {
            background: var(--gray-mid);
            border-radius: 12px;
            padding: 14px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .cart-item-icon {
            font-size: 1.5rem;
            background: rgba(255, 217, 0, 0.12);
            width: 44px;
            height: 44px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .cart-item-remove {
            background: none;
            border: none;
            color: #555;
            cursor: pointer;
            padding: 4px;
            border-radius: 6px;
            transition: color 0.2s, background 0.2s;
            margin-left: auto;
            flex-shrink: 0;
        }

        .cart-item-remove:hover {
            color: #ff4444;
            background: rgba(255, 68, 68, 0.1);
        }

        #toast {
            position: fixed;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%) translateY(80px);
            z-index: 9999;
            background: var(--gray-dark);
            border: 1px solid #333;
            color: var(--white);
            padding: 12px 20px;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 500;
            transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            pointer-events: none;
            white-space: nowrap;
        }

        #toast.show {
            transform: translateX(-50%) translateY(0);
        }

        #toast.ok::before {
            content: "✓  ";
            color: #4ade80;
        }

        #toast.error::before {
            content: "✕  ";
            color: #f87171;
        }

        #wa-float {
            position: fixed;
            bottom: 24px;
            left: 24px;
            z-index: 150;
            width: 56px;
            height: 56px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: transform 0.2s, box-shadow 0.2s;
            transform: translateX(-100px);
        }

        #wa-float.show {
            transform: translateX(0);
        }

        #wa-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
        }

        #arrow-up {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 150;
            width: 44px;
            height: 44px;
            background: var(--red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.3s, opacity 0.3s;
            transform: translateY(80px);
            opacity: 0;
            text-decoration: none;
        }

        #arrow-up.show {
            transform: translateY(0);
            opacity: 1;
        }

        #arrow-up:hover {
            transform: translateY(-3px);
        }

        .about-stat {
            padding: 32px 24px;
            border: 1px solid #222;
            border-radius: 16px;
            text-align: center;
            transition: border-color 0.3s, background 0.3s;
        }

        .about-stat:hover {
            border-color: var(--red);
            background: rgba(255, 217, 0, 0.04);
        }

        #cta {
            position: relative;
            overflow: hidden;
        }

        #cta-bg {
            position: absolute;
            inset: 0;
            background: url('https://images.unsplash.com/photo-1529720317453-c8da503f2051?q=80&w=2340&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
        }

        #cta-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
        }

        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: var(--black);
        }

        ::-webkit-scrollbar-thumb {
            background: #333;
            border-radius: 3px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--red);
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: var(--red) !important;
        }

        .skeleton {
            background: linear-gradient(90deg, #1a1a1a 25%, #222 50%, #1a1a1a 75%);
            background-size: 200% 100%;
            animation: skeleton-loading 1.5s infinite;
            border-radius: 12px;
        }

        @keyframes skeleton-loading {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }

        #modalLegal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(6px);
            z-index: 9000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 16px;
        }

        #modalLegal.open {
            display: flex;
        }

        #mobile-menu {
            display: none;
            flex-direction: column;
            background: var(--gray-dark);
            border-bottom: 1px solid #222;
            padding: 16px 24px;
            gap: 16px;
        }

        #mobile-menu.open {
            display: flex;
        }

        @media (max-width: 768px) {
            #cart-float {
                top: 14px;
                right: 14px;
                padding: 8px 14px;
            }
        }