/* PRODUCTOS */

.product-container{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
}

.product-card{
    width:300px;
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,.1);
    transition:.3s;
    text-align:center;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.product-card h3{
    margin-top:15px;
    color:#ff1493;
}

.product-card p{
    margin:15px 0;
    font-size:18px;
    font-weight:bold;
}

.product-card button{
    background:#ff1493;
    color:white;
    border:none;
    padding:12px 25px;
    border-radius:25px;
    cursor:pointer;
    margin-bottom:20px;
    transition:.3s;
}

.product-card button:hover{
    background:#d60075;
}

/* CARRITO */

#carrito{
    background:white;
    border-radius:20px;
    margin:50px auto;
    max-width:900px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

#lista-carrito{
    margin:20px 0;
}

.item-carrito{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px;
    border-bottom:1px solid #ddd;
}

.item-carrito span{
    font-weight:bold;
}

#carrito h3{
    text-align:center;
    margin:20px 0;
    color:#ff1493;
}

#carrito button{
    display:block;
    margin:20px auto;
    padding:12px 25px;
    border:none;
    border-radius:25px;
    background:#ff1493;
    color:white;
    cursor:pointer;
    transition:.3s;
}

#carrito button:hover{
    background:#d60075;
}