/* General */
.float-whatsapp{
    position:fixed;
    width:60px;
    content: 'Te asesoramos por whatsapp';
    height:60px;
    bottom:140px;
    right:40px;
    background-color:#F1C30F;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    box-shadow: 2px 2px 3px #999;
    z-index:100;
}
.float-trolley{
    position:fixed;
    width:60px;
    height:60px;
    bottom:220px;
    right:40px;
    background-color:#F1C30F;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    box-shadow: 2px 2px 3px #999;
    z-index:100;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Estilos para dispositivos con un ancho de pantalla máximo de 767px */
@media only screen and (max-width: 767px) {
    .float-whatsapp{
        bottom:80px;
        right:10px;
        width: 60px;
        height: 60px;
    }
}

/* Products section */
.card-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    /*align-items: top;*/
    flex-wrap: wrap;
    gap: 50px;
}
.card-container .card {
    width: 320px;
    height: auto;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    transition: all 0.5s ease;
}
.card-container .card img {
    width: 320px;
    height: 320px;
    margin-bottom: 30px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}
.card-container .card div.card-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding:20px;
    gap: 20px;
    text-align: center;
}

/* Cart section */
.cart-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    /*align-items: top;*/
    flex-wrap: wrap;
    gap: 50px;
}
.cart-container .items {
    min-width: 320px;
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cart-container .items .item {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    transition: all 0.5s ease;
}
.cart-container .items .item img {
    width: 200px;
    height: auto;
    object-fit: cover;
}
.cart-container .items .item .item-content {
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    text-align: center;
}
.cart-container .items .item .item-content .buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.cart-container .items .item .item-content .buttons button {
    width: 30px !important;
    height: 30px !important;
    padding: 10px !important;
    font-weight: bold;
    cursor: pointer;
}

.cart-container .resume {
    min-width: 320px;
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    transition: all 0.5s ease;
}
.cart-container .resume .resume-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cart-container .resume .resume-content .resume-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
}
hr {
    width: 100%;
    border: 1px solid #000;
}