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

        :root {
            --primary: #0a0a0a;
            --secondary: #1a1a1a;
            --accent: #d4af37;
            --light: #f5f5f5;
            --text: #2c2c2c;
            --border: #e0e0e0;
            --success: #27ae60;
            --gold: #d4af37;
            --gold-light: #f0d875;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text);
            background-color: var(--light);
            overflow-x: hidden;
        }

        /* NAVBAR */
        navbar {
            background: #0a0a0a;
            color: white;
            padding: 0.8rem 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
            border-bottom: 3px solid #d4af37;
            min-height: 60px;
            display: flex;
            align-items: center;
        }

        .navbar-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .navbar-left {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .logo {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: 2px;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            white-space: nowrap;
            text-transform: uppercase;
            padding: 0.5rem 1rem;
            border: 2px solid var(--gold);
            border-radius: 8px;
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            flex-wrap: wrap;
            background: transparent;
            padding: 0.5rem 1rem;
            border-radius: 8px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
            cursor: pointer;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            color: var(--accent);
            background: rgba(212, 175, 55, 0.1);
        }

        .cart-icon {
            position: relative;
            cursor: pointer;
            font-size: 1.5rem;
            transition: 0.3s;
        }

        .cart-icon:hover {
            transform: scale(1.1);
            color: var(--accent);
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--gold);
            color: #0a0a0a;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: bold;
        }

        /* HERO SECTION - React Style */
        .hero {
            position: relative;
            height: 85vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            filter: brightness(0.5);
        }

        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, black, transparent, rgba(0,0,0,0.3));
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 0 1rem;
            max-width: 80rem;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 6rem);
            font-weight: 900;
            font-style: italic;
            letter-spacing: -0.05em;
            text-transform: uppercase;
            color: white;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 20px rgba(0,0,0,0.5);
            animation: slideDown 0.8s ease-out 0.2s both;
        }

        .hero h1 .highlight {
            color: #f59e0b; /* amber-500 */
        }

        .hero p {
            font-size: clamp(1rem, 3vw, 1.5rem);
            color: #e4e4e7; /* zinc-200 */
            margin-bottom: 2.5rem;
            font-weight: 300;
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
            animation: slideDown 0.8s ease-out 0.4s both;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
            animation: scaleIn 0.5s ease-out 0.6s both;
        }

        @media (min-width: 640px) {
            .hero-buttons {
                flex-direction: row;
            }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Botones estilo React */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: #f59e0b; /* amber-500 */
            color: #0a0a0a;
            padding: 1rem 2rem;
            border-radius: 9999px; /* rounded-full */
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1.125rem;
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.25);
        }

        .btn-primary:hover {
            background: #d97706; /* amber-600 */
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(245, 158, 11, 0.35);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            color: white;
            padding: 1rem 2rem;
            border-radius: 9999px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            font-size: 1.125rem;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Animaciones Fade In */
        .fade-in {
            animation: slideDown 1s ease-out forwards;
        }

        .fade-in-delay {
            opacity: 0;
            animation: slideUp 1s ease-out 0.3s forwards;
        }

        .fade-in-delay-2 {
            opacity: 0;
            animation: slideUp 1s ease-out 0.6s forwards;
        }

        /* Botón con efecto glow */
        .glow-btn {
            animation: glow 2s ease-in-out infinite;
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
            50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.8); }
        }

        /* Hero glow effect */
        .hero-glow {
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
            50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
        }

        /* Scroll animations */
        .slide-in-element {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .slide-in-element.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* FEATURED CATEGORIES - React Style */
        .categories-section {
            padding: 5rem 1rem;
            max-width: 80rem;
            margin: 0 auto;
        }

        .categories-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .categories-header h2 {
            font-size: clamp(1.875rem, 5vw, 3rem);
            font-weight: 900;
            font-style: italic;
            letter-spacing: -0.05em;
            text-transform: uppercase;
            color: #18181b; /* zinc-900 */
            margin-bottom: 1rem;
        }

        .dark .categories-header h2 {
            color: white;
        }

        .categories-header h2 .highlight {
            color: #f59e0b; /* amber-500 */
        }

        .categories-header p {
            color: #71717a; /* zinc-500 */
            max-width: 28rem;
            margin: 0 auto;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 768px) {
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .categories-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .category-card {
            position: relative;
            height: 24rem;
            overflow: hidden;
            border-radius: 1rem;
            display: block;
        }

        .category-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
            filter: brightness(0.75);
        }

        .category-card:hover img {
            transform: scale(1.1);
            filter: brightness(0.5);
        }

        .category-card-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 1.5rem;
            z-index: 10;
        }

        .category-card h3 {
            font-size: 1.875rem;
            font-weight: 900;
            font-style: italic;
            letter-spacing: -0.05em;
            text-transform: uppercase;
            color: white;
            margin-bottom: 0.5rem;
            transform: translateY(1rem);
            transition: transform 0.5s ease;
        }

        .category-card:hover h3 {
            transform: translateY(0);
        }

        .category-card p {
            color: #e4e4e7;
            font-size: 0.875rem;
            font-weight: 500;
            opacity: 0;
            transform: translateY(1rem);
            transition: all 0.5s ease 0.1s;
        }

        .category-card:hover p {
            opacity: 1;
            transform: translateY(0);
        }

        /* NEW ARRIVALS - React Style */
        .new-arrivals {
            background: #f4f4f5; /* zinc-50 */
            padding: 5rem 1rem;
        }

        .dark .new-arrivals {
            background: rgba(24, 24, 27, 0.5); /* zinc-900/50 */
        }

        .new-arrivals-container {
            max-width: 80rem;
            margin: 0 auto;
        }

        .new-arrivals .product-card {
            background: white;
            min-height: 350px;
        }

        .new-arrivals .product-card .product-name {
            color: #18181b;
        }

        .new-arrivals .product-card .product-description {
            color: #52525b;
        }

        .new-arrivals .product-card .product-category {
            color: #d4af37;
        }

        .new-arrivals .product-card .product-price {
            color: #d4af37;
        }

        /* Asegurar visibilidad de productos */
        .new-arrivals-products .product-card,
        #newArrivalsGrid .product-card {
            background: #ffffff !important;
            border: 1px solid #e5e5e5 !important;
            display: flex !important;
            visibility: visible !important;
            opacity: 1 !important;
        }

        #newArrivalsGrid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            padding: 1rem 0;
        }

        #newArrivalsGrid .product-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        #newArrivalsGrid .product-card .product-info {
            padding: 1.5rem;
            background: white;
        }

        #newArrivalsGrid .product-card .product-name {
            color: #18181b;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        #newArrivalsGrid .product-card .product-description {
            color: #52525b;
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }

        #newArrivalsGrid .product-card .product-price {
            color: #d4af37;
            font-size: 1.4rem;
            font-weight: 700;
        }

        #newArrivalsGrid .product-card .product-category {
            color: #d4af37;
            font-size: 0.75rem;
            text-transform: uppercase;
            font-weight: 700;
        }

        #newArrivalsGrid .product-slider {
            height: 200px;
            background: #f5f5f5;
        }

        #newArrivalsGrid .product-slider img {
            object-fit: cover;
            width: 100%;
            height: 100%;
        }

        #newArrivalsGrid .product-overlay {
            background: rgba(10, 10, 10, 0.7);
        }

        #newArrivalsGrid .product-overlay-price {
            color: #d4af37;
            font-weight: 700;
        }

        #newArrivalsGrid .product-overlay-category {
            color: white;
            text-transform: uppercase;
            font-size: 0.8rem;
        }

        #newArrivalsGrid .btn-add-cart {
            background: #f59e0b;
            color: #0a0a0a;
            padding: 0.9rem;
            border-radius: 9999px;
            font-weight: 700;
            border: none;
            cursor: pointer;
            width: 100%;
        }

        .new-arrivals-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .new-arrivals-header h2 {
            font-size: clamp(1.875rem, 5vw, 3rem);
            font-weight: 900;
            font-style: italic;
            letter-spacing: -0.05em;
            text-transform: uppercase;
            color: #18181b;
            margin-bottom: 0.5rem;
        }

        .dark .new-arrivals-header h2 {
            color: white;
        }

        .new-arrivals-header h2 .highlight {
            color: #f59e0b;
        }

        .new-arrivals-header p {
            color: #71717a;
        }

        .view-all-link {
            display: none;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            color: #18181b;
            text-decoration: none;
            transition: color 0.3s;
        }

        .view-all-link:hover {
            color: #f59e0b;
        }

        @media (min-width: 640px) {
            .view-all-link {
                display: flex;
            }
        }

        .view-all-link-mobile {
            display: flex;
            margin-top: 3rem;
            justify-content: center;
        }

        @media (min-width: 640px) {
            .view-all-link-mobile {
                display: none;
            }
        }

        .view-all-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            background: white;
            color: #18181b;
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            text-decoration: none;
            transition: all 0.3s;
        }

        .view-all-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
        }

        .dark .view-all-btn {
            background: #27272a; /* zinc-800 */
            color: white;
        }

        /* Products Grid - Following New Arrivals */
        .new-arrivals-products {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 640px) {
            .new-arrivals-products {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .new-arrivals-products {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* TESTIMONIOS */
        .testimonials-section {
            background: #0a0a0a;
            padding: 4rem 2rem;
        }

        .testimonials-section .section-title {
            color: var(--gold);
            text-align: center;
            margin-bottom: 3rem;
        }

        .testimonials-section .section-title::after {
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold);
        }

        .testimonials-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .testimonial-card {
            background: #1a1a1a;
            padding: 2rem;
            border-radius: 12px;
            border-left: 3px solid var(--gold);
        }

        .testimonial-card p {
            color: rgba(255,255,255,0.8);
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            justify-content: flex-end;
        }

        .testimonial-avatar {
            display: none;
        }

        .testimonial-author span {
            font-weight: 600;
            color: var(--gold);
        }

        /* FOOTBALL SLIDER SECTION */
        .football-section {
            background: #0a0a0a;
            padding: 4rem 2rem;
            text-align: center;
        }

        .football-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .slide-container {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .slide-container.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .slide-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 2rem;
        }

        .slide-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: #333;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .slide-dot.active {
            background: #d4af37;
            transform: scale(1.3);
        }

        /* iPad Frame Minimalist - Chico */
        .ipad-frame {
            background: #1a1a1a;
            border-radius: 25px;
            padding: 12px;
            display: inline-block;
            box-shadow: 
                0 0 0 2px #333,
                0 15px 40px rgba(0,0,0,0.5);
            margin-bottom: 2rem;
            max-width: 90%;
        }

        .ipad-screen {
            border-radius: 18px;
            overflow: hidden;
            background: #000;
            width: 300px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ipad-screen img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .football-text {
            margin-bottom: 2rem;
        }

        .fade-in-text {
            color: #d4af37;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            animation: fadeInText 1.5s ease-out forwards;
            opacity: 0;
        }

        @keyframes fadeInText {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .bounce-text {
            color: white;
            font-size: 1.8rem;
            font-weight: 600;
            animation: bounceText 2s ease-out 1s forwards;
            opacity: 0;
        }

        @keyframes bounceText {
            0% { opacity: 0; transform: scale(0.5); }
            50% { transform: scale(1.1); }
            70% { transform: scale(0.95); }
            100% { opacity: 1; transform: scale(1); }
        }

        .football-products {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .football-product {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #d4af37;
            transition: all 0.3s;
            cursor: pointer;
            background: white;
        }

        .football-product:hover {
            transform: scale(1.15);
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
        }

        .football-product img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .fade-in-text { font-size: 1.8rem; }
            .bounce-text { font-size: 1.3rem; }
            .football-product { width: 80px; height: 80px; }
            .ipad-frame { padding: 8px; border-radius: 18px; }
            .ipad-screen { width: 220px; height: 300px; border-radius: 14px; }
        }

        /* JERSEY SLIDER SECTION */
        .jersey-slider-section {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            padding: 4rem 2rem;
            text-align: center;
            border-top: 2px solid #d4af37;
            border-bottom: 2px solid #d4af37;
        }

        .jersey-slider-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .jersey-slide {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .jersey-slide.active {
            display: block;
        }

        .jersey-slide-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 2rem;
        }

        .jersey-slide-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: #333;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .jersey-slide-dot.active {
            background: #d4af37;
            transform: scale(1.3);
        }

        .jersey-text {
            margin-bottom: 2rem;
        }

        .jersey-products {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .jersey-product {
            width: 100px;
            height: 100px;
            border-radius: 15px;
            overflow: hidden;
            border: 3px solid #d4af37;
            transition: all 0.3s;
            cursor: pointer;
            background: white;
        }

        .jersey-product:hover {
            transform: scale(1.15);
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
        }

        .jersey-product img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .jersey-product { width: 60px; height: 60px; border-radius: 10px; }
            .jersey-products { gap: 0.8rem; }
            .ipad-screen { width: 280px; height: 350px; border-radius: 15px; }
        }

        /* HERO SLIDER SECTION */
        .hero-slider-section {
            background: #0a0a0a;
            padding: 2rem;
        }

        .slider-container {
            max-width: 800px;
            margin: 2rem auto;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
        }

        .slider-wrapper {
            position: relative;
            height: 400px;
        }

        .slider-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: all 0.5s ease;
        }

        .slider-slide.active {
            opacity: 1;
        }

        .slider-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            padding: 2rem;
            text-align: center;
        }

        .slide-content h2 {
            color: #d4af37;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .slide-content p {
            color: white;
            font-size: 1.2rem;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(212, 175, 55, 0.9);
            color: #0a0a0a;
            border: none;
            padding: 1rem 1.2rem;
            cursor: pointer;
            border-radius: 50%;
            font-size: 1.2rem;
            font-weight: bold;
            transition: all 0.3s;
            z-index: 10;
        }

        .slider-btn:hover {
            background: #d4af37;
            transform: translateY(-50%) scale(1.1);
        }

        .slider-btn.prev {
            left: 20px;
        }

        .slider-btn.next {
            right: 20px;
        }

        .slider-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .slider-dots span {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dots span.active {
            background: #d4af37;
            transform: scale(1.3);
        }

        @media (max-width: 768px) {
            .slider-wrapper {
                height: 250px;
            }
            
            .slide-content h2 {
                font-size: 1.3rem;
            }
            
            .slide-content p {
                font-size: 0.9rem;
            }
        }

        /* NEWSLETTER - React Style */
        .newsletter-section {
            padding: 5rem 1rem;
            background: #f59e0b; /* amber-500 */
            color: #0a0a0a;
            text-align: center;
        }

        .newsletter-container {
            max-width: 56rem;
            margin: 0 auto;
        }

        .newsletter-icon {
            width: 3rem;
            height: 3rem;
            margin: 0 auto 1.5rem;
            animation: spin 3s linear infinite;
        }

        .newsletter-icon svg {
            fill: #0a0a0a;
            stroke: none;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .newsletter-section h2 {
            font-size: clamp(2rem, 6vw, 3.75rem);
            font-weight: 900;
            font-style: italic;
            letter-spacing: -0.05em;
            text-transform: uppercase;
            color: #0a0a0a;
            margin-bottom: 1.5rem;
        }

        .newsletter-section h2 .highlight {
            color: white;
        }

        .newsletter-section p {
            font-size: 1.25rem;
            font-weight: 500;
            color: #0a0a0a;
            margin-bottom: 2rem;
            max-width: 42rem;
            margin-left: auto;
            margin-right: auto;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 28rem;
            margin: 0 auto;
        }

        @media (min-width: 640px) {
            .newsletter-form {
                flex-direction: row;
            }
        }

        .newsletter-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border-radius: 9999px;
            border: none;
            outline: none;
            font-size: 1.125rem;
            background: rgba(255, 255, 255, 0.9);
            color: #0a0a0a;
        }

        .newsletter-input::placeholder {
            color: #71717a;
        }

        .newsletter-input:focus {
            ring: 2px solid #0a0a0a;
        }

        .newsletter-btn {
            padding: 1rem 2rem;
            background: #0a0a0a;
            color: white;
            font-weight: 700;
            border-radius: 9999px;
            border: none;
            cursor: pointer;
            font-size: 1.125rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.3s;
        }

        .newsletter-btn:hover {
            background: #18181b;
            transform: scale(0.98);
        }

        /* QR Animation */
        .qr-container {
            margin-top: 2rem;
            display: inline-block;
            position: relative;
        }

        .qr-code {
            width: 120px;
            height: 120px;
            background: white;
            border-radius: 12px;
            padding: 10px;
            box-shadow: 0 0 0 3px white, 0 0 0 6px var(--gold);
            animation: qrPulse 2s ease-in-out infinite;
        }

        @keyframes qrPulse {
            0%, 100% { box-shadow: 0 0 0 3px white, 0 0 0 6px var(--gold), 0 0 20px rgba(212, 175, 55, 0.3); }
            50% { box-shadow: 0 0 0 3px white, 0 0 0 8px var(--gold), 0 0 30px rgba(212, 175, 55, 0.6); }
        }

        .qr-label {
            color: white;
            margin-top: 1rem;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* CATEGORÍAS NAV */
        .categories-nav {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            padding: 1.5rem;
            background: #f4f4f5; /* zinc-50 */
            flex-wrap: wrap;
        }

        .dark .categories-nav {
            background: #18181b;
        }

        .category-btn {
            padding: 0.6rem 1.5rem;
            background: white;
            border: 1px solid #e4e4e7;
            border-radius: 9999px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            color: #18181b;
            font-size: 0.875rem;
            text-decoration: none;
            display: inline-block;
        }

        .category-btn:visited {
            color: #18181b;
        }

        .dark .category-btn {
            background: #27272a;
            border-color: #3f3f46;
            color: white;
        }

        .category-btn.active {
            background: #f59e0b; /* amber-500 */
            color: #0a0a0a;
            border-color: #f59e0b;
        }

        .category-btn.active:visited {
            color: #0a0a0a;
        }

        .category-btn:hover:not(.active) {
            border-color: #f59e0b;
            color: #f59e0b;
        }

        /* SECCIÓN DE PRODUCTOS */
        .section {
            max-width: 80rem; /* max-w-7xl */
            margin: 0 auto;
            padding: 5rem 1.5rem;
            background: white;
        }

        .dark .section {
            background: #0a0a0a;
        }

        @media (max-width: 768px) {
            .section {
                padding: 3rem 1rem;
            }
        }

        .section-title {
            font-size: clamp(1.5rem, 4vw, 2.2rem);
            font-weight: 900;
            font-style: italic;
            letter-spacing: -0.03em;
            text-transform: uppercase;
            margin-bottom: 2rem;
            color: #18181b;
            position: relative;
            padding-bottom: 1rem;
        }

        .dark .section-title {
            color: white;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--gold);
            border-radius: 2px;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: white;
            backdrop-filter: blur(10px);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            display: flex;
            flex-direction: column;
            animation: fadeIn 0.5s ease-out;
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .dark .product-card {
            background: #1a1a1a;
            border-color: rgba(255, 255, 255, 0.1);
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.4s;
            pointer-events: none;
            z-index: 1;
        }

        .product-card:hover {
            transform: translateY(-18px) scale(1.02);
            box-shadow: 0 25px 60px rgba(212, 175, 55, 0.25);
            border-color: var(--gold);
        }

        .product-card:hover::before {
            opacity: 1;
        }

        .product-card:hover .product-overlay {
            opacity: 1;
        }

        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 10, 0.85);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: 0.3s;
            z-index: 3;
            padding: 1rem;
        }

        .product-overlay-price {
            color: var(--gold);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .product-overlay-category {
            color: white;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* SLIDER DE IMÁGENES */
        .product-slider {
            width: 100%;
            height: 200px;
            position: relative;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            overflow: hidden;
            border-radius: 12px 12px 0 0;
            cursor: pointer;
            transition: 0.3s;
        }

        .product-slider:hover {
            box-shadow: inset 0 0 20px rgba(233, 69, 96, 0.2);
        }

        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            opacity: 0;
            transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out, filter 0.6s ease-in-out;
            transform: scale(1);
            filter: brightness(0.95);
        }

        .product-image.active {
            opacity: 1;
            filter: brightness(1);
            animation: zoomIn 0.6s ease-in-out;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.95);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .slider-nav {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
            background: rgba(0,0,0,0.3);
            padding: 8px 12px;
            border-radius: 20px;
            backdrop-filter: blur(5px);
        }

        .slider-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: 0.3s;
            border: 2px solid transparent;
        }

        .slider-dot:hover {
            background: rgba(255,255,255,0.8);
            transform: scale(1.2);
        }

        .slider-dot.active {
            background: var(--gold);
            box-shadow: 0 0 10px var(--gold);
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.8);
            color: var(--primary);
            border: none;
            padding: 0.5rem 0.8rem;
            cursor: pointer;
            border-radius: 4px;
            transition: 0.3s;
            font-weight: bold;
            z-index: 10;
            opacity: 0;
            backdrop-filter: blur(10px);
        }

        .product-slider:hover .slider-btn {
            opacity: 1;
        }

        .slider-btn:hover {
            background: rgba(255,255,255,1);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        .slider-btn.prev {
            left: 10px;
        }

        .slider-btn.next {
            right: 10px;
        }

        .product-info {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 2;
        }

        .product-category {
            font-size: 0.75rem;
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: fadeIn 0.5s ease-out 0.1s both;
        }

        .product-name {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--primary);
            animation: fadeIn 0.5s ease-out 0.2s both;
        }

        .product-description {
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 1rem;
            flex-grow: 1;
            animation: fadeIn 0.5s ease-out 0.3s both;
        }

        .product-price {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
            animation: fadeIn 0.5s ease-out 0.4s both;
        }

        .btn-add-cart {
            background: #f59e0b; /* amber-500 */
            color: #0a0a0a;
            border: none;
            padding: 0.9rem;
            border-radius: 9999px; /* rounded-full */
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
            animation: fadeIn 0.5s ease-out 0.5s both;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
            font-size: 1rem;
        }

        .btn-add-cart::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-add-cart:hover::before {
            width: 350px;
            height: 350px;
        }

        .btn-add-cart:hover {
            background: #d97706; /* amber-600 */
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
        }

        .btn-add-cart * {
            position: relative;
            z-index: 1;
        }

        /* MODAL DE PRODUCTO AMPLIADO */
        .product-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 5000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(8px);
            animation: fadeIn 0.3s ease-out;
        }

        .product-modal.active {
            display: flex;
        }

        .modal-content {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border-radius: 20px;
            padding: 2rem;
            max-width: 800px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 25px 65px rgba(0, 0, 0, 0.4);
            animation: zoomIn 0.3s ease-out;
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: #0a0a0a;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
            z-index: 10;
            line-height: 1;
        }

        .modal-close:hover {
            transform: scale(1.15) rotate(90deg);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
        }

        .modal-image-container {
            width: 100%;
            height: 450px;
            position: relative;
            background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 2rem;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .modal-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            opacity: 0;
            transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
        }

        .modal-image.active {
            opacity: 1;
            animation: zoomIn 0.6s ease-in-out;
        }

        .modal-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.95);
            color: var(--primary);
            border: none;
            padding: 1rem;
            cursor: pointer;
            border-radius: 50%;
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.3rem;
            z-index: 10;
            transition: 0.3s;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(5px);
        }

        .modal-nav-btn:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
        }

        .modal-nav-btn.prev {
            left: 15px;
        }

        .modal-nav-btn.next {
            right: 15px;
        }

        .modal-dots {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .modal-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: 0.3s;
            border: 2px solid transparent;
        }

        .modal-dot:hover {
            background: rgba(0, 0, 0, 0.5);
            transform: scale(1.4);
        }

        .modal-dot.active {
            background: var(--gold);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
        }

        .modal-info {
            text-align: center;
        }

        .modal-category {
            color: var(--gold);
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.8rem;
        }

        .modal-name {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .modal-description {
            color: #666;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .modal-price {
            font-size: 2.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .modal-action-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .modal-add-btn {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            color: #0a0a0a;
            border: none;
            padding: 1.1rem 2.5rem;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .modal-add-btn:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
        }

        .modal-close-btn {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 1.1rem 2.5rem;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 8px 25px rgba(22, 33, 62, 0.4);
        }

        .modal-close-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(22, 33, 62, 0.6);
        }

        /* CARRITO MODAL */
        .cart-modal {
            display: none;
            backdrop-filter: blur(5px);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1000;
            animation: fadeIn 0.3s ease-out;
        }

        .cart-modal.active {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }

        .cart-content {
            background: #000000;
            width: 100%;
            max-width: 350px;
            height: 100%;
            max-height: 90vh;
            margin: auto;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            animation: slideInRight 0.4s ease-out;
            border-radius: 40px;
            position: relative;
            box-shadow: 
                0 0 0 3px #333,
                0 0 0 8px #555,
                0 25px 80px rgba(0,0,0,0.5);
        }

        /* iPhone notch */
        .cart-content::before {
            content: '';
            position: sticky;
            top: 0;
            display: block;
            width: 45%;
            height: 28px;
            background: #111;
            border-radius: 0 0 20px 20px;
            margin: 0 auto;
            z-index: 10;
        }

        /* iPhone home indicator */
        .cart-content::after {
            content: '';
            position: sticky;
            bottom: 0;
            display: block;
            width: 40%;
            height: 5px;
            background: #333;
            border-radius: 10px;
            margin: 15px auto;
            z-index: 10;
        }

        .cart-header {
            background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
            color: white;
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #333;
            position: sticky;
            top: 0;
            z-index: 5;
            border-radius: 40px 40px 0 0;
        }

        .cart-header h2 {
            font-size: 1.3rem;
            color: white;
            font-weight: 600;
        }

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
            }
            to {
                transform: translateX(0);
            }
        }

        .cart-header {
            background: var(--primary);
            color: white;
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .close-cart {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .cart-items {
            flex-grow: 1;
            overflow-y: auto;
            padding: 1rem 1.2rem;
        }

        .cart-item {
            background: #1c1c1e;
            padding: 0.8rem;
            margin-bottom: 0.8rem;
            border-radius: 16px;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            animation: slideIn 0.3s ease-out;
            border: none;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }

        .cart-item-image {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 10px;
            flex-shrink: 0;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .cart-item-info {
            flex-grow: 1;
        }

        .cart-item-name {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: white;
            font-size: 0.95rem;
        }

        .cart-item-price {
            color: var(--gold);
            font-weight: 700;
            font-size: 1.1rem;
        }

        .cart-item-quantity {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin: 0.5rem 0;
        }

        .qty-btn {
            width: 32px;
            height: 32px;
            border: none;
            background: #2c2c2e;
            color: white;
            cursor: pointer;
            border-radius: 50%;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .qty-btn:hover {
            background: var(--gold);
            color: black;
            transform: scale(1.1);
        }

        .cart-item-quantity span {
            color: white;
            font-weight: 600;
            min-width: 25px;
            text-align: center;
            font-size: 1rem;
        }

        .remove-item {
            background: #3a3a3c;
            color: #ff453a;
            border: none;
            padding: 0.5rem 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.8rem;
            transition: all 0.3s;
            margin-left: 0.5rem;
        }

        .remove-item:hover {
            background: #ff453a;
            color: white;
        }

        .copy-image-btn {
            background: none;
            border: none;
            color: #3498db;
            cursor: pointer;
            font-size: 1rem;
            padding: 0.4rem 0.6rem;
            border-radius: 6px;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .copy-image-btn:hover {
            background: #3498db;
            color: white;
            transform: scale(1.1);
        }

        .copy-image-btn.copied {
            background: #27ae60;
            color: white;
        }

        .empty-cart {
            text-align: center;
            padding: 4rem 1rem;
            color: #8e8e93;
        }

        .empty-cart i {
            font-size: 3.5rem;
            color: #48484a;
            margin-bottom: 1rem;
        }

        .cart-footer {
            background: #1c1c1e;
            padding: 1.2rem;
            border-top: 1px solid #38383a;
            border-radius: 0 0 40px 40px;
        }

        .cart-total {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            font-size: 1.2rem;
            font-weight: 700;
        }

        .checkout-btn {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--success), #1e8449);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
        }

        .checkout-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.8s;
        }

        .checkout-btn:hover::before {
            left: 100%;
        }

        .checkout-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(39, 174, 96, 0.4);
        }

        /* FOOTER */
        footer {
            background: #0a0a0a;
            color: white;
            padding: 3rem 2rem;
            border-top: 2px solid var(--gold);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: var(--gold);
        }

        .footer-section p, .footer-section a {
            color: #bbb;
            line-height: 1.8;
            text-decoration: none;
        }

        .footer-section a:hover {
            color: var(--accent);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--gold);
            border-radius: 50%;
            color: #0a0a0a;
            transition: 0.3s;
        }

        .social-links a:hover {
            background: var(--gold-light);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #333;
            color: #888;
        }

        /* RESPONSIVE */
        @media (min-width: 769px) and (max-width: 1024px) {
            .navbar-container {
                max-width: 100%;
                padding: 0 1rem;
            }

            .nav-links {
                gap: 1rem;
            }

            .logo {
                font-size: 1.6rem;
            }

            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .hero {
                padding: 4rem 1rem;
                min-height: 400px;
            }

            .nav-links {
                gap: 0.8rem;
                padding: 0.3rem 0.5rem;
            }

            .nav-links a {
                font-size: 0.8rem;
                padding: 0.4rem 0.5rem;
            }

            .logo {
                font-size: 1.4rem;
                padding: 0.3rem 0.6rem;
            }

            .navbar-container {
                padding: 0 1rem;
                flex-wrap: wrap;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 1rem;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 1rem;
            }

            .product-card {
                border-radius: 12px;
            }

            .product-info {
                padding: 1rem;
            }

            .product-name {
                font-size: 0.95rem;
            }

            .product-price {
                font-size: 1.1rem;
            }

            .cart-content {
                max-width: 100%;
            }

            .navbar-container {
                padding: 0 1rem;
            }

            .section {
                padding: 0 1rem;
            }

            .style-title {
                font-size: 1.5rem;
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .benefit-card {
                padding: 1.5rem 1rem;
            }

            .benefit-card h3 {
                font-size: 0.85rem;
            }

            .cta-content h2 {
                font-size: 1.8rem;
            }

            .categories-nav {
                gap: 0.5rem;
                padding: 1rem;
            }

            .category-btn {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.6rem;
            }

            .hero {
                padding: 3rem 1rem;
                min-height: 350px;
            }

            .logo {
                font-size: 1.2rem;
                padding: 0.2rem 0.4rem;
            }

            .nav-links {
                display: flex;
                overflow-x: auto;
                white-space: nowrap;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                gap: 0.5rem;
                padding: 0.2rem;
            }

            .nav-links::-webkit-scrollbar {
                display: none;
            }

            .nav-links a {
                font-size: 0.75rem;
                padding: 0.3rem 0.4rem;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.8rem;
            }

            .product-slider {
                height: 120px;
            }

            .product-info {
                padding: 0.8rem;
            }

            .product-category {
                font-size: 0.6rem;
            }

            .product-name {
                font-size: 0.85rem;
                margin-bottom: 0.3rem;
            }

            .product-description {
                font-size: 0.7rem;
                margin-bottom: 0.5rem;
            }

            .product-price {
                font-size: 1rem;
                margin-bottom: 0.5rem;
            }

            .btn-add-cart {
                padding: 0.6rem;
                font-size: 0.8rem;
            }

            .category-btn {
                padding: 0.4rem 0.8rem;
                font-size: 0.75rem;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .benefit-card h3 {
                font-size: 0.75rem;
            }

            .cta-content h2 {
                font-size: 1.5rem;
            }

            .cta-btn {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }

            .qr-code {
                width: 80px;
                height: 80px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        /* Copiar imagen notificación */
        .copy-notification {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: #27ae60;
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            z-index: 10000;
            animation: slideUp 0.3s ease-out;
            box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }