/* =============================================
   CHRISTMAS.CSS - Thème de Noël
   ============================================= */

/* TRENDS BANNER */
.trends-banner {
    position: relative;
    margin: 0;
    padding: 30px 24px;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3f 50%, #165B33 100%);
    overflow: hidden;
}

.trends-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.snowflakes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.snowflakes span {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.3;
    animation: snowfall 4s linear infinite;
}

.snowflakes span:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.snowflakes span:nth-child(2) {
    left: 30%;
    animation-delay: 0.8s;
}

.snowflakes span:nth-child(3) {
    left: 50%;
    animation-delay: 1.6s;
}

.snowflakes span:nth-child(4) {
    left: 70%;
    animation-delay: 2.4s;
}

.snowflakes span:nth-child(5) {
    left: 90%;
    animation-delay: 3.2s;
}

@keyframes snowfall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(100px) rotate(360deg);
        opacity: 0;
    }
}

.trends-content {
    position: relative;
    z-index: 2;
}

.trends-badge {
    display: inline-block;
    background: linear-gradient(135deg, #BB2528 0%, #EA4630 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(187, 37, 40, 0.4);
}

.trends-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #FFFFFF;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.trends-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 500;
}

/* SEASONAL SECTION */
.seasonal-section {
    padding: 20px 0 20px 0;
    background: linear-gradient(180deg, #165B33 0%, var(--bg-body) 100%);
}

#christmas-scroll {
    display: flex;
    gap: 14px;
    padding: 0 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

#christmas-scroll::-webkit-scrollbar {
    display: none;
}

/* SEASONAL CARDS */
.seasonal-card {
    flex: 0 0 160px;
    min-width: 160px;
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    scroll-snap-align: start;
    cursor: pointer;
}

.seasonal-card:active {
    transform: scale(0.96);
}

.seasonal-img {
    height: 100px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.eco-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 4px 10px 4px 12px;
    font-size: 0.7rem;
    font-weight: 900;
    border-bottom-left-radius: 10px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    letter-spacing: 0.5px;
}

.seasonal-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 700;
}

.seasonal-body {
    padding: 12px;
}

.seasonal-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.seasonal-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}