/* ============ CARRITO ============ */

/* Overlay oscuro */
.carrito-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.carrito-overlay.show {
    opacity: 1;
    visibility: visible;
}

.carrito-popup {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100vh;
    background: white;
    z-index: 9999;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: none;
    overflow-y: auto;
}

.carrito-popup.show {
    transform: translateX(0);
    display: block;
}

/* Header del popup */
.carrito-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #dee2e6;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}

/* Items del carrito */
.carrito-items {
    padding: 15px;
    max-height: calc(100vh - 300px);
    overflow-y: auto;
}

.carrito-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.carrito-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.carrito-item-info {
    flex: 1;
}

.carrito-item-info h6 {
    font-size: 14px;
    margin-bottom: 5px;
}

.carrito-item-cantidad {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

/* Total */
.carrito-total {
    padding: 20px;
    border-top: 2px solid #dee2e6;
    position: sticky;
    bottom: 0;
    background: white;
}

/* Carrito vacío */
.carrito-empty {
    text-align: center;
    padding: 60px 20px;
}

/* Badge del carrito */
#carrito-badge {
    font-size: 10px;
    padding: 3px 6px;
}

.finish-cart{
    margin-top: 15px;
}

.void-cart{
    margin-top: 15px;
}