/* Alerts & Toasts Premium System - Maison ROSE */
.maison-rose-toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
    width: 100%;
    max-width: 400px;
}

.mr-toast {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 24px;
    padding: 1.25rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(197, 160, 89, 0.1);
    display: flex;
    gap: 1rem;
    align-items: center;
    transform: translateX(120%);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mr-toast.show {
    transform: translateX(0);
}

.mr-toast-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mr-toast-content {
    flex-grow: 1;
}

.mr-toast-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.mr-toast-message {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.5;
}

.mr-toast-close {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
}

.mr-toast-close:hover {
    color: #0f172a;
}

/* Success variant */
.mr-toast-success .mr-toast-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

/* Error variant */
.mr-toast-error .mr-toast-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Info variant */
.mr-toast-info .mr-toast-icon {
    background: rgba(197, 160, 89, 0.1);
    color: #c5a059;
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .maison-rose-toast-container {
        top: auto;
        bottom: 5rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}
