/* ============================================ */
/* NOTIFICATION & OFFER BANNERS                 */
/* ============================================ */

/* Notification Banner */
.notification-banner {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    animation: slideIn 0.5s ease;
}

.notification-banner:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.notification-banner-content {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-2xl);
    color: white;
    position: relative;
}

.notification-banner-content i {
    font-size: 1.5rem;
    animation: bellRing 2s ease infinite;
}

.notification-banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.notification-banner-text strong {
    font-size: 1rem;
    font-weight: 700;
}

.notification-banner-text span {
    font-size: 0.875rem;
    opacity: 0.95;
}

.notification-banner-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.notification-banner-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Special Offer Banner */
.special-offer-banner {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.5s ease;
    position: relative;
}

.special-offer-banner::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%;
    }
}

.special-offer-banner-content {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-2xl);
    color: white;
    position: relative;
    z-index: 1;
}

.special-offer-banner-content i {
    font-size: 1.75rem;
    animation: gift 1s ease infinite;
}

@keyframes gift {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.special-offer-banner-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.special-offer-banner-text strong {
    font-size: 1rem;
    font-weight: 700;
}

.special-offer-banner-text span {
    font-size: 0.875rem;
    opacity: 0.95;
}

.special-offer-banner-text strong {
    font-size: 1rem;
}

.special-offer-banner-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.special-offer-banner-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Bell Ring Animation */
@keyframes bellRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: rotate(10deg);
    }
    20%, 40%, 60%, 80% {
        transform: rotate(-10deg);
    }
}

/* Slide In Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Banner Adjustments */
@media (max-width: 768px) {
    .notification-banner-content,
    .special-offer-banner-content {
        padding: var(--space-md) var(--space-lg);
        gap: var(--space-md);
    }
    
    .notification-banner-content i,
    .special-offer-banner-content i {
        font-size: 1.25rem;
    }
    
    .notification-banner-text strong,
    .special-offer-banner-text strong {
        font-size: 0.875rem;
    }
    
    .notification-banner-text span,
    .special-offer-banner-text span {
        font-size: 0.75rem;
    }
    
    .notification-banner-close,
    .special-offer-banner-close {
        width: 28px;
        height: 28px;
    }
}

/* Print Styles - Hide banners when printing */
@media print {
    .notification-banner,
    .special-offer-banner {
        display: none !important;
    }
}
