/* BODY */
body{
    font-family:'Poppins', sans-serif;
}

/* CONTENEDOR PRINCIPAL */
.carousel{
    position: relative; /* 🔥 CLAVE */
    width:1080px;
    margin: 40px auto;
    overflow: hidden;
}

.carousel-wrapper{
    display:flex;
    align-items:center;
    justify-content:center; /* 🔥 centra todo el bloque */
    gap:10px; /* espacio chico entre btn y cards */
    width:100%;
    margin:40px auto;
}


/* VIEWPORT */
.carousel-viewport{
    overflow: hidden;
    width: 100%;
}

/* TRACK (SLIDER) */
.productos-track{
    display:flex;
    gap:20px;
    transition: transform 0.4s ease;
}

/* CARD (🔥 clave absoluta) */
.producto-card{
    flex: 0 0 160px; /* 🔥 IGUAL al width */
    width: 200px;

    aspect-ratio:4/6;
    background:#f3f3f3;
    border-radius:10px;
    padding:20px;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.producto-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

/* IMAGEN */
.producto-imagen{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
}

.producto-imagen img{
    max-width:150%;
    max-height:100%;
    object-fit:contain;
}

/* TEXTOS */
.producto-titulo{
    font-size:12px;
    font-weight:700;
    margin:0 0 5px;
    padding-top: 15px;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.producto-categoria{
    font-size:10px;
    color:#6f6f6f;
    background:#e9e9e9;
    padding:3px 8px;
    border-radius:6px;
    width:fit-content;
}

.producto-precios{
    display:flex;
    flex-direction:column;
    padding-top: 10px;
}

.producto-precio{
    font-weight:700;
    font-size:14px;
    color:#00812b;
}

.producto-precio-normal{
    font-size:11px;
    color:#8a8a8a;
    text-decoration:line-through;
    margin-bottom: 2px;
}

.producto-boton{
    font-size:9px;
    padding:5px 10px;
    background:#111;
    color:#fff;
    border-radius:20px;
    text-decoration:none;
}

.producto-footer{
    display:flex;
    justify-content:space-between;
    align-items:flex-end; 
}



.producto-cuotas{
    font-size:9px;
    margin-top: 10px;
    color:#6f6f6f;
    padding-top: 10px;
    
}



/* BADGE */
.producto-badge{
    position:absolute;
    top:0;
    left:0;
    background:#00812b;
    color:#fff;
    font-size:14px;
    padding:4px 6px;
    border-radius:6px;
    font-weight:700;
    letter-spacing:0.5px;
}



/* BOTONES */
.carousel-btn{
    position:absolute;
    top:38%;
    transform:translateY(-50%);
    
    background:#000;
    color:#fff;
    border:none;
    width:40px;
    height:40px;
    border-radius:50%;
    cursor:pointer;

    z-index:10;
}

/*  los sacamos hacia afuera */
.prev{
    left: 180px;
}

.next{
    right: 180px;
}

@media (max-width:768px){

    .carousel{
        width:100%;
    }

    .producto-card{
        flex: 0 0 calc(50% - 10px); /* 🔥 2 cards */
        width: calc(50% - 10px);
        padding:12px;
    }

    .productos-track{
        gap:15px;
    }

    .carousel-btn{
        width:30px;
        height:30px;
    }

    .prev{
        left:10px;
    }

    .next{
        right:10px;
    }

}

.carousel-viewport{
    touch-action: pan-y; /* 🔥 evita scroll horizontal bug */
}

