/* استایل‌های سبد خرید */

/* آیکون سبد خرید */
.my-cart-icon {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.my-cart-icon:hover {
    transform: scale(1.1);
}

.my-cart-badge {
    position: absolute;
    top: -20px;
    /* right: -8px; */
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    /* width: 20px; */
    /* height: 20px; */
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.notification-badge   {
    position: absolute;
      color: #74ff00;
      font-size: 1.5rem;
      left: 0;
    right: 0;
}
/* دکمه اضافه کردن به سبد خرید */
.add-to-cart {
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.add-to-cart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* مودال سبد خرید */
#my-cart-modal .modal-dialog {
    max-width: 800px;
}

#my-cart-modal .modal-body {
    max-height: 500px;
    overflow-y: auto;
}

/* جدول سبد خرید */
#my-cart-table img {
    border-radius: 4px;
    object-fit: cover;
}

.my-product-quantity {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.my-product-quantity:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.my-product-remove {
    transition: all 0.3s ease;
}

.my-product-remove:hover {
    transform: scale(1.1);
    background-color: #c82333;
}

/* انیمیشن حذف آیتم */
.cart-item-removing {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s ease;
}

/* لودینگ */
.cart-loading {
    position: relative;
}

.cart-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* پیام‌های سبد خرید */
.cart-message {
    padding: 15px;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid transparent;
}

.cart-message.success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.cart-message.error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.cart-message.info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

/* فرم اطلاعات مشتری */
#customer-info-form .form-group {
    margin-bottom: 20px;
}

#customer-info-form label {
    font-weight: 600;
    margin-bottom: 5px;
}

#customer-info-form .form-control {
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    font-size: 16px;
}

#customer-info-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

/* دکمه‌های عملیات */
.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.cart-actions .btn {
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cart-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* ریسپانسیو */
@media (max-width: 768px) {
    #my-cart-modal .modal-dialog {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .cart-actions .btn {
        width: 100%;
    }
    
    #my-cart-table {
        font-size: 14px;
    }
    
    #my-cart-table img {
        width: 40px;
        height: 40px;
    }
}

/* انیمیشن اضافه کردن به سبد خرید */
@keyframes addToCart {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.add-to-cart-animation {
    animation: addToCart 0.6s ease-in-out;
}

/* استایل برای سبد خرید خالی */
.empty-cart {
    text-align: center;
    padding: 40px 20px;
}

.empty-cart i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-cart h4 {
    color: #666;
    margin-bottom: 15px;
}

.empty-cart p {
    color: #999;
    margin-bottom: 25px;
}

/* استایل برای جمع کل */
.cart-total {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.cart-total .total-label {
    font-weight: 600;
    color: #495057;
}

.cart-total .total-amount {
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
}

