/*==================================================
PRODUCTOS DESTACADOS SIMPLE Y PREMIUM
==================================================*/

.products{
    padding:90px 0;
    background:#FFF;
}

.product-card{
    position:relative;
    background:#FFF;
    border:1px solid #EDF1F7;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.05);
    transition:.3s ease;
    display:flex;
    flex-direction:column;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 22px 45px rgba(0,0,0,.10);
}

/* Imagen */

.product-image{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:260px;
    padding:26px 20px 10px;
}

.product-image img{
    width:100%;
    max-width:240px;
    object-fit:contain;
    transition:.3s ease;
}

.product-card:hover .product-image img{
    transform:scale(1.03);
}

/* Badges */

.product-badge{
    position:absolute;
    top:16px;
    left:16px;
    background:#10B981;
    color:#FFF;
    font-size:12px;
    font-weight:700;
    padding:6px 12px;
    border-radius:20px;
}

.product-discount{
    position:absolute;
    top:16px;
    right:16px;
    background:#EF4444;
    color:#FFF;
    font-size:12px;
    font-weight:700;
    padding:6px 12px;
    border-radius:20px;
}

/* Info */

.product-info{
    padding:0 22px 18px;
    display:flex;
    flex-direction:column;
    gap:5px;
    flex:1;
}

.product-brand{
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#1F5EFF;
}

.product-title{
    font-size:24px;
    line-height:1.15;
    font-weight:700;
    color:#101828;
    margin:2px 0 10px;
}

.product-spec{
    font-size:14px;
    line-height:1.45;
    color:#667085;
    margin:0;
}

.product-spec strong{
    color:#111827;
    font-weight:700;
}

/* Footer */

.product-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 22px 22px;
    border-top:1px solid #F1F5F9;
}

.price-current{
    font-size:28px;
    font-weight:800;
    color:#101828;
}

/* Bot贸n carrito */

.product-cart{
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:#F3F7FF;
    color:#1F5EFF;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:2px;
    cursor:pointer;
    transition:.25s ease;
}

.product-cart i{
    font-size:15px;
}

.product-cart .plus-icon{
    font-size:10px;
}

.product-cart:hover{
    background:#1F5EFF;
    color:#FFF;
    transform:translateY(-2px);
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;
}

@media (max-width:992px){
    .products-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media (max-width:576px){
    .products-grid{
        grid-template-columns:repeat(2,1fr);
        gap:16px;
    }
}

/* =========================================
   CORRECCIÓN SWIPER MÓVIL
========================================= */

.products .swiper{
    width:100%;
    overflow:hidden;
}

.products .swiper-wrapper{
    align-items:stretch;
}

.products .swiper-slide{
    display:flex;
    justify-content:center;
    height:auto;
    box-sizing:border-box;
}

@media (max-width:767px){

.products .swiper{
padding:0 12px;
}

.products .swiper-slide{
width:auto;
}

.products .product-card{
width:100%;
max-width:170px;
margin:0 auto;
}

}