/* ==========================================
   RESET GENERAL Y TIPOGRAFÍA
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0d0d0d;    
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* ==========================================
   BARRA SUPERIOR (DESACTIVADA COMPLETAMENTE)
   ========================================== */
.top-bar {
    display: none !important;
}
.top-bar-brands, .top-bar-contact {
    display: none !important;
}

/* ==========================================
   HEADER PRINCIPAL (ESTILO FULLH4RD)
   ========================================== */
.main-header {
    background-color: #0b0b0c;
    padding: 0 4%; 
    border-bottom: 2px solid #8c00ff;
    width: 100%;
    position: relative;
    z-index: 9999;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 80px; /* Clava la altura justa en PC para el logo grande */
}

.logo-text {
    color: #e50914 !important; 
    font-weight: bold;
    text-decoration: none;
    font-size: 166px !important; /* El !important obliga al logo modificar su tamaño */
    display: flex;
    align-items: center;
    white-space: nowrap; 
}

.search-area {
    flex: 1;
    max-width: 500px;
    display: flex;
    position: relative;
    align-items: center;
}

.search-area input {
    width: 100%;
    padding: 10px 15px;
    background-color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    color: #333;
}

.search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

.right-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}



/* ==========================================
   BLOQUE DE REDES (UNIFICADO Y CORREGIDO)
   ========================================== */
.social-block {
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid #333;
    padding-right: 15px;
}

.social-title {
    font-size: 10px;
    color: #aaa;
    line-height: 1.2;
    text-align: right;
    text-transform: uppercase;
    font-weight: 600;
}

/* Estilos unificados para los enlaces/iconos de redes sociales */
.social-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    transition: transform 0.2s ease;
}

.social-icon:hover {
    transform: scale(1.1); /* Efecto sutil al pasar el mouse */
}

.social-icon img {
    width: 32px !important;
    height: 32px !important;
    display: block !important;
    object-fit: contain;
    border: none;
}

.user-cart-block {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-link {
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: #00bcff;
    color: #fff;
    font-size: 9px;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 50%;
}

/* ==========================================
   BANNER Y SECCIONES INFERIORES
   ========================================== */
.hero-carousel {
    width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.carousel-container {
    width: 100%;
    max-width: 1400px;
    padding: 0 4%;
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-slide {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.carousel-img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.prev-arrow { left: 5%; }
.next-arrow { right: 5%; }

.carousel-arrow:hover {
    background-color: #8c00ff; /* Destello violeta gamer al posar el mouse */
    border-color: #8c00ff;
    transform: translateY(-50%) scale(1.1);
}
.prev-arrow { left: 5%; }
.next-arrow { right: 5%; }

.trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    background-color: #070708;
    padding: 15px 4%;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item p {
    font-size: 12px;
    font-weight: bold;
    color: #e0e0e0;
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
    background-color: #050505;
    padding: 40px 4%;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-col h3 {
    font-size: 13px;
    margin-bottom: 12px;
}

.brand-col h3 { color: #00bcff; }
.terms-col h3 { color: #8c00ff; }
.warranty-col h3 { color: #ff0055; }

.footer-col p {
    font-size: 11px;
    color: #aaa;
    line-height: 1.5;
}

/* Contenedor de la foto del artículo */
.product-img-box {
    width: 100%;
    height: 200px;
    background-color: #1a1a1e;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Recorta la imagen de forma armónica para que rellene el recuadro */
    display: block;
}
/* ==========================================
   ESTILOS CATÁLOGO PROFESIONAL (ESTILO COMPRAGAMER)
   ========================================== */

/* Contenedor general en grilla */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    padding: 20px 0;
    background-color: #f5f5f7; /* Fondo gris claro sutil para resaltar las tarjetas blancas */
}

.product-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    
    /* AGREGÁ ESTAS 3 LÍNEAS PARA COHESIÓN VISUAL PERFECTA */
    height: 100%; 
    min-height: 520px; 
    justify-content: space-between;
}
Usa el código con precaución.¿Al hacer la limpieza con Ctrl + F5 pudiste comprobar cómo se despliegan enteros los textos técnicos de los cargadores y cables en pantalla?Enviaste 1 imagen y dijiste antes de modificar nada, quiero por favor cambiar el color me gustaria que el fondo sea negro, las letras blancas y el boton de comprar en verdeantes de modificar nada, quiero por favor cambiar el color me gustaria que el fondo sea negro, las letras blancas y el boton de comprar en verde¡Perfecto! No toques nada más. Vamos a cambiar exactamente esos tres elementos visuales para dejar la base de la tarjeta con una estética gamer imponente: fondo negro absoluto, textos limpios en blanco y el botón en un verde vibrante que invite a dar clic.Para lograrlo, abre tu archivo style.css, busca la sección que agregamos al final llamada .product-info-block (y sus etiquetas hijas) y reemplázala por completo por este bloque de código limpio y calibrado:css/* ==========================================
   PERSONALIZACIÓN OSCURA PREMIUM CON BOTÓN VERDE
   ========================================== */

/* Bloque Inferior: Fondo Negro Absoluto solicitado */
.product-info-block {
    background-color: #000000 !important; 
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

/* Título del Hardware: Letras Blancas limpias */
.product-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Descripción Técnica: Blanco Sutil / Gris claro para lectura prolija sin encimarse */
.product-description {
    font-size: 12px;
    color: #e2e8f0 !important; 
    margin-bottom: 15px;
    line-height: 1.4;
    display: block !important;
    overflow: visible !important;
}

/* Precio Neto Destacado en Blanco Puro */
.product-price {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff !important;
    margin-top: auto;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Botón de Compra del Carrito: Verde Vibrante solicitado */
.add-to-cart-btn {
    background-color: #25d366 !important; /* Verde WhatsApp / Gamer */
    color: #000000 !important; /* Texto en negro para que resalte y contraste a la perfección */
    border: none !important;
    padding: 12px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

/* Efecto al pasar el mouse por encima del botón verde */
.add-to-cart-btn:hover {
    background-color: #1ebd56 !important; /* Verde un tono más oscuro al posarse */
}
Usa el código con precaución.🚀 Pasos rápidos para desplegar el cambio de colores:Guarda la modificación directamente en tu archivo style.css (Ctrl + S).Sube el diseño a tu repositorio ejecutando en tu terminal:bashgit add style.css
git commit -m "Cambio de paleta a fondo negro y boton verde"
git push origin main
Usa el código con precaución.Espera 1 minuto a que GitHub Pages procese la subida.Abre la web en tu navegador y presiona Ctrl + F5 para limpiar el caché visual viejo.¿Lograste ver cómo impactó el bloque inferior en negro con las letras blancas y el botón verde brillante?

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Bloque Superior Blanco para la imagen */
.product-img-box {
    width: 100%;
    height: 180px;
    background-color: #ffffff;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Bloque Inferior Oscuro de Información */
.product-info-block {
    background-color: #0c1424; /* Color azul oscuro / negro premium como tu muestra */
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

/* Título del Hardware */
.product-title {
    font-size: 13px;
    font-weight: bold;
    color: #ffffff !important;
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Descripción secundaria */
.product-description {
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 12px;
    line-height: 1.3;
    min-height: 34px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Precio Neto Gigante Limpio (Sin cuotas ni leyendas) */
.product-price {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-top: auto;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Botón de Compra del Carrito */
.add-to-cart-btn {
    background-color: #00bcff; /* Celeste / Azul vibrante como el botón de tu ejemplo */
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: uppercase;
    transition: background-color 0.2s;
}

.add-to-cart-btn:hover {
    background-color: #0099dd;
}
/* ==========================================
   BOTONES DE FILTRADO PREMIUM GAMER
   ========================================== */
.filter-container-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px 4%;
    background-color: #0d0d0d;
}

.filter-btn {
    background-color: #111112;
    color: #ffffff;
    border: 1px solid #222225;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 13px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.filter-btn:hover {
    border-color: #8c00ff;
    box-shadow: 0 0 10px rgba(140, 0, 255, 0.3);
}

.filter-btn.active {
    background-color: #e50914; /* Color rojo de tu marca para el botón seleccionado */
    border-color: #e50914;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.4);
}

/* ==========================================
   LIBERACIÓN DE TEXTO DE DESCRIPCIÓN COMPLETA
   ========================================== */
.product-description {
    font-size: 12px;
    color: #aaaaaa;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: auto; /* Eliminamos la altura mínima fija */
    display: block !important; /* Quitamos el contenedor recortador antiguo */
    overflow: visible !important; /* Permitimos que se expanda hacia abajo libremente */
    text-align: left; /* Lectura técnica mucho más prolija */
}

/* Asegura que el título tampoco corte palabras */
.product-title {
    display: block !important;
    overflow: visible !important;
    min-height: auto;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 10px;
    line-height: 1.3;
}
/* ==========================================
   VENTANA LATERAL DEL CARRITO (SIDEBAR)
   ========================================== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px; /* Oculto por defecto fuera de la pantalla */
    width: 380px;
    height: 100vh;
    background-color: #0b0b0c;
    border-left: 2px solid #8c00ff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.cart-sidebar.open {
    right: 0; /* Despliega el carrito en pantalla */
}

.cart-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-sidebar-header h2 {
    font-size: 18px;
    color: #fff;
}

.close-cart-btn {
    background: none;
    border: none;
    color: #ff0055;
    font-size: 20px;
    cursor: pointer;
}

.cart-sidebar-body {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Fila de cada producto dentro del carrito */
.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #111112;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #222;
}

.cart-item-details h4 {
    font-size: 13px;
    color: #fff;
    margin-bottom: 4px;
}

.cart-item-details p {
    font-size: 12px;
    color: #25d366;
    font-weight: bold;
}

.remove-item-btn {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-size: 14px;
}

.remove-item-btn:hover {
    color: #ff0055;
}

.cart-sidebar-footer {
    padding: 20px;
    border-top: 1px solid #222;
    background-color: #050505;
}

.cart-total-box {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.checkout-btn {
    background-color: #25d366;
    color: #000;
    border: none;
    padding: 14px;
    width: 100%;
    border-radius: 6px;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s;
}

.checkout-btn:hover {
    background-color: #1ebd56;
}
/* ==========================================
   BOTÓN FLOTANTE DE WHATSAPP (ESQUINA INFERIOR)
   ========================================== */
.wpp-floating-btn {
    position: fixed;
    bottom: 25px;
    right: 25px; /* Fijado perfectamente en el borde inferior derecho */
    background-color: #25d366 !important;
    border: none !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    z-index: 9999; /* Asegura que flote por encima de las tarjetas y el footer */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wpp-floating-btn:hover {
    transform: scale(1.1); /* Efecto de agrandamiento sutil */
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6); /* Brillo verde gamer */
}

.wpp-floating-btn svg {
    display: block;
}
/* ==========================================
   CABECERA PREMIUM ESTABILIZADA SIN SUPERPOSICIONES
   ========================================== */
.main-header {
    background-color: #0b0b0c;
    padding: 0 4% !important; /* CORREGIDO: Dejamos el padding vertical en 0 para que no aplaste el logo */
    border-bottom: 2px solid #8c00ff;
    width: 100%;
    position: relative; 
    display: flex;
    align-items: center;
    /* CORREGIDO: Eliminamos min-height: 70px que actuaba como tope limitador */
}

/* Contenedor estándar unificado */
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    position: relative;
    height: auto; /* Permite que la barra tome la altura real del logo gigante */
    padding: 8px 0; /* Un pequeño margen interno simétrico para que respire el diseño */
}

/* El Buscador se centra de manera perfecta en el medio de la pantalla */
.search-area {
    flex: 1;
    max-width: 500px;
    margin: 0 auto; 
    display: flex;
    position: relative;
    z-index: 10;
}

/* ==========================================
   CONFIGURACIÓN DEL LOGO
   ========================================== */
.logo-brand-box {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1000;
    transition: transform 0.2s ease;
}

.logo-brand-box:hover {
    transform: scale(1.03); 
}

/* Configuración del logo gigante */
.header-logo-img {
    width: auto;
    height: 120px !important; /* Mantiene tu logo imponente en la PC */
    object-fit: contain; 
    display: block;
    filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.7));
}

/* ==========================================
   BLOQUEO Y FIJACIÓN DE CABECERA (STICKY HEADER)
   ========================================== */
.contenedor-fijo-superior {
    position: fixed; /* Clava el bloque en la pantalla sin importar el scroll */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6); 
}

/* Compensación de espacio unificada para el cuerpo de la página */
body {
    background-color: #0d0d0d;
    color: #ffffff;
    /* CORREGIDO: Un solo colchón perfecto de 150px para dar espacio al logo gigante en PC */
    padding-top: 150px !important; 
}

/* ==========================================
   AJUSTES RESPONSIVE PARA PANTALLAS DE CELULARES
   ========================================== */
@media (max-width: 900px) {
    .main-header {
        flex-direction: column;
        padding: 15px 4% !important;
        height: auto !important; /* Permite al menú crecer hacia abajo en el celular */
    }
    
    .header-container {
        flex-direction: column;
        height: auto !important;
        gap: 12px;
        padding: 5px 0;
    }
    
    .header-logo-img {
        height: 60px !important; /* Achica el logo en el celular para que no tape toda la pantalla */
    }
    
    .logo-brand-box {
        position: relative;
        left: 0;
        transform: none;
        margin: 0 auto;
    }

    .top-bar {
        display: none; 
    }

    .search-area {
        max-width: 100%; 
        width: 100%;
        order: 3; /* Pasa el buscador abajo de todo */
    }
    
    .right-actions {
        width: 100%;
        justify-content: space-around; 
        order: 2;
    }
    
    body {
        /* CORREGIDO: Ajusta el espacio del cuerpo en celulares ya que el menú se apila verticalmente */
        padding-top: 200px !important; 
    }
}
