.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.notification {
    pointer-events: auto;
    min-width: 300px;
    max-width: 450px;
    background: rgba(10, 16, 32, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-left: 4px solid var(--gold);
    color: var(--cream);
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
    opacity: 0;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.hide {
    transform: translateX(120%);
    opacity: 0;
}

.notification-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notification-content {
    flex-grow: 1;
}

.notification-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--gold);
}

.notification-message {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
    padding: 0;
    margin: 0 !important;
    width: auto !important;
}

.notification-close:hover {
    opacity: 1;
}

/* Types */
.notification-success { border-left-color: #2EAA76; }
.notification-success .notification-title { color: #2EAA76; }

.notification-error { border-left-color: #C45A1A; }
.notification-error .notification-title { color: #C45A1A; }

.notification-warning { border-left-color: #FF8C00; }
.notification-warning .notification-title { color: #FF8C00; }

.notification-info { border-left-color: #C9A84C; }
.notification-info .notification-title { color: #C9A84C; }
