/* نظام السلة الجديد - تصميم متقدم ومتجاوب */

/* تنبيهات النظام */
[data-cart-message] {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    font-size: 14px;
    max-width: 320px;
    backdrop-filter: blur(10px);
    animation: slideIn 0.3s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-cart-message].bg-green-500 {
    background: rgba(34, 197, 94, 0.95);
    color: white;
}

[data-cart-message].bg-red-500 {
    background: rgba(239, 68, 68, 0.95);
    color: white;
}

[data-cart-message].bg-blue-500 {
    background: rgba(59, 130, 246, 0.95);
    color: white;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* شارة عدد العناصر في السلة */
[data-cart-count], [data-header-cart-badge] {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.4);
    animation: bounce 0.5s ease-out;
}

@keyframes bounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(-5px);
    }
}

/* تحسين أزرار السلة */
[data-action="add-to-cart"] {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

[data-action="add-to-cart"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

[data-action="add-to-cart"]:active {
    transform: translateY(0);
}

[data-action="add-to-cart"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* تأثيرات خيارات الكمية */
[data-bulk-order-id] {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

[data-bulk-order-id]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

[data-bulk-order-id]:hover::before {
    left: 100%;
}

[data-bulk-order-id].selected {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: scale(1.02);
}

/* تحسين عرض عناصر السلة */
[data-cart-item] {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: white;
}

[data-cart-item]:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

[data-cart-item].removing {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s ease;
}

/* أزرار التحكم في الكمية */
[data-action="update-quantity"] {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    color: #374151;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: bold;
}

[data-action="update-quantity"]:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

[data-action="update-quantity"]:active {
    transform: scale(0.95);
}

/* حقل إدخال الكمية */
[data-cart-quantity-input] {
    width: 60px;
    text-align: center;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 6px;
    font-weight: 600;
    color: #374151;
}

[data-cart-quantity-input]:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* أزرار الحذف */
[data-action="remove-from-cart"] {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

[data-action="remove-from-cart"]:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

[data-action="remove-from-cart"]:active {
    transform: translateY(0);
}

/* تحسين عرض الأسعار */
[data-cart-total] {
    font-weight: 700;
    color: #dc2626;
    font-size: 1.1em;
}

/* تأثيرات التحميل */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f6;
    border-top: 2px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* حالة السلة الفارغة */
[data-cart-container]:empty::before {
    content: '🛒 سلة التسوق فارغة';
    display: block;
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    font-size: 18px;
    font-weight: 500;
}

/* تحسينات للموبايل */
@media (max-width: 768px) {
    [data-cart-message] {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        font-size: 13px;
        padding: 12px 16px;
    }
    
    [data-bulk-order-id] {
        padding: 12px;
        margin-bottom: 8px;
    }
    
    [data-action="add-to-cart"] {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
    }
    
    [data-cart-item] {
        margin-bottom: 12px;
        padding: 16px;
    }
    
    [data-action="update-quantity"] {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    [data-cart-quantity-input] {
        width: 70px;
        padding: 8px;
        font-size: 16px;
    }
}

/* تأثيرات خاصة لأيقونة السلة */
[data-cart-icon] {
    transition: transform 0.3s ease;
}

[data-cart-icon].animate-bounce {
    animation: cartBounce 1s ease-in-out;
}

@keyframes cartBounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0) scale(1);
    }
    40% {
        transform: translateY(-8px) scale(1.1);
    }
    80% {
        transform: translateY(-4px) scale(1.05);
    }
}

/* نمط dark mode (اختياري) */
@media (prefers-color-scheme: dark) {
    [data-cart-item] {
        background: #1f2937;
        border-color: #374151;
        color: white;
    }
    
    [data-action="update-quantity"] {
        background: #374151;
        border-color: #4b5563;
        color: #f9fafb;
    }
    
    [data-action="update-quantity"]:hover {
        background: #4b5563;
        border-color: #6b7280;
    }
    
    [data-cart-quantity-input] {
        background: #374151;
        border-color: #4b5563;
        color: #f9fafb;
    }
}
