/* Estilos para controles de cantidad en las cards */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e7b71d;
    border-radius: 6px;
    padding: 4px;
    background: #fff;
}

.qty-btn {
    background: #e7b71d;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
}

.qty-btn:hover {
    background: #d47e16;
    transform: scale(1.1);
}

.qty-btn:active {
    transform: scale(0.95);
}

.quantity {
    color: #392c28;
    font-weight: 600;
    font-size: 16px;
    min-width: 20px;
    text-align: center;
}

.cart-info {
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 12px;
    text-align: center;
    border-left: 3px solid #e7b71d;
}

.cart-info small {
    color: #666;
    font-weight: 500;
}

#cartSummary {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .quantity-controls {
        gap: 6px;
    }
    
    .qty-btn {
        width: 28px;
        height: 28px;
    }
    
    .quantity {
        font-size: 14px;
    }
}