/**
 * أنماط إشعارات سلة التسوق
 */

#notification-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: auto;
    max-width: 90%;
    direction: rtl;
}

.notification {
    padding: 12px 16px;
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    opacity: 0;
    transition: opacity 0.3s ease;
    min-width: 250px;
}

.notification-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.notification-message {
    margin-left: 10px;
    font-size: 14px;
}

.notification-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 0 5px;
    margin-right: 5px;
}

.notification-success {
    background-color: #4CAF50;
    color: #fff;
}

.notification-error {
    background-color: #F44336;
    color: #fff;
}

.notification-warning {
    background-color: #FF9800;
    color: #fff;
}

.notification-info {
    background-color: #2196F3;
    color: #fff;
}

/* أنماط أزرار السلة */
.emg-add-to-cart, .emg-buy-now-button {
    transition: all 0.3s ease;
}

.emg-add-to-cart.adding, .emg-buy-now-button.processing {
    background-color: #888;
    cursor: not-allowed;
}

.emg-add-to-cart.success {
    background-color: #4CAF50;
}

.emg-add-to-cart.error, .emg-buy-now-button.error {
    background-color: #F44336;
}

/* عداد السلة */
.cart-count {
    position: absolute;
    top: -8px;
    left: -8px;
    background-color: #F44336;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}
