/* ==========================================================================
   SAVEURS — page "Nos saveurs" : visuel des 6 saveurs et pastilles colorées.
   ========================================================================== */

.flav-hero {
    margin-top: 50px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--ligne)
}

.flav-hero img {
    width: 100%
}

.chips2 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px
}

.fchip {
    padding: 11px 18px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: #000;
    transition: transform .2s
}

.fchip:hover {
    transform: translateY(-3px) scale(1.03)
}

/* ==========================================================================
   GAMMES — blocs alternes image/texte presentant les 3 gammes (Pouch,
   Booster, Gummies) sur la page "Saveurs".
   ========================================================================== */

.gamme-intro-text {
    color: #c2c2be;
    font-size: 16px;
    line-height: 1.7;
    max-width: 820px;
    margin-top: 28px
}

.gamme-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 60px
}

.gamme-row:first-of-type {
    margin-top: 48px
}

.gamme-row.rev .gamme-media {
    order: 2
}

.gamme-row.rev .gamme-copy {
    order: 1
}

.gamme-media {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--ligne);
    background: var(--noir2)
}

.gamme-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.gamme-tag {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--lime);
    border: 1px solid var(--ligne);
    border-radius: 999px;
    padding: 8px 16px;
    margin-bottom: 18px
}

.gamme-copy h3 {
    font-family: var(--disp);
    font-style: italic;
    text-transform: uppercase;
    font-weight: 700;
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: .98;
    margin-bottom: 16px
}

.gamme-copy p {
    color: #c2c2be;
    font-size: 15.5px;
    line-height: 1.65;
    max-width: 520px
}

.gamme-chips {
    margin-top: 22px
}

.gamme-chips .fchip {
    font-size: 12px;
    padding: 9px 15px
}

@media(max-width:860px) {
    .gamme-row {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 44px
    }

    .gamme-row.rev .gamme-media,
    .gamme-row.rev .gamme-copy {
        order: initial
    }

    .gamme-media {
        aspect-ratio: 16/10
    }
}
