/* Premium Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.1));
    border-left: 4px solid var(--primary-gold, #D4AF37);
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    pointer-events: auto;
    font-family: 'Outfit', sans-serif;
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    font-size: 20px;
    color: var(--primary-gold, #D4AF37);
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
    color: #fff;
}

.toast-message {
    font-size: 13px;
    color: #ccc;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.2s;
}

.toast-close:hover {
    color: #fff;
}

/* Variants */
.toast.success {
    border-left-color: var(--success-green, #00ff88);
}
.toast.success .toast-icon {
    color: var(--success-green, #00ff88);
}

.toast.error {
    border-left-color: var(--accent-red, #ef4444);
}
.toast.error .toast-icon {
    color: var(--accent-red, #ef4444);
}

.toast.warning {
    border-left-color: #f59e0b;
}
.toast.warning .toast-icon {
    color: #f59e0b;
}

@media (max-width: 480px) {
    .toast-container {
        top: 20px; /* Safe area top handled by OS usually, but good to have spacing */
        right: 20px;
        left: 20px;
        align-items: center;
    }
    
    .toast {
        width: 100%;
        min-width: auto;
    }
}
