/* ==========================================================================
   PRODUIT — page "Le produit" : grille des ingrédients, mode d'emploi en
   3 étapes, tableau comparatif FUEL vs energy drink / café.
   ========================================================================== */

/* ING */
.ing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 52px
}

.ic {
    background: var(--card);
    border: 1px solid var(--ligne);
    border-radius: 12px;
    padding: 26px;
    transition: border-color .3s, transform .25s;
    will-change: transform
}

.ic:hover {
    border-color: var(--lime)
}

.ic .amt {
    font-family: var(--disp);
    font-style: italic;
    font-size: 34px;
    color: var(--lime)
}

.ic h4 {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin: 8px 0
}

.ic p {
    font-size: 13.5px;
    color: var(--gris);
    line-height: 1.5
}

/* STEPS */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px
}

.step {
    position: relative;
    text-align: center;
    padding: 34px 22px;
    background: var(--card);
    border: 1px solid var(--ligne);
    border-radius: 14px;
    overflow: hidden
}

.step .n {
    position: absolute;
    top: -16px;
    right: 12px;
    font-family: var(--disp);
    font-style: italic;
    font-size: 120px;
    color: rgba(229, 248, 44, .09);
    line-height: 1;
    pointer-events: none
}

.step .nn {
    font-family: var(--disp);
    font-style: italic;
    font-size: 30px;
    color: var(--lime);
    line-height: 1;
    position: relative
}

.step h4 {
    font-family: var(--disp);
    font-style: italic;
    font-size: 22px;
    text-transform: uppercase;
    margin: 12px 0 8px;
    position: relative
}

.step p {
    color: #c2c2be;
    font-size: 14px;
    line-height: 1.5;
    position: relative
}

/* COMPARE */
.cmp {
    margin-top: 50px;
    border: 1px solid var(--ligne);
    border-radius: 12px;
    overflow: hidden
}

.crow {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr
}

.crow>div {
    padding: 20px 18px;
    border-bottom: 1px solid var(--ligne);
    font-size: 14.5px;
    display: flex;
    align-items: center;
    justify-content: center
}

.crow>div:first-child {
    justify-content: flex-start;
    color: #d2d2ce;
    font-weight: 600
}

.crow.head>div {
    font-family: var(--disp);
    font-style: italic;
    text-transform: uppercase;
    font-size: 16px
}

.crow.head .us {
    color: var(--lime)
}

.crow:last-child>div {
    border-bottom: none
}

.col-us {
    background: rgba(229, 248, 44, .06)
}

.yes {
    color: var(--lime);
    font-weight: 800;
    font-size: 18px
}

.no {
    color: #54545a;
    font-size: 18px
}

@media(max-width:900px) {

    .ing,
    .steps {
        grid-template-columns: 1fr
    }

    .crow>div {
        padding: 14px 8px;
        font-size: 12px
    }
}

/* ==========================================================================
   HERO BOUTIQUE (page /produit/ — reprise du design "acheter-v5")
   Scope : .hero.hero-shop uniquement, pour ne pas impacter les heros
   des autres pages qui partagent css/hero.css.
   ========================================================================== */
.hero.hero-shop {
    padding: 60px 0 24px;
    background: var(--noir);
    position: relative;
    overflow: hidden;
    display: block;
    min-height: 0
}

.hero.hero-shop .wrap {
    position: relative;
    z-index: 1;
    display: block
}

/* Traits de vitesse animés */
.hero-shop .speed {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .5
}

.hero-shop .speed span {
    position: absolute;
    height: 2px;
    width: 34%;
    background: linear-gradient(90deg, transparent, rgba(229, 248, 44, .55), transparent);
    animation: fpdash 3.2s linear infinite;
    transform: rotate(-14deg)
}

.hero-shop .speed span:nth-child(1) {
    top: 16%;
    animation-delay: 0s
}

.hero-shop .speed span:nth-child(2) {
    top: 38%;
    animation-delay: 1s;
    animation-duration: 2.6s
}

.hero-shop .speed span:nth-child(3) {
    top: 60%;
    animation-delay: .5s;
    animation-duration: 3.8s
}

.hero-shop .speed span:nth-child(4) {
    top: 80%;
    animation-delay: 1.6s;
    animation-duration: 3s
}

@keyframes fpdash {
    from { left: -40% }
    to { left: 110% }
}

@media (prefers-reduced-motion:reduce) {
    .hero-shop .speed { display: none }
}

.hero-shop h1.h-xl {
    font-size: clamp(2.5rem, 7vw, 4.4rem);
    line-height: 1.05
}

.hero-shop .sub {
    color: #BBB;
    max-width: 560px;
    margin-top: 16px;
    font-size: 1rem
}

.hero-shop .sub b {
    color: #FFF
}

/* Badges de réassurance */
.hero-shop .hero-badges {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    margin-top: 20px
}

.hero-shop .hero-badges span {
    border: 1px solid var(--ligne);
    border-radius: 999px;
    padding: 7px 13px;
    font-size: .76rem;
    font-weight: 600;
    color: #CCC;
    background: #0C0C0C
}

/* Chiffres clés */
.hero-shop .hero-stats {
    display: flex;
    gap: 26px;
    margin-top: 26px;
    flex-wrap: wrap
}

.hero-shop .hstat b {
    font-family: var(--disp);
    font-style: italic;
    font-size: 1.9rem;
    color: var(--lime);
    display: block;
    line-height: 1
}

.hero-shop .hstat b span {
    font-size: 1rem
}

.hero-shop .hstat>span {
    font-size: .74rem;
    color: #999
}

/* Séparateur ECG */
.ecg {
    border-top: 1px solid var(--ligne);
    border-bottom: 1px solid var(--ligne);
    background: #0C0C0C;
    padding: 8px 0;
    overflow: hidden
}

.ecg svg {
    display: block;
    width: 220%;
    height: 34px;
    max-width: none;
    animation: fpecg 7s linear infinite
}

@keyframes fpecg {
    to { transform: translateX(-50%) }
}

@media (prefers-reduced-motion:reduce) {
    .ecg svg {
        animation: none;
        width: 100%
    }
}

/* ==========================================================================
   BANDEAU DEFILANT (sous l'ECG, page /produit/)
   Fond sombre + texte gris, separateurs "/" en jaune.
   ========================================================================== */
.marquee {
    overflow: hidden;
    border-bottom: 1px solid var(--ligne);
    padding: 12px 0;
    background: #0C0C0C
}

.marquee-track {
    display: flex;
    gap: 30px;
    white-space: nowrap;
    width: max-content;
    animation: fpmq 24s linear infinite;
    font-family: var(--disp);
    font-style: italic;
    text-transform: uppercase;
    font-size: .92rem;
    color: #888
}

.marquee-track em {
    color: var(--lime);
    font-style: italic
}

@keyframes fpmq {
    to { transform: translateX(-50%) }
}

@media (prefers-reduced-motion:reduce) {
    .marquee-track { animation: none }
}

/* ==========================================================================
   MOMENTS + AVIS (page /produit/)
   Reutilise la carte .ic existante ; on n'ajoute que le picto, le badge
   format et les etoiles.
   ========================================================================== */
.ing.moments {
    grid-template-columns: repeat(4, 1fr)
}

.ing.avis {
    grid-template-columns: repeat(3, 1fr)
}

.ic.mo,
.ic.av {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.ic .pic {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(229, 248, 44, .35);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 248, 44, .05);
    flex-shrink: 0
}

.ic .pic svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--lime);
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ic.mo h4,
.ic.av b {
    margin: 0
}

.ic.mo p,
.ic.av p {
    flex: 1;
    margin: 0
}

.ic .fmt {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--lime);
    border: 1px solid rgba(229, 248, 44, .35);
    background: rgba(229, 248, 44, .06);
    border-radius: 999px;
    padding: 5px 11px
}

.ic .stars {
    color: var(--lime);
    font-size: 15px;
    letter-spacing: .12em
}

.ic.av p {
    font-size: 14.5px;
    color: var(--blanc);
    line-height: 1.6
}

.ic.av b {
    font-size: 12.5px;
    color: var(--gris);
    font-weight: 700
}

@media (max-width:900px) {
    .ing.moments { grid-template-columns: repeat(2, 1fr) }
    .ing.avis { grid-template-columns: 1fr }
}

@media (max-width:560px) {
    .ing.moments { grid-template-columns: 1fr }
}
