/* تحسينات زر السلة */

.cart-button {
    position: relative;
    transition: all 0.3s ease;
}

.cart-button:hover {
    transform: scale(1.05);
}

.cart-button.has-items {
    background: linear-gradient(135deg, #007bff, #0056b3) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.cart-button.has-items:hover {
    background: linear-gradient(135deg, #0056b3, #004085) !important;
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* تحسين للوضع المظلم */
[data-bs-theme="dark"] .cart-button {
    border-color: rgba(255, 255, 255, 0.2);
}

[data-bs-theme="dark"] .cart-badge {
    border-color: rgba(33, 37, 41, 0.8);
}