/* LUVIA Luxury Toast Notifications */
#luvia-toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.luvia-toast {
    background: rgba(27, 48, 34, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(213, 182, 123, 0.3);
    color: #F9F8F4;
    padding: 16px 24px;
    border-radius: 2px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    pointer-events: auto;
    transform: translateX(120%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    max-width: 320px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.luvia-toast.active {
    transform: translateX(0);
}

.luvia-toast.error {
    border-left: 3px solid #ef4444;
}

.luvia-toast.success {
    border-left: 3px solid #d5b67b;
}

.luvia-toast-icon {
    flex-shrink: 0;
    color: #d5b67b;
}

.luvia-toast-message {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    line-height: 1.5;
}

.luvia-toast-close {
    margin-left: auto;
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.luvia-toast-close:hover {
    opacity: 1;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-in-right {
    opacity: 0;
    animation: slideInRight 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}