/**
 * Estilos del Carrito de Compras
 */

/* Item del carrito */
.cart-item {
    transition: all 0.3s ease;
}

.cart-item:hover {
    background-color: #f8f9fa;
}

.cart-item-image {
    max-height: 100px;
    object-fit: contain;
}

.cart-item-name {
    color: #333;
    font-weight: 500;
    transition: color 0.2s;
}

.cart-item-name-link:hover .cart-item-name {
    color: #0d6efd;
}

/* Input de cantidad */
.cart-item .input-group {
    max-width: 120px;
}

.cart-item .input-group input {
    border-left: 0;
    border-right: 0;
}

.cart-item .input-group input:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

.cart-item .input-group button {
    border-color: #dee2e6;
}

.cart-item .input-group button:hover {
    background-color: #e9ecef;
}

/* Precios */
.cart-item-price {
    color: #198754;
    font-size: 1.1em;
}

.cart-item-subtotal {
    color: #0d6efd;
    font-size: 1.1em;
}

/* Responsive */
@media (max-width: 767px) {
    .cart-item-image {
        max-height: 80px;
    }
    
    .cart-item .input-group {
        max-width: 100%;
    }
}

/* Animación de carga */
.cart-item.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Resumen sticky */
@media (min-width: 992px) {
    .sticky-top {
        z-index: 10;
    }
}

/* Divisores */
.divide-y > div:not(:last-child) {
    border-bottom: 1px solid #e9ecef;
}

/* Carrito vacío */
.cart-empty-icon {
    color: #dee2e6;
}

/* Botón de checkout */
#btn-checkout {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

/* Badge de descuento */
.cart-item-discount-badge .badge {
    font-size: 0.7em;
    font-weight: 600;
}

/* Animación para agregar al carrito */
@keyframes addToCart {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.cart-count.animate {
    animation: addToCart 0.3s ease;
}
