/* Notification Styles */
.site-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-notification-show {
    transform: translateY(0);
    opacity: 1;
}

.site-notification-content {
    padding: 12px 20px;
    border-radius: var(--cart-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    min-width: 280px;
    max-width: 400px;
}

.site-notification-content.success {
    background-color: #2ecc71; /* Solid green background */
    border: 1px solid #27ae60;
}

.site-notification-content.error {
    background-color: #e74c3c; /* Solid red background */
    border: 1px solid #c0392b;
}

/* Ensure SVG icons are visible */
.site-notification-content svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Animation for notification */
@keyframes notificationSlideIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes notificationSlideOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100px);
        opacity: 0;
    }
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .site-notification {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
    
    .site-notification-content {
        justify-content: center;
        min-width: auto;
        width: 100%;
    }
} 