/* ===== SKA BEAUTY - PRODUCTOS EXTRA ===== */

.product-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
}

/* TARJETAS MÁS BONITAS */
.product-card{
    width:280px;
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    transition:0.3s;
    text-align:center;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,0.2);
}

/* IMAGEN */
.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

/* TEXTO */
.product-card h3{
    color:#ff1493;
    margin:10px 0;
}

.product-card p{
    font-weight:bold;
}

/* BOTÓN */
.product-card button{
    margin:15px 0;
    background:#ff1493;
    color:white;
    border:none;
    padding:10px 20px;
    border-radius:20px;
    cursor:pointer;
    transition:0.3s;
}

.product-card button:hover{
    background:#d60075;
    transform:scale(1.05);
}