/**
 * Toast Notification Styles
 * For cart actions and user feedback
 *
 * @package BukhariShop
 * @since 1.0.0
 */

/* ============================================
   Base Notification
   ============================================ */

.bukhari-notification {
    position: fixed;
    top: 100px;
    right: -400px;
    background: rgba(45, 10, 31, 0.95);
    border: 2px solid var(--bukhari-gold);
    border-radius: 8px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    min-width: 300px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.bukhari-notification.show {
    right: 20px;
}

.bukhari-notification i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.bukhari-notification span {
    color: var(--bukhari-gold);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ============================================
   Notification Types
   ============================================ */

.bukhari-notification--success {
    border-color: #22c55e;
}

.bukhari-notification--success i {
    color: #22c55e;
}

.bukhari-notification--error {
    border-color: #ef4444;
}

.bukhari-notification--error i {
    color: #ef4444;
}

.bukhari-notification--info {
    border-color: var(--bukhari-pink);
}

.bukhari-notification--info i {
    color: var(--bukhari-pink);
}

.bukhari-notification--warning {
    border-color: #f59e0b;
}

.bukhari-notification--warning i {
    color: #f59e0b;
}

/* ============================================
   Mobile Responsive
   ============================================ */

@media (max-width: 768px) {
    .bukhari-notification {
        min-width: 280px;
        top: 80px;
        right: -350px;
    }

    .bukhari-notification.show {
        right: 15px;
    }

    .bukhari-notification span {
        font-size: 0.9rem;
    }
}