/* ========================================
   HOLIDAY MARQUEE BANNER - AANDA Labs
   ======================================== */

.holiday-marquee {
    background: linear-gradient(90deg, #dc2626, #16a34a, #dc2626);
    background-size: 200% 100%;
    animation: holidayGradient 3s ease infinite;
    overflow: hidden;
    padding: 10px 0;
    position: relative;
}

@keyframes holidayGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.holiday-marquee-track {
    display: flex;
    animation: holidayScroll 20s linear infinite;
    white-space: nowrap;
}

.holiday-text {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 0 50px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

@keyframes holidayScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Sparkle effect */
.holiday-marquee::before,
.holiday-marquee::after {
    content: '✨';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    animation: sparkle 1s ease-in-out infinite;
}

.holiday-marquee::before {
    left: 10px;
}

.holiday-marquee::after {
    right: 10px;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateY(-50%) scale(1.2); }
}

/* Responsive */
@media (max-width: 768px) {
    .holiday-text {
        font-size: 0.9rem;
    }
}
