/* ==========================================
            TARJETAS DE PRODUCTOS
========================================== */

.products-grid {
    display: grid;
    /* CAMBIAMOS auto-fit POR auto-fill */
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); 
    gap: 30px;
}

/* Tarjeta */

.product-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 5px 18px rgba(0,0,0,.08);

    transition:.35s;

    position:relative;

    cursor:pointer;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 35px rgba(0,0,0,.18);

}

/* Imagen */

.product-image{

    width:100%;

    height:250px;

    background:#f5f5f5;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

}

.product-image img{

    width:90%;

    transition:.4s;

}

.product-card:hover img{

    transform:scale(1.08);

}

/* Favorito */

.favorite{

    position:absolute;

    top:15px;

    right:15px;

    width:42px;

    height:42px;

    border-radius:50%;

    background:white;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

    transition:.3s;

}

.favorite:hover{

    background:#e63946;

    color:white;

}

/* Oferta */

.offer{

    position:absolute;

    top:15px;

    left:15px;

    background:#e63946;

    color:white;

    padding:6px 14px;

    border-radius:50px;

    font-size:13px;

    font-weight:bold;

}

/* Información */

.product-info{

    padding:20px;

}

/* Marca */

.brand{

    color:#888;

    font-size:14px;

    margin-bottom:6px;

}

/* Nombre */

.product-title{

    font-size:20px;

    font-weight:700;

    margin-bottom:12px;

    color:#111;

}

/* Estrellas */

.rating{

    color:#ffc107;

    margin-bottom:15px;

}

/* Precio */

.price{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:20px;

}

.current-price{

    font-size:24px;

    font-weight:800;

    color:#111;

}

.old-price{

    color:#999;

    text-decoration:line-through;

}

/* Botón */

.add-cart{

    width:100%;

    height:50px;

    border:none;

    border-radius:10px;

    background:#111;

    color:white;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.add-cart:hover{

    background:#e63946;

}

/* Etiquetas */

.tags{

    display:flex;

    gap:8px;

    margin-top:15px;

    flex-wrap:wrap;

}

.tag{

    background:#efefef;

    padding:6px 12px;

    border-radius:20px;

    font-size:12px;

}

/* Animación */

.product-card{

    animation:fadeUp .5s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}