        :root {
            --primary: #ff6b6b;
            --secondary: #4ecdc4;
            --accent: #ffbe0b;
            --dark: #2b2d42;
            --light: #f8f9fa;
            --neon-pink: #ff2a6d;
            --neon-blue: #05d9e8;
            --neon-purple: #d300c5;
            --neon-green: #00ff9d;
            --neon-yellow: #f9f002;
        }
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
            background-size: 400% 400%;
            animation: gradient 15s ease infinite;
            color: white;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .fixed-logo {
            position: fixed;
            top: 10px;
            left: 10px;
            z-index: 1000;
            height: 60px;
            animation: pulse 2s infinite alternate;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.8; }
            100% { transform: scale(1.1); opacity: 1; }
        }
        
        header {
            background-color: rgba(43, 45, 66, 0.85);
            padding: 15px 5%;
            border-bottom: 3px solid var(--accent);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            display: grid;
            grid-template-columns: 20% 60% 20%;
            align-items: center;
            position: relative;
        }
        
        .header-logo {
            height: 60px;
            transition: all 0.3s ease;
            justify-self: center;
        }
        
        .header-logo:hover {
            transform: rotate(10deg) scale(1.1);
        }
        
        .header-center {
            text-align: center;
            padding: 0 10px;
        }
        
        .header-right {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-self: end;
            gap: 10px;
        }
        
        .side-logo {
            height: 30px;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        .side-logo:hover {
            transform: scale(1.1);
        }
        
        .title {
            font-size: clamp(1.8rem, 4vw, 3rem);
            margin: 0;
            color: white;
            font-weight: 800;
            letter-spacing: 1px;
            text-shadow: 
                0 0 5px var(--neon-pink),
                0 0 10px var(--neon-blue),
                0 0 15px var(--neon-purple);
            animation: titleGlow 6s linear infinite;
        }
        
        @keyframes titleGlow {
            0% { text-shadow: 0 0 5px var(--neon-pink), 0 0 10px var(--neon-blue), 0 0 15px var(--neon-purple); }
            25% { text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-purple), 0 0 15px var(--neon-green); }
            50% { text-shadow: 0 0 5px var(--neon-purple), 0 0 10px var(--neon-green), 0 0 15px var(--neon-yellow); }
            75% { text-shadow: 0 0 5px var(--neon-green), 0 0 10px var(--neon-yellow), 0 0 15px var(--neon-pink); }
            100% { text-shadow: 0 0 5px var(--neon-yellow), 0 0 10px var(--neon-pink), 0 0 15px var(--neon-blue); }
        }
        
        .subtitle {
            font-size: clamp(1rem, 2vw, 1.5rem);
            margin: 5px 0 0;
            color: var(--light);
            font-style: italic;
            animation: subtitleGlow 5s infinite alternate;
        }
        
        @keyframes subtitleGlow {
            0% { color: var(--light); text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
            100% { color: var(--accent); text-shadow: 0 0 10px rgba(255, 190, 11, 0.7); }
        }
        
        .datetime {
            font-size: 0.9rem;
            color: var(--light);
            margin-top: 5px;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 5%;
            background-color: rgba(43, 45, 66, 0.9);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .nav-links li {
            margin: 5px 10px;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
            white-space: nowrap;
        }
        
        .nav-links a:hover {
            background-color: var(--accent);
            color: var(--dark);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .social-icons {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .social-icons a {
            color: white;
            margin: 0 8px;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            color: var(--accent);
            transform: translateY(-3px);
        }
        
        .cart-icon {
            position: relative;
            margin-left: 15px;
        }
        
        .cart-count {
            position: absolute;
            top: -10px;
            right: -10px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: bold;
        }
        
        .admin-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            margin-left: 15px;
            animation: adminPulse 2s infinite;
            white-space: nowrap;
        }
        
        @keyframes adminPulse {
            0% { box-shadow: 0 0 5px var(--primary); }
            50% { box-shadow: 0 0 15px var(--primary); }
            100% { box-shadow: 0 0 5px var(--primary); }
        }
        
        .admin-btn:hover {
            background-color: #ff5252;
            transform: scale(1.05);
        }
        
        .main-content {
            flex: 1;
            width: 100%;
            max-width: 1800px;
            margin: 20px auto;
            padding: 0 20px;
        }
        
        .categories {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-bottom: 25px;
        }
        
        .category {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 8px 16px;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-weight: 500;
            position: relative;
            overflow: hidden;
            font-size: clamp(0.8rem, 2vw, 1rem);
            white-space: nowrap;
        }
        
        .category:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .category::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            z-index: -1;
            background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue), var(--neon-purple), var(--neon-pink));
            background-size: 400%;
            border-radius: 30px;
            opacity: 0;
            transition: 0.5s;
            animation: animate 20s linear infinite;
        }
        
        .category:hover::before {
            opacity: 1;
            filter: blur(5px);
        }
        
        @keyframes animate {
            0% { background-position: 0 0; }
            50% { background-position: 300% 0; }
            100% { background-position: 0 0; }
        }
        
        /* ESTILOS MEJORADOS PARA PRODUCTOS - CONFIGURADO PARA 5 COLUMNAS EN PANTALLAS GRANDES */
        .products-grid {
            display: grid;
            gap: 20px;
            margin-top: 30px;
            /* Por defecto 5 columnas para pantallas grandes */
            grid-template-columns: repeat(5, 1fr);
        }
        
        /* Pantallas medianas-grandes (1200px-1599px) - 4 columnas */
        @media (max-width: 1599px) and (min-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        /* Pantallas medianas (900px-1199px) - 3 columnas */
        @media (max-width: 1199px) and (min-width: 900px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        /* Pantallas pequeñas-medianas (600px-899px) - 2 columnas */
        @media (max-width: 899px) and (min-width: 600px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        /* Pantallas pequeñas (menos de 600px) - 1 columna */
        @media (max-width: 599px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .product-card {
            background-color: rgba(43, 45, 66, 0.7);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        }
        
        .product-media-container {
            width: 100%;
            height: 280px;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .product-media {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-media {
            transform: scale(1.05);
        }
        
        .product-info {
            padding: 15px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .product-title {
            font-size: clamp(1rem, 1.2vw, 1.2rem);
            margin: 0 0 10px;
            font-weight: 600;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex-grow: 1;
            color: white;
            text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
        }
        
        .product-price {
            font-size: clamp(1.2rem, 1.5vw, 1.4rem);
            color: var(--accent);
            font-weight: bold;
            margin-bottom: 15px;
            animation: priceGlow 3s infinite alternate;
        }
        
        @keyframes priceGlow {
            0% { text-shadow: 0 0 5px var(--accent); }
            100% { text-shadow: 0 0 15px var(--accent); }
        }
        
        .product-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }
        
        .add-to-cart {
            background-color: var(--accent);
            color: var(--dark);
            border: none;
            padding: 10px 15px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            flex-grow: 1;
            margin-right: 10px;
            white-space: nowrap;
            font-size: clamp(0.8rem, 1vw, 1rem);
            animation: cartBtnPulse 2s infinite;
        }
        
        @keyframes cartBtnPulse {
            0% { box-shadow: 0 0 5px var(--accent); }
            50% { box-shadow: 0 0 15px var(--accent); }
            100% { box-shadow: 0 0 5px var(--accent); }
        }
        
        .add-to-cart:hover {
            background-color: #ffd166;
            transform: scale(1.05);
        }
        
        .wishlist-btn {
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            background: none;
            border: none;
            padding: 5px;
        }
        
        .wishlist-btn:hover {
            color: var(--primary);
            transform: scale(1.2);
        }
        
        .media-controls {
            position: absolute;
            bottom: 10px;
            left: 10px;
            display: flex;
            gap: 10px;
            z-index: 2;
        }
        
        .media-btn {
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .media-btn:hover {
            background-color: rgba(0, 0, 0, 0.8);
            transform: scale(1.1);
        }
        
        /* Pie de página */
        footer {
            background-color: rgba(43, 45, 66, 0.95);
            padding: 30px 20px 20px;
            margin-top: 40px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-section {
            margin-bottom: 20px;
            padding: 0 10px;
        }
        
        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 15px;
            font-size: 1.3rem;
            position: relative;
            display: inline-block;
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent);
        }
        
        .contact-info {
            list-style: none;
        }
        
        .contact-info li {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .contact-info i {
            margin-right: 8px;
            color: var(--accent);
            min-width: 20px;
        }
        
        .contact-link {
            color: var(--accent);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .contact-link:hover {
            text-decoration: underline;
            color: #ffd166;
        }
        
        .branches {
            list-style: none;
        }
        
        .branches li {
            margin-bottom: 8px;
        }
        
        .branches a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .branches a:hover {
            color: var(--accent);
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--light);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            header {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 10px;
            }
            
            .header-right {
                justify-self: center;
                flex-direction: row;
                gap: 10px;
            }
            
            nav {
                flex-direction: column;
                gap: 10px;
            }
            
            .nav-links {
                order: 2;
            }
            
            .social-icons {
                order: 1;
            }
            
            .main-content {
                padding: 0 10px;
            }
            
            .categories {
                gap: 8px;
            }
            
            .category {
                padding: 6px 12px;
                font-size: 0.9rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            .title {
                font-size: 1.5rem;
            }
            
            .subtitle {
                font-size: 1rem;
            }
            
            .nav-links {
                flex-direction: column;
                align-items: center;
            }
            
            .nav-links li {
                margin: 2px 0;
            }
            
            .product-media-container {
                height: 200px;
            }
            
            .product-info {
                padding: 10px;
            }
        }
