
  
  body {
            background-color: #121212;
            color: #F2F2F2;
            font-family: 'Outfit', sans-serif;
        }

        .card-hover:hover {
            transform: translateY(-5px);
            transition: all 0.3s ease;
        }

/* ── Section Promo Été ───────────────────────────────────────────────────── */
.promo-ete {
    padding: 72px 0;
    background: linear-gradient(135deg, #1a0000 0%, #121212 50%, #1a0000 100%);
}

.promo-ete__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #990000;
    color: white;
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.promo-ete__badge-icon {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

.promo-ete__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.promo-ete__desc {
    color: #9ca3af;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    line-height: 1.6;
}

.promo-ete__pills {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.promo-ete__pill {
    background: #1E1E1E;
    border: 1px solid rgba(153,0,0,0.4);
    color: #F2F2F2;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.promo-ete__pill-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.promo-ete__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #990000;
    color: white;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.2s;
}

.promo-ete__cta:hover {
    background: #FF3333;
}

@media (max-width: 640px) {
    .promo-ete {
        padding: 48px 0;
    }

    .promo-ete__badge {
        font-size: 10px;
        letter-spacing: 1px;
        padding: 5px 14px;
        text-align: center;
    }

    .promo-ete__title {
        font-size: 1.75rem;
    }

    .promo-ete__desc {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .promo-ete__pills {
        gap: 8px;
        margin-bottom: 28px;
    }

    .promo-ete__pill {
        padding: 8px 14px;
        font-size: 13px;
    }

    .promo-ete__cta {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}