        :root {
            --primary: #ffe600;              /* Amarillo icónico Mercado Libre */
            --primary-dark: #ffd100;         /* Amarillo hover/activo */
            --primary-glow: rgba(255, 230, 0, 0.45);
            --primary-text: #2d3277;         /* Azul marino oscuro de contraste */
            --accent: #3483fa;               /* Azul acción Mercado Libre */
            --accent-hover: #2968c8;
            --accent-light: #ebf3fe;
            --meli-green: #00a650;           /* Verde "Llega gratis" Mercado Libre */
            --meli-green-light: #e6f7ee;
            --dark-nav: #181f38;
            --surface: #ffffff;
            --text-main: #333333;
            --text-muted: #666666;
            --bg-body: #ffffff;              /* Fondo blanco puro para integración perfecta de imágenes de productos */
            --border-color: #e5e7eb;
            --radius-md: 10px;
            --radius-lg: 14px;
            --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.08);
            --shadow-md: 0 4px 16px -2px rgba(0, 0, 0, 0.12);
            --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-body);
            color: var(--text-main);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            max-width: 1260px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========================================================
           BARRA SUPERIOR DE OFERTAS (ESTILO INFOTEC / TECH)
           ======================================================== */
        .top-promo-bar {
            background: #181f38;
            color: #f8fafc;
            font-size: 12.5px;
            border-bottom: 1px solid rgba(255, 230, 0, 0.18);
            position: relative;
            z-index: 1001;
        }
        .top-promo-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 0;
            gap: 16px;
        }
        .top-promo-left {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .promo-fire-tag {
            background: linear-gradient(135deg, #ffe600 0%, #ffd100 100%);
            color: #2d3277;
            font-size: 11px;
            font-weight: 900;
            padding: 3px 10px;
            border-radius: 4px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            letter-spacing: 0.5px;
            box-shadow: 0 0 10px rgba(255, 230, 0, 0.4);
            animation: promoPulse 2s infinite;
        }
        @keyframes promoPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.04); }
            100% { transform: scale(1); }
        }
        .top-promo-text {
            color: #e2e8f0;
            font-weight: 500;
        }
        .top-promo-text strong {
            color: #ffe600;
            font-weight: 800;
        }
        .top-promo-right {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            color: #94a3b8;
            flex-shrink: 0;
        }
        .promo-info-item {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: #cbd5e1;
            font-weight: 600;
        }
        .promo-info-item i {
            color: #ffe600;
        }
        .promo-sep {
            color: #475569;
        }
        .promo-whatsapp-link {
            color: #4ade80;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: var(--transition);
        }
        .promo-whatsapp-link:hover {
            color: #86efac;
            transform: translateY(-1px);
        }

        /* ========================================================
           HEADER PRINCIPAL (AMARILLO MERCADO LIBRE)
           ======================================================== */
        .main-header {
            background: #ffe600;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #e6cf00;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.14);
        }
        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 0;
            gap: 26px;
        }

        /* Logo Brand */
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            flex-shrink: 0;
        }
        .brand-icon {
            width: 46px;
            height: 46px;
            background: #2d3277;
            color: #ffe600;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            box-shadow: 0 4px 12px rgba(45, 50, 119, 0.25);
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }
        .brand-logo:hover .brand-icon {
            transform: scale(1.05) rotate(-3deg);
        }
        .brand-icon::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.25), transparent);
            transform: rotate(30deg);
        }
        .brand-info {
            display: flex;
            flex-direction: column;
        }
        .brand-name {
            font-size: 21px;
            font-weight: 900;
            color: #2d3277;
            letter-spacing: -0.6px;
            line-height: 1.1;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .brand-name span {
            color: #00a650;
        }
        .brand-sub {
            font-size: 11px;
            color: #4b5563;
            font-weight: 700;
            letter-spacing: 0.3px;
        }

        /* Buscador Central (Estilo Mercado Libre) */
        .header-search {
            flex: 1;
            max-width: 580px;
        }
        .search-container {
            display: flex;
            align-items: center;
            background: #ffffff;
            border-radius: 6px;
            padding: 2px 3px 2px 16px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16);
            border: 1px solid transparent;
            transition: var(--transition);
        }
        .search-container:focus-within {
            border-color: #3483fa;
            box-shadow: 0 0 0 3px rgba(52, 131, 250, 0.25);
        }
        .search-container i {
            color: #9ca3af;
            font-size: 15px;
            margin-right: 10px;
        }
        .search-input {
            width: 100%;
            border: none;
            outline: none;
            background: transparent;
            font-size: 14px;
            color: #333333;
            font-weight: 500;
        }
        .search-input::placeholder {
            color: #9ca3af;
        }
        .search-btn {
            background: #3483fa;
            color: white;
            border: none;
            padding: 9px 18px;
            border-radius: 4px;
            font-size: 13.5px;
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
            box-shadow: 0 2px 6px rgba(52, 131, 250, 0.25);
        }
        .search-btn:hover {
            background: #2968c8;
            box-shadow: 0 4px 12px rgba(52, 131, 250, 0.35);
            transform: translateY(-1px);
        }

        .mobile-search-trigger-btn {
            display: none;
        }
        .mobile-search-close-btn {
            display: none;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .action-button {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 13px;
            border-radius: 8px;
            text-decoration: none;
            color: #2d3277;
            cursor: pointer;
            transition: var(--transition);
            background: rgba(255, 255, 255, 0.94);
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }
        .action-button:hover {
            background: #ffffff;
            border-color: rgba(0, 0, 0, 0.16);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            transform: translateY(-1px);
        }
        .action-icon-circle {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: #fffbe6;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            color: #2d3277;
            box-shadow: 0 1px 3px rgba(0,0,0,0.06);
            position: relative;
        }
        .cart-badge {
            position: absolute;
            top: -5px;
            right: -6px;
            background: #e11d48;
            color: white;
            font-size: 10px;
            font-weight: 800;
            width: 19px;
            height: 19px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid white;
        }
        .action-label-box {
            display: flex;
            flex-direction: column;
            text-align: left;
            line-height: 1.2;
        }
        .action-label-box .small-title {
            font-size: 10.5px;
            color: #64748b;
            font-weight: 600;
        }
        .action-label-box .main-value {
            font-size: 13px;
            font-weight: 800;
            color: #2d3277;
        }
        .btn-admin-pill {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 9px 16px;
            border-radius: 12px;
            background: #0f172a;
            color: white;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-admin-pill:hover {
            background: #1e293b;
            box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
            color: #38bdf8;
        }

        /* ========================================================
           MENÚ DE NAVEGACIÓN CON ICONOS
           ======================================================== */
        .category-nav-bar {
            background: #0b1329;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            position: relative;
        }
        .nav-inner-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .category-nav-list {
            display: flex;
            align-items: center;
            list-style: none;
            overflow-x: auto;
            scrollbar-width: none;
            gap: 6px;
            padding: 6px 0;
        }
        .category-nav-list::-webkit-scrollbar {
            display: none;
        }
        .category-nav-item {
            flex-shrink: 0;
        }
        .category-link {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 10px 16px;
            border-radius: 8px;
            color: #cbd5e1;
            text-decoration: none;
            font-size: 13.5px;
            font-weight: 600;
            transition: var(--transition);
            position: relative;
        }
        .category-link i {
            font-size: 15px;
            color: #94a3b8;
            transition: var(--transition);
        }
        .category-link:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.08);
        }
        .category-link:hover i {
            color: var(--accent);
            transform: translateY(-1px);
        }
        .category-link.active {
            color: #ffffff;
            background: rgba(37, 99, 235, 0.25);
            border: 1px solid rgba(37, 99, 235, 0.4);
        }
        .category-link.active i {
            color: #60a5fa;
        }
        .category-link.active::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 22px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }
        .hot-tag {
            background: #ef4444;
            color: white;
            font-size: 9px;
            font-weight: 800;
            padding: 2px 5px;
            border-radius: 4px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .nav-right-features {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .nav-feat-link {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            color: #f1f5f9;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            padding: 6px 12px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.06);
            transition: var(--transition);
        }
        .nav-feat-link i {
            color: #38bdf8;
        }
        .nav-feat-link:hover {
            background: rgba(255, 255, 255, 0.12);
            color: #ffffff;
        }

        /* ========================================================
           SECCIÓN EN CONSTRUCCIÓN
           ======================================================== */
        .construction-section {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 70px 20px;
        }
        .construction-card {
            background: white;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-md);
            max-width: 520px;
            width: 100%;
            padding: 45px 35px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .construction-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: repeating-linear-gradient(
                -45deg,
                #f59e0b,
                #f59e0b 15px,
                #0f172a 15px,
                #0f172a 30px
            );
        }
        /* ========================================================
           SECCIÓN DE PROMOCIONES DESTACADAS (GRANDES SIN IMÁGENES)
           ======================================================== */
        .promos-section {
            padding: 40px 0 60px 0;
            flex: 1;
        }
        .promos-header {
            text-align: center;
            margin-bottom: 35px;
        }
        .meli-promos-banner {
            background: linear-gradient(135deg, #fff275 0%, #ffe600 45%, #ffd100 100%);
            border: 1.5px solid #e6cf00;
            border-radius: 18px;
            padding: 30px 24px;
            box-shadow: 0 6px 20px rgba(255, 230, 0, 0.25), 0 2px 6px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }
        .meli-promos-banner::after {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 140px;
            height: 140px;
            background: rgba(255, 255, 255, 0.35);
            border-radius: 50%;
            pointer-events: none;
        }
        .meli-promos-banner .promos-badge {
            background: #ffffff !important;
            color: #2d3277 !important;
            border: 1px solid rgba(45, 50, 119, 0.15) !important;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
        }
        .meli-promos-banner .promos-title {
            color: #2d3277;
            font-size: 30px;
        }
        .meli-promos-banner .promos-subtitle {
            color: #334155;
            font-weight: 500;
        }
        .promos-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: #fef3c7;
            color: #b45309;
            border: 1px solid #fde68a;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 12.5px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }
        .promos-title {
            font-size: 32px;
            font-weight: 900;
            color: #0f172a;
            letter-spacing: -0.5px;
            line-height: 1.2;
            margin-bottom: 8px;
        }
        .promos-subtitle {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 620px;
            margin: 0 auto;
        }

        .promos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 26px;
        }

        .promo-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
            padding: 30px 24px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: var(--transition);
        }
        .promo-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: #ffd100;
        }

        /* Barra Superior Amarillo Mercado Libre */
        .promo-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: #ffe600;
        }
        .promo-card.blue::before { background: #ffe600; }
        .promo-card.amber::before { background: #ffe600; }
        .promo-card.emerald::before { background: #00a650; }
        .promo-card.purple::before { background: #ffe600; }
        .promo-card.indigo::before { background: #ffe600; }
        .promo-card.teal::before { background: #00a650; }

        .promo-top-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 18px;
        }
        .promo-tag {
            font-size: 11.5px;
            font-weight: 800;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.5px;
            background: #fffbe6;
            color: #2d3277;
            border: 1px solid #ffe600;
        }
        .promo-card.blue .promo-tag { background: #fffbe6; color: #2d3277; }
        .promo-card.amber .promo-tag { background: #fffbe6; color: #2d3277; }
        .promo-card.emerald .promo-tag { background: #e6f7ee; color: #00a650; border-color: #00a650; }
        .promo-card.purple .promo-tag { background: #fffbe6; color: #2d3277; }
        .promo-card.indigo .promo-tag { background: #fffbe6; color: #2d3277; }
        .promo-card.teal .promo-tag { background: #e6f7ee; color: #00a650; border-color: #00a650; }

        .promo-discount-badge {
            background: #ef4444;
            color: white;
            font-size: 11.5px;
            font-weight: 900;
            padding: 4px 10px;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        /* Contenedor de Imagen de Producto en Promo Card (GRANDE Y BIEN CENTRADO) */
        .promo-image-box {
            width: 100%;
            height: 280px;
            background: #ffffff;
            border-radius: var(--radius-md);
            overflow: hidden;
            margin-bottom: 20px;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 24px 16px 34px 16px;
        }
        .promo-image-box img {
            max-width: 95%;
            max-height: 92%;
            width: auto;
            height: auto;
            object-fit: contain;
            margin: auto;
            display: block;
            mix-blend-mode: multiply;
            transition: transform 0.35s ease;
        }
        .promo-card:hover .promo-image-box img {
            transform: scale(1.08);
        }

        .promo-icon-large {
            width: 70px;
            height: 70px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 22px;
            background: #fffbe6;
            color: #2d3277;
        }
        .promo-card.blue .promo-icon-large { background: #fffbe6; color: #2d3277; }
        .promo-card.amber .promo-icon-large { background: #fffbe6; color: #2d3277; }
        .promo-card.emerald .promo-icon-large { background: #e6f7ee; color: #00a650; }
        .promo-card.purple .promo-icon-large { background: #fffbe6; color: #2d3277; }
        .promo-card.indigo .promo-icon-large { background: #fffbe6; color: #2d3277; }

        .promo-name {
            font-size: 20px;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        .promo-desc {
            font-size: 13.5px;
            color: var(--text-muted);
            line-height: 1.55;
            margin-bottom: 22px;
        }

        .promo-benefits {
            list-style: none;
            margin-bottom: 24px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .promo-benefits li {
            font-size: 13px;
            color: #4b5563;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }
        .promo-benefits li i {
            color: #00a650;
            font-size: 14px;
        }

        .promo-pricing-box {
            background: #fdfdfd;
            border-radius: var(--radius-md);
            padding: 14px 18px;
            border: 1px solid #e5e7eb;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 18px;
        }
        .price-label-col span {
            display: block;
            font-size: 11px;
            color: var(--text-muted);
            text-transform: uppercase;
            font-weight: 600;
        }
        .price-old {
            text-decoration: line-through;
            color: #9ca3af;
            font-size: 13px;
            font-weight: 600;
        }
        .price-main {
            font-size: 26px;
            font-weight: 900;
            color: #333333;
            line-height: 1;
        }

        /* Botón Estilo Mercado Libre Azul Acción */
        .btn-promo-action {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            width: 100%;
            padding: 13px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 800;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            background: #3483fa;
            color: white;
            box-shadow: 0 2px 8px rgba(52, 131, 250, 0.25);
        }
        .btn-promo-action:hover {
            background: #2968c8;
            box-shadow: 0 4px 14px rgba(52, 131, 250, 0.35);
            transform: translateY(-1px);
        }
        .promo-card.blue .btn-promo-action { background: #3483fa; color: white; }
        .promo-card.blue .btn-promo-action:hover { background: #2968c8; }
        .promo-card.amber .btn-promo-action { background: #3483fa; color: white; }
        .promo-card.amber .btn-promo-action:hover { background: #2968c8; }
        .promo-card.emerald .btn-promo-action { background: #3483fa; color: white; }
        .promo-card.emerald .btn-promo-action:hover { background: #2968c8; }
        .promo-card.purple .btn-promo-action { background: #3483fa; color: white; }
        .promo-card.purple .btn-promo-action:hover { background: #2968c8; }
        .promo-card.indigo .btn-promo-action { background: #3483fa; color: white; }
        .promo-card.indigo .btn-promo-action:hover { background: #2968c8; }
        .promo-card.teal .btn-promo-action { background: #3483fa; color: white; }
        .promo-card.teal .btn-promo-action:hover { background: #2968c8; }

        .promo-card-actions-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-top: 6px;
        }
        .btn-promo-detail {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 100%;
            padding: 10px 16px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 700;
            text-decoration: none;
            color: #3483fa;
            background: rgba(52, 131, 250, 0.08);
            border: 1px solid rgba(52, 131, 250, 0.25);
            transition: var(--transition);
        }
        .btn-promo-detail:hover {
            background: rgba(52, 131, 250, 0.16);
            color: #2968c8;
        }

        /* Footer */
        .footer {
            background: #060a14;
            color: #94a3b8;
            padding: 24px 20px;
            font-size: 13px;
            border-top: 1px solid rgba(255,255,255,0.08);
            margin-top: auto;
        }
        .footer-content {
            max-width: 1260px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }
        .footer-socials {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .footer-social-link {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            color: #cbd5e1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 15px;
            transition: var(--transition);
        }
        .footer-social-link:hover {
            background: var(--primary);
            color: #ffffff;
            transform: translateY(-2px);
        }

        /* Botón Flotante de WhatsApp */
        .whatsapp-float-btn {
            position: fixed;
            bottom: 28px;
            right: 28px;
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            color: white;
            border-radius: 50px;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
            text-decoration: none;
            z-index: 9999;
            font-weight: 700;
            font-size: 14.5px;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: floatPulse 2.5s infinite;
        }
        .whatsapp-float-btn i {
            font-size: 24px;
        }
        .whatsapp-float-btn:hover {
            transform: scale(1.08) translateY(-4px);
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
            color: white;
        }
        @keyframes floatPulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
            70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        /* ========================================================
           HERO BANNER PRO - CARRUSEL AUTOMÁTICO & COUNTDOWN
           ======================================================== */
        .hero-banner-section {
            padding: 24px 0 16px 0;
        }
        .hero-slider-wrap {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 24px -4px rgba(45, 50, 119, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
            background: #ffe600;
            border: 1.5px solid rgba(45, 50, 119, 0.12);
        }
        .hero-slides-container {
            display: flex;
            transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
            width: 100%;
            will-change: transform;
        }
        .hero-slide {
            min-width: 100%;
            box-sizing: border-box;
            position: relative;
            padding: 45px 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: #ffffff;
            background-size: cover;
            background-position: center;
        }
        /* Slide 0: Lenovo Ryzen 3 (Estilo Mercado Libre Amarillo / Warm Gradient con Azul) */
        .hero-slide.slide-gamer-tuf {
            background: radial-gradient(circle at 75% 45%, rgba(255, 230, 0, 0.45) 0%, rgba(255, 248, 204, 0.2) 50%, transparent 80%),
                        radial-gradient(circle at 15% 85%, rgba(52, 131, 250, 0.25) 0%, transparent 45%),
                        linear-gradient(135deg, #fff275 0%, #ffe600 38%, #ffd100 70%, #ffc400 100%);
            color: #2d3277;
        }
        /* Slide 1: Combo / Alternate (Estilo Meli Amarillo Solar con toques Verde Mercado Libre) */
        .hero-slide.slide-gamer-combo {
            background: radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.6) 0%, transparent 60%),
                        radial-gradient(circle at 20% 80%, rgba(0, 166, 80, 0.2) 0%, transparent 50%),
                        linear-gradient(135deg, #fff7a1 0%, #ffe600 45%, #facc15 85%, #eab308 100%);
            color: #2d3277;
        }
        /* Slide 2: Turbo Alternate (Estilo Meli Brillante con azul) */
        .hero-slide.slide-gamer-turbo {
            background: radial-gradient(circle at 75% 45%, rgba(255, 255, 255, 0.5) 0%, transparent 65%),
                        radial-gradient(circle at 25% 75%, rgba(52, 131, 250, 0.3) 0%, transparent 50%),
                        linear-gradient(135deg, #fff59d 0%, #ffe600 40%, #ffca28 85%, #ffa000 100%);
            color: #2d3277;
        }
        /* Slide 3: Lenovo IdeaPad Slim 3 Core i5 (Mercado Libre Dorado / Amarillo Profundo con contraste azul) */
        .hero-slide.slide-gamer-audio {
            background: radial-gradient(circle at 75% 45%, rgba(255, 255, 255, 0.55) 0%, transparent 65%),
                        radial-gradient(circle at 18% 78%, rgba(52, 131, 250, 0.25) 0%, transparent 50%),
                        linear-gradient(135deg, #fff8b3 0%, #ffe600 35%, #ffd100 68%, #f59e0b 100%);
            color: #2d3277;
        }

        /* Badges Gamer Infotec Style */
        .gamer-badge-red {
            background: rgba(239, 68, 68, 0.2) !important;
            border-color: rgba(239, 68, 68, 0.5) !important;
            color: #fca5a5 !important;
        }
        .gamer-badge-purple {
            background: rgba(168, 85, 247, 0.2) !important;
            border-color: rgba(168, 85, 247, 0.5) !important;
            color: #d8b4fe !important;
        }
        .gamer-badge-cyan {
            background: rgba(6, 182, 212, 0.2) !important;
            border-color: rgba(6, 182, 212, 0.5) !important;
            color: #a5f3fc !important;
        }
        .gamer-badge-orange {
            background: rgba(249, 115, 22, 0.2) !important;
            border-color: rgba(249, 115, 22, 0.5) !important;
            color: #fdba74 !important;
        }
        .gamer-badge-yellow {
            background: rgba(45, 50, 119, 0.08) !important;
            border-color: rgba(45, 50, 119, 0.25) !important;
            color: #2d3277 !important;
            font-weight: 900 !important;
        }

        /* Chips Gamer / Specs estilo Mercado Libre */
        .gamer-chip {
            background: rgba(255, 255, 255, 0.85) !important;
            border-color: rgba(45, 50, 119, 0.15) !important;
            color: #1e293b !important;
            box-shadow: 0 2px 6px rgba(0,0,0,0.06) !important;
        }
        .gamer-chip i {
            color: #3483fa !important;
        }
        .gamer-border {
            border: 2px solid #ef4444 !important;
            box-shadow: 0 0 25px rgba(239, 68, 68, 0.4) !important;
        }
        .gamer-border-purple {
            border: 2px solid #a855f7 !important;
            box-shadow: 0 0 25px rgba(168, 85, 247, 0.4) !important;
        }
        .gamer-border-cyan {
            border: 2px solid #06b6d4 !important;
            box-shadow: 0 0 25px rgba(6, 182, 212, 0.4) !important;
        }
        .gamer-border-orange {
            border: 2px solid #f97316 !important;
            box-shadow: 0 0 25px rgba(249, 115, 22, 0.4) !important;
        }
        .gamer-tag-glow {
            background: #ef4444 !important;
            box-shadow: 0 0 15px rgba(239, 68, 68, 0.7);
        }

        /* Botones Gamer de Alta Conversión */
        .btn-gamer-fire {
            background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%) !important;
            color: #ffffff !important;
            box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4) !important;
        }
        .btn-gamer-fire:hover {
            box-shadow: 0 6px 20px rgba(239, 68, 68, 0.6) !important;
            transform: translateY(-2px);
        }
        .btn-gamer-purple {
            background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%) !important;
            color: #ffffff !important;
            box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4) !important;
        }
        .btn-gamer-purple:hover {
            box-shadow: 0 6px 20px rgba(168, 85, 247, 0.6) !important;
            transform: translateY(-2px);
        }
        .btn-gamer-cyan {
            background: linear-gradient(135deg, #06b6d4 0%, #0369a1 100%) !important;
            color: #ffffff !important;
            box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4) !important;
        }
        .btn-gamer-cyan:hover {
            box-shadow: 0 6px 20px rgba(6, 182, 212, 0.6) !important;
            transform: translateY(-2px);
        }
        .btn-gamer-orange {
            background: linear-gradient(135deg, #f97316 0%, #c2410c 100%) !important;
            color: #ffffff !important;
            box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4) !important;
        }
        .btn-gamer-orange:hover {
            box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6) !important;
            transform: translateY(-2px);
        }
        .btn-hero-meli-yellow {
            background: #3483fa !important;
            color: #ffffff !important;
            box-shadow: 0 4px 15px rgba(52, 131, 250, 0.35) !important;
            font-weight: 800 !important;
        }
        .btn-hero-meli-yellow:hover {
            background: #2968c8 !important;
            box-shadow: 0 6px 22px rgba(52, 131, 250, 0.5) !important;
            transform: translateY(-2px);
        }

        /* Características rápidas en chips para el slider */
        .hero-specs-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 7px;
            margin-bottom: 20px;
        }
        .spec-chip {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(45, 50, 119, 0.15);
            color: #1e293b;
            font-size: 11.5px;
            font-weight: 700;
            padding: 5px 11px;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }
        .spec-chip i {
            color: #3483fa;
        }

        /* ========================================================
           SHOWCASE VISUAL GRANDE DE LAPTOPS & SUB-CARRUSEL
           ======================================================== */
        .hero-visual-card {
            flex-shrink: 0;
            z-index: 2;
        }
        .laptop-showcase-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: center;
        }
        .laptop-main-preview {
            position: relative;
            width: 530px;
            height: 360px;
            max-width: 100%;
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ffffff;
            border: 2px solid #ffe600;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        .laptop-main-preview:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 42px rgba(0, 0, 0, 0.3);
        }
        .laptop-main-preview img {
            max-width: 95%;
            max-height: 88%;
            width: auto;
            height: auto;
            object-fit: contain;
            margin: auto;
            display: block;
            padding: 4px;
            mix-blend-mode: multiply;
            transition: opacity 0.25s ease, transform 0.4s ease;
        }
        .laptop-main-preview:hover img {
            transform: scale(1.06);
        }

        /* Sub-carrusel / Galería de miniaturas debajo de la foto */
        .laptop-gallery-thumbs {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.95);
            padding: 6px 14px;
            border-radius: 12px;
            border: 1px solid rgba(45, 50, 119, 0.15);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
        }
        .laptop-mini-thumb {
            width: 60px;
            height: 42px;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid #e2e8f0;
            cursor: pointer;
            background: #ffffff;
            padding: 2px;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0.85;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .laptop-mini-thumb:hover {
            opacity: 1;
            border-color: #3483fa;
            transform: translateY(-2px);
        }
        .laptop-mini-thumb.active {
            opacity: 1;
            border-color: #3483fa;
            box-shadow: 0 0 10px rgba(52, 131, 250, 0.45);
            transform: scale(1.06);
        }
        .laptop-mini-thumb img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            margin: auto;
            display: block;
        }

        /* Imagen real en el hero visual card legacy */
        .hero-visual-image-wrap {
            position: relative;
            width: 260px;
            height: 180px;
            border-radius: 18px;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.25);
            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
            animation: heroFloat 3.5s infinite ease-in-out;
            background: #0f172a;
        }
        .hero-visual-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-slide-content {
            max-width: 580px;
            z-index: 2;
        }
        .hero-pill-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(45, 50, 119, 0.08);
            backdrop-filter: blur(8px);
            border: 1.5px solid rgba(45, 50, 119, 0.25);
            color: #2d3277;
            font-size: 11.5px;
            font-weight: 900;
            padding: 5px 14px;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 14px;
        }
        .hero-pill-badge i { color: #3483fa; }
        .hero-slide-title {
            font-size: 34px;
            font-weight: 900;
            line-height: 1.15;
            letter-spacing: -0.5px;
            margin-bottom: 12px;
            color: #2d3277;
        }
        .hero-slide-title span {
            color: #3483fa;
            display: block;
        }
        .hero-slide.slide-gamer .hero-slide-title span {
            color: #2563eb;
        }
        .hero-slide.slide-taller .hero-slide-title span {
            color: #00a650;
        }
        .hero-slide-desc {
            font-size: 14.5px;
            color: #334155;
            line-height: 1.5;
            margin-bottom: 22px;
            font-weight: 500;
        }

        /* Cuenta Regresiva (Countdown Box) */
        .hero-countdown-wrap {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 24px;
            background: rgba(0, 0, 0, 0.25);
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 10px 16px;
            border-radius: 14px;
            width: fit-content;
        }
        .countdown-label {
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            color: #94a3b8;
            letter-spacing: 0.3px;
        }
        .countdown-timers-grid {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .timer-unit-box {
            text-align: center;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 8px;
            padding: 4px 8px;
            min-width: 38px;
        }
        .timer-val {
            font-size: 15px;
            font-weight: 900;
            color: #ffffff;
            display: block;
            line-height: 1.1;
        }
        .timer-tag {
            font-size: 9px;
            font-weight: 700;
            color: #94a3b8;
            text-transform: uppercase;
        }
        .timer-colon {
            font-weight: 900;
            font-size: 14px;
            color: #94a3b8;
        }

        /* Botones del Slide */
        .hero-slide-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }
        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background: #ffffff;
            color: #0b1120;
            font-weight: 800;
            font-size: 14px;
            padding: 12px 24px;
            border-radius: 12px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
        }
        .btn-hero-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
            background: #f8fafc;
        }
        .btn-hero-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.9);
            color: #2d3277;
            font-weight: 800;
            font-size: 13.5px;
            padding: 12px 20px;
            border-radius: 12px;
            text-decoration: none;
            border: 1.5px solid rgba(45, 50, 119, 0.2);
            transition: all 0.2s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        }
        .btn-hero-secondary:hover {
            background: #ffffff;
            color: #3483fa;
            border-color: #3483fa;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(52, 131, 250, 0.2);
        }

        /* Lado Derecho Visual del Slide */
        .hero-visual-card {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-left: 20px;
        }
        .hero-graphic-circle {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 72px;
            color: #ffffff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            animation: heroFloat 3.5s infinite ease-in-out;
        }
        @keyframes heroFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        .hero-price-floating-tag {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: #ffe600 !important;
            color: #2d3277 !important;
            padding: 7px 16px;
            border-radius: 20px;
            font-weight: 900;
            font-size: 15px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
            letter-spacing: -0.3px;
            z-index: 5;
            border: 1px solid rgba(0, 0, 0, 0.08);
        }

        /* ========================================================
           INSIGNIAS FLOTANTES GLASSMORPHISM (BADGES SUTILES)
           ======================================================== */
        .floating-badges-row {
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
            pointer-events: none;
            z-index: 4;
        }
        .glass-badge {
            display: inline-flex;
            align-items: center;
            gap: 5.5px;
            padding: 5px 11px;
            border-radius: 20px;
            font-size: 11.5px;
            font-weight: 800;
            line-height: 1;
            letter-spacing: 0.2px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
            transition: transform 0.2s ease;
        }
        .glass-badge-stock {
            background: #e6f7ee;
            color: #007a3d;
            border: 1.5px solid #00a650;
            text-shadow: none;
        }
        .glass-badge-stock.low {
            background: #fef3c7;
            color: #b45309;
            border: 1.5px solid #f59e0b;
            text-shadow: none;
        }
        .glass-badge-feature {
            background: #f8fafc;
            color: #1e293b;
            border: 1.5px solid #cbd5e1;
            text-shadow: none;
        }
        .glass-badge-feature i {
            color: #2563eb;
        }
        .glass-badge-feature.warranty i {
            color: #00a650;
        }
        .glass-badge-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background-color: currentColor;
            box-shadow: 0 0 8px currentColor;
            display: inline-block;
        }


        /* Flechas de Navegación del Carrusel (Estilo Mercado Libre) */
        .slider-arrow-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #2d3277;
            font-size: 16px;
            cursor: pointer;
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
        }
        .slider-arrow-btn:hover {
            background: #2d3277;
            color: #ffe600;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(45, 50, 119, 0.35);
        }
        .slider-arrow-prev { left: 16px; }
        .slider-arrow-next { right: 16px; }

        /* Indicadores (Dots) */
        .slider-dots-container {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 5;
            background: rgba(45, 50, 119, 0.12);
            backdrop-filter: blur(8px);
            padding: 5px 12px;
            border-radius: 20px;
            border: 1px solid rgba(45, 50, 119, 0.15);
        }
        .slider-dot {
            width: 8px;
            height: 8px;
            border-radius: 10px;
            background: rgba(45, 50, 119, 0.35);
            cursor: pointer;
            border: none;
            transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }
        .slider-dot:hover {
            background: rgba(45, 50, 119, 0.7);
            transform: scale(1.2);
        }
        .slider-dot.active {
            width: 32px;
            background: #2d3277;
            box-shadow: 0 0 10px rgba(45, 50, 119, 0.4);
        }

        /* Animaciones de Entrada cuando el Slide se Activa */
        .hero-slide .hero-pill-badge,
        .hero-slide .hero-slide-title,
        .hero-slide .hero-slide-desc,
        .hero-slide .hero-specs-chips,
        .hero-slide .hero-slide-actions,
        .hero-slide .hero-visual-card {
            opacity: 0.35;
            transform: translateY(12px);
            transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .hero-slide.active .hero-pill-badge {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.05s;
        }
        .hero-slide.active .hero-slide-title {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.12s;
        }
        .hero-slide.active .hero-slide-desc {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.18s;
        }
        .hero-slide.active .hero-specs-chips {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.24s;
        }
        .hero-slide.active .hero-slide-actions {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.3s;
        }
        .hero-slide.active .hero-visual-card {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            transition-delay: 0.15s;
        }

        /* 4 Tarjetas de Confianza Local (Trust Badges) */
        .trust-features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-top: 18px;
        }
        .trust-feature-card {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 14px;
            padding: 16px 18px;
            display: flex;
            align-items: center;
            gap: 14px;
            box-shadow: var(--shadow-sm);
            transition: all 0.2s ease;
        }
        .trust-feature-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            border-color: #cbd5e1;
        }
        .trust-icon-box {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 19px;
            flex-shrink: 0;
        }
        .trust-icon-box.blue { background: #eff6ff; color: #2563eb; }
        .trust-icon-box.emerald { background: #ecfdf5; color: #059669; }
        .trust-icon-box.amber { background: #fffbeb; color: #d97706; }
        .trust-icon-box.purple { background: #f5e8f7; color: #742284; }

        .trust-text-title {
            font-size: 13.5px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 2px;
        }
        .trust-text-desc {
            font-size: 11.5px;
            color: var(--text-muted);
            line-height: 1.35;
        }

        /* ========================================================
           RESPONSIVE DESIGN BREAKPOINTS COMPLETOS (DESKTOP, TABLET Y MÓVIL)
           ======================================================== */
        @media (max-width: 1100px) {
            .container {
                padding: 0 18px;
            }
            .hero-slide {
                padding: 34px 28px;
                gap: 24px;
            }
            .hero-slide-title {
                font-size: 27px;
            }
            .laptop-main-preview {
                width: 380px;
                height: 250px;
            }
            .promos-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 900px) {
            .hero-slide { 
                padding: 30px 24px;
                flex-direction: column;
                text-align: center;
                gap: 24px;
            }
            .hero-slide-content {
                max-width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .hero-slide-title { 
                font-size: 24px; 
            }
            .hero-specs-chips {
                justify-content: center;
            }
            .hero-slide-actions {
                justify-content: center;
            }
            .hero-visual-card { 
                display: flex;
                justify-content: center;
                width: 100%;
                padding-left: 0;
            }
            .laptop-main-preview {
                width: 100%;
                max-width: 420px;
                height: 260px;
            }
            .trust-features-grid { 
                grid-template-columns: repeat(2, 1fr); 
                gap: 12px;
            }
            .trust-feature-card {
                padding: 14px;
            }
        }

        @media (max-width: 768px) {
            /* Header Móvil Ultra Optimizado - Estilo Infotec / E-commerce */
            .main-header {
                position: sticky;
                top: 0;
                background: #ffffff;
                box-shadow: 0 2px 10px rgba(11, 17, 32, 0.08);
            }
            .header-content { 
                display: flex;
                flex-wrap: wrap; 
                align-items: center;
                justify-content: space-between;
                gap: 10px 0; 
                padding: 10px 0 8px 0;
            }
            .brand-logo {
                gap: 8px;
                flex: 1;
                min-width: 0;
            }
            .brand-icon {
                width: 38px;
                height: 38px;
                font-size: 17px;
                border-radius: 10px;
                flex-shrink: 0;
            }
            .brand-name {
                font-size: 16px;
                white-space: nowrap;
            }
            .brand-sub {
                font-size: 9px;
            }
            
            /* Botones de Acción (Lupa + Usuario + Carrito) anclados a la derecha */
            .header-actions {
                display: flex;
                align-items: center;
                gap: 6px;
                flex-shrink: 0;
                margin-left: auto;
            }
            .mobile-search-trigger-btn {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 36px;
                height: 36px;
                border-radius: 50%;
                background: #f1f5f9;
                border: 1.5px solid #e2e8f0;
                color: #2d3277;
                font-size: 15px;
                cursor: pointer;
                transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
            }
            .mobile-search-trigger-btn:hover, .mobile-search-trigger-btn.active {
                background: #ffe600;
                border-color: #ffd100;
                color: #2d3277;
                transform: scale(1.05);
            }
            .mobile-search-trigger-btn:active {
                transform: scale(0.92);
            }
            .action-button.user-btn {
                padding: 6px 9px;
                gap: 5px;
                background: #f8fafc;
                border: 1px solid #e2e8f0;
                border-radius: 50px;
            }
            .user-label-box {
                display: none;
            }
            .action-button.cart-trigger-btn {
                padding: 6px 10px;
                gap: 6px;
                background: #f1f5f9;
                border: 1px solid #e2e8f0;
                border-radius: 50px;
            }
            .action-icon-circle {
                width: 30px;
                height: 30px;
                font-size: 13.5px;
                background: #ffffff;
            }
            .action-icon-circle.user-icon-circle {
                color: #64748b;
            }
            .cart-badge {
                width: 17px;
                height: 17px;
                font-size: 9px;
                top: -4px;
                right: -5px;
            }
            .action-label-box .small-title {
                display: none;
            }
            .action-label-box .main-value {
                font-size: 12px;
                font-weight: 800;
                color: #0f172a;
            }

            /* Buscador móvil desplegable con animación suave */
            .header-search { 
                width: 100%; 
                max-width: 100%;
                order: 3;
                margin-top: 0;
                max-height: 0;
                opacity: 0;
                overflow: hidden;
                pointer-events: none;
                transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, margin 0.25s ease;
            }
            .header-search.active-mobile {
                max-height: 60px;
                opacity: 1;
                pointer-events: auto;
                margin-top: 8px;
                margin-bottom: 2px;
            }
            .search-container {
                padding: 4px 6px 4px 14px;
                background: #ffffff;
                border: 2px solid #ffe600;
                box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
                border-radius: 12px;
                display: flex;
                align-items: center;
                gap: 8px;
            }
            .search-input {
                font-size: 13.5px;
                font-weight: 600;
                flex: 1;
            }
            .search-btn {
                padding: 7px 14px;
                font-size: 12px;
                border-radius: 8px;
                white-space: nowrap;
            }
            .mobile-search-close-btn {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 32px;
                height: 32px;
                border: none;
                background: #f1f5f9;
                color: #64748b;
                border-radius: 8px;
                font-size: 14px;
                cursor: pointer;
                flex-shrink: 0;
                transition: all 0.2s;
            }
            .mobile-search-close-btn:active {
                background: #e2e8f0;
                transform: scale(0.92);
            }

            /* Barra de categorías horizontal táctil suave (Smooth touch scroll) */
            .category-nav-bar {
                background: #0b1329;
                border-top: 1px solid rgba(255, 255, 255, 0.05);
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }
            .nav-inner-container {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                padding: 0 4px;
            }
            .nav-inner-container::-webkit-scrollbar {
                display: none;
            }
            .category-nav-list {
                padding: 8px 0;
                flex-wrap: nowrap;
                white-space: nowrap;
                gap: 6px;
            }
            .category-link {
                padding: 7px 12px;
                font-size: 12px;
                gap: 6px;
                border-radius: 20px;
                background: rgba(255, 255, 255, 0.05);
            }
            .category-link.active {
                background: #2563eb;
                border-color: #2563eb;
            }
            .category-link.active::after {
                display: none;
            }
            .nav-right-features { 
                display: none; 
            }

            /* Barra Superior de Ofertas en Móvil: Formato ticker / tarjeta limpia y compacta */
            .top-promo-bar {
                padding: 4px 0;
            }
            .top-promo-content {
                flex-direction: column;
                gap: 5px;
                text-align: center;
                padding: 4px 6px;
            }
            .top-promo-left {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                justify-content: center;
                gap: 6px;
            }
            .promo-fire-tag {
                font-size: 10px;
                padding: 2px 8px;
                letter-spacing: 0.3px;
                border-radius: 4px;
            }
            .top-promo-text {
                font-size: 11.5px;
                line-height: 1.35;
                display: inline-block;
            }
            .top-promo-right {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                font-size: 11px;
                padding: 4px 8px;
                background: rgba(255, 255, 255, 0.06);
                border-radius: 20px;
                width: fit-content;
                margin: 0 auto;
            }
            .promo-info-item {
                display: inline-flex;
                align-items: center;
                gap: 4px;
                font-size: 10.5px;
            }
            .promo-whatsapp-link {
                background: #25d366;
                color: #ffffff !important;
                padding: 2px 8px;
                border-radius: 12px;
                font-weight: 700;
                text-decoration: none;
                font-size: 10.5px;
                display: inline-flex;
                align-items: center;
                gap: 4px;
            }
            .promo-sep {
                display: inline-block;
                color: rgba(255, 255, 255, 0.25);
                font-size: 10px;
            }

            /* Hero Slider en Celular */
            .hero-banner-section {
                padding: 12px 0 10px 0;
            }
            .hero-slider-wrap {
                border-radius: 16px;
            }
            .hero-slide {
                padding: 24px 16px 36px 16px;
                flex-direction: column;
                gap: 18px;
                text-align: center;
            }
            .hero-slide-content {
                max-width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .hero-visual-card {
                display: flex;
                justify-content: center;
                width: 100%;
                padding-left: 0;
            }
            .laptop-showcase-container {
                width: 100%;
                max-width: 330px;
            }
            .laptop-main-preview {
                width: 100%;
                max-width: 320px;
                height: 195px;
                border-radius: 14px;
            }
            .hero-price-floating-tag {
                font-size: 13px;
                padding: 4px 10px;
                bottom: 6px;
                right: 6px;
            }
            .laptop-gallery-thumbs {
                gap: 6px;
                padding: 5px 8px;
                border-radius: 10px;
            }
            .laptop-mini-thumb {
                width: 54px;
                height: 38px;
                border-radius: 6px;
            }
            .hero-pill-badge {
                font-size: 9.5px;
                padding: 4px 10px;
                margin-bottom: 8px;
            }
            .hero-slide-title {
                font-size: 20px;
                line-height: 1.25;
                margin-bottom: 8px;
            }
            .hero-slide-desc {
                font-size: 12.5px;
                line-height: 1.45;
                margin-bottom: 14px;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
            .hero-specs-chips {
                justify-content: center;
                gap: 5px;
                margin-bottom: 16px;
            }
            .spec-chip {
                font-size: 10.5px;
                padding: 3px 8px;
                border-radius: 6px;
            }

            /* Botones de Acción del Hero Slider */
            .hero-slide-actions {
                flex-direction: column;
                align-items: stretch;
                width: 100%;
                max-width: 320px;
                gap: 8px;
            }
            .btn-hero-primary, .btn-hero-secondary {
                width: 100%;
                justify-content: center;
                padding: 10px 14px;
                font-size: 13px;
                border-radius: 10px;
            }

            /* Flechas del Slider táctiles */
            .slider-arrow-btn {
                width: 32px;
                height: 32px;
                font-size: 12px;
                background: rgba(11, 17, 32, 0.7);
            }
            .slider-arrow-prev { left: 6px; }
            .slider-arrow-next { right: 6px; }
            .slider-dots-container {
                bottom: 8px;
                gap: 6px;
            }
            .slider-dot {
                width: 8px;
                height: 8px;
            }
            .slider-dot.active {
                width: 20px;
            }

            /* Tarjetas de Confianza Local (Trust Badges) */
            .trust-features-grid { 
                grid-template-columns: repeat(2, 1fr); 
                gap: 10px;
                margin-top: 14px;
            }
            .trust-feature-card {
                padding: 12px 14px;
                border-radius: 12px;
                transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
            }
            .trust-feature-card:hover {
                transform: translateY(-2px);
            }
            .trust-icon-box {
                width: 38px;
                height: 38px;
                font-size: 16px;
                border-radius: 10px;
            }
            .trust-text-title {
                font-size: 12.5px;
            }
            .trust-text-desc {
                font-size: 11px;
            }

            /* Sección de Promociones y Catálogo */
            .promos-section {
                padding: 24px 0 40px 0;
            }
            .promos-header {
                margin-bottom: 20px;
            }
            .promos-badge {
                font-size: 11px;
                padding: 4px 12px;
            }
            .promos-title {
                font-size: 22px;
            }
            .promos-subtitle {
                font-size: 12.5px;
                padding: 0 4px;
            }
            .promos-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
                gap: 16px;
            }
            .promo-card {
                padding: 20px 16px;
                border-radius: 14px;
                transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease, border-color 0.28s ease;
            }
            .promo-card:hover {
                transform: translateY(-4px);
            }
            .promo-image-box {
                height: 250px !important;
                border-radius: 12px;
                padding: 20px 12px 30px 12px !important;
            }
            .promo-name {
                font-size: 16.5px;
                line-height: 1.3;
            }
            .promo-desc {
                font-size: 12.5px;
                margin-bottom: 14px;
            }
            .promo-benefits li {
                font-size: 12px;
                margin-bottom: 6px;
            }
            .promo-pricing-box {
                padding: 10px 12px;
                border-radius: 10px;
            }
            .price-label-col {
                font-size: 11px;
            }
            .price-main {
                font-size: 20px;
            }
            .promo-card-actions-group {
                gap: 8px;
            }
            .btn-promo-action {
                padding: 12px 14px;
                font-size: 13.5px;
                border-radius: 10px;
                min-height: 44px;
                transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
            }
            .btn-promo-action:active {
                transform: scale(0.97);
            }
            .btn-promo-detail {
                padding: 9px 12px;
                font-size: 12px;
            }

            /* Cintillo Flash Sale en pantallas móviles: Diseño elegante, limpio y centrado */
            .flash-sale-strip {
                padding: 6px 0;
            }
            .flash-sale-inner {
                flex-direction: column;
                text-align: center;
                gap: 6px;
                padding: 2px 0;
            }
            .flash-sale-main-info {
                flex-direction: column;
                align-items: center;
                gap: 4px;
            }
            .flash-badge-pill {
                font-size: 10px;
                padding: 2px 8px;
            }
            .flash-sale-text {
                font-size: 11.5px;
                line-height: 1.35;
                color: #f1f5f9;
            }
            .flash-timer-wrapper {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-wrap: wrap;
                gap: 8px;
            }
            .flash-timer-label {
                font-size: 11px;
            }
            .flash-timer-boxes {
                gap: 3px;
            }
            .flash-time-unit {
                min-width: 26px;
                padding: 2px 4px;
                font-size: 11.5px;
                border-radius: 4px;
            }
            .flash-sale-cta-btn {
                padding: 4px 10px;
                font-size: 11px;
                border-radius: 6px;
                font-weight: 700;
            }

            /* Barra de filtros / búsqueda responsive */
            .filter-results-bar {
                padding: 12px 14px !important;
                flex-direction: column;
                align-items: flex-start !important;
                gap: 10px !important;
            }

            /* Footer y WhatsApp Flotante */
            .footer {
                padding: 20px 14px;
                text-align: center;
                font-size: 12px;
            }
            .footer-content {
                flex-direction: column;
                gap: 10px;
                justify-content: center;
            }
            .whatsapp-float-btn {
                bottom: 20px;
                right: 18px;
                padding: 0;
                border-radius: 50%;
                width: 52px;
                height: 52px;
                justify-content: center;
                box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5);
                transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            }
            .whatsapp-float-btn:hover {
                transform: scale(1.08);
            }
            .whatsapp-float-btn:active {
                transform: scale(0.92);
            }
            .whatsapp-float-btn span {
                display: none;
            }
            .whatsapp-float-btn i {
                font-size: 26px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 12px;
            }
            .brand-name {
                font-size: 15px;
            }
            .brand-icon {
                width: 34px;
                height: 34px;
                font-size: 15px;
            }
            .hero-slide {
                padding: 20px 12px 30px 12px;
            }
            .hero-slide-title {
                font-size: 18px;
            }
            .laptop-main-preview {
                width: 100%;
                max-width: 100%;
                height: 210px;
            }
            .laptop-mini-thumb {
                width: 48px;
                height: 34px;
            }
            .hero-specs-chips {
                gap: 4px;
            }
            .spec-chip {
                font-size: 10px;
                padding: 2.5px 7px;
            }
            .trust-features-grid {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            .promos-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .promo-card {
                padding: 16px 14px;
            }
            .promo-image-box {
                height: 230px !important;
                padding: 16px 8px 24px 8px !important;
            }
            .floating-badges-row {
                top: 6px;
                left: 6px;
                right: 6px;
            }
            .glass-badge {
                font-size: 10px;
                padding: 3.5px 8px;
            }
            .floating-store-trust-badges {
                bottom: 6px;
                left: 4px;
                right: 4px;
                gap: 4px;
            }
            .trust-chip {
                font-size: 9.5px;
                padding: 2.5px 6px;
            }
            .promo-name {
                font-size: 15.5px;
            }
            .promo-desc {
                font-size: 12px;
                -webkit-line-clamp: 2;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                overflow: hidden;
                margin-bottom: 12px;
            }
            .price-main {
                font-size: 19px;
            }
            .btn-promo-action {
                font-size: 13px;
                padding: 11px 12px;
            }
            .action-label-box .main-value {
                font-size: 11px;
            }
            .promos-title {
                font-size: 19px;
            }
            .promos-subtitle {
                font-size: 12px;
            }
            .category-bubbles-list {
                gap: 14px;
            }
            .category-bubble-circle {
                width: 58px;
                height: 58px;
                font-size: 20px;
            }
            .category-bubble-label {
                font-size: 11px;
            }
        }

        @media (max-width: 360px) {
            .container {
                padding: 0 8px;
            }
            .brand-name {
                font-size: 13.5px;
            }
            .header-actions {
                gap: 5px;
            }
            .action-button.cart-trigger-btn {
                padding: 5px 8px;
            }
            .action-button.user-btn {
                padding: 5px 8px;
            }
            .laptop-main-preview {
                height: 180px;
            }
            .promo-image-box {
                height: 200px !important;
            }
            .promo-name {
                font-size: 14.5px;
            }
            .price-main {
                font-size: 17.5px;
            }
            .trust-chip-new {
                display: none; /* Ocultar en pantallas ultra angostas para no saturar la foto */
            }
        }

        /* ========================================================
           1. BURBUJAS DE CATEGORÍAS (ESTILO MERCADO LIBRE)
           ======================================================== */
        .category-bubbles-section {
            background: #ffffff;
            border-bottom: 1px solid #e5e7eb;
            padding: 14px 0 16px 0;
            box-shadow: 0 1px 3px rgba(0,0,0,0.04);
        }
        .category-bubbles-list {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 20px;
            overflow-x: auto;
            padding: 4px 6px;
            scrollbar-width: thin;
            scrollbar-color: #cbd5e1 transparent;
            -webkit-overflow-scrolling: touch;
        }
        .category-bubbles-list::-webkit-scrollbar {
            height: 4px;
        }
        .category-bubbles-list::-webkit-scrollbar-thumb {
            background: #e2e8f0;
            border-radius: 4px;
        }
        .category-bubble-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            flex: 0 0 auto;
            cursor: pointer;
            transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .category-bubble-card:hover {
            transform: translateY(-3px);
        }
        .category-bubble-circle {
            width: 66px;
            height: 66px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            position: relative;
            background: #f8fafc;
            color: #2d3277;
            border: 2px solid #e5e7eb;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            transition: all 0.25s ease;
        }
        .category-bubble-card:hover .category-bubble-circle {
            border-color: #ffd100;
            box-shadow: 0 6px 16px rgba(255, 230, 0, 0.4);
            color: #2d3277;
            background: #fffbe6;
        }
        .category-bubble-card.active .category-bubble-circle {
            border-color: #e6cf00;
            background: #ffe600;
            color: #2d3277;
            box-shadow: 0 4px 14px rgba(255, 230, 0, 0.45);
        }
        .category-bubble-label {
            font-size: 12px;
            font-weight: 600;
            color: #333333;
            white-space: nowrap;
            transition: color 0.2s ease;
        }
        .category-bubble-card:hover .category-bubble-label,
        .category-bubble-card.active .category-bubble-label {
            color: #2d3277;
            font-weight: 700;
        }
        .bubble-badge-hot {
            position: absolute;
            top: -3px;
            right: -3px;
            background: #ef4444;
            color: #ffffff;
            font-size: 9px;
            font-weight: 800;
            padding: 2px 6px;
            border-radius: 10px;
            letter-spacing: 0.3px;
            box-shadow: 0 2px 6px rgba(239, 68, 68, 0.4);
            border: 2px solid #ffffff;
        }

        /* ========================================================
           2. CINTILLO CON CONTADOR FLASH MINIMALISTA (OFERTA DEL DÍA)
           ======================================================== */
        .flash-sale-strip {
            background: #181f38;
            border-bottom: 2px solid #ffe600;
            color: #ffffff;
            padding: 8px 0;
            position: relative;
        }
        .flash-sale-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }
        .flash-sale-main-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .flash-badge-pill {
            background: #ffe600;
            color: #2d3277;
            font-size: 11px;
            font-weight: 900;
            padding: 4px 10px;
            border-radius: 20px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            letter-spacing: 0.4px;
            text-transform: uppercase;
        }
        .flash-sale-text {
            font-size: 13px;
            color: #e2e8f0;
        }
        .flash-sale-text strong {
            color: #ffe600;
            font-weight: 700;
        }
        .flash-timer-wrapper {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .flash-timer-label {
            font-size: 12px;
            color: #cbd5e1;
            font-weight: 600;
        }
        .flash-timer-boxes {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .flash-time-unit {
            background: #090e17;
            border: 1px solid rgba(255, 230, 0, 0.35);
            border-radius: 6px;
            padding: 3px 7px;
            min-width: 32px;
            text-align: center;
            font-family: 'Inter', monospace;
            font-size: 13px;
            font-weight: 800;
            color: #ffe600;
        }
        .flash-time-sep {
            color: #94a3b8;
            font-weight: 700;
            font-size: 13px;
        }
        .flash-sale-cta-btn {
            background: #3483fa;
            color: #ffffff;
            font-size: 12px;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 6px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s ease;
            box-shadow: 0 2px 8px rgba(52, 131, 250, 0.35);
        }
        .flash-sale-cta-btn:hover {
            background: #2968c8;
            transform: translateY(-1px);
        }

        /* ========================================================
           3. INSIGNIAS DE CONFIANZA Y FACILIDAD EN FOTOS DE PRODUCTO
           ======================================================== */
        .floating-store-trust-badges {
            position: absolute;
            bottom: 8px;
            left: 8px;
            right: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            flex-wrap: wrap;
            z-index: 10;
            pointer-events: none;
        }
        .trust-chip {
            font-size: 10px;
            font-weight: 700;
            padding: 3px 8px;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
            letter-spacing: 0.2px;
        }
        .trust-chip-yape {
            background: rgba(116, 34, 132, 0.95);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .trust-chip-free-delivery {
            background: rgba(0, 166, 80, 0.95);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .trust-chip-new {
            background: rgba(45, 50, 119, 0.95);
            color: #ffe600;
            border: 1px solid rgba(255, 230, 0, 0.35);
        }

        /* WhatsApp de Consulta Directa en Tarjetas */
        /* Enlaces de producto y tarjetas clickeables */
        .clickable-product-card {
            cursor: pointer;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .clickable-product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 28px -6px rgba(15, 23, 42, 0.12);
        }
        .product-title-link {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease;
        }
        .clickable-product-card:hover .product-title-link {
            color: #2563eb;
        }

        /* ========================================================
           MEJORAS DE ALTO IMPACTO VISUAL: ANTIVIRUS ESET NOD32
           ======================================================== */

        /* 1. BURBUJA DE CATEGORÍA: GLOW PULSE & BORDE NEÓN */
        .bubble-eset-special {
            position: relative;
        }
        .bubble-eset-special .category-bubble-circle {
            background: linear-gradient(135deg, #042f2e 0%, #0f766e 50%, #06b6d4 100%) !important;
            color: #ffffff !important;
            border: 2px solid #22d3ee !important;
            box-shadow: 0 0 16px rgba(6, 182, 212, 0.65), 0 4px 12px rgba(13, 148, 136, 0.35);
            animation: esetGlowPulse 2.2s infinite alternate ease-in-out;
        }
        .bubble-eset-special:hover .category-bubble-circle {
            transform: scale(1.08) rotate(3deg);
            box-shadow: 0 0 24px rgba(6, 182, 212, 0.9), 0 0 40px rgba(13, 148, 136, 0.6) !important;
        }
        .bubble-badge-animated {
            position: absolute;
            top: -6px;
            right: -8px;
            background: linear-gradient(135deg, #f43f5e 0%, #fb7185 100%);
            color: #ffffff;
            font-size: 9.5px;
            font-weight: 900;
            padding: 3px 7px;
            border-radius: 12px;
            letter-spacing: 0.4px;
            box-shadow: 0 2px 8px rgba(244, 63, 94, 0.7);
            border: 2px solid #ffffff;
            animation: esetBadgeBounce 1.8s infinite ease-in-out;
            white-space: nowrap;
            z-index: 2;
        }

        @keyframes esetGlowPulse {
            0% {
                box-shadow: 0 0 8px rgba(6, 182, 212, 0.45), 0 0 0 0 rgba(6, 182, 212, 0.3);
                border-color: #06b6d4;
            }
            50% {
                box-shadow: 0 0 20px rgba(6, 182, 212, 0.8), 0 0 0 5px rgba(6, 182, 212, 0.15);
                border-color: #22d3ee;
            }
            100% {
                box-shadow: 0 0 12px rgba(13, 148, 136, 0.6), 0 0 0 2px rgba(13, 148, 136, 0.2);
                border-color: #38bdf8;
            }
        }

        @keyframes esetBadgeBounce {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-4px) scale(1.08);
            }
        }

        /* 2. TARJETA PROMO-CARD: EFECTO NEÓN GAMER / CYBER SECURITY */
        .promo-card.eset-neon-card {
            border: 2px solid #0d9488 !important;
            box-shadow: 0 10px 30px -5px rgba(13, 148, 136, 0.25), 0 0 20px rgba(6, 182, 212, 0.18);
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .promo-card.eset-neon-card:hover {
            transform: translateY(-8px);
            border-color: #06b6d4 !important;
            box-shadow: 0 20px 40px -10px rgba(13, 148, 136, 0.35), 0 0 30px rgba(6, 182, 212, 0.35) !important;
        }
        .promo-card.eset-neon-card::before {
            height: 6px;
            background: linear-gradient(90deg, #0d9488 0%, #06b6d4 50%, #3b82f6 100%) !important;
        }

        /* Cinta Diagonal de Esquina */
        .corner-ribbon-wrapper {
            width: 140px;
            height: 140px;
            overflow: hidden;
            position: absolute;
            top: 0;
            right: 0;
            z-index: 10;
            pointer-events: none;
        }
        .corner-ribbon {
            font-size: 10px;
            font-weight: 900;
            color: #ffffff;
            text-transform: uppercase;
            text-align: center;
            line-height: 26px;
            transform: rotate(45deg);
            width: 190px;
            display: block;
            background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
            box-shadow: 0 4px 10px rgba(239, 68, 68, 0.45);
            position: absolute;
            top: 28px;
            right: -42px;
            letter-spacing: 0.6px;
        }

        /* Efecto Cyber Scanline / Destello de brillo sobre la imagen */
        .eset-image-scan-box {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-md);
            background: #020617;
        }
        .eset-image-scan-box::after {
            content: '';
            position: absolute;
            top: -100%;
            left: -100%;
            width: 300%;
            height: 300%;
            background: linear-gradient(
                135deg,
                rgba(255, 255, 255, 0) 40%,
                rgba(6, 182, 212, 0.35) 48%,
                rgba(255, 255, 255, 0.7) 50%,
                rgba(6, 182, 212, 0.35) 52%,
                rgba(255, 255, 255, 0) 60%
            );
            transform: rotate(35deg);
            animation: cyberScanShine 4.5s infinite ease-in-out;
            pointer-events: none;
        }

        @keyframes cyberScanShine {
            0% {
                transform: translateY(-80%) rotate(35deg);
                opacity: 0;
            }
            15% {
                opacity: 1;
            }
            35% {
                transform: translateY(80%) rotate(35deg);
                opacity: 1;
            }
            40%, 100% {
                transform: translateY(80%) rotate(35deg);
                opacity: 0;
            }
        }

        /* Pills de Beneficios Visuales Destacados */
        .eset-pills-features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 8px;
            margin: 16px 0;
        }
        .eset-pill-item {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #ffffff;
            border: 1px solid #ccfbf1;
            padding: 8px 12px;
            border-radius: 10px;
            box-shadow: 0 2px 6px rgba(13, 148, 136, 0.06);
            transition: all 0.2s ease;
        }
        .eset-pill-item:hover {
            border-color: #0d9488;
            background: #f0fdfa;
            transform: translateX(3px);
        }
        .eset-pill-icon {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0d9488 0%, #06b6d4 100%);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            flex-shrink: 0;
            box-shadow: 0 2px 6px rgba(13, 148, 136, 0.3);
        }
        .eset-pill-text {
            font-size: 12.5px;
            font-weight: 700;
            color: #0f172a;
        }
        .eset-pill-sub {
            font-size: 11px;
            font-weight: 500;
            color: #64748b;
        }

        /* Botón de Compra con Degradado Pulsante */
        .btn-eset-buy-pulse {
            background: linear-gradient(135deg, #0d9488 0%, #059669 50%, #0284c7 100%) !important;
            color: #ffffff !important;
            font-weight: 800 !important;
            letter-spacing: 0.3px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(13, 148, 136, 0.45) !important;
            animation: esetBtnPulse 2.4s infinite ease-in-out;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .btn-eset-buy-pulse:hover {
            transform: scale(1.03) translateY(-1px);
            box-shadow: 0 10px 25px rgba(6, 182, 212, 0.6) !important;
            background: linear-gradient(135deg, #0f766e 0%, #0d9488 50%, #0284c7 100%) !important;
        }
        .btn-eset-buy-pulse i.pulse-icon {
            animation: iconJiggle 1.5s infinite ease-in-out;
        }

        @keyframes esetBtnPulse {
            0%, 100% {
                box-shadow: 0 4px 14px rgba(13, 148, 136, 0.4);
            }
            50% {
                box-shadow: 0 6px 24px rgba(6, 182, 212, 0.7), 0 0 0 4px rgba(6, 182, 212, 0.2);
            }
        }

        @keyframes iconJiggle {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.25) rotate(-5deg); }
        }

        /* ========================================================
           MODAL DE VISTA RÁPIDA (QUICK VIEW) CON ZOOM & GALERÍA
           ======================================================== */
        .btn-quick-view-hover {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.85);
            opacity: 0;
            pointer-events: none;
            background: #2d3277;
            color: #ffe600;
            border: 2px solid #ffe600;
            padding: 10px 18px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            box-shadow: 0 8px 24px rgba(45, 50, 119, 0.45);
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 12;
        }
        .promo-image-box:hover .btn-quick-view-hover {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
            pointer-events: auto;
        }
        .btn-quick-view-hover:hover {
            background: #ffe600;
            color: #2d3277;
            border-color: #2d3277;
            box-shadow: 0 10px 28px rgba(255, 230, 0, 0.6);
            transform: translate(-50%, -50%) scale(1.05);
        }

        .btn-promo-quickview {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 100%;
            padding: 9px 14px;
            border-radius: 8px;
            font-size: 12.5px;
            font-weight: 800;
            border: 1.5px solid #2d3277;
            background: #ffffff;
            color: #2d3277;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .btn-promo-quickview:hover {
            background: #2d3277;
            color: #ffe600;
            border-color: #2d3277;
        }

        /* Overlay del Modal */
        .quickview-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(11, 19, 41, 0.78);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 999999;
            opacity: 0;
            visibility: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .quickview-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .quickview-modal-card {
            background: #ffffff;
            width: 100%;
            max-width: 920px;
            max-height: 90vh;
            border-radius: 20px;
            border: 2px solid #ffe600;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            transform: scale(0.94) translateY(15px);
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .quickview-modal-overlay.active .quickview-modal-card {
            transform: scale(1) translateY(0);
        }

        .quickview-close-btn {
            position: absolute;
            top: 14px;
            right: 14px;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: #f1f5f9;
            color: #333333;
            border: 1px solid #e2e8f0;
            cursor: pointer;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 30;
            transition: all 0.2s;
        }
        .quickview-close-btn:hover {
            background: #ef4444;
            color: #ffffff;
            border-color: #ef4444;
            transform: rotate(90deg);
        }

        .quickview-modal-body {
            overflow-y: auto;
            padding: 30px;
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 32px;
            align-items: start;
        }

        /* Galería dentro del modal con efecto Lupa / Zoom */
        .quickview-gallery-col {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }
        .quickview-main-image-wrap {
            position: relative;
            width: 100%;
            height: 360px;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 20px;
            cursor: crosshair;
        }
        .quickview-main-image-wrap img {
            max-width: 95%;
            max-height: 92%;
            object-fit: contain;
            display: block;
            margin: auto;
            filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.12));
            transition: transform 0.15s ease-out;
            transform-origin: center center;
            pointer-events: none;
        }
        .quickview-zoom-hint {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background: rgba(11, 19, 41, 0.7);
            color: #ffe600;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 20px;
            pointer-events: none;
            display: flex;
            align-items: center;
            gap: 5px;
            backdrop-filter: blur(4px);
        }

        .quickview-thumbs-strip {
            display: flex;
            align-items: center;
            gap: 10px;
            overflow-x: auto;
            padding: 4px 2px;
        }
        .quickview-thumb-btn {
            width: 66px;
            height: 50px;
            border-radius: 10px;
            border: 2px solid #cbd5e1;
            background: #ffffff;
            cursor: pointer;
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.2s;
        }
        .quickview-thumb-btn img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        .quickview-thumb-btn:hover {
            border-color: #ffe600;
            transform: translateY(-2px);
        }
        .quickview-thumb-btn.active {
            border-color: #3483fa;
            box-shadow: 0 0 10px rgba(52, 131, 250, 0.4);
            transform: scale(1.05);
        }

        /* Columna de Información del Modal */
        .quickview-info-col {
            display: flex;
            flex-direction: column;
        }
        .quickview-tag-row {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
        }
        .quickview-brand-tag {
            background: #ffe600;
            color: #2d3277;
            font-size: 11px;
            font-weight: 900;
            padding: 4px 10px;
            border-radius: 20px;
            text-transform: uppercase;
        }
        .quickview-stock-tag {
            background: #f0fdf4;
            color: #00a650;
            border: 1px solid #bbf7d0;
            font-size: 11px;
            font-weight: 800;
            padding: 4px 10px;
            border-radius: 20px;
        }
        .quickview-title {
            font-size: 21px;
            font-weight: 900;
            color: #0f172a;
            line-height: 1.25;
            margin-bottom: 12px;
        }
        .quickview-pricing-box {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-left: 4px solid #00a650;
            padding: 14px 16px;
            border-radius: 12px;
            margin-bottom: 18px;
            display: flex;
            justify-content: space-between;
            align-items: baseline;
        }
        .quickview-price-main {
            font-size: 28px;
            font-weight: 900;
            color: #0f172a;
        }
        .quickview-price-badge {
            color: #00a650;
            font-weight: 800;
            font-size: 12.5px;
        }

        /* Tabla de Especificaciones compacta */
        .quickview-specs-box {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            font-size: 12.5px;
        }
        .quickview-specs-box table {
            width: 100%;
            border-collapse: collapse;
        }
        .quickview-specs-box td {
            padding: 8px 12px;
            border-bottom: 1px solid #f1f5f9;
        }
        .quickview-specs-box tr:last-child td {
            border-bottom: none;
        }
        .quickview-specs-box td:first-child {
            font-weight: 700;
            color: #2d3277;
            background: #f8fafc;
            width: 38%;
        }
        .quickview-specs-box td:last-child {
            color: #475569;
        }

        /* Acciones de compra en modal */
        .quickview-actions {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .btn-quickview-add {
            background: #3483fa;
            color: #ffffff;
            border: none;
            padding: 13px 20px;
            border-radius: 10px;
            font-size: 14.5px;
            font-weight: 800;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            box-shadow: 0 4px 14px rgba(52, 131, 250, 0.35);
            transition: all 0.2s;
        }
        .btn-quickview-add:hover {
            background: #2968c8;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(52, 131, 250, 0.45);
        }
        .quickview-btn-row {
            display: flex;
            gap: 10px;
        }
        .btn-quickview-detail {
            flex: 1;
            background: #ffe600;
            color: #2d3277;
            border: 1px solid #e6cf00;
            padding: 11px 16px;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 800;
            text-decoration: none;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            transition: all 0.2s;
        }
        .btn-quickview-detail:hover {
            background: #ffd100;
        }
        .btn-quickview-whatsapp {
            flex: 1;
            background: #f0fdf4;
            color: #00a650;
            border: 1.5px solid #00a650;
            padding: 11px 16px;
            border-radius: 10px;
            font-size: 13px;
            font-weight: 800;
            text-decoration: none;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            transition: all 0.2s;
        }
        .btn-quickview-whatsapp:hover {
            background: #00a650;
            color: #ffffff;
        }

        @media (max-width: 820px) {
            .quickview-modal-body {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 22px 18px;
            }
            .quickview-main-image-wrap {
                height: 280px;
            }
            .btn-quick-view-hover {
                display: none; /* En pantallas táctiles se usa el botón directo en la tarjeta */
            }
        }


