/* Holiday Banner Styles */
.holiday-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3f 50%, #1a472a 100%);
    color: white;
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.4s ease;
}

.holiday-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.holiday-banner-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 50px 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.holiday-banner-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.holiday-banner-text {
    text-align: center;
}

.holiday-banner-title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.holiday-banner-message {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.holiday-banner-message strong {
    color: #ffd700;
}

.holiday-banner-subtext {
    display: block;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 5px;
}

.holiday-banner-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    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: background 0.3s;
}

.holiday-banner-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.holiday-banner-close .material-icons {
    font-size: 18px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .holiday-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 15px 40px 15px 15px;
        gap: 10px;
    }
    
    .holiday-banner-icon {
        font-size: 1.5rem;
    }
    
    .holiday-banner-title {
        font-size: 0.9rem;
    }
    
    .holiday-banner-message {
        font-size: 0.85rem;
    }
    
    .holiday-banner-close {
        right: 10px;
        top: 10px;
        transform: none;
    }
}