/* Notifications Toast - Les Bougies Sterel */

.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1rem;
    z-index: 10000;
    transform: translateX(150%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification i {
    font-size: 1.3rem;
}

.notification-success {
    border-left: 4px solid #27ae60;
}

.notification-success i {
    color: #27ae60;
}

.notification-info {
    border-left: 4px solid #1B2A4A;
}

.notification-info i {
    color: #1B2A4A;
}

.notification-error {
    border-left: 4px solid #e74c3c;
}

.notification-error i {
    color: #e74c3c;
}

.notification-warning {
    border-left: 4px solid #f39c12;
}

.notification-warning i {
    color: #f39c12;
}

@media (max-width: 600px) {
    .notification {
        bottom: 20px;
        right: 20px;
        left: 20px;
        transform: translateY(150%);
    }
    .notification.show {
        transform: translateY(0);
    }
}
