
/* Modern BOGO Frontend Notifications */
.bogo-notification {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 24px;
    border-radius: 16px;
    margin: 20px 0;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bogo-notification::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.bogo-cart-notification {
    background: linear-gradient(135deg, #48bb78 0%, #38ef7d 100%);
    border-left: 4px solid rgba(255, 255, 255, 0.3);
}

.bogo-product-notification {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    text-align: center;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
}

.bogo-notification strong {
    font-weight: 700;
}

.bogo-notification.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2); }
    50% { transform: scale(1.02); box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3); }
    100% { transform: scale(1); box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2); }
}

.bogo-notification.active {
    background: linear-gradient(135deg, #48bb78 0%, #38ef7d 100%);
}

.bogo-notification.pending {
    background: linear-gradient(135deg, #ed8936 0%, #f093fb 100%);
}

@media (max-width: 768px) {
    .bogo-notification {
        padding: 16px 20px;
        font-size: 14px;
        margin: 16px 0;
        border-radius: 12px;
    }
}

@media (prefers-color-scheme: dark) {
    .bogo-notification {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }
}

.bogo-notification:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

@media print {
    .bogo-notification {
        background: #333 !important;
        color: white !important;
        box-shadow: none !important;
        border: 1px solid #333 !important;
    }
}
