.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #2D1B0E;
    color: #E5C28B;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 999999;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    pointer-events: none;
}
.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.cart-notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background: #2D1B0E;
    color: #E5C28B;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.85rem;
    z-index: 999999;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}
.cart-notif-enter { opacity: 0; transform: translateX(30px); }
.cart-notif-enter.cart-notif-exit { opacity: 0; transform: translateX(30px); }
.cart-notification:not(.cart-notif-enter) { opacity: 1; transform: translateX(0); }
.cart-notification.cart-notif-exit { opacity: 0; transform: translateX(30px); }

.alert-notification {
    position: fixed;
    top: 80px;
    right: 20px;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.85rem;
    z-index: 999999;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    max-width: 360px;
}
.alert-notification.alert-success { background: #e8f5e9; color: #1b5e20; border-left: 4px solid #1b5e20; }
.alert-notification.alert-error { background: #fbe9e7; color: #b71c1c; border-left: 4px solid #b71c1c; }
.alert-notification.alert-warning { background: #fff8e1; color: #e65100; border-left: 4px solid #e65100; }
.alert-notification.alert-info { background: #e3f2fd; color: #0d47a1; border-left: 4px solid #0d47a1; }
.alert-enter { opacity: 0; transform: translateX(30px); }
.alert-exit { opacity: 0; transform: translateX(30px); }
.alert-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; opacity: 0.6; padding: 0 0 0 12px; }
.alert-content { display: flex; align-items: center; justify-content: space-between; }
.alert-message { flex: 1; }
