
/* Badge del carrito */
.cart-badge { 
    position: absolute; 
    top: -6px; 
    right: -10px; 
    font-size: .7rem; 
}

/* Drawer (panel lateral del carrito) */
.drawer { 
    position: fixed; 
    top: 0; 
    right: -420px; 
    width: 380px; 
    height: 100%; 
    background: #fff; 
    box-shadow: -4px 0 18px rgba(0,0,0,.15); 
    transition: right .3s ease; 
    z-index: 1055; 
}

.drawer.open { 
    right: 0; 
}

.drawer-header { 
    padding: 1rem; 
    border-bottom: 1px solid #eee; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
}

.drawer-body { 
    padding: 1rem; 
    overflow-y: auto; /* Cambiado a overflow-y para scroll vertical */
    height: calc(100% - 145px); /* Ajustado para el footer */
}

.drawer-footer { 
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem; 
    border-top: 1px solid #eee; 
    background-color: #fff;
}

/* Estilos para los items del carrito */
.cart-item {
    display: flex;
    margin-bottom: 1rem;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 1rem;
    border-radius: 4px;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-details h6 {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.cart-item-details .text-muted {
    font-size: 0.8rem;
}

.cart-item-actions {
    text-align: right;
}

.cart-item-actions .price {
    display: block;
    margin-bottom: 0.25rem;
}
