/* =========================
   PRODUCTOS POPULARES
========================= */

.productos-populares{
    padding:100px 7%;

    background:#faf8f5;
}

/* =========================
   SWIPER
========================= */

.productosSwiper{
    padding:15px 5px 60px;
}

/* =========================
   CARD PRODUCTO
========================= */

.producto-card{
    position:relative;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.35s ease;
}

.producto-card:hover{
    transform:translateY(-8px);
}

/* =========================
   BADGE
========================= */

.producto-badge{
    position:absolute;

    top:18px;
    left:18px;

    z-index:3;

    background:#d6b98c;

    color:#222;

    padding:8px 14px;

    border-radius:50px;

    font-size:12px;
    font-weight:700;
}

/* =========================
   IMAGEN
========================= */

.producto-img{
    display:block;

    height:320px;

    overflow:hidden;
}

.producto-img img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:.5s ease;
}

.producto-card:hover img{
    transform:scale(1.08);
}

/* =========================
   INFO
========================= */

.producto-info{
    padding:25px;
}

.producto-categoria{
    display:block;

    color:#999;

    font-size:13px;

    margin-bottom:10px;

    text-transform:uppercase;

    letter-spacing:1px;
}

.producto-info h3{
    font-size:24px;

    color:#222;

    margin-bottom:18px;

    line-height:1.3;
}

/* =========================
   PRECIOS
========================= */

.producto-precios{
    display:flex;
    align-items:center;
    gap:12px;

    margin-bottom:22px;
}

.precio{
    font-size:26px;
    font-weight:800;

    color:#222;
}

.precio-old{
    color:#aaa;

    text-decoration:line-through;

    font-size:16px;
}

/* =========================
   BOTON
========================= */

.btn-producto{
    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;

    padding:15px;

    border-radius:16px;

    background:#222;

    color:#fff;

    font-weight:700;

    transition:.3s ease;
}

.btn-producto:hover{
    background:#d6b98c;

    color:#222;
}

/* =========================
   FLECHAS SWIPER
========================= */

.swiper-button-next,
.swiper-button-prev{
    width:50px !important;
    height:50px !important;

    border-radius:50%;

    background:#fff;

    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size:18px !important;

    color:#222;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .productos-populares{
        padding:80px 5%;
    }

    .producto-img{
        height:260px;
    }

    .producto-info h3{
        font-size:20px;
    }

}