.mini-cart-popup {
position: fixed;
top: 80px;
right: 20px;
width: 320px;
background: #fff;
border: 1px solid #ddd;
box-shadow: 0 4px 16px rgba(0,0,0,0.15);
z-index: 9999;
display: none;
border-radius: 8px;
overflow: hidden;
}
.mini-cart-popup.activo {
display: block;
animation: fadeIn 0.3s ease;
}
.mini-cart-header {
display: flex;
align-items: center;
justify-content: space-between;
background: #e6f9ee;
color: #107744;
padding: 10px 15px;
font-weight: bold;
}
.cerrar-mini-cart {
background: none;
border: none;
font-size: 18px;
cursor: pointer;
}
.mini-cart-producto {
display: flex;
gap: 10px;
padding: 15px;
}
.mini-cart-producto img {
width: 64px;
height: 64px;
object-fit: cover;
border-radius: 4px;
}
.mini-cart-acciones {
display: flex;
justify-content: space-between;
padding: 15px;
}
.btn-ver-carrito,
.btn-comprar {
padding: 8px 12px;
border-radius: 5px;
text-align: center;
font-weight: bold;
color: white;
}
.btn-ver-carrito {
background: #5c5c5c;
}
.btn-comprar {
background: #d60000;
}