/* ==============================
   CONFIGURACIÓN GENERAL
================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background-color: #080808;
    color: #f5f5f5;
}


/* ==============================
   HEADER
================================= */

.header {
    width: 100%;
    background-color: #080808;
    border-bottom: 1px solid #252525;
}

.header-container {
    max-width: none;
    min-height: 95px;

    margin: auto;
    padding: 10px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #ffffff;

    padding: 7px 12px;

    border-radius: 4px;
}

.logo img {
    width: 145px;
    height: auto;

    display: block;
}


/* NAVEGACIÓN */

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a {
    color: #f5f5f5;

    text-decoration: none;

    font-size: 15px;

    transition: 0.3s;
}

.nav a:hover {
    color: #d51f2f;
}


/* CARRITO */

.cart-button {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    margin-left: 0;

    background: #111111;

    border: 1px solid #333333;

    border-radius: 3px;

    color: #ffffff;

    cursor: pointer;
}

#cart-count {
    position: absolute;

    top: -8px;
    right: -10px;

    width: 19px;
    height: 19px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: #d51f2f;
    color: #ffffff;

    font-size: 11px;
}


/* ==============================
   HERO
================================= */

/* ========================================
   HERO / CARRUSEL
======================================== */

.hero-carousel {
    position: relative;

    width: 100%;
    max-width: 1200px;

    height: 500px;

    margin: 35px auto;

    overflow: hidden;

    background-color: #111111;

    border: 1px solid #252525;
}


.carousel-track {
    width: 100%;
    height: 100%;

    position: relative;
}


.hero-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}


.hero-slide.active {
    opacity: 1;

    visibility: visible;
}


.hero-slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-slide img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* OSCURECER LA IMAGEN */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.65)
        );
}


/* CONTENIDO */

.hero-slide .hero-content {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 80%;
    max-width: 700px;

    text-align: center;

    z-index: 2;
}


.hero-subtitle {
    margin-bottom: 15px;

    color: #d51f2f;

    font-size: 12px;

    letter-spacing: 5px;
}


.hero-slide h1 {
    margin-bottom: 20px;

    color: #ffffff;

    font-size: 48px;

    font-weight: 500;
}


.hero-slide .hero-description {
    margin-bottom: 30px;

    color: #dddddd;

    font-size: 16px;

    line-height: 1.6;
}


/* BOTÓN */

.hero-button {
    display: inline-block;

    padding: 13px 30px;

    background-color: #d51f2f;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    transition: 0.3s;
}


.hero-button:hover {
    background-color: #a91522;
}


/* ========================================
   FLECHAS
======================================== */

.carousel-button {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 5;

    width: 45px;
    height: 45px;

    border: 1px solid rgba(255,255,255,0.3);

    background-color: rgba(0,0,0,0.35);

    color: #ffffff;

    font-size: 32px;

    cursor: pointer;

    transition: 0.3s;
}


.carousel-button:hover {
    background-color: #d51f2f;

    border-color: #d51f2f;
}


.carousel-prev {
    left: 20px;
}


.carousel-next {
    right: 20px;
}


/* ========================================
   INDICADORES
======================================== */

.carousel-dots {
    position: absolute;

    bottom: 20px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 5;

    display: flex;

    gap: 8px;
}


.carousel-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background-color: rgba(255,255,255,0.5);

    cursor: pointer;

    transition: 0.3s;
}


.carousel-dot.active {
    width: 25px;

    border-radius: 10px;

    background-color: #d51f2f;
}


/* ==============================
   TÍTULOS DE SECCIÓN
================================= */

.section-title {
    width: 100%;

    text-align: center;

    margin-bottom: 35px;
}

.section-title p {
    margin-bottom: 10px;

    color: #999999;

    font-size: 12px;

    letter-spacing: 5px;
}

.section-title h2 {
    color: #ffffff;

    font-size: 36px;

    font-weight: 500;
}


/* ==============================
   CATEGORÍAS
================================= */

.categories {
    max-width: 1200px;

    margin: 70px auto;

    padding: 0 25px;
}

.categories-container {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 15px;
}

.category-card {
    min-height: 140px;

    padding: 20px;

    border: 1px solid #2c2c2c;

    background-color: #111111;

    color: #ffffff;

    cursor: pointer;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    transition: 0.3s;
}

.category-card h3 {
    margin-bottom: 10px;

    font-size: 18px;

    font-weight: 500;
}

.category-card span {
    color: #999999;

    font-size: 13px;
}

.category-card:hover {
    border-color: #444444;

    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);

    transform: translateY(-3px);
}


/* ==============================
   CATÁLOGO
================================= */

.catalog {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
    
    padding: 80px 30px;
    box-sizing: border-box;

    text-align: center;
}

.catalog-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 35px;
}

.catalog-header .section-title {
    margin-bottom: 0;

    text-align: left;
}


/* BUSCADOR */

.search-container input {
    width: 280px;

    padding: 12px 16px;

    border: 1px solid #333333;

    outline: none;

    background-color: #111111;

    color: #ffffff;

    font-size: 14px;
}

.search-container input::placeholder {
    color: #777777;
}

.search-container input:focus {
    border-color: #d51f2f;
}


/* FILTROS */

.catalog-filters {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 40px;
}

.filter-button {
    padding: 9px 18px;

    border: 1px solid #333333;

    background-color: #111111;

    color: #cccccc;

    cursor: pointer;

    font-size: 13px;

    transition: all 0.3s ease;
}

.filter-button:hover {
    border-color: #d51f2f;
    color: #ffffff;
}

.filter-button.active {
    background-color: #d51f2f;

    border-color: #d51f2f;

    color: #ffffff;
}


/* PRODUCTOS */

.products-container {

    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 30px;

    align-items: start;
}


/* ==============================
   TARJETA DE PRODUCTO
================================= */

.product-card {

    width: 100%;

    max-width: 320px;

    margin: 0 auto;

    overflow: hidden;

    background-color: #111111;

    border: 1px solid #292929;
   
   transition: 0.3s ease;
   box-shadow: 0.3s ease;
}

.product-card:hover {
    transform:translateY(-5px);

    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}


/* IMAGEN */

.product-image {
    width: 100%;

    height: 300px;

    background-color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;
}

.product-image img {

    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}


/* INFORMACIÓN */

.product-info {
    padding: 20px;
}

.product-brand {
    margin-bottom: 0 0 7px;

    color: #999999;

    font-size: 12px;
}

.product-name {
    margin-bottom: 0 0 10px;

    color: #ffffff;

    font-size: 20px;

    font-weight: 500;
}

.product-description {
   
    margin:0 0 18px;

    color: #aaaaaa;

    font-size: 13px;

    line-height: 1.5;
}

.product-price {
    margin-bottom: 20px 0 15px;

    color: #ffffff;

    font-size: 18px;

    font-weight: 600;
}


/* CANTIDAD */

.quantity-selector {
    
    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    margin-bottom: 12px;

    border: 1px solid #333333;
}

.quantity-selector button {
    width: 40px;

    height: 35px;

    border: none;

    background-color: #111111;

    color: #ffffff;

    font-size: 16px;

    cursor: pointer;
}

.quantity-selector button:hover {
    background-color: #222222;
}

.quantity {
    flex: 1;

    text-align: center;

    color: #ffffff;

    font-size: 14px;
}


/* BOTÓN CARRITO */

.add-cart {
    width: 100%;

    height: 40px;

    border: none;

    background-color: #d51f2f;

    color: #ffffff;

    cursor: pointer;

    font-size: 13px;

    cursor: pointer;

    transition: background-color 0.3s ease;
}

.add-cart:hover {
    background-color: #b71927;
}

.add-cart.disabled {
    background-color: #444444;

    color: #999999;

    cursor: not-allowed;
}


/* ==============================
   FOOTER
================================= */

footer {
    margin-top: 100px;

    padding: 30px;

    border-top: 1px solid #252525;

    background-color: #080808;

    color: #777777;

    text-align: center;

    font-size: 13px;
}


/* ==============================
   RESPONSIVE
================================= */

@media (max-width: 900px) {

    .categories-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-header {
        align-items: center;

        flex-direction: column;
    }

    .catalog-header .section-title {
        text-align: center;
    }

}


@media (max-width: 600px) {

    .header-container {
        min-height: 80px;

        padding: 10px 15px;
    }

    .logo img {
        width: 110px;
    }

    .nav {
        gap: 12px;
    }

    .nav a {
        font-size: 13px;
    }

    .hero {
        margin: 20px 15px;

        min-height: 320px;

        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .categories {
        margin: 50px auto;
    }

    .categories-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog {
        margin: 60px auto;
    }

    .search-container {
        width: 100%;
    }

    .search-container input {
        width: 100%;
    }

    .products-container {
        grid-template-columns: 1fr;
    }
html,
body {
    background-color: #080808 !important;
    color: #f5f5f5;
}

main {
    background-color: #080808;
}

.header {
    background-color: #080808 !important;
}
}
/*====================================================
        PANEL DEL CARRITO
======================================================*/

.cart-panel {
    position:fixed;

    top:0;
    right: 0;

    width: 420px;
    max-width: 100%;

    height: 100vh;

    background-color: #111111;

    border-left: 1px solid #2c2c2c;

    z-index: 1000;

    display: flex;
    flex-direction: column;

    transform: translateX(100%);

    transition: transform 0.35s ease;
    }

    /* CARRITO ABIERTO  */

.cart-panel.active {
    transform:translateX(0);
}

    /*ENCABEZADO*/

.cart-header    {
    height: 80px;
    
    padding: 20px;

    border-bottom: 1px solid #2c2c2c;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.cart-header  h2 {
    color:  #ffffff;
    
    font-size: 22px;    

    font-weight: 500;
}

.cart-close {
    border: none;

    background: transparent;

    color: #ffffff;

    font-size: 30px;

    cursor: pointer;

    line-height: 1;
}

/*  PRODUCTO DEL CARRITO    */

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 20px;

}

/*  PRODUCTO DEL CARRITO    */

.cart-item  {
    display: flex;

    gap: 15px;

    padding: 15px   0;

    border-bottom: 1px  solid #2c2c2c;
}

.cart-item-image    {
    width: 80px;

    background-color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;
}

.cart-item-image image {
    width: 100%;

    height: 100%;

    object-fit: contain;
}

.cart-item-info {
    flex: 1;
}
.cart-item-brand    {
    color: #888888;

    font-size: 11px;

    margin-bottom: 4px;    
}

.cart-item-name {
    color: #ffffff;

    font-size: 15px;

    margin-bottom: 8px;
}

.cart-item-price  {
    color: #ffffff;

    font-size: 14px;

    margin-bottom: 10px;
}

/*  CONTROLES DEL CARRITO   */

.cart-item-controls {
    
    display: flex;

    align-items: center;

    border: 1px solid #333333;
}

.cart-quantity span {
    width: 30px;

    text-align: center;

    color: #ffffff;

    font-size: 13px;
}

/*  ELIMINAR */

.remove-cart-item   {
    border: none;

    background: transparent;

    color: #888888;

    cursor: pointer;

    font-size: 18px;

    transition: 0.3s;
}

.remove-cart-item:hover {
    color: #d51f2f;
}

/*  PIE DEL CARRITO */

.cart-footer    {
    padding: 20px;

    border-top: 1px solid #2c2c2c;

    background-color: #0d0d0d;
}

.cart-total {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 20px;

    color: #ffffff;
}

.cart-total span {
    color: #999999;

    font-size: 14px;
}

.cart-total strong {
    font-size: 22px;
}


/* WHATSAPP */

.whatsapp-button {
    width: 100%;

    padding: 14px;

    border: none;

    background-color: #25D366;

    color: #ffffff;

    cursor: pointer;

    font-size: 14px;

    font-weight: 500;

    transition: 0.3s;
}

.whatsapp-button:hover {
    background-color: #1ebe5d;
}


/* CARRITO VACÍO */

.empty-cart {
    padding: 50px 20px;

    color: #777777;

    text-align: center;

    font-size: 14px;
}


/* RESPONSIVE */

@media (max-width: 600px) {

    .cart-panel {
        width: 100%;
    }

}
/* ========================================
   CORRECCIÓN PANEL DEL CARRITO
======================================== */

.cart-panel {
    position: fixed !important;

    top: 0 !important;
    right: 0 !important;

    width: 420px !important;
    max-width: 100% !important;

    height: 100vh !important;

    background-color: #111111 !important;

    border-left: 1px solid #333333 !important;

    z-index: 9999 !important;

    display: flex !important;
    flex-direction: column !important;

    transform: translateX(100%) !important;

    transition: transform 0.35s ease !important;
}

.cart-panel.active {
    transform: translateX(0) !important;
}

@media (max-width: 600px) {

    .hero-carousel {
        width: calc(100% - 30px);
        max-width: none;
        height: 180px;
        aspect-ratio: auto;
        margin: 10px auto;
    }

    .hero-slide .hero-content {
        width: 85%;
    }

    .hero-slide h1 {
        font-size: 32px;
    }

    .hero-slide .hero-description {
        font-size: 14px;
    }

    .carousel-button {
        width: 38px;
        height: 38px;

        font-size: 26px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

}

@media (max-width: 380px) {

    .products-container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 5px;
    }

    .product-image {
        height: 120px;
    }

    .product-info {
        padding: 6px 3px;
    }

    .product-name {
        font-size: 10px;
    }

    .add-cart {
        font-size: 8px;
        min-height: 30px;
        height: 30px;
    }
    .hero-carousel {
        height: 160px;
        margin-top: 8px;
        margin-bottom: 8px;
    }
}
/* ========================================
   NAVEGACIÓN DE CATEGORÍAS
======================================== */








/* ========================================
   BUSCADOR PRINCIPAL
======================================== */

.main-search {
    position: relative;

    flex: 1;

    width: 100%;

    max-width: 600px;

    margin: 0;
}

.main-search input {
    width: 100%;

    height: 48px;

    padding: 0 48px 0 20px;

    box-sizing: border-box;

    border: none;

    border-radius: 30px;

    border: 1px solid#3a3a3a;

    
    background-color: #111111;

    color: #ffffff;

    outline: none;

    font-size: 14px;

    transition: 
            border-color 0.2 ease,
            box-shadow  0.2 ease   
            ;
}


.main-search input::placeholder {
    color: #8c8c8c;
}

.main-search input:focus  {
    border-color:b51d2d;
     box-shadow:
        0 0 10px rgba(181, 29, 45, 0.25);

}

.search-icon {
    position: absolute;

    right: 18px;

    top: 50%;

    transform: translateY(-50%);

    color: #ffffff;

    font-size: 20px;

    pointer-events: none;
}


/* ========================================
   BOTONES DE CATEGORÍAS
======================================== */






.category-nav-button:hover {
    
    border-color: #b51d2d;

    background: #171717;
}


.category-nav-button.active {
   background: #df1e31;

    border-color: #df1e31;

    color: #ffffff;

    box-shadow:
        0 0 10px rgba(223, 30, 49, 0.25);
}


/* ========================================
   MÓVILES
======================================== */

@media (max-width: 600px) {

    .category-navigation {
        padding: 14px 12px;
    }


    .main-search {
        margin-bottom: 14px;
    }


    .category-buttons {
        justify-content: flex-start;

        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 4px;
    }


    .category-nav-button {
        flex-shrink: 0;
    }

}
/* ========================================
   HEADER NUEVO
======================================== */

.header {
    width: 100%;
    background-color: #080808;
    border-bottom: 1px solid #292929;
}


.header-container {
    width: 100%;
    max-width: 1400px;

    min-height: 105px;

    margin: 0 auto;

    display: flex;
    align-items:center;

    padding: 15px 30px;

    box-sizing: border-box;
}


/* ========================================
   BARRA DENTRO DEL HEADER
======================================== */



/* BUSCADOR */

.header .main-search {
    width: 100%;

    max-width: 600px;

    margin: 0 auto 12px;
}


.header .main-search input {
    width: 100%;

    height: 42px;
}


/* CATEGORÍAS */

.header .category-buttons {
    display: flex;

    justify-content: center;

    gap: 8px;
}


.header .category-nav-button {
    min-width: 80px;

    padding: 8px 15px;
}


/* ========================================
   CARRITO
======================================== */

.header .cart-button {
    flex-shrink: 0;

    margin-left: 25px;
}


/* ========================================
   MÓVIL
======================================== */

@media (max-width: 700px) {

    .header-container {
        padding: 12px 15px;
    }

    .header .category-buttons {
        overflow-x: auto;

        justify-content: flex-start;

        width: 100%;
    }

    .header .category-nav-button {
        flex-shrink: 0;
    }

    .header .cart-button {
        margin-left: 10px;
    }

}
/* ========================================
   CENTRADO DEL CATÁLOGO
======================================== */

.catalog {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 80px 30px;
    box-sizing: border-box;

    text-align: center;
}


/* TÍTULO PRINCIPAL */

.catalog-intro {
    text-align: center;

    margin-bottom: 45px;
}


.catalog-intro p {
    margin: 0 0 8px;

    color: #d51f2f;

    font-size: 12px;

    letter-spacing: 5px;
}


.catalog-intro h2 {
    margin: 0;

    color: #ffffff;

    font-size: 42px;

    font-weight: 500;
}


/* TÍTULO DE LA COLECCIÓN */

.catalog-title {
    text-align: center;

    margin-bottom: 50px;
}


.catalog-title p {
    margin: 0 0 10px;

    color: #aaaaaa;

    font-size: 12px;

    letter-spacing: 6px;
}


.catalog-title h2 {
    margin: 0;

    color: #ffffff;

    font-size: 32px;

    font-weight: 400;
}


/* PRODUCTOS */

.products-container {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(260px, 1fr));

    justify-content: center;

    gap: 30px;
}


/* TARJETAS */

.product-card {
    width: 100%;

    max-width: 300px;

    margin: 0 auto;

    text-align: left;
}
@media (max-width: 900px) {

    .products-container {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

}


@media (max-width: 600px) {

    .catalog {
        padding: 60px 15px;
    }


    .catalog-title p {
        font-size: 10px;

        letter-spacing: 4px;
    }


    .catalog-title h2 {
        font-size: 26px;
    }


    .products-container {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .product-card {
        max-width: 360px;
    }

}
/* ========================================
   BOTÓN AGREGAR AL CARRITO
======================================== */

.add-cart {
    width: 100%;
    height: 42px;

    margin-top: 12px;

    border: none;
    background-color: #d51f2f;
    color: #ffffff;

    font-size: 13px;
    font-weight: 500;

    cursor: pointer;

    transition:
        background-color 0.3s ease,
        transform 0.2s ease;
}

.add-cart:hover {
    background-color: #b71927;
}

.add-cart:active {
    transform: scale(0.98);
}

.add-cart:disabled {
background-color: #333333;

color: #888888;

cursor: not-allowed;

opacity: 0.7;
}
/* ========================================
   SIN PRODUCTOS
======================================== */

.no-products {
    grid-column: 1 / -1;

    text-align: center;

    padding: 60px 20px;

    color: #888888;

    font-size: 14px;
}
/* ========================================
   PANEL LATERAL DEL CARRITO
======================================== */

.cart-panel {
    position: fixed;

    top: 0;
    right: 0;

    width: 400px;
    max-width: 90vw;
    height: 100vh;

    background-color: #0d0d0d;

    border-left: 1px solid #292929;

    z-index: 1000;

    display: flex;
    flex-direction: column;

    transform: translateX(100%);

    transition: transform 0.35s ease;

    box-shadow:
        -10px 0 30px rgba(0, 0, 0, 0.5);
}


/* CARRITO ABIERTO */

.cart-panel.active {
    transform: translateX(0);
}


/* ========================================
   ENCABEZADO
======================================== */

.cart-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 22px 25px;

    border-bottom: 1px solid #292929;
}


.cart-header h2 {
    margin: 0;

    color: #ffffff;

    font-size: 20px;

    font-weight: 500;
}


.cart-close {
    width: 35px;
    height: 35px;

    border: none;

    background: transparent;

    color: #ffffff;

    font-size: 28px;

    line-height: 1;

    cursor: pointer;

    transition: color 0.3s ease;
}


.cart-close:hover {
    color: #d51f2f;
}


/* ========================================
   PRODUCTOS DEL CARRITO
======================================== */

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 20px 25px;
}


/* PRODUCTO */

.cart-item {
    padding: 18px 0;

    border-bottom: 1px solid #292929;
}


.cart-item-info h3 {
    margin: 0 0 5px;

    color: #ffffff;

    font-size: 16px;

    font-weight: 500;
}


.cart-item-info p {
    margin: 0;

    color: #888888;

    font-size: 12px;
}


/* ========================================
   CONTROLES
======================================== */

.cart-item-controls {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 15px;
}


.cart-item-controls button {
    width: 30px;
    height: 30px;

    border: 1px solid #333333;

    background-color: #151515;

    color: #ffffff;

    cursor: pointer;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
}


.cart-item-controls button:hover {
    background-color: #222222;

    border-color: #d51f2f;
}


.cart-item-controls span {
    min-width: 25px;

    text-align: center;

    color: #ffffff;

    font-size: 14px;
}


/* BOTÓN ELIMINAR */

.cart-item-controls .cart-delete {
    margin-left: auto;

    border-color: transparent;

    color: #999999;

    background-color: transparent;
}


.cart-item-controls .cart-delete:hover {
    color: #d51f2f;

    border-color: transparent;

    background-color: transparent;
}


/* ========================================
   PRECIO DEL PRODUCTO
======================================== */

.cart-item-price {
    display: block;

    margin-top: 12px;

    color: #ffffff;

    font-size: 15px;
}


/* ========================================
   CARRITO VACÍO
======================================== */

.empty-cart {
    margin: 50px 0;

    text-align: center;

    color: #777777;

    font-size: 14px;
}


/* ========================================
   FOOTER DEL CARRITO
======================================== */

.cart-footer {
    padding: 20px 25px;

    border-top: 1px solid #292929;

    background-color: #0d0d0d;
}


.cart-total {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}


.cart-total span {
    color: #aaaaaa;

    font-size: 14px;
}


.cart-total strong {
    color: #ffffff;

    font-size: 20px;
}


/* ========================================
   WHATSAPP
======================================== */

.whatsapp-button {
    width: 100%;

    height: 45px;

    border: none;

    background-color: #d51f2f;

    color: #ffffff;

    font-size: 13px;

    font-weight: 500;

    cursor: pointer;

    transition:
        background-color 0.3s ease,
        transform 0.2s ease;
}


.whatsapp-button:hover {
    background-color: #b71927;
}


.whatsapp-button:active {
    transform: scale(0.98);
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 600px) {

    .cart-panel {
        width: 100%;

        max-width: 100%;
    }

}

/* ========================================
   MENSAJE PEDIDO MÍNIMO
======================================== */

.minimum-order-message {
    margin-bottom: 12px;
    font-size: 14px;
    text-align: center;
}


.minimum-order-message.warning {
    color: #b8860b;
}


.minimum-order-message.success {
    color: #2e8b57;
}
/* ========================================
   MODO BÚSQUEDA
======================================== */

.hero-carousel.search-mode {
    display: none;
}

/* ========================================
   SUGERENCIAS DEL BUSCADOR
======================================== */

.search-suggestions {
    position: absolute;

    top: calc(100% + 8px);

    left: 0;

    width: 100%;

    display: none;

    z-index: 5000;
}


.search-suggestions.active {
    display: block;
}

/* ========================================
   PANEL
======================================== */

.search-suggestions-panel {
     width: 100%;

    max-height: 300px;

    overflow-y: auto;

    padding: 8px;

    background: #101010;

    border: 1px solid #333333;

    border-radius: 10px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.6);
}
/* ========================================
   TÍTULO
======================================== */


.search-suggestions-panel h3 {

    
    margin: 8px 10px;

    color: #888888;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 2px;

}


/* ========================================
   ELEMENTOS 
======================================== */

.search-suggestion-item {

    
    width: 100%;

    min-height: 48px;

    padding: 9px 12px;

    display: flex;

    align-items: center;

    text-align: left;

    border: none;

    border-radius: 7x;

    background: transparent;

    color: #ffffff;

    cursor: pointer;

    transition:
        background-color 0.2s ease;
}

/* HOVER */

.search-suggestion-item:hover {

    background: color #1d1d1d;

}

/* ========================================
   INFORMACIÓN
======================================== */

.suggestion-info {

    display: flex;

    flex-direction: column;

    gap: 3px;

}

/* NOMBRE */

.suggestion-info strong {

 color: #ffffff;

    font-size: 13px;

    font-weight: 500;
}

/* MARCA */

.suggestion-info span {

    color: #777777;

    font-size: 11px;

}

/* ========================================
   RESULTADO NO ENCONTRADO
======================================== */
.no-search-results {

    padding: 15px;

    color: #777777;

    font-size: 12px;

    text-align: center;

}
/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 700px) {

    .search-suggestions-panel {

        border-radius: 10px;

    }
}

.hero-carousel.search-mode {
    display: none;
}
/* ========================================
   LOGO
======================================== */



.category-logo img {

    width: 75px;
    height: 75px;

    object-fit: contain;

    display: block;

}
/* ========================================
   CARRITO FLOTANTE
======================================== */

.cart-button {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #111111;

    border: 1px solid #d51f2f;

    border-radius: 50%;

    color: #ffffff;

    font-size: 24px;

    cursor: pointer;

    z-index: 9998;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.5),
        0 0 12px rgba(213, 31, 47, 0.25);

    transition:
        background-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* HOVER */

.cart-button:hover {

    background-color: #d51f2f;

    transform: translateY(-3px);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.6),
        0 0 18px rgba(213, 31, 47, 0.45);
}


/* CONTADOR */

#cart-count {

    position: absolute;

    top: -3px;
    right: -3px;

    width: 20px;
    height: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: #d51f2f;

    color: #ffffff;

    font-size: 10px;

    font-weight: bold;

    border: 2px solid #080808;
}


/* ========================================
   OCULTAR EL CARRITO DEL HEADER
======================================== */

.header .cart-button {

    position: fixed;

    right: 25px;
    bottom: 25px;

    margin: 0;

}


/* ========================================
   MÓVIL
======================================== */

@media (max-width: 600px) {

    .cart-button {

        right: 18px;

        bottom: 18px;

        width: 54px;
        height: 54px;

        font-size: 22px;

    }
}

/* ========================================
   BARRA DE CATEGORÍAS - ALFA WARRIORS
======================================== */

.category-navigation {
    width: 100%;

    padding: 10px 15px;

    box-sizing: border-box;
}


/* ========================================
   CONTENEDOR PRINCIPAL
======================================== */

.category-navigation-inner {

    width: 100%;

    min-height: 115px;

    padding: 15px 25px;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    gap: 30px;

    background: #0d0d0d;

    border: 1px solid #7d1723;

    border-radius: 4px;

    box-shadow:
        0 0 15px rgba(125, 23, 35, 0.20);

}


/* ========================================
   LOGO
======================================== */

.category-logo {

    width: 105px;

    min-width: 105px;

    height: 85px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

}


.category-logo img {

    width: 85px;

    height: 85px;

    object-fit: contain;

    display: block;

}


/* ========================================
   BUSCADOR
======================================== */

.main-search {

    position: relative;

    flex: 1;

    width: 100%;

    max-width: 600px;

    margin: 0;

}


/* CAMPO */

.main-search input {

    width: 100%;

    height: 50px;

    padding: 0 52px 0 22px;

    box-sizing: border-box;

    border: 1px solid #353535;

    border-radius: 28px;

    outline: none;

    background: #111111;

    color: #ffffff;

    font-size: 14px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;

}


/* PLACEHOLDER */

.main-search input::placeholder {

    color: #888888;

}


/* FOCUS */

.main-search input:focus {

    border-color: #d51f2f;

    box-shadow:
        0 0 12px rgba(213, 31, 47, 0.25);

}


/* ========================================
   ICONO DE BÚSQUEDA
======================================== */

.search-icon {

    position: absolute;

    right: 20px;

    top: 50%;

    transform: translateY(-50%);

    color: #ffffff;

    font-size: 19px;

    pointer-events: none;

}


/* ========================================
   BOTONES DE CATEGORÍAS
======================================== */

.category-buttons {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    flex-wrap: wrap;

    gap: 8px;

    max-width: 430px;

}


/* BOTÓN */

.category-nav-button {

    height: 40px;

    padding: 0 17px;

    border: 1px solid #333333;

    border-radius: 3px;

    background: #111111;

    color: #dddddd;

    font-size: 13px;

    cursor: pointer;

    white-space: nowrap;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;

}


/* HOVER */

.category-nav-button:hover {

    background: #171717;

    border-color: #d51f2f;

    color: #ffffff;

}


/* ACTIVO */

.category-nav-button.active {

    background: #d51f2f;

    border-color: #d51f2f;

    color: #ffffff;

    box-shadow:
        0 0 12px rgba(213, 31, 47, 0.25);

}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

    .category-navigation-inner {

        gap: 20px;

        padding: 15px 20px;

    }


    .category-logo {

        width: 85px;

        min-width: 85px;

    }


    .category-logo img {

        width: 70px;

        height: 70px;

    }


    .main-search {

        max-width: 500px;

    }


    .category-buttons {

        max-width: 350px;

    }


    .category-nav-button {

        padding: 0 13px;

    }

}


/* ========================================
   MÓVIL
======================================== */

@media (max-width: 700px) {

    .category-navigation {

        padding: 10px;

    }


    .category-navigation-inner {

        min-height: auto;

        padding: 15px;

        flex-direction: column;

        align-items: stretch;

        gap: 15px;

    }


    .category-logo {

        width: 100%;

        height: 65px;

    }


    .category-logo img {

        width: 65px;

        height: 65px;

    }


    .main-search {

        width: 100%;

        max-width: none;

    }


    .main-search input {

        height: 46px;

    }


    .category-buttons {

        width: 100%;

        max-width: none;

        justify-content: flex-start;

        flex-wrap: nowrap;

        overflow-x: auto;

        padding-bottom: 4px;

    }


    .category-nav-button {

        flex-shrink: 0;

    }

}
/* ========================================
   PRODUCTO ENCONTRADO POR BÚSQUEDA
======================================== */

.product-card.search-highlight {
    border-color: #d51f2f;

    box-shadow:
        0 0 0 1px #d51f2f,
        0 0 25px rgba(213, 31, 47, 0.35);

    transform: translateY(-5px);

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}
/* ========================================
   RESPONSIVE GENERAL
   ALFA WARRIORS
======================================== */


/* ========================================
   TABLET / PANTALLAS MEDIANAS
======================================== */

@media (max-width: 1000px) {

    .category-navigation-inner {

        gap: 20px;

        padding: 14px 18px;

    }


    .category-logo {

        width: 80px;

        min-width: 80px;

    }


    .category-logo img {

        width: 68px;

        height: 68px;

    }


    .main-search {

        max-width: none;

    }


    .category-buttons {

        max-width: 360px;

    }


    .category-nav-button {

        padding: 0 13px;

        font-size: 12px;

    }


    .products-container {

        gap: 20px;

    }

}


/* ========================================
   TABLET PEQUEÑA
======================================== */

@media (max-width: 800px) {

    .category-navigation-inner {

        flex-wrap: wrap;

        justify-content: center;

    }


    .category-logo {

        width: 75px;

        min-width: 75px;

    }


    .main-search {

        flex: 1;

        min-width: 300px;

    }


    .category-buttons {

        width: 100%;

        max-width: none;

        justify-content: center;

    }


    .category-nav-button {

        height: 38px;

    }


    .hero-carousel {

        height: 420px;

        margin: 25px 15px;

    }


    .products-container {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}


/* ========================================
   CELULAR
======================================== */

@media (max-width: 600px) {

    /* BARRA */

    .category-navigation {

        padding: 8px;

    }


    .category-navigation-inner {

        width: 100%;

        min-height: auto;

        padding: 15px;

        flex-direction: column;

        align-items: center;

        gap: 12px;

    }


    /* LOGO */

    .category-logo {

        width: 100%;

        min-width: 0;

        height: 65px;

    }


    .category-logo img {

        width: 65px;

        height: 65px;

    }


    /* BUSCADOR */

    .main-search {

        width: 100%;

        min-width: 0;

        max-width: none;

    }


    .main-search input {

        height: 46px;

        font-size: 13px;

    }


    /* CATEGORÍAS */

    .category-buttons {

        width: 100%;

        max-width: none;

        justify-content: flex-start;

        flex-wrap: nowrap;

        overflow-x: auto;

        gap: 7px;

        padding-bottom: 5px;

        scrollbar-width: none;

    }


    .category-buttons::-webkit-scrollbar {

        display: none;

    }


    .category-nav-button {

        flex-shrink: 0;

        height: 38px;

        padding: 0 15px;

    }


    /* HERO */

    .hero-carousel {

        width: calc(100% - 20px);
        max-width: none;
        height: auto;
        aspect-ratio: 4 / 5;

        margin: 20px 10px;

    }


    .hero-slide h1 {

        font-size: 30px;

    }


    .hero-slide .hero-description {

        font-size: 13px;

    }


    /* CATÁLOGO */

    .catalog {

        padding: 55px 15px;

    }


    .catalog-title h2 {

        font-size: 26px;

    }


    /* PRODUCTOS */

    .products-container {

        grid-template-columns: repeat(4, minmax(0, 1fr));

        gap: 8px;

    }


    .product-card {

        width: 100%;

        max-width: none;

        min-width: 0;

    }


    .product-image {

        height: 145px;

    }


    .product-info {

        padding: 8px 5px;

    }


    .product-name {

        font-size: 12px;

        line-height: 1.15;

    }


    .product-description {

        font-size: 9px;

        line-height: 1.25;

    }


    .wholesale-options,
    .wholesale-buttons {

        gap: 3px;

    }


    .wholesale-button {

        min-height: 52px;

        padding: 5px 2px;

    }


    .wholesale-button .price,
    .wholesale-button .wholesale-price {

        font-size: 11px;

    }


    .wholesale-button strong,
    .wholesale-button .quantity,
    .wholesale-button .wholesale-quantity {

        font-size: 8px;

    }


    .wholesale-button small,
    .wholesale-button .label,
    .wholesale-button .wholesale-label {

        font-size: 7px;

    }


    .add-cart {

        min-height: 34px;

        height: 34px;

        font-size: 9px;

    }


    /* CARRITO FLOTANTE */

    .cart-button {

        right: 18px;

        bottom: 18px;

        width: 54px;

        height: 54px;

    }

}

/* ========================================
   VACIAR CARRITO
======================================== */

.clear-cart-button {

    display: block;

    width: auto;

    margin: 0 auto 12px;

    padding: 4px 8px;

    border: none;

    background: transparent;

    color: #666666;

    font-size: 11px;

    cursor: pointer;

    transition:
        color 0.2s ease;

}


.clear-cart-button:hover {

    color: #d51f2f;

}
/* ========================================
   RESPONSIVE — CELULAR
======================================== */

@media (max-width: 600px) {

    /* ==============================
       HEADER
    ============================== */

    .header-container {
        width: 100%;
        min-height: auto;

        padding: 12px;

        display: flex;
        align-items: center;
        gap: 10px;
    }


    /* ==============================
       BARRA DE CATEGORÍAS
    ============================== */

    .category-navigation {
        width: 100%;
        padding: 0;
    }


    .category-navigation-inner {
        width: 100%;
        min-height: auto;

        padding: 12px;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 12px;
    }


    /* ==============================
       LOGO
    ============================== */

    .category-logo {
        width: 100%;
        min-width: auto;

        height: 55px;

        justify-content: center;
    }


    .category-logo img {
        width: 60px;
        height: 60px;
    }


    /* ==============================
       BUSCADOR
    ============================== */

    .main-search {
        width: 100%;
        max-width: none;

        margin: 0;
    }


    .main-search input {
        width: 100%;
        height: 44px;

        font-size: 13px;

        padding-left: 16px;
        padding-right: 45px;
    }


    /* ==============================
       CATEGORÍAS
    ============================== */

    .category-buttons {

        width: 100%;

        display: flex;

        justify-content: flex-start;

        flex-wrap: nowrap;

        overflow-x: auto;

        gap: 8px;

        margin: 0;

        padding-bottom: 4px;

        scrollbar-width: none;
    }


    .category-buttons::-webkit-scrollbar {
        display: none;
    }


    .category-nav-button {

        flex-shrink: 0;

        height: 36px;

        padding: 0 15px;

        font-size: 12px;
    }


    /* ==============================
       CARRITO FLOTANTE
    ============================== */

    .header .cart-button {

        position: fixed;

        right: 18px;
        bottom: 18px;

        width: 52px;
        height: 52px;

        margin: 0;

        z-index: 9998;

        border-radius: 50%;

        background-color: #d51f2f;

        border: none;

        box-shadow:
            0 5px 20px rgba(0, 0, 0, 0.45);
    }


    #cart-count {

        top: -4px;
        right: -4px;

        width: 20px;
        height: 20px;
    }


    /* ==============================
       HERO
    ============================== */

    .hero-carousel {

        width: calc(100% - 24px);

        height: 420px;

        margin: 20px auto;

    }


    .hero-slide .hero-content {

        width: 82%;

        max-width: none;
    }


    .hero-subtitle {

        font-size: 10px;

        letter-spacing: 3px;

        margin-bottom: 12px;
    }


    .hero-slide h1 {

        font-size: 30px;

        line-height: 1.2;

        margin-bottom: 15px;
    }


    .hero-slide .hero-description {

        font-size: 13px;

        line-height: 1.5;

        margin-bottom: 22px;
    }


    .hero-button {

        padding: 11px 22px;

        font-size: 12px;
    }


    .carousel-button {

        width: 36px;
        height: 36px;

        font-size: 25px;
    }


    .carousel-prev {
        left: 8px;
    }


    .carousel-next {
        right: 8px;
    }


    /* ==============================
       CATÁLOGO
    ============================== */

    .catalog {

        width: 100%;

        padding: 55px 15px;

        margin: 0 auto;
    }


    .catalog-title {

        margin-bottom: 35px;
    }


    .catalog-title p {

        font-size: 9px;

        letter-spacing: 3px;
    }


    .catalog-title h2 {

        font-size: 26px;
    }


    /* ==============================
       PRODUCTOS
    ============================== */

    .products-container {

        width: 100%;

        display: grid;

        grid-template-columns: 1fr;

        gap: 25px;
    }


    .product-card {

        width: 100%;

        max-width: 360px;

        margin: 0 auto;
    }


    .product-image {

        height: 320px;
    }


    .product-info {

        padding: 18px;
    }


    .product-name {

        font-size: 19px;
    }


    .product-description {

        font-size: 13px;
    }


    /* ==============================
       PRECIOS MAYORISTAS
    ============================== */

    .wholesale-options {

        width: 100%;

        display: grid;

        grid-template-columns: repeat(3, 1fr);

        gap: 6px;
    }


    .wholesale-button {

        min-width: 0;

        padding: 8px 4px;

        font-size: 11px;
    }


    /* ==============================
       CARRITO LATERAL
    ============================== */

    .cart-panel {

        width: 100%;

        max-width: 100%;

        z-index: 9999;
    }


    .cart-items {

        padding: 18px;
    }


    .cart-footer {

        padding: 18px;
    }


    /* ==============================
       FOOTER
    ============================== */

    footer {

        margin-top: 60px;

        padding: 25px 15px;

        font-size: 11px;
    }

}
/* ========================================
   RESPONSIVE — TABLET
======================================== */

@media (min-width: 601px) and (max-width: 900px) {

    /* ==============================
       HEADER
    ============================== */

    .header-container {
        width: 100%;

        padding: 14px 20px;

        gap: 15px;
    }


    /* ==============================
       BARRA DE CATEGORÍAS
    ============================== */

    .category-navigation {
        width: 100%;
    }


    .category-navigation-inner {
        width: 100%;

        min-height: 100px;

        padding: 12px 16px;

        gap: 18px;
    }


    /* ==============================
       LOGO
    ============================== */

    .category-logo {
        width: 70px;
        min-width: 70px;

        height: 65px;
    }


    .category-logo img {
        width: 60px;
        height: 60px;
    }


    /* ==============================
       BUSCADOR
    ============================== */

    .main-search {
        max-width: 430px;

        flex: 1;
    }


    .main-search input {
        height: 44px;

        font-size: 13px;
    }


    /* ==============================
       CATEGORÍAS
    ============================== */

    .category-buttons {

        flex: 1;

        display: flex;

        justify-content: flex-end;

        flex-wrap: wrap;

        gap: 6px;

        margin-left: 0;
    }


    .category-nav-button {

        min-width: auto;

        height: 36px;

        padding: 0 12px;

        font-size: 12px;
    }


    /* ==============================
       CARRITO
    ============================== */

    .header .cart-button {

        position: fixed;

        right: 22px;

        bottom: 22px;

        width: 52px;

        height: 52px;

        margin: 0;

        z-index: 9998;

        border-radius: 50%;

        background-color: #d51f2f;

        border: none;

        box-shadow:
            0 5px 20px rgba(0, 0, 0, 0.45);
    }


    #cart-count {

        top: -4px;

        right: -4px;

        width: 20px;

        height: 20px;
    }


    /* ==============================
       HERO
    ============================== */

    .hero-carousel {

        width: calc(100% - 40px);

        height: 430px;

        margin: 25px auto;
    }


    .hero-slide .hero-content {

        width: 75%;

        max-width: 650px;
    }


    .hero-slide h1 {

        font-size: 38px;

        line-height: 1.2;
    }


    .hero-slide .hero-description {

        font-size: 14px;
    }


    /* ==============================
       CATÁLOGO
    ============================== */

    .catalog {

        width: 100%;

        max-width: 100%;

        padding: 65px 25px;
    }


    .catalog-title h2 {

        font-size: 30px;
    }


    /* ==============================
       PRODUCTOS
    ============================== */

    .products-container {

        width: 100%;

        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 25px;
    }


    .product-card {

        width: 100%;

        max-width: 330px;

        margin: 0 auto;
    }


    .product-image {

        height: 280px;
    }


    .product-info {

        padding: 18px;
    }


    /* ==============================
       PRECIOS MAYORISTAS
    ============================== */

    .wholesale-options {

        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 6px;
    }


    .wholesale-button {

        min-width: 0;

        padding: 8px 5px;

        font-size: 11px;
    }


    /* ==============================
       CARRITO LATERAL
    ============================== */

    .cart-panel {

        width: 400px;

        max-width: 90vw;

        z-index: 9999;
    }

}
/* ========================================
   RESPONSIVE — PANTALLAS GRANDES
======================================== */

@media (min-width: 1201px) {

    /* ==============================
       HEADER
    ============================== */

    .header-container {
        max-width: 1500px;

        padding-left: 35px;
        padding-right: 35px;
    }


    /* ==============================
       BARRA DE CATEGORÍAS
    ============================== */

    .category-navigation-inner {

        min-height: 105px;

        padding: 15px 25px;

        gap: 30px;
    }


    .category-logo {
        width: 90px;
        min-width: 90px;
    }


    .category-logo img {
        width: 75px;
        height: 75px;
    }


    /* ==============================
       BUSCADOR
    ============================== */

    .main-search {
        max-width: 600px;
    }


    .main-search input {
        height: 48px;

        font-size: 14px;
    }


    /* ==============================
       CATEGORÍAS
    ============================== */

    .category-buttons {
        gap: 8px;
    }


    .category-nav-button {

        height: 40px;

        padding: 0 18px;

        font-size: 13px;
    }


    /* ==============================
       HERO
    ============================== */

    .hero-carousel {

        width: calc(100% - 70px);

        max-width: 1400px;

        height: 550px;

        margin: 35px auto;
    }


    .hero-slide .hero-content {

        max-width: 800px;
    }


    .hero-slide h1 {

        font-size: 52px;

        line-height: 1.15;
    }


    .hero-slide .hero-description {

        font-size: 17px;
    }


    /* ==============================
       CATÁLOGO
    ============================== */

    .catalog {

        width: 100%;

        max-width: 1400px;

        margin: 0 auto;

        padding: 90px 40px;
    }


    .catalog-title {

        margin-bottom: 60px;
    }


    .catalog-title p {

        font-size: 12px;

        letter-spacing: 6px;
    }


    .catalog-title h2 {

        font-size: 36px;
    }


    /* ==============================
       PRODUCTOS
    ============================== */

    .products-container {

        width: 100%;

        max-width: 1200px;

        margin: 0 auto;

        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 30px;
    }


    .product-card {

        width: 100%;

        max-width: 320px;

        margin: 0 auto;
    }


    .product-image {

        height: 300px;
    }


    .product-info {

        padding: 20px;
    }


    /* ==============================
       CARRITO FLOTANTE
    ============================== */

    .header .cart-button {

        position: fixed;

        right: 30px;

        bottom: 30px;

        width: 58px;

        height: 58px;

        margin: 0;

        z-index: 9998;

        border-radius: 50%;

        background-color: #d51f2f;

        border: none;

        box-shadow:
            0 6px 25px rgba(0, 0, 0, 0.5);
    }


    #cart-count {

        top: -4px;

        right: -4px;

        width: 21px;

        height: 21px;

        font-size: 11px;
    }

}
/* ========================================
   RESPONSIVE FINAL
   PRODUCTOS Y CATÁLOGO
======================================== */


/* ========================================
   LAPTOP / PANTALLAS MEDIANAS
   901px - 1200px
======================================== */

@media (min-width: 901px) and (max-width: 1200px) {

    .catalog {
        width: 100%;
        max-width: 1200px;

        padding: 70px 30px;
    }


    .products-container {
        width: 100%;
        max-width: 1100px;

        margin: 0 auto;

        display: grid;

        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 25px;
    }


    .product-card {
        width: 100%;
        max-width: 320px;

        margin: 0 auto;
    }


    .product-image {
        height: 280px;
    }

}


/* ========================================
   TABLET
   601px - 900px
======================================== */

@media (min-width: 601px) and (max-width: 900px) {

    .catalog {
        width: 100%;

        padding: 60px 25px;
    }


    .catalog-title {
        margin-bottom: 40px;
    }


    .catalog-title h2 {
        font-size: 32px;
    }


    .products-container {
        width: 100%;

        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 25px;
    }


    .product-card {
        width: 100%;

        max-width: 320px;

        margin: 0 auto;
    }


    .product-image {
        height: 280px;
    }

}


/* ========================================
   CELULAR
   Hasta 600px
======================================== */

@media (max-width: 600px) {

    .catalog {
        width: 100%;

        padding: 55px 15px;
    }


    .catalog-title {
        margin-bottom: 35px;
    }


    .catalog-title p {
        font-size: 10px;

        letter-spacing: 4px;
    }


    .catalog-title h2 {
        font-size: 28px;
    }


    .products-container {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr;

        gap: 25px;
    }


    .product-card {
        width: 100%;

        max-width: 360px;

        margin: 0 auto;
    }


    .product-image {
        height: 300px;
    }


    .product-info {
        padding: 18px;
    }


    .product-name {
        font-size: 19px;
    }


    .product-description {
        font-size: 13px;
    }

}
/* ========================================
   MEJORA VISUAL DEL CARRITO
======================================== */


/* ========================================
   CONTROLES DE CANTIDAD
======================================== */

.cart-item-controls {
    display: flex;

    align-items: center;

    gap: 0;

    width: fit-content;

    border: 1px solid #2f2f2f;

    background-color: #111111;

    border-radius: 3px;

    overflow: hidden;
}


.cart-item-controls button {
    width: 32px;
    height: 30px;

    border: none;

    background-color: #111111;

    color: #cccccc;

    font-size: 15px;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}


.cart-item-controls button:hover {
    background-color: #1c1c1c;

    color: #d51f2f;
}


.cart-item-controls span {
    width: 32px;

    text-align: center;

    color: #ffffff;

    font-size: 13px;
}


/* ========================================
   BOTÓN ELIMINAR
======================================== */

.cart-item-controls .cart-delete {

    margin-left: 8px;

    width: 30px;
    height: 30px;

    border: none;

    background: transparent;

    color: #666666;

    font-size: 14px;
}


.cart-item-controls .cart-delete:hover {

    background: transparent;

    color: #d51f2f;
}


/* ========================================
   BOTÓN VACIAR CARRITO
======================================== */

.clear-cart-button {

    display: block;

    width: fit-content;

    margin: 0 auto 14px;

    padding: 5px 8px;

    border: none;

    background: transparent;

    color: #666666;

    font-size: 11px;

    cursor: pointer;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}


.clear-cart-button:hover {

    color: #d51f2f;
}


.clear-cart-button:active {

    opacity: 0.7;
}


/* ========================================
   BOTÓN WHATSAPP
======================================== */

.whatsapp-button {

    width: 100%;

    height: 45px;

    border: none;

    background-color: #d51f2f;

    color: #ffffff;

    font-size: 13px;

    font-weight: 500;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        opacity 0.2s ease;
}


.whatsapp-button:hover {

    background-color: #b71927;
}


.whatsapp-button:disabled {

    background-color: #333333;

    color: #777777;

    cursor: not-allowed;

    opacity: 0.7;
}

/* =========================================================
   FICHA DE PRODUCTO - BOTONES MAYORISTAS
   Alfa Warriors
   ========================================================= */

/* Contenedor de precios mayoristas */
.wholesale-section {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Título */
.wholesale-section h4,
.wholesale-section .wholesale-title {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #999;
}

/* Contenedor de los 3 botones */
.wholesale-options,
.wholesale-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
}

/* =========================================================
   BOTONES +3 / +6 / +12
   ========================================================= */

.wholesale-button {
    position: relative;

    min-height: 82px;
    padding: 12px 8px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.015)
        );

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 2px solid #e21b2d;

    border-radius: 7px;

    color: #fff;
    cursor: pointer;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

/* Texto +3, +6, +12 */
.wholesale-button strong,
.wholesale-button .quantity,
.wholesale-button .wholesale-quantity {
    color: #e21b2d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

/* "PRECIO MAYORISTA" */
.wholesale-button small,
.wholesale-button .label,
.wholesale-button .wholesale-label {
    margin-top: 5px;

    color: #8f8f8f;

    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* Precio */
.wholesale-button .price,
.wholesale-button .wholesale-price {
    margin-top: 5px;

    color: #fff;

    font-size: 17px;
    font-weight: 700;
}

/* Icono de carrito/bolsa si existe */
.wholesale-button svg,
.wholesale-button i {
    position: absolute;
    top: 12px;
    right: 10px;

    width: 17px;
    height: 17px;

    color: #777;
    opacity: 0.8;
}

/* Hover */
.wholesale-button:hover {
    transform: translateY(-2px);

    border-color: #e21b2d;

    background:
        linear-gradient(
            145deg,
            rgba(226, 27, 45, 0.10),
            rgba(255, 255, 255, 0.025)
        );

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.35),
        0 3px 10px rgba(226, 27, 45, 0.16);
}

/* Al presionar */
.wholesale-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 7px rgba(226, 27, 45, 0.2);
}


/* =========================================================
   BOTÓN PRINCIPAL "AGREGAR AL CARRITO"
   ========================================================= */

.add-cart {
    width: 100%;
    min-height: 45px;

    margin-top: 14px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    background: transparent;

    border: 1px solid #e21b2d;
    border-radius: 6px;

    color: #e21b2d;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.add-cart:hover {
    background: #e21b2d;
    color: #fff;

    box-shadow:
        0 5px 18px rgba(226, 27, 45, 0.25);

    transform: translateY(-1px);
}

.add-cart:active {
    transform: translateY(0);
}

/* Icono del carrito */
.add-cart svg,
.add-cart i {
    width: 17px;
    height: 17px;
}


/* =========================================================
   PRODUCTO AGOTADO
   ========================================================= */

.wholesale-button:disabled,
.add-cart:disabled {
    cursor: not-allowed;
    opacity: 0.45;
    transform: none;
    box-shadow: none;
}


/* =========================================================
   RESPONSIVE - CELULAR
   ========================================================= */

@media (max-width: 600px) {

    .wholesale-options,
    .wholesale-buttons {
        gap: 6px;
    }

    .wholesale-button {
        min-height: 76px;
        padding: 10px 5px;
    }

    .wholesale-button strong,
    .wholesale-button .quantity,
    .wholesale-button .wholesale-quantity {
        font-size: 10px;
    }

    .wholesale-button small,
    .wholesale-button .label,
    .wholesale-button .wholesale-label {
        font-size: 8px;
    }

    .wholesale-button .price,
    .wholesale-button .wholesale-price {
        font-size: 15px;
    }

    .add-cart {
        min-height: 44px;
        font-size: 11px;
    }
}


/* =========================================================
   PRODUCTO MUY ESTRECHO
   ========================================================= */

@media (max-width: 380px) {

    .products-container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 5px;
    }

    .product-image {
        height: 120px;
    }

    .product-info {
        padding: 6px 3px;
    }

    .product-name {
        font-size: 10px;
    }

    .add-cart {
        font-size: 8px;
        min-height: 30px;
        height: 30px;
    }

    .wholesale-options,
    .wholesale-buttons {
        grid-template-columns: 1fr;
    }

    .wholesale-button {
        min-height: 65px;
    }
}

/* ========================================
   CARRUSEL RESPONSIVE REAL PARA TELÉFONOS
======================================== */

@media (max-width: 600px) {

    .hero-slide picture,
    .hero-slide img {
        width: 100%;
        height: 100%;
    }

    .hero-slide img {
        object-fit: cover;
    }

    .hero-slide .hero-content {
        width: 82%;
        max-width: 320px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }

    .hero-slide h1 {
        font-size: clamp(24px, 7vw, 32px);
        line-height: 1.08;
    }

    .hero-slide .hero-description {
        font-size: 13px;
        line-height: 1.4;
    }

    .hero-button {
        padding: 11px 18px;
        font-size: 12px;
    }
}

/* =========================================================
   OVERRIDE DEFINITIVO — 4 PRODUCTOS POR FILA EN TELÉFONO
   Este bloque va al FINAL para evitar que reglas anteriores
   del CSS vuelvan a dejar una sola columna.
   ========================================================= */
@media screen and (max-width: 600px) {
    .products-container {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        width: 100% !important;
        max-width: none !important;
        gap: 6px !important;
        margin: 0 !important;
    }

    .product-card {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .product-image {
        width: 100% !important;
        height: 175px !important;
    }

    .product-info {
        padding: 7px 4px !important;
    }

    .product-brand {
        font-size: 10px !important;
        line-height: 1.1 !important;
        margin-bottom: 3px !important;
    }

    .product-name {
        font-size: 12px !important;
        line-height: 1.15 !important;
        margin-bottom: 4px !important;
    }

    .product-description {
        font-size: 9px !important;
        line-height: 1.2 !important;
        margin-bottom: 6px !important;
    }

    /* PRECIO DE DECANTS: se adapta al ancho de la tarjeta */
    .product-price {
        margin: 8px 0 10px !important;
        font-size: 18px !important;
        line-height: 1.05 !important;
        font-weight: 700 !important;
        overflow-wrap: anywhere !important;
    }

    /* Los 3 precios se mantienen HORIZONTALES, igual que en computadora */
    .wholesale-options,
    .wholesale-buttons {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 3px !important;
        width: 100% !important;
    }

    .wholesale-button {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 50px !important;
        height: 50px !important;
        padding: 4px 1px !important;
        box-sizing: border-box !important;
        border-radius: 7px !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 2px !important;
    }

    /* +3 UND / +6 UND / +12 UND */
    .wholesale-button span,
    .wholesale-button strong,
    .wholesale-button .quantity,
    .wholesale-button .wholesale-quantity {
        font-size: 9px !important;
        line-height: 1.05 !important;
        letter-spacing: 0 !important;
        white-space: nowrap !important;
        margin: 0 !important;
    }

    /* Precio US$ dentro del botón */
    .wholesale-button strong,
    .wholesale-button .price,
    .wholesale-button .wholesale-price {
        font-size: 8px !important;
        line-height: 1 !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
        margin: 0 !important;
    }

    .wholesale-button small,
    .wholesale-button .label,
    .wholesale-button .wholesale-label {
        display: none !important;
    }

    .add-cart {
        width: 100% !important;
        min-height: 32px !important;
        height: 32px !important;
        margin-top: 7px !important;
        padding: 2px !important;
        font-size: 9px !important;
        line-height: 1.05 !important;
        letter-spacing: .1px !important;
    }
}

@media screen and (max-width: 380px) {
    .products-container {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 4px !important;
    }

    .product-image {
        height: 145px !important;
    }

    .product-info {
        padding: 6px 3px !important;
    }

    .product-brand {
        font-size: 9px !important;
    }

    .product-name {
        font-size: 11px !important;
    }

    .product-description {
        font-size: 8px !important;
    }

    .product-price {
        font-size: 16px !important;
        margin: 7px 0 8px !important;
    }

    .wholesale-options,
    .wholesale-buttons {
        gap: 2px !important;
    }

    .wholesale-button {
        min-height: 48px !important;
        height: 48px !important;
        border-radius: 6px !important;
    }

    .wholesale-button span,
    .wholesale-button strong,
    .wholesale-button .quantity,
    .wholesale-button .wholesale-quantity {
        font-size: 5.5px !important;
    }

    .wholesale-button strong,
    .wholesale-button .price,
    .wholesale-button .wholesale-price {
        font-size: 5px !important;
    }

    .add-cart {
        min-height: 28px !important;
        height: 28px !important;
        font-size: 5.5px !important;
        margin-top: 5px !important;
    }
}


/* ============================================================
   AJUSTE FINAL MOBILE - BOTONES MAYORISTAS SUTILES
   4 productos por fila sin estirar visualmente los botones
   ============================================================ */
@media screen and (max-width: 600px) {
    .wholesale-options,
    .wholesale-buttons {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 3px !important;
        width: 100% !important;
        align-items: center !important;
    }

    .wholesale-button {
        width: 90% !important;
        min-width: 0 !important;
        max-width: none !important;
        height: 34px !important;
        min-height: 34px !important;
        justify-self: center !important;
        padding: 2px 1px !important;
        border-radius: 5px !important;
        border-width: 1px !important;
        gap: 1px !important;
        box-shadow: none !important;
    }

    .wholesale-button span,
    .wholesale-button strong,
    .wholesale-button .quantity,
    .wholesale-button .wholesale-quantity {
        font-size: 6px !important;
        line-height: 1 !important;
    }

    .wholesale-button .price,
    .wholesale-button .wholesale-price {
        font-size: 5px !important;
        line-height: 1 !important;
    }

    .add-cart {
        width: 92% !important;
        min-width: 0 !important;
        height: 28px !important;
        min-height: 28px !important;
        margin: 5px auto 0 !important;
        padding: 2px 3px !important;
        border-radius: 5px !important;
        border-width: 1px !important;
        font-size: 6px !important;
        letter-spacing: 0 !important;
        box-shadow: none !important;
    }
}

@media screen and (max-width: 380px) {
    .wholesale-options,
    .wholesale-buttons {
        gap: 2px !important;
    }

    .wholesale-button {
        width: 88% !important;
        height: 31px !important;
        min-height: 31px !important;
        border-radius: 4px !important;
    }

    .wholesale-button span,
    .wholesale-button strong,
    .wholesale-button .quantity,
    .wholesale-button .wholesale-quantity {
        font-size: 5.5px !important;
    }

    .wholesale-button .price,
    .wholesale-button .wholesale-price {
        font-size: 4.5px !important;
    }

    .add-cart {
        width: 90% !important;
        height: 26px !important;
        min-height: 26px !important;
        font-size: 5.5px !important;
        border-radius: 4px !important;
    }
}


/* =========================================================
   AJUSTE FINAL — 2 PRODUCTOS POR FILA EN TELÉFONO
   ========================================================= */
@media screen and (max-width: 600px) {
    .products-container {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
    }

    .product-card {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
    }

    .product-image {
        height: 175px !important;
    }

    .product-info {
        padding: 9px 7px !important;
    }

    .product-brand { font-size: 10px !important; }
    .product-name { font-size: 12px !important; }
    .product-description { font-size: 9px !important; }

    .product-price {
        font-size: 18px !important;
        line-height: 1.05 !important;
    }

    .wholesale-options,
    .wholesale-buttons {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 4px !important;
        width: 100% !important;
    }

    .wholesale-button {
        min-width: 0 !important;
        width: 100% !important;
        min-height: 52px !important;
        height: 52px !important;
        padding: 4px 2px !important;
        border-radius: 7px !important;
    }

    .wholesale-button span,
    .wholesale-button .quantity,
    .wholesale-button .wholesale-quantity {
        font-size: 9px !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }

    .wholesale-button strong,
    .wholesale-button .price,
    .wholesale-button .wholesale-price {
        font-size: 8px !important;
        line-height: 1 !important;
    }

    .add-cart {
        min-height: 36px !important;
        height: 36px !important;
        font-size: 9px !important;
        padding: 3px 5px !important;
    }
}

@media screen and (max-width: 380px) {
    .products-container {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 6px !important;
    }

    .product-image { height: 145px !important; }
    .product-info { padding: 7px 5px !important; }
    .product-brand { font-size: 9px !important; }
    .product-name { font-size: 11px !important; }
    .product-description { font-size: 8px !important; }
    .product-price { font-size: 16px !important; }

    .wholesale-options,
    .wholesale-buttons { gap: 3px !important; }

    .wholesale-button {
        min-height: 48px !important;
        height: 48px !important;
        padding: 3px 1px !important;
    }

    .wholesale-button span,
    .wholesale-button .quantity,
    .wholesale-button .wholesale-quantity { font-size: 8px !important; }

    .wholesale-button strong,
    .wholesale-button .price,
    .wholesale-button .wholesale-price { font-size: 7px !important; }

    .add-cart {
        min-height: 34px !important;
        height: 34px !important;
        font-size: 8px !important;
    }
}


/* ============================================================
   CARRITO MOVIL — VERSION SUTIL
   Alfa Warriors
   El catálogo permanece visible mientras se consulta el carrito.
   Escritorio/tablet: se conserva el comportamiento actual.
   ============================================================ */

@media screen and (max-width: 600px) {

    /* BOTON FLOTANTE */
    .cart-button,
    .header .cart-button {
        position: fixed !important;
        right: 12px !important;
        bottom: 12px !important;
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        min-height: 46px !important;
        padding: 0 !important;
        font-size: 19px !important;
        border-radius: 50% !important;
        z-index: 10001 !important;
    }

    #cart-count {
        top: -3px !important;
        right: -3px !important;
        width: 17px !important;
        height: 17px !important;
        min-width: 17px !important;
        font-size: 9px !important;
        border-width: 1px !important;
    }

    /* MINI CARRITO DESDE ABAJO */
    .cart-panel {
        position: fixed !important;
        top: auto !important;
        right: 12px !important;
        bottom: 12px !important;
        left: 12px !important;

        width: auto !important;
        max-width: none !important;

        height: auto !important;
        max-height: 36vh !important;
        min-height: 0 !important;

        border: 1px solid #2c2c2c !important;
        border-radius: 12px !important;

        background-color: rgba(13, 13, 13, 0.98) !important;

        box-shadow:
            0 8px 30px rgba(0, 0, 0, 0.65),
            0 0 12px rgba(213, 31, 47, 0.08) !important;

        transform: translateY(calc(100% + 30px)) !important;

        transition:
            transform 0.28s ease,
            opacity 0.28s ease !important;

        overflow: hidden !important;

        z-index: 10000 !important;
    }

    .cart-panel.active {
        transform: translateY(0) !important;
    }

    /* ENCABEZADO COMPACTO */
    .cart-header {
        padding: 10px 13px !important;
        min-height: 38px !important;
        box-sizing: border-box !important;
    }

    .cart-header h2 {
        font-size: 14px !important;
        font-weight: 500 !important;
    }

    .cart-close {
        width: 27px !important;
        height: 27px !important;
        font-size: 21px !important;
    }

    /* LISTA COMPACTA */
    .cart-items {
        padding: 4px 13px 6px !important;
        max-height: 21vh !important;
        overflow-y: auto !important;
        scrollbar-width: thin !important;
    }

    .cart-item {
        padding: 8px 0 !important;
    }

    .cart-item-info h3 {
        margin-bottom: 2px !important;
        font-size: 13px !important;
    }

    .cart-item-info p {
        font-size: 10px !important;
    }

    .cart-item-info small {
        display: block !important;
        font-size: 9px !important;
        line-height: 1.25 !important;
    }

    .cart-item-price {
        margin-top: 5px !important;
        font-size: 12px !important;
    }

    /* CONTROLES MAS PEQUEÑOS */
    .cart-item-controls {
        margin-top: 6px !important;
    }

    .cart-item-controls button {
        width: 27px !important;
        height: 27px !important;
        min-width: 27px !important;
        font-size: 13px !important;
    }

    .cart-item-controls span {
        min-width: 25px !important;
        font-size: 12px !important;
    }

    .cart-item-controls .cart-delete {
        margin-left: auto !important;
        font-size: 15px !important;
    }

    /* TITULOS DE SECCION */
    .cart-section-title {
        padding: 6px 0 4px !important;
        font-size: 10px !important;
    }

    /* RESUMEN */
    .cart-summary {
        padding: 6px 0 !important;
        font-size: 10px !important;
        line-height: 1.35 !important;
    }

    .cart-summary p {
        margin: 2px 0 !important;
    }

    /* PIE COMPACTO */
    .cart-footer {
        padding: 8px 13px 10px !important;
    }

    .cart-total {
        margin-bottom: 7px !important;
    }

    .cart-total span {
        font-size: 10px !important;
    }

    .cart-total strong {
        font-size: 16px !important;
    }

    .minimum-order-message {
        margin: 4px 0 7px !important;
        font-size: 9px !important;
        line-height: 1.3 !important;
    }

    .whatsapp-button {
        height: 34px !important;
        min-height: 34px !important;
        padding: 0 10px !important;
        font-size: 10px !important;
    }

    .clear-cart-button {
        margin: 5px auto 0 !important;
        padding: 3px 6px !important;
        font-size: 9px !important;
    }

    /* CARRITO VACIO */
    .empty-cart {
        margin: 18px 0 !important;
        padding: 10px !important;
        font-size: 11px !important;
    }
}


/* TELEFONOS PEQUEÑOS */
@media screen and (max-width: 380px) {

    .cart-button,
    .header .cart-button {
        right: 10px !important;
        bottom: 10px !important;
        width: 43px !important;
        height: 43px !important;
        min-width: 43px !important;
        min-height: 43px !important;
        font-size: 18px !important;
    }

    #cart-count {
        width: 16px !important;
        height: 16px !important;
        min-width: 16px !important;
        font-size: 8px !important;
    }

    .cart-panel {
        right: 8px !important;
        bottom: 8px !important;
        left: 8px !important;
        max-height: 35vh !important;
        border-radius: 10px !important;
    }

    .cart-header {
        padding: 8px 11px !important;
    }

    .cart-items {
        padding: 3px 11px 5px !important;
        max-height: 20vh !important;
    }

    .cart-footer {
        padding: 7px 11px 8px !important;
    }

    .whatsapp-button {
        height: 32px !important;
        min-height: 32px !important;
        font-size: 9px !important;
    }
}


/* ============================================================
   CARRUSEL MOVIL — AJUSTE FINAL
   Mantenerlo bajo y evitar deformacion de fotografias.
   Esta regla queda al final para que tenga prioridad sobre
   cualquier @media anterior del archivo.
   ============================================================ */

@media screen and (max-width: 600px) {

    .hero-carousel {
        width: calc(100% - 20px) !important;
        max-width: none !important;

        /* Proporcion horizontal similar a la referencia */
        aspect-ratio: 1.9 / 1 !important;

        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;

        margin: 10px auto !important;
        overflow: hidden !important;
    }

    .hero-slide {
        width: 100% !important;
        height: 100% !important;
        overflow: hidden !important;
    }

    .hero-slide picture {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }

    .hero-slide img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;

        /* Nunca estira la fotografia */
        object-fit: cover !important;
        object-position: center center !important;
    }

    .carousel-button {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        min-height: 32px !important;
        font-size: 21px !important;
    }

    .carousel-prev {
        left: 7px !important;
    }

    .carousel-next {
        right: 7px !important;
    }

    .carousel-dots {
        bottom: 8px !important;
        gap: 5px !important;
    }

    .carousel-dot {
        width: 7px !important;
        height: 7px !important;
    }
}

@media screen and (max-width: 380px) {

    .hero-carousel {
        width: calc(100% - 16px) !important;
        aspect-ratio: 1.9 / 1 !important;
        margin: 8px auto !important;
    }

    .carousel-button {
        width: 29px !important;
        height: 29px !important;
        min-width: 29px !important;
        min-height: 29px !important;
        font-size: 19px !important;
    }

    .carousel-prev {
        left: 5px !important;
    }

    .carousel-next {
        right: 5px !important;
    }

    .carousel-dots {
        bottom: 6px !important;
    }

    .carousel-dot {
        width: 6px !important;
        height: 6px !important;
    }
}
