/* ==========================================================
   Pages de contenu (livraison, pros, FAQ, calendrier, anglais),
   avis clients, services, carte, vidéo
   ========================================================== */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.section__note { margin: 0; font-size: 14px; color: var(--ink-soft); }
.prose-lg { font-size: 17px; }
.prose-lg h3 { font-size: 24px; margin: 1.4em 0 .5em; }

/* Chiffres clés */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.fact { display: grid; gap: 4px; padding: 20px; border-radius: 22px; background: var(--cream); }
.fact .ico { width: 44px; height: 44px; padding: 10px; margin-bottom: 8px; border-radius: 50%; background: #fff; color: var(--forest); }
.fact span { font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.fact strong { font-family: var(--serif); font-size: 21px; font-weight: 600; line-height: 1.2; }
.fact--lime { background: var(--lime); }

/* Texte + encadré / formulaire */
.split-text { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(24px, 5vw, 64px); align-items: start; }
.split-text--form { grid-template-columns: 1fr 1.05fr; }
.split-text > * { min-width: 0; }
.zones { padding: 26px; display: grid; gap: 12px; position: sticky; top: 96px; }
.zones h2 { display: flex; align-items: center; gap: 10px; font-size: 24px; }
.zones p { margin: 0; color: var(--ink-soft); }
.zones__list { list-style: none; margin: 0 0 6px; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.zones__list li { padding: 6px 12px; border-radius: 999px; background: #fff; font-size: 14px; font-weight: 600; }
.pro-tags { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.pro-tags li { padding: 8px 14px; border-radius: 999px; background: var(--lime); font-weight: 600; font-size: 14px; }
.form__alt { margin: 4px 0 0; font-size: 14px; color: var(--ink-soft); }
.form__alt a { color: var(--brand); font-weight: 700; text-decoration: underline; }
.form select { font: inherit; padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); }

/* Bandeau d'appel à l'action */
.cta-band { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px; margin-top: 32px; padding: clamp(24px, 4vw, 44px); border-radius: var(--radius); background: var(--forest); color: var(--cream); }
.cta-band h2 { font-size: clamp(26px, 3vw, 38px); color: var(--paper); }
.cta-band p { margin: 8px 0 0; color: rgba(243,236,221,.78); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* FAQ */
.faq { display: grid; gap: 10px; }
.faq__item { border-radius: 20px; background: #fff; box-shadow: var(--shadow); overflow: hidden; }
.faq__item summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 22px; cursor: pointer; list-style: none; font-weight: 700; font-size: 16.5px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; flex: none; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--lime); font-size: 20px; font-weight: 600; transition: transform .25s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__answer { padding: 0 22px 20px; color: var(--ink-soft); }
.faq-page { display: grid; gap: 34px; }
.faq-group h2 { font-size: clamp(26px, 3vw, 34px); margin-bottom: 14px; }

/* Calendrier des fruits */
.season-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.season-card { display: grid; gap: 4px; align-content: start; padding: 20px; border-radius: 22px; background: var(--cream); transition: transform .2s; }
.season-card:hover { transform: translateY(-3px); }
.season-card.is-current { background: var(--forest); color: var(--cream); }
.season-card.is-current small, .season-card.is-current .season-card__list { color: rgba(243,236,221,.75); }
.season-card__fruits { display: flex; gap: 4px; margin-bottom: 10px; }
.season-card__fruits .fruit { width: 34px; height: 34px; }
.season-card strong { font-family: var(--serif); font-size: 24px; }
.season-card small { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.season-card__list { margin-top: 8px; font-size: 13.5px; color: var(--ink-soft); }
.calendar { overflow-x: auto; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.calendar table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: 14px; }
.calendar th, .calendar td { padding: 8px 6px; border-bottom: 1px solid var(--line); text-align: center; }
.calendar thead th { position: sticky; top: 0; background: var(--paper); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); }
.calendar tbody th { text-align: left; font-weight: 600; white-space: nowrap; }
.calendar__fruit { display: flex; align-items: center; gap: 10px; }
.fruit--sm { width: 22px; height: 22px; }
.fruit--sm::after { width: 8px; height: 6px; top: -3px; }
.calendar td.is-on::before { content: ""; display: block; height: 22px; border-radius: 999px; background: linear-gradient(90deg, var(--light), var(--dark)); }
.calendar .is-now { background: rgba(200,241,105,.18); }
.calendar thead .is-now { background: var(--lime); color: var(--ink); }

/* Avis clients */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; }
.review { margin: 0; padding: 24px; border-radius: 22px; background: var(--cream); display: grid; gap: 12px; }
.review__stars { color: var(--orange); letter-spacing: 2px; }
.review__stars .is-off { color: rgba(21,48,31,.2); }
.review blockquote { margin: 0; font-family: var(--serif); font-size: 19px; line-height: 1.4; }
.review figcaption { font-size: 14px; color: var(--ink-soft); }
.review figcaption strong { color: var(--ink); }

/* Cartes de services */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.services--3 { grid-template-columns: repeat(3, 1fr); margin-top: 16px; }
.service { display: grid; gap: 6px; align-content: start; padding: 22px; border-radius: 22px; background: #fff; box-shadow: var(--shadow); transition: transform .2s; }
.service:hover { transform: translateY(-3px); }
.service__icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 6px; border-radius: 14px; background: var(--lime); color: var(--ink); }
.service strong { font-family: var(--serif); font-size: 19px; font-weight: 600; line-height: 1.2; }
.service > span:last-child { font-size: 14px; color: var(--ink-soft); }

/* Vidéo (chargée au clic) et carte */
.video-facade { position: relative; aspect-ratio: 16 / 9; max-width: 960px; border-radius: var(--radius); overflow: hidden; background: var(--forest); cursor: pointer; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: opacity .2s, transform .6s; }
.video-facade:hover img { opacity: 1; transform: scale(1.02); }
.video-facade__play { position: absolute; inset: 0; margin: auto; display: grid; place-items: center; width: 84px; height: 84px; border-radius: 50%; background: var(--lime); color: var(--ink); box-shadow: 0 12px 30px -10px rgba(0,0,0,.5); transition: transform .2s; }
.video-facade:hover .video-facade__play { transform: scale(1.08); }
.video-facade iframe { width: 100%; height: 100%; border: 0; }
.video-caption { max-width: 960px; margin: 12px 0 0; font-size: 14px; color: var(--ink-soft); }
.map { aspect-ratio: 21 / 9; border-radius: var(--radius); overflow: hidden; background: var(--cream); }
.map iframe { width: 100%; height: 100%; border: 0; }

/* Page anglaise */
.en-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.en-card { padding: 28px; display: grid; gap: 10px; align-content: start; }
.en-card h2 { font-size: 26px; }
.en-card p { margin: 0; color: var(--ink-soft); }
.tile--dark.en-card p { color: rgba(243,236,221,.78); }
.tile--dark.en-card .link { color: var(--lime); }
.en-note { margin: 14px 0 0; font-size: 14px; color: var(--ink-soft); text-align: center; }

/* Bandeau vert : motif de feuilles + composition à droite */
.band {
    position: relative; overflow: hidden;
    background-color: var(--lime);
    background-image:
        radial-gradient(60% 90% at 85% 50%, rgba(255, 255, 255, .35), transparent 70%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cg fill='%231d3f2a' fill-opacity='.07'%3E%3Cpath d='M18 30c-6-10-2-22 8-26 2 12-1 20-8 26z'/%3E%3Cpath d='M54 66c-6-10-2-22 8-26 2 12-1 20-8 26z'/%3E%3Ccircle cx='52' cy='14' r='3'/%3E%3Ccircle cx='14' cy='56' r='2.5'/%3E%3C/g%3E%3C/svg%3E");
    background-size: auto, 72px 72px;
}
.band__inner { display: grid; grid-template-columns: 1.35fr 1fr; gap: 32px; align-items: center; }
.band__visual { position: relative; justify-self: center; width: 320px; height: 320px; }
.band__ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: band-spin 26s linear infinite; }
.band__ring text { font: 700 11.5px var(--sans); letter-spacing: .18em; fill: var(--forest); }
.band__photo { position: absolute; inset: 54px; border-radius: 50%; overflow: hidden; border: 6px solid var(--paper); box-shadow: 0 24px 50px -20px rgba(21, 48, 31, .55); }
.band__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }
.band__fruit { position: absolute; box-shadow: 0 10px 20px -10px rgba(21, 48, 31, .5); }
.band__fruit--1 { width: 64px; height: 64px; top: 18px; right: 6px; }
.band__fruit--2 { width: 46px; height: 46px; bottom: 34px; left: 0; }
.band__fruit--3 { width: 38px; height: 38px; top: 40px; left: 24px; }
.band__chip { position: absolute; right: -24px; bottom: 26px; display: flex; align-items: center; gap: 10px; padding: 10px 16px 10px 12px; border-radius: 18px; background: var(--forest); color: var(--paper); box-shadow: 0 16px 30px -14px rgba(21, 48, 31, .7); font-size: 12px; line-height: 1.25; }
.band__chip .ico { flex: none; width: 34px; height: 34px; padding: 7px; border-radius: 50%; background: var(--lime); color: var(--forest); }
.band__chip strong { display: block; font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--lime); }
@keyframes band-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: no-preference) {
    .band__fruit { animation: float 5s ease-in-out infinite; }
    .band__fruit--2 { animation-delay: -1.7s; animation-duration: 6s; }
    .band__fruit--3 { animation-delay: -3.2s; animation-duration: 7s; }
}
@media (prefers-reduced-motion: reduce) { .band__ring { animation: none; } }

@media (max-width: 1080px) {
    .band__inner { grid-template-columns: 1fr 260px; }
    .band__visual { width: 260px; height: 260px; }
    .band__photo { inset: 44px; }
    .band__chip { right: -8px; }
}
@media (max-width: 760px) {
    .band__inner { grid-template-columns: 1fr; gap: 12px; }
    .band__visual { width: 220px; height: 220px; margin-top: 8px; }
    .band__photo { inset: 36px; border-width: 4px; }
    .band__ring text { font-size: 13px; }
    .band__fruit--1 { width: 48px; height: 48px; }
    .band__chip { right: auto; left: 50%; bottom: -6px; transform: translateX(-50%); white-space: nowrap; }
}

@media (max-width: 1080px) {
    .facts, .services, .season-cards { grid-template-columns: repeat(2, 1fr); }
    .split-text, .split-text--form { grid-template-columns: 1fr; }
    .zones { position: static; }
}
@media (max-width: 760px) {
    .facts { grid-template-columns: 1fr 1fr; gap: 8px; }
    .fact { padding: 16px; }
    .fact strong { font-size: 17px; }
    .services, .services--3, .en-grid { grid-template-columns: 1fr; }
    .map { aspect-ratio: 4 / 3; }
    .season-cards { grid-template-columns: 1fr; }
}

/* ==========================================================
   Vrais fruits et légumes détourés qui flottent
   ========================================================== */
.floaty { position: relative; width: 100%; height: 100%; }
.floaty__item { position: absolute; display: block; filter: drop-shadow(0 22px 20px rgba(0, 0, 0, .32)) drop-shadow(0 4px 6px rgba(0, 0, 0, .18)); }
.floaty__item img { width: 100%; height: auto; }

/* Bloc « panier de saison » (fond vert foncé) */
.season-feature__visual { display: block; padding: 0; }
.season-feature__visual .floaty { position: absolute; inset: 22px 18px 40px; }

/* Configurateur (fond crème) */
.builder__visual { position: relative; display: block; height: 190px; margin-bottom: 18px; }
.floaty--builder .floaty__item { filter: drop-shadow(0 16px 14px rgba(21, 48, 31, .22)); }
.floaty--builder .floaty__item--1 { width: 30%; left: 0; top: 18%; z-index: 2; }
.floaty--builder .floaty__item--2 { width: 26%; left: 22%; top: 0; z-index: 3; }
.floaty--builder .floaty__item--3 { width: 28%; left: 44%; top: 26%; z-index: 4; }
.floaty--builder .floaty__item--4 { width: 24%; left: 66%; top: 2%; z-index: 2; }
.floaty--builder .floaty__item--5 { width: 22%; left: 80%; top: 40%; z-index: 3; }

/* Bandeau vert */
.band__fruit { position: absolute; display: block; box-shadow: none; filter: drop-shadow(0 14px 14px rgba(21, 48, 31, .35)); }
.band__fruit img { width: 100%; height: auto; }
.band__fruit--1 { width: 92px; top: -22px; right: -52px; z-index: 2; }
.band__fruit--2 { width: 84px; bottom: 26px; left: -18px; z-index: 2; }
.band__fruit--3 { width: 70px; top: 20px; left: 4px; z-index: 2; }

/* Menu mobile : carte panier de saison */
.mnav__season-fruits span { width: 42px; height: 42px; margin-left: -12px; border-radius: 0; background: none; box-shadow: none; filter: drop-shadow(0 6px 6px rgba(21, 48, 31, .3)); }
.mnav__season-fruits span img { width: 100%; height: 100%; object-fit: contain; }

/* Fruits du configurateur et du calendrier qui ont une photo détourée */
.fruit--cutout { background: none; border-radius: 0; overflow: visible; box-shadow: none; filter: drop-shadow(0 6px 6px rgba(21, 48, 31, .25)); }
.fruit--cutout img { object-fit: contain; }

@media (max-width: 1080px) {
    .season-feature__visual { min-height: 280px; }
}
@media (max-width: 760px) {
    .season-feature__visual { min-height: 240px; }
    .builder__visual { height: 150px; }
    .band__fruit--1 { width: 72px; } .band__fruit--2 { width: 64px; left: -6px; } .band__fruit--3 { width: 54px; }
}

/* ---------- Page « Donner mon avis » ---------- */
.review-steps { display: grid; gap: 10px; padding-left: 1.2em; }
.stars-input { border: 0; padding: 0; margin: 0; display: grid; gap: 6px; }
.stars-input legend { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
/* Les notes sont dans l'ordre 5 → 1 : l'affichage inversé permet de colorer les étoiles précédentes au survol */
.stars-input__choices { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.stars-input__radio { position: absolute; opacity: 0; width: 1px; height: 1px; }
.stars-input__choices label { cursor: pointer; font-size: 34px; line-height: 1; color: var(--line); transition: color .15s, transform .15s; }
.stars-input__choices label:hover, .stars-input__choices label:hover ~ label,
.stars-input__radio:checked ~ label { color: #f2b01e; }
.stars-input__choices:hover .stars-input__radio:checked ~ label:not(:hover):not(:hover ~ label) { color: var(--line); }
.stars-input__choices label:hover { transform: scale(1.12); }
.stars-input__radio:focus-visible + label { outline: 2px solid var(--lime-deep); outline-offset: 3px; border-radius: 6px; }
.form__check { display: grid; grid-template-columns: auto 1fr; gap: 6px 10px; align-items: start; font-size: 14px; }
.form__check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--brand); }
.form__check label { display: block; font-weight: 500; }
.form__check input[type=checkbox] { padding: 0; }
.form__check ul { grid-column: 1 / -1; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.confirm__review { margin-top: 22px; padding-top: 18px; border-top: 1px dashed var(--line); font-size: 15px; }

/* ---------- Effet « sticker » : fin contour aux couleurs du site autour des fruits et légumes détourés ----------
   La silhouette (images/detoure/contour/*.webp, générée par app:images:cutout) sert de masque, colorée ici. */
:root { --sticker: var(--lime); }
.band { --sticker: var(--brand); }
.has-contour > img { position: relative; z-index: 1; display: block; }
.has-contour::before {
    content: ""; position: absolute; z-index: 0;
    inset: var(--cy) var(--cx);
    background: var(--sticker);
    -webkit-mask: var(--contour) center / 100% 100% no-repeat;
    mask: var(--contour) center / 100% 100% no-repeat;
}

/* ---------- Recherche ---------- */
.search { position: relative; display: flex; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 6px 6px 18px; box-shadow: 0 18px 40px -26px rgba(21, 48, 31, .45); transition: border-color .2s, box-shadow .2s; }
.search:focus-within { border-color: var(--lime-deep); box-shadow: 0 0 0 4px rgba(200, 241, 105, .45), 0 18px 40px -26px rgba(21, 48, 31, .45); }
.search__icon { display: grid; place-items: center; color: var(--ink-soft); flex: none; }
.search input { flex: 1; min-width: 0; border: 0; outline: 0; background: none; font: inherit; font-size: 16px; padding: 10px 12px; color: var(--ink); }
.search input::-webkit-search-cancel-button { cursor: pointer; }
.search__btn { flex: none; height: 44px; padding: 0 22px; border: 0; border-radius: 999px; background: var(--ink); color: var(--cream); font: inherit; font-weight: 600; font-size: 14.5px; cursor: pointer; transition: background .2s, color .2s; }
.search__btn:hover { background: var(--lime); color: var(--ink); }
.search__panel { position: absolute; left: 0; right: 0; top: calc(100% + 8px); z-index: 30; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 8px; box-shadow: 0 30px 60px -24px rgba(21, 48, 31, .4); max-height: min(70vh, 460px); overflow: auto; }
.search__group { margin: 8px 10px 4px; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.search__item { display: flex; align-items: center; gap: 12px; padding: 8px 10px; border-radius: 14px; color: var(--ink); }
.search__item img { width: 44px; height: 44px; border-radius: 12px; object-fit: cover; background: var(--cream); flex: none; }
.search__item span { display: grid; min-width: 0; }
.search__item strong { font-weight: 600; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search__item small { font-size: 13px; color: var(--ink-soft); }
.search__item:hover, .search__item.is-active { background: var(--cream); }
.search__all { display: block; margin-top: 6px; padding: 12px 10px 6px; border-top: 1px solid var(--line); font-size: 14px; font-weight: 600; color: var(--brand); }
.search__none { margin: 0; padding: 14px 12px; font-size: 14.5px; color: var(--ink-soft); }
.search__tags { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 12px 0 0; font-size: 13.5px; color: var(--ink-soft); }
.search__tags a { padding: 5px 12px; border-radius: 999px; background: rgba(255, 255, 255, .7); border: 1px solid var(--line); color: var(--ink); font-weight: 500; transition: background .2s; }
.search__tags a:hover { background: var(--lime); border-color: var(--lime); }
.hero__search { margin: 26px 0 0; max-width: 540px; position: relative; z-index: 5; }
.hero__search + .hero__ctas { margin-top: 22px; }
.search-page__form { max-width: 640px; margin-top: 8px; }
.section__head--sub { margin: 56px 0 20px; }
.empty--search { text-align: center; max-width: 560px; margin: 0 auto; padding: 48px 24px; background: var(--cream); border-radius: var(--radius); }
.empty--search h2 { font-size: clamp(26px, 3vw, 34px); margin: 14px 0 10px; }
.empty--search p { color: var(--ink-soft); margin: 0 0 22px; }
.empty__icon { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: var(--lime); }
.empty__ctas { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
@media (max-width: 560px) {
    .search { padding-left: 14px; }
    .search__btn { width: 44px; padding: 0; font-size: 0; background: var(--ink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f3ecdd' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-4-4'/%3E%3C/svg%3E") center / 20px no-repeat; }
    .search__icon { display: none; }
}

/* ---------- En-tête de rayon : titre à gauche, présentation en carte à droite ---------- */
.page-hero--split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.page-hero--split h1 { margin-bottom: 20px; }
.hero-facts { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.hero-facts li { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: 999px; background: var(--cream); font-size: 13.5px; font-weight: 600; color: var(--ink); }
.hero-facts .ico { color: var(--brand); }
.page-hero__head .subcats { margin-top: 18px; }
.page-hero__jump { display: inline-flex; margin-top: 22px; }
.intro-card { position: relative; background: var(--cream); border-radius: var(--radius); padding: clamp(24px, 3.4vw, 40px); overflow: hidden; }
.intro-card::after { content: ""; position: absolute; right: -40px; top: -40px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, rgba(200, 241, 105, .55), transparent 70%); pointer-events: none; }
.intro-card__eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; padding: 6px 12px; border-radius: 999px; background: #fff; font-size: 13px; font-weight: 600; color: var(--ink); }
.intro-card__eyebrow .ico { color: var(--brand); }
.intro-card__text { position: relative; z-index: 1; font-size: 15.5px; line-height: 1.7; color: var(--ink-soft); }
.intro-card__text > p:first-child { font-family: var(--serif); font-size: clamp(19px, 1.7vw, 23px); line-height: 1.4; color: var(--ink); margin-bottom: .9em; }
.intro-card__text > p:first-child strong { font-weight: 600; }
.intro-card__text strong { color: var(--ink); background: linear-gradient(transparent 62%, rgba(200, 241, 105, .75) 62%); padding: 0 .08em; }
.intro-card__text > p + p { padding-left: 16px; border-left: 2px solid rgba(155, 211, 58, .6); }
@media (max-width: 900px) {
    .page-hero--split { grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 1080px) {
    .season-feature__visual { border-radius: var(--radius) var(--radius) 0 0; }
}

/* ---------- Panier de saison : les fruits sur leurs socles ---------- */
.season-feature__visual { display: flex; align-items: center; justify-content: center; padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 40px); }
.fruit-stage { position: relative; z-index: 1; list-style: none; margin: 0; padding: 0; width: 100%; max-width: 460px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(40px, 4vw, 52px) clamp(12px, 2vw, 22px); padding-top: 26px; }
.fruit-stage__item { position: relative; display: grid; justify-items: center; }
/* Socle : cercle vert clair, le fruit dépasse par le haut */
.fruit-stage__disc { width: 100%; aspect-ratio: 1; border-radius: 50%;
    background: radial-gradient(circle at 50% 35%, rgba(200, 241, 105, .26), rgba(200, 241, 105, .08) 70%);
    box-shadow: inset 0 0 0 1px rgba(200, 241, 105, .28); }
.fruit-stage__img { position: absolute; left: 6%; right: 6%; bottom: 34%; display: block; filter: drop-shadow(0 14px 12px rgba(0, 0, 0, .35)); }
.fruit-stage__img img { width: 100%; height: auto; display: block; position: relative; z-index: 1; }
.fruit-stage__name { margin-top: 10px; padding: 4px 12px; border-radius: 999px; background: rgba(255, 255, 255, .08); font-size: 12.5px; font-weight: 600; letter-spacing: .02em; color: var(--cream); }
@media (prefers-reduced-motion: no-preference) {
    .fruit-stage__img { animation: bob 5.5s ease-in-out infinite; animation-delay: calc(var(--i) * -.9s); transition: scale .4s var(--ease-spring, ease); }
    .fruit-stage__item:hover .fruit-stage__img { scale: 1.08; }
    @keyframes bob { 0%, 100% { translate: 0 0; rotate: -2deg; } 50% { translate: 0 -8px; rotate: 2deg; } }
}
.season-feature__visual:has(.fruit-stage) .season-feature__stamp { display: none; }
.fruit-stage__item:first-child .fruit-stage__img, .fruit-stage__item:nth-child(3) .fruit-stage__img { bottom: 40%; }

/* ---------- Bannière photo du rayon ---------- */
.rayon-banner { margin-top: clamp(24px, 3vw, 40px); margin-bottom: 0; }
.rayon-banner img { display: block; width: 100%; height: clamp(180px, 26vw, 360px); object-fit: cover; border-radius: var(--radius); }
@media (prefers-reduced-motion: no-preference) {
    html.js .rayon-banner img { animation: tile-in 1s .15s var(--ease-out) both; }
}

/* ---------- Composition photo « culture organique » ---------- */
.collage { position: relative; aspect-ratio: 1 / 1.02; max-width: 580px; width: 100%; margin: 0 auto; }
.collage__photo { position: absolute; margin: 0; overflow: hidden; background: var(--cream); }
.collage__photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
/* Grande photo principale */
.collage__photo--1 { left: 14%; top: 0; width: 72%; height: 82%; border-radius: 28px; box-shadow: 0 30px 60px -30px rgba(21, 48, 31, .45); }
/* Deux « tirages » posés dessus, cadre clair et légère rotation */
.collage__photo--2, .collage__photo--3 { border: 7px solid var(--paper); border-radius: 22px; box-shadow: 0 22px 44px -20px rgba(21, 48, 31, .5); transition: transform .5s var(--ease-out, ease); }
.collage__photo--2 { left: 0; bottom: 0; width: 42%; aspect-ratio: 1; transform: rotate(-5deg); }
.collage__photo--3 { right: 0; top: 30%; width: 38%; aspect-ratio: 4 / 5; transform: rotate(4deg); }
.collage:hover .collage__photo--2 { transform: rotate(-2deg) translateY(-6px); }
.collage:hover .collage__photo--3 { transform: rotate(1deg) translateY(-6px); }
/* Pastille d'information et tampon tournant */
.collage__badge { position: absolute; right: 4%; bottom: 3%; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 12px 16px 12px 12px; border-radius: 18px; background: var(--ink); color: var(--cream); box-shadow: 0 18px 36px -16px rgba(21, 48, 31, .6); font-size: 12.5px; line-height: 1.3; }
.collage__badge > .ico { width: 36px; height: 36px; padding: 8px; border-radius: 50%; background: var(--lime); color: var(--ink); }
.collage__badge strong { display: block; font-size: 14.5px; color: var(--lime); }
.collage__stamp { position: absolute; left: 4%; top: 4%; z-index: 3; width: 92px; height: 92px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); box-shadow: 0 14px 30px -14px rgba(21, 48, 31, .55); }
.collage__stamp svg:not(.ico) { position: absolute; inset: 0; width: 100%; height: 100%; }
.collage__stamp text { font-size: 7.6px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; fill: var(--ink); }
@media (prefers-reduced-motion: no-preference) {
    .collage__stamp svg:not(.ico) { animation: spin 18s linear infinite; }
    @keyframes spin { to { rotate: 360deg; } }
}
@media (max-width: 760px) {
    .collage { max-width: 440px; }
    .collage__stamp { width: 72px; height: 72px; }
    .collage__badge { font-size: 11.5px; padding: 9px 12px 9px 9px; }
    .collage__badge strong { font-size: 13px; }
}

/* ---------- Sélecteur de langue FR / EN ---------- */
.lang-switch { display: inline-flex; align-items: center; padding: 3px; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-size: 12.5px; font-weight: 700; letter-spacing: .04em; }
.lang-switch__item { display: grid; place-items: center; min-width: 34px; height: 30px; padding: 0 8px; border-radius: 999px; color: var(--ink-soft); transition: background .2s, color .2s; }
a.lang-switch__item:hover { color: var(--ink); background: var(--cream); }
.lang-switch__item.is-active { background: var(--ink); color: var(--lime); }
.lang-switch--mobile { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .18); }
.lang-switch--mobile .lang-switch__item { color: var(--cream); }
.lang-switch--mobile .lang-switch__item.is-active { background: var(--lime); color: var(--ink); }
/* En-tête : le numéro de téléphone laisse la place au sélecteur de langue et aux libellés anglais plus longs */
.nav > a, .nav__drop > a, .cart-btn { white-space: nowrap; }
@media (max-width: 1360px) { .header__phone { display: none; } }
@media (max-width: 760px) { .header__actions > .lang-switch { display: none; } }
.mnav__foot > .lang-switch { margin-bottom: 12px; }

/* Titre anglais plus long : un peu plus petit pour garder le même équilibre */
html[lang="en"] .hero__main h1 { font-size: clamp(38px, 5vw, 72px); }

/* ---------- FAQ de l'accueil ---------- */
.home-faq { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.home-faq__intro { position: sticky; top: 110px; }
.home-faq__intro h2 { font-size: clamp(34px, 4.4vw, 56px); margin: 12px 0 16px; }
.home-faq__ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
@media (max-width: 900px) {
    .home-faq { grid-template-columns: 1fr; }
    .home-faq__intro { position: static; }
}
