/* ================================================================
   Akar Sud — styles des composants (portés depuis les composants Astro)
   ================================================================ */

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; }
.logo img { height: 46px; width: auto; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(231, 226, 221, 0.6);
  overflow: visible;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 120px;
}
.header__nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 2px;
  position: relative;
}
.header__nav a:hover { color: var(--teal); }
.header__nav a.is-active { color: var(--teal); font-weight: 600; }
.header__nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 3px;
  border-radius: 3px;
  background: var(--teal);
}
.header__cta {
  flex-shrink: 0;
  padding: 11px 22px;
  font-size: 0.88rem;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(45, 156, 156, 0.32);
}
.header__cta:hover {
  box-shadow: 0 6px 18px rgba(45, 156, 156, 0.42);
}
.header__menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
  height: 96px;
  border: none;
  background: var(--teal);
  border-radius: 0 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 6px;
  padding: 26px 24px 0 0;
  z-index: 60;
  cursor: pointer;
  transition: background 0.15s ease;
}
.header__menu:hover { background: var(--teal-dark); }
.header__menu span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: #fff;
}

@media (max-width: 980px) {
  .header__nav { display: none; }
  .header__actions { margin-right: 0; gap: 0; }
  .header__cta { padding: 9px 16px; font-size: 0.78rem; }
  .header__inner { min-height: 64px; padding-right: 120px; }
  .header__menu {
    width: 46px; height: 46px;
    border-radius: 50%;
    top: 50%; right: 16px;
    transform: translateY(-50%);
    padding: 0;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .header__menu span { width: 22px; }
}

/* ---------- Méga-menu ---------- */
.mega {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--teal);
  color: #fff;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0.28s;
}
.mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.mega__bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 56px);
}
.mega__logo .logo img { height: 48px; }
.mega__nav { margin-inline: auto; }
.mega__nav ul {
  display: flex;
  gap: clamp(18px, 2.4vw, 40px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega__nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, opacity 0.15s ease;
}
.mega__nav a:hover { opacity: 0.85; }
.mega__nav a.is-active { border-color: #fff; }
.mega__close {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border: none;
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: background 0.15s ease;
}
.mega__close:hover { background: rgba(255, 255, 255, 0.16); }
.mega__close svg { width: 26px; height: 26px; }

.mega__body {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(150px, 180px) minmax(180px, 220px) 1fr;
  grid-template-rows: auto 1fr;
  align-items: start;
  gap: clamp(16px, 3vw, 40px) clamp(24px, 4vw, 56px);
  padding: clamp(20px, 4vw, 60px) clamp(20px, 4vw, 56px) 60px;
  max-width: 1300px;
  width: 100%;
  margin-inline: auto;
}
.mega__pills { grid-column: 1; grid-row: 1 / -1; }
.mega__modes {
  grid-column: 2 / 4;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.mega__mode {
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.mega__mode:hover { border-color: #fff; color: #fff; }
.mega__mode.is-active { background: #fff; color: var(--teal-dark); border-color: #fff; }
.mega__panels {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: minmax(150px, 180px) minmax(180px, 220px);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
.mega__panels[hidden] { display: none; }
.mega__browse {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(150px, 180px) minmax(180px, 220px);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
.mega__browse[hidden] { display: none; }
.mega__browse > .mega__cats { grid-column: 1; }
.mega__browse > .mega__subs { grid-column: 2; }
.mega__sublist--brands {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 28px;
  max-height: min(52vh, 420px);
  overflow-y: auto;
}
.mega__preview { grid-column: 4; grid-row: 1 / -1; }
.mega__pills { display: flex; flex-direction: column; gap: 16px; align-self: start; }
.mega__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  transition: transform 0.15s ease, background 0.15s ease;
}
.mega__pill:hover { transform: translateY(-2px); background: #fff; }
.mega__pill--cta {
  background: var(--coral);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
.mega__pill--cta:hover { background: var(--coral-dark); color: #fff; }

.mega__cats { display: flex; flex-direction: column; gap: 6px; }
.mega__cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: color 0.15s ease;
}
.mega__cat svg { width: 18px; height: 18px; opacity: 0.6; }
.mega__cat:hover { color: #fff; }
.mega__cat.is-active { color: #fff; font-weight: 700; }
.mega__cat.is-active svg { opacity: 1; }

.mega__sublist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.mega__sublist[hidden] { display: none; }
.mega__sublist a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  font-weight: 500;
  padding: 7px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.mega__sublist a:hover { color: #fff; border-color: rgba(255, 255, 255, 0.7); font-weight: 700; }

.mega__preview { justify-self: end; align-self: center; }
.mega__preview img {
  width: clamp(180px, 24vw, 340px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

@media (max-width: 900px) {
  .mega__body {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-content: start;
    gap: 20px;
    padding: 20px clamp(16px, 4vw, 24px) 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mega__pills {
    grid-column: 1;
    grid-row: auto;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .mega__pill {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
  }
  .mega__modes {
    grid-column: 1;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .mega__mode {
    width: 100%;
    text-align: center;
    padding: 11px 16px;
  }
  .mega__panels {
    grid-column: 1;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .mega__browse {
    display: flex;
    flex-direction: column;
    gap: 0;
    grid-template-columns: none;
    width: 100%;
  }
  .mega__browse > .mega__cats,
  .mega__browse > .mega__subs {
    grid-column: auto;
    width: 100%;
  }
  .mega__cats {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    width: 100%;
  }
  .mega__cat {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 13px 0;
    font-size: 1rem;
    border-radius: 0;
  }
  .mega__cat.is-active {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    padding-inline: 10px;
    margin-inline: -10px;
    border-radius: 10px;
    border-bottom-color: transparent;
  }
  .mega__cat svg { display: block; flex-shrink: 0; }
  .mega__subs {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    max-height: min(40vh, 280px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mega__sublist a {
    display: block;
    padding: 10px 0;
    font-size: 0.95rem;
  }
  .mega__sublist--brands {
    grid-column: auto;
    grid-template-columns: 1fr;
    max-height: min(40vh, 280px);
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
  .mega__preview { display: none; }
}
@media (max-width: 640px) {
  .mega__bar { flex-wrap: wrap; padding: 16px 20px; gap: 14px; }
  .mega__nav { order: 3; flex-basis: 100%; margin-inline: 0; }
  .mega__nav ul { flex-wrap: wrap; gap: 14px 20px; justify-content: center; }
  .mega__body { padding: 16px 20px 48px; gap: 18px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: visible;
  padding-block: 90px 80px;
  min-height: 660px;
  background: #fff;
}
.hero__inner { position: relative; z-index: 2; }
.hero__content { max-width: 560px; }
.hero__title { font-size: clamp(1.6rem, 3.4vw, 2.35rem); font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.hero__lead { margin-top: 20px; color: var(--ink-soft); font-size: 1rem; max-width: 520px; }
.hero__cta { margin-top: 28px; }
.hero__pates { top: auto; bottom: 0; left: 0; width: clamp(135px, 17vw, 215px); height: auto; }
.hero__ketchup { top: auto; bottom: 0; right: -40px; width: clamp(180px, 26vw, 320px); height: auto; }
.hero__scatter { bottom: 10px; left: 50%; transform: translateX(-20%); width: clamp(340px, 46vw, 520px); height: auto; opacity: 0.9; }
@media (max-width: 768px) {
  .catalogue,
  .temoignages,
  .contact-form-section { padding-block: var(--section-y-sm); }
  .hero { padding-block: 48px 56px; min-height: auto; overflow: hidden; }
  .hero__pates { width: clamp(100px, 22vw, 130px); opacity: 0.85; }
  .hero__ketchup { width: min(35vw, 140px); right: 0; top: auto; bottom: 0; opacity: 0.5; }
  .hero__scatter { display: none; }
}

/* ---------- Marques (carrousel) ---------- */
.brands { background: #fff; overflow: hidden; }
.brands__circle { top: 30px; left: 50%; transform: translateX(-50%); width: clamp(200px, 30vw, 320px); opacity: 0.06; }
.brands .container { position: relative; z-index: 2; }
.brands__carousel { display: flex; align-items: center; gap: 12px; margin-top: 36px; }
.brands__track {
  display: flex; align-items: center; gap: 30px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 10px 4px; scrollbar-width: none; flex: 1;
}
.brands__track::-webkit-scrollbar { display: none; }
.brands__item {
  flex: 0 0 calc(100% / 3);
  height: clamp(140px, 16vw, 180px);
  display: grid; place-items: center;
  scroll-snap-align: center;
  padding: 0 20px;
}
.brands__logo { max-height: clamp(100px, 12vw, 140px); width: auto; max-width: min(280px, 90%); object-fit: contain; transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease; }
.brands__item:hover .brands__logo { transform: scale(1.04); }
.brands__arrow {
  flex: 0 0 auto; width: 42px; height: 42px;
  border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; color: var(--teal);
  display: grid; place-items: center;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.brands__arrow svg { width: 20px; height: 20px; }
.brands__arrow:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.brands__action { text-align: center; margin-top: 30px; }
@media (max-width: 600px) { .brands__item { flex: 0 0 50%; } }

/* ---------- Produits (catégories home + pages marque) ---------- */
.products { background: #fff; }
.products__grid,
.brand-cats__grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 144px);
  justify-content: center;
  gap: 22px 16px;
}
.product-card,
.cat-tile {
  width: 144px;
  max-width: 144px;
}
.product-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 0; border-radius: var(--radius-md); transition: transform 0.18s ease; }
.product-card:hover { transform: translateY(-6px); }
.product-card__media,
.cat-tile__media {
  width: var(--cat-thumb-size, clamp(92px, 12vw, 122px));
  height: var(--cat-thumb-size, clamp(92px, 12vw, 122px));
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.product-card__media img,
.cat-tile__media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.product-card__placeholder { width: 100%; aspect-ratio: 1 / 1; border: 2px dashed var(--line); border-radius: var(--radius-md); display: grid; place-items: center; color: var(--muted); }
.product-card__placeholder svg { width: 38%; height: 38%; fill: currentColor; opacity: 0.6; }
.product-card__label,
.cat-tile__label {
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--teal);
  line-height: 1.35;
  min-height: 2.7em;
  hyphens: auto;
  overflow-wrap: anywhere;
}
.product-card:hover .product-card__label { color: var(--teal-dark); }
.products__footer { margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line); text-align: center; color: var(--ink-soft); font-size: 0.92rem; max-width: 760px; margin-inline: auto; }
@media (max-width: 900px) {
  .products__grid,
  .brand-cats__grid { grid-template-columns: repeat(2, 144px); gap: 20px 14px; }
}
@media (max-width: 480px) {
  .products__grid,
  .brand-cats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 12px; max-width: 300px; margin-inline: auto; }
  .product-card,
  .cat-tile { width: 100%; max-width: none; }
  .product-card { gap: 12px; }
  .product-card__media,
  .cat-tile__media {
    width: clamp(80px, 34vw, 100px);
    height: clamp(80px, 34vw, 100px);
  }
  .product-card__label,
  .cat-tile__label { font-size: 0.72rem; min-height: 2.5em; }
}

/* ---------- Catalogue ---------- */
.catalogue { position: relative; overflow: hidden; background: var(--beige); padding-block: var(--section-y); }
.catalogue__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 50px; }
.catalogue__content { max-width: 560px; }
.catalogue__title { font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 700; color: var(--ink); text-transform: uppercase; letter-spacing: 0.01em; }
.catalogue__lead { margin-top: 16px; color: var(--ink-soft); font-size: 0.98rem; }
.catalogue .btn--coral { margin-top: 24px; }
.catalogue__visual img { width: clamp(160px, 20vw, 230px); height: auto; filter: drop-shadow(0 24px 40px rgba(0,0,0,0.18)); }
@media (max-width: 768px) {
  .catalogue__inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .catalogue__content { margin-inline: auto; }
  .catalogue__visual { order: -1; }
  .catalogue__visual img { margin-inline: auto; }
}

/* ---------- Bonbons à cheval sur Catalogue + Zones ---------- */
.cat-zones { position: relative; }
.cat-zones__oursons {
  top: 50%; left: -8px;
  transform: translateY(-50%);
  width: clamp(160px, 17vw, 250px); height: auto;
  z-index: 1;
}
@media (max-width: 768px) {
  .cat-zones__oursons { width: 120px; opacity: 0.9; }
}

/* ---------- Zones de livraison ---------- */
.zones { background: #fff; overflow: hidden; }
.zones--beige { background: var(--beige); }
.zones__ourson { top: -10px; left: -12px; width: clamp(120px, 14vw, 180px); }
.zones__ourson-solo { top: 50%; left: 41%; width: clamp(56px, 6.5vw, 86px); transform: rotate(10deg); }
.zones__chocolat { bottom: 36px; left: clamp(72px, 9vw, 110px); width: clamp(100px, 12vw, 155px); z-index: 2; }
.zones .container { position: relative; z-index: 2; }
.zones__grid { margin-top: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.zones__text h3 { font-size: 1.3rem; font-weight: 600; color: var(--ink); max-width: 380px; }
.zones__list { list-style: disc; margin: 22px 0; padding-left: 20px; display: grid; gap: 8px; border-bottom: 1px solid var(--line); padding-bottom: 22px; }
.zones__list li { font-weight: 400; color: var(--ink-soft); }
.zones__list li::marker { color: var(--ink-soft); }
.zones__note { color: var(--muted); font-size: 0.85rem; max-width: 500px; font-style: italic; margin-top: 22px; }
.zones__map { display: grid; place-items: center; }
.zones__map img { width: clamp(280px, 40vw, 440px); height: auto; }
@media (max-width: 768px) {
  .cat-zones { overflow: visible; }
  .zones { overflow: visible; padding-bottom: 56px; }
  .zones__grid { grid-template-columns: 1fr; gap: 32px; }
  .zones__map { order: -1; }
  .zones__ourson-solo { display: none; }
  .zones__chocolat {
    bottom: -28px;
    left: clamp(12px, 4vw, 32px);
    width: clamp(88px, 26vw, 118px);
    z-index: 4;
  }
}

/* ---------- Témoignages ---------- */
.temoignages { background: var(--beige); padding-block: var(--section-y); }
.reviews-carousel { display: flex; align-items: stretch; gap: 12px; margin-top: 44px; max-width: 1080px; margin-inline: auto; }
.reviews__track {
  display: flex; gap: 24px; flex: 1;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 4px; scrollbar-width: none;
}
.reviews__track::-webkit-scrollbar { display: none; }
.reviews__arrow { align-self: center; }
.review { flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start; background: #fff; border-radius: 18px; padding: 24px 26px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 12px; }
.review__head { display: flex; align-items: center; gap: 14px; }
.review__avatar { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; color: #fff; font-weight: 600; font-size: 1.1rem; display: grid; place-items: center; }
.review__id { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.review__name { font-weight: 600; color: var(--ink); font-size: 0.98rem; }
.review__meta { color: var(--muted); font-size: 0.8rem; }
.review__g { width: 22px; height: 22px; margin-left: auto; flex: 0 0 auto; }
.review__stars { display: flex; align-items: center; gap: 4px; }
.review__star { color: #fbbc05; font-size: 1rem; line-height: 1; }
.review__when { margin-left: 8px; color: var(--muted); font-size: 0.82rem; }
.review__text { margin: 0; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.55; }
.temoignages__outro { text-align: center; max-width: 680px; margin: 40px auto 0; color: var(--ink-soft); font-size: 0.95rem; }
.temoignages__action { text-align: center; margin-top: 26px; }
@media (max-width: 900px) { .review { flex: 0 0 calc((100% - 24px) / 2); } }
@media (max-width: 600px) { .review { flex: 0 0 100%; } }

/* ---------- FAQ ---------- */
.faq { background: #fff; }
.faq__inner { max-width: var(--container-narrow); }
.faq .eyebrow { margin-bottom: 44px; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; font-weight: 500; font-size: 1.02rem; color: var(--ink); }
.faq__q::-webkit-details-marker { display: none; }
.faq__icon { position: relative; width: 18px; height: 18px; flex: 0 0 auto; color: var(--ink-soft); }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; top: 50%; left: 50%; width: 16px; height: 2px; background: currentColor; transform: translate(-50%, -50%); transition: opacity 0.2s ease, transform 0.2s ease; }
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon::after { opacity: 0; }
.faq__a { padding: 0 4px 22px; color: var(--ink-soft); font-size: 0.95rem; max-width: 760px; }
.faq__a p { margin: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--teal); color: rgba(255,255,255,0.92); }
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 0.7fr 1fr 1.5fr; gap: 26px; padding-block: 52px; align-items: start; }
.footer__brand .logo img { height: 60px; }
.footer__tagline { margin-top: 16px; font-size: 0.82rem; font-style: italic; color: rgba(255,255,255,0.85); max-width: 230px; line-height: 1.6; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.footer__col a { display: block; text-align: center; font-size: 0.82rem; font-weight: 600; color: #fff; padding: 11px 8px; border-bottom: 1px solid rgba(255, 255, 255, 0.4); transition: color 0.18s ease, border-color 0.18s ease; }
.footer__col a:hover { color: #fff; border-color: #fff; }
.footer__cta { display: flex; flex-direction: column; gap: 12px; }
.footer__btn { display: inline-flex; align-items: center; justify-content: center; background: #fff; color: #5b5b5b; font-weight: 500; font-size: 0.82rem; padding: 10px 18px; white-space: nowrap; border-radius: var(--radius-pill); transition: transform 0.18s ease, color 0.18s ease; }
.footer__btn:hover { color: var(--teal); transform: translateY(-1px); }
.footer__contact p { font-size: 0.82rem; line-height: 1.7; font-style: italic; color: rgba(255,255,255,0.9); margin: 0 0 16px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; transition: transform 0.18s ease; }
.footer__social svg { width: 19px; height: 19px; }
.footer__social a:hover { transform: translateY(-2px); }
.footer__social a.footer__social--fb { background: #1877F2; border-radius: 50%; }
.footer__social a.footer__social--ig { border-radius: 9px; background: radial-gradient(circle at 28% 100%, #ffd76b 0%, #fa8f21 16%, #f6403f 38%, #e91e84 58%, #b32eb3 78%, #6a37c9 100%); }
.footer__bottom { background: var(--beige); color: var(--ink-soft); }
.footer__bottom p { text-align: center; font-size: 0.8rem; padding-block: 16px; margin: 0; }
@media (max-width: 1100px) {
  .footer__inner { grid-template-columns: 1.4fr 1fr 1fr; row-gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__cta, .footer__contact { grid-column: span 1; }
}
@media (max-width: 700px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 20px 14px;
    padding-block: 40px 48px;
  }
  .footer__brand {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer__brand .logo { justify-content: center; }
  .footer__tagline { max-width: 320px; margin-inline: auto; }
  .footer__col:nth-of-type(1) { grid-column: 1; }
  .footer__col:nth-of-type(2) { grid-column: 2; }
  .footer__col:nth-of-type(3) { grid-column: 1; align-self: start; }
  .footer__cta { grid-column: 2; align-self: start; }
  .footer__contact {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer__social { justify-content: center; }
  .footer__col a {
    text-align: left;
    padding: 8px 4px;
    font-size: 0.78rem;
  }
  .footer__col ul { gap: 2px; }
}
@media (max-width: 460px) {
  .footer__inner {
    gap: 16px 10px;
    padding-block: 36px calc(56px + env(safe-area-inset-bottom, 0px));
  }
  .footer__col a { font-size: 0.74rem; padding: 7px 2px; }
  .footer__btn { font-size: 0.78rem; padding: 9px 14px; }
}

/* ---------- Page Produits ---------- */
.produits-page { position: relative; overflow: hidden; }
.prod-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--coral);
  z-index: 0;
  pointer-events: none;
}
.prod-circle--right { width: 220px; height: 220px; right: -110px; top: 320px; }
.prod-circle--left { width: 200px; height: 200px; left: -120px; top: 180px; }

.prod-hero { position: relative; padding-block: 56px 52px; overflow: visible; }
.prod-hero__blob { top: -40px; right: 0; width: clamp(280px, 34vw, 460px); height: auto; opacity: 0.9; }
.prod-hero__inner { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.85rem; margin-bottom: 28px; }
.breadcrumb a { display: inline-flex; color: var(--muted); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb__current { color: var(--ink-soft); font-weight: 500; }
.prod-hero__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.prod-hero__title { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; color: var(--ink); max-width: 620px; line-height: 1.25; }
.prod-hero__contact { flex: 0 0 auto; }
.prod-hero__lead { margin-top: 22px; max-width: 600px; color: var(--ink-soft); font-size: 0.98rem; }
.prod-hero__lead p { margin: 0 0 14px; }
.prod-hero__rule { border: none; border-top: 1px solid var(--line); margin: 26px 0 0; max-width: 560px; margin-inline: 0; }

.prod-actions {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.prod-order { text-align: center; margin-top: 44px; }
.prod-order__q { color: var(--ink); font-weight: 600; margin: 0 0 18px; font-size: 1.05rem; }

@media (max-width: 768px) {
  .prod-hero__head { flex-direction: column; }
  .prod-circle--right, .prod-circle--left { width: 140px; height: 140px; }
}

/* ---------- Page Services ---------- */
.services-page { overflow: visible; }

.svc-hero { overflow: visible; }
.svc-hero__blob {
  top: -8%;
  right: clamp(-24px, -2vw, 0);
  width: clamp(300px, 40vw, 560px);
  height: auto;
  opacity: 1;
  z-index: 0;
}

.svc-section { position: relative; background: #fff; overflow: visible; }
.svc-section .eyebrow, .svc-section .section-lead { text-align: center; }

.svc-blob {
  z-index: 0;
  filter: none;
  box-shadow: none;
}
.svc-blob--right {
  top: 50%;
  right: 0;
  width: auto;
  height: clamp(360px, 62vh, 640px);
  max-width: min(320px, 34vw);
}
.svc-blob--left {
  top: 50%;
  left: 0;
  width: auto;
  height: clamp(340px, 58vh, 600px);
  max-width: min(280px, 30vw);
}

.svc-section--delivery { overflow: visible; }
.svc-delivery__blob {
  top: 52%;
  right: 0;
  width: clamp(260px, 34vw, 480px);
  height: auto;
  z-index: 0;
  filter: none;
}
.svc-delivery__truck {
  top: 52%;
  right: 0;
  width: clamp(360px, 46vw, 680px);
  height: auto;
  z-index: 1;
  filter: none;
  box-shadow: none;
}
.svc-delivery__wrap {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-inline: auto;
}
.svc-delivery__wrap .svc-steps { margin-top: 48px; }
.svc-steps {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 30px;
}
.svc-step { display: flex; align-items: center; gap: 24px; }
.svc-step__icon { flex: 0 0 auto; width: 120px; height: 120px; display: grid; place-items: center; }
.svc-step__icon img { width: 120px; height: auto; max-height: 120px; object-fit: contain; }
.svc-step__icon img.has-custom-width {
  width: auto;
  max-width: none;
  max-height: none;
}
.svc-step__icon:has(img.has-custom-width) {
  width: auto;
  height: auto;
}
.svc-step__circle {
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--teal); display: grid; place-items: center;
}
.svc-step__label {
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--teal); font-size: 1.02rem; line-height: 1.55;
  border-bottom: 1px solid var(--line); padding-bottom: 10px;
}

/* Listes à puces (flèche corail) */
.svc-bullets { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 18px; max-width: 720px; }
.svc-bullets--center { margin-inline: auto; justify-items: start; }
.svc-bullets li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink-soft); font-size: 0.98rem; line-height: 1.6; }
.svc-arrow { flex: 0 0 auto; color: var(--coral); margin-top: 3px; }

.svc-catalogue__inner,
.svc-dedie__inner { position: relative; z-index: 2; }

.svc-catalogue__grid {
  margin-top: 30px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 48px;
}
.svc-catalogue__text { max-width: 560px; }
.svc-catalogue__btn { margin-top: 28px; }
.svc-catalogue__visual { position: relative; z-index: 3; }
.svc-catalogue__visual img {
  width: clamp(180px, 22vw, 250px);
  height: auto;
  filter: none;
}

.svc-dedie { background: var(--beige); overflow: visible; }
.svc-dedie__inner { padding-left: 0; }
.svc-dedie .svc-bullets { margin-inline: auto; }

@media (max-width: 780px) {
  .svc-hero__blob { width: min(88vw, 420px); right: -6%; }
  .svc-blob--right,
  .svc-blob--left { display: none; }
  .svc-catalogue__grid { padding-right: 0; }
  .svc-dedie__inner { padding-left: 0; }
}

@media (max-width: 768px) {
  .svc-delivery__blob,
  .svc-delivery__truck {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: min(100%, 420px);
    margin: 28px auto 0;
    transform: none !important;
  }
  .svc-delivery__truck { width: min(100%, 480px); margin-top: 12px; }
  .svc-delivery__wrap {
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
    max-width: none;
  }
  .svc-delivery__wrap .svc-steps { margin-top: 36px; }
  .svc-step { gap: 16px; }
  .svc-step__icon { width: 92px; height: 92px; }
  .svc-step__icon img:not(.has-custom-width) { width: 92px; max-height: 92px; }
  .svc-step__icon:has(img.has-custom-width) { width: auto; height: auto; }
  .svc-step__circle { width: 84px; height: 84px; }
  .svc-step__label { font-size: 0.95rem; }
  .svc-catalogue__grid { grid-template-columns: 1fr; gap: 28px; }
  .svc-catalogue__visual { order: -1; }
  .svc-catalogue__visual img { margin-inline: auto; }
}

/* ---------- Archive boutique (Tous nos produits) ---------- */
.prod-hero--archive { padding-block: 48px 40px; }
.filters { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.filters__label { color: var(--ink); font-weight: 600; font-size: 0.92rem; }
.filter-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #FBE3DE; color: var(--coral);
  font-size: 0.82rem; font-weight: 600;
  padding: 6px 15px; border-radius: var(--radius-pill);
  transition: background 0.15s ease;
}
.filter-chip:hover { background: #f6cfc6; }
.filter-chip__x { font-size: 1.05rem; line-height: 1; }
button.filter-chip { border: 0; cursor: pointer; font-family: inherit; }

/* ---------- Barre de filtres dynamiques ---------- */
.shop-filter { margin-top: 22px; display: flex; flex-direction: column; gap: 16px; }
.shop-filter__search { position: relative; max-width: 460px; }
.shop-filter__search-icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--muted); pointer-events: none;
}
.shop-filter__input {
  width: 100%; font-family: inherit; font-size: 0.95rem; color: var(--ink);
  padding: 13px 18px 13px 44px;
  background: #fff; border: 1px solid #e7e0d8; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card); transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.shop-filter__input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.12); }

.shop-filter__controls { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

.filter-dd { position: relative; }
.filter-dd__btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-size: 0.92rem; font-weight: 600; color: var(--ink);
  background: #fff; border: 1px solid #e7e0d8; border-radius: var(--radius-pill);
  padding: 11px 18px; cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease;
}
.filter-dd__btn:hover { border-color: var(--teal); }
.filter-dd.is-open .filter-dd__btn { border-color: var(--teal); background: #f4faf9; }
.filter-dd__btn svg { transition: transform 0.18s ease; color: var(--muted); }
.filter-dd.is-open .filter-dd__btn svg { transform: rotate(180deg); }
.filter-dd__count {
  display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--teal); color: #fff; font-size: 0.72rem; border-radius: 999px;
}
.filter-dd__count[hidden] { display: none; }
.shop-filter .filters[hidden] { display: none; }

.filter-dd__panel {
  position: absolute; z-index: 40; top: calc(100% + 8px); left: 0;
  width: 290px; max-width: 84vw; background: #fff;
  border: 1px solid #ece5dc; border-radius: 16px; box-shadow: var(--shadow-soft);
  padding: 10px; overflow: hidden;
}
.filter-dd__search { padding: 4px 4px 8px; }
.filter-dd__filter {
  width: 100%; font-family: inherit; font-size: 0.86rem; color: var(--ink);
  padding: 9px 12px; border: 1px solid #e7e0d8; border-radius: 10px;
}
.filter-dd__filter:focus { outline: none; border-color: var(--teal); }
.filter-dd__list { list-style: none; margin: 0; padding: 4px 0 0; max-height: 300px; overflow-y: auto; }
.filter-dd__list li { margin: 0; }
.filter-dd__list li[hidden] { display: none; }

.filter-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 10px; cursor: pointer;
  font-size: 0.88rem; color: var(--ink); transition: background 0.12s ease;
}
.filter-opt:hover { background: #f6f2ec; }
.filter-opt input { width: 17px; height: 17px; accent-color: var(--teal); flex: none; cursor: pointer; }
.filter-opt__name { flex: 1 1 auto; }
.filter-opt__count { color: var(--muted); font-size: 0.78rem; }
.filter-opt--parent .filter-opt__name { font-weight: 600; }
.filter-opt--child .filter-opt__name { color: var(--ink-soft); font-size: 0.85rem; }

.filter-gamme__group { margin: 0; padding: 10px 10px 4px; list-style: none; }
.filter-gamme__group:first-child { padding-top: 4px; }
.filter-gamme__group-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.filter-dd--gammes .filter-dd__list li[hidden],
.filter-dd--gammes .filter-gamme__group[hidden] { display: none; }

.archive-intro {
  margin: 14px 0 0;
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}
.archive-intro p { margin: 0; }

.shop-filter__clear {
  background: none; border: 0; cursor: pointer; font-family: inherit;
  color: var(--coral); font-size: 0.88rem; font-weight: 600; text-decoration: underline;
  text-underline-offset: 3px; padding: 6px 4px;
}
.shop-filter__clear:hover { color: var(--teal); }

.shop-filter .filters { margin-top: 0; }
.shop-filter .filters__chips { display: inline-flex; gap: 10px; flex-wrap: wrap; }

.shop-results { position: relative; min-height: 240px; transition: opacity 0.15s ease; }
.shop-results.is-loading { opacity: 0.45; pointer-events: none; }
.shop-results.is-loading::after {
  content: ""; position: absolute; top: 60px; left: 50%; width: 38px; height: 38px;
  margin-left: -19px; border: 3px solid #e7e0d8; border-top-color: var(--teal);
  border-radius: 50%; animation: akar-spin 0.7s linear infinite;
}
@keyframes akar-spin { to { transform: rotate(360deg); } }

.archive-grid { padding-top: 32px; }
main.archive-produits ul.products {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px 24px;
  margin: 24px 0 0; padding: 0; list-style: none;
}
main.archive-produits ul.products::before,
main.archive-produits ul.products::after { content: none; display: none; }
main.archive-produits ul.products li.product {
  float: none; width: auto; margin: 0; padding: 0;
}
main.archive-produits .prod-card { display: block; width: 100%; }
main.archive-produits .prod-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
main.archive-produits .prod-card:hover .prod-card__media { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
main.archive-produits ul.products li.product .prod-card__media img {
  position: absolute;
  top: 18px; right: 18px; bottom: 18px; left: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  margin: 0; padding: 0; background: none; border-radius: 0;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 900px) { main.archive-produits ul.products { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; } }
@media (max-width: 480px) { main.archive-produits ul.products { grid-template-columns: 1fr; gap: 20px; } }
.archive-count { text-align: center; color: var(--ink-soft); font-size: 0.9rem; margin-top: 36px; }
.archive-empty {
  text-align: center; color: var(--ink-soft);
  padding: 48px 24px; background: var(--beige);
  border-radius: var(--radius-lg); max-width: 620px; margin: 10px auto 0;
}

/* ---------- Page Marques (liste) ---------- */
.marques { padding-block: var(--section-y); }
.marques .breadcrumb { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.85rem; margin-bottom: 40px; }
.marques .breadcrumb a { color: var(--muted); display: inline-flex; }
.marques .breadcrumb a:hover { color: var(--teal); }
.marques .breadcrumb__current { color: var(--ink-soft); font-weight: 500; }
.marques__head { text-align: center; margin-bottom: 50px; }
.marques__head .eyebrow { margin-bottom: 12px; }
.marques__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 56px 32px; justify-items: center; align-items: center;
}
.marques__item { width: 100%; }
.marques__item a {
  display: flex; align-items: center; justify-content: center;
  width: 100%; min-height: 170px; height: 170px;
  padding: 20px 24px; border-radius: var(--radius-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.marques__item a:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.marques__item img {
  display: block; width: 100%; max-width: 280px;
  height: 130px; object-fit: contain; object-position: center;
}
@media (max-width: 760px) {
  .marques__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .marques__item a { min-height: 140px; height: 140px; }
  .marques__item img { height: 110px; max-width: 220px; }
}
@media (max-width: 460px) { .marques__grid { grid-template-columns: 1fr; } }

/* ---------- Page type d'une marque ---------- */
.brand-hero { position: relative; overflow: hidden; padding-block: 48px 72px; }
.brand-hero .container { position: relative; z-index: 2; }
.brand-hero__blob-r { top: -40px; right: -80px; width: clamp(220px, 32vw, 420px); opacity: 0.5; z-index: 1; }
.brand-hero__float { z-index: 1; width: clamp(90px, 12vw, 150px); opacity: 0.95; height: auto; }
.brand-hero__float--1 { top: 150px; right: 6%; transform: rotate(-12deg); }
.brand-hero__float--2 { top: 360px; right: 14%; transform: rotate(10deg); }
.brand .breadcrumb { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 0.85rem; margin-bottom: 26px; }
.brand .breadcrumb a { color: var(--muted); display: inline-flex; }
.brand .breadcrumb a:hover { color: var(--teal); }
.brand .breadcrumb__current { color: var(--ink-soft); font-weight: 500; }
.brand-hero__title { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; color: var(--ink); max-width: 720px; }
.brand-hero__subtitle { font-weight: 600; color: var(--ink-soft); margin-top: 6px; }
.brand-hero__logo { margin: 34px 0 24px; }
.brand-hero__logo img { max-height: 70px; width: auto; }
.brand-hero__intro { max-width: 620px; display: grid; gap: 16px; }
.brand-hero__intro p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.75; margin: 0; }
.brand-hero__cta { margin-top: 30px; }

.brand-cats { background: #fff; text-align: center; }
.brand-cats .eyebrow, .brand-cats .section-lead { text-align: center; }
.brand-cats__top { margin: 18px 0 44px; }
.cat-tile a { display: grid; justify-items: center; gap: 14px; }
.cat-tile__media {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  transition: transform 0.2s ease;
}
.cat-tile a:hover .cat-tile__media { transform: translateY(-4px); }
.cat-tile__placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 2px dashed var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #c9bfb4;
}
.brand-cats__grid {
  list-style: none;
  margin-inline: auto;
  padding: 0;
}
.cat-tile__count { color: var(--ink-soft); font-weight: 500; }
.brand-cats__dl { margin-top: 48px; }

.brand-why { background: var(--beige); text-align: center; }
.brand-why .eyebrow { text-align: center; }
.brand-why__text { max-width: 720px; margin: 0 auto; color: var(--ink-soft); line-height: 1.8; font-size: 0.95rem; }
.brand-why__cue { margin-top: 36px; font-weight: 600; color: var(--teal); }
.brand-why .btn--coral { margin-top: 14px; }

@media (max-width: 760px) {
  .brand-hero__float { display: none; }
  .brand-hero__blob-r { right: -20px; width: min(70vw, 280px); opacity: 0.35; }
}

/* ---------- WooCommerce (catalogue) ---------- */
.woo { padding-block: var(--section-y-sm) var(--section-y); }
.woocommerce-products-header__title,
.woo .page-title,
.woo h1.entry-title {
  text-align: center;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.woocommerce-products-header { margin-bottom: 28px; }
.term-description, .woocommerce-result-count { color: var(--ink-soft); }
.woocommerce-result-count { font-size: 0.85rem; }
.woocommerce-ordering { margin-bottom: 24px; }

/* Grille produits */
.woocommerce ul.products {
  list-style: none; margin: 24px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px 24px;
}
.woocommerce ul.products li.product { margin: 0; text-align: center; }
.woocommerce ul.products li.product a img {
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--beige);
  padding: 10px;
  transition: transform 0.18s ease;
}
.woocommerce ul.products li.product a:hover img { transform: translateY(-4px); }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 0.9rem; font-weight: 600; color: var(--ink);
  padding: 6px 4px 0; line-height: 1.4;
}
.woocommerce ul.products li.product .price { display: none; }
.woocommerce .star-rating, .woocommerce ul.products li.product .button { display: none !important; }
.woocommerce ul.products li.product .onsale { display: none; }

/* Pagination */
.woocommerce-pagination ul { display: flex; gap: 8px; justify-content: center; list-style: none; padding: 0; margin: 40px 0 0; }
.woocommerce-pagination a, .woocommerce-pagination span {
  display: grid; place-items: center; min-width: 40px; height: 40px; padding: 0 10px;
  border: 1.5px solid var(--line); border-radius: 10px; color: var(--ink);
}
.woocommerce-pagination .current { background: var(--teal); color: #fff; border-color: var(--teal); }

/* Fiche produit */
.single-produit {
  --product-info-col: min(560px, 48%);
}

.single-product div.product {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  row-gap: 36px;
}
.single-product div.product .woocommerce-product-gallery,
.single-product div.product div.images {
  flex: 0 1 auto;
  width: min(600px, 47%);
  max-width: 600px;
  margin: 0;
  float: none;
}
.single-product div.product .woocommerce-product-gallery__wrapper,
.single-product div.product .woocommerce-product-gallery__image,
.single-product div.product .woocommerce-product-gallery__image img {
  width: 100% !important;
  max-width: 100%;
}
.single-product div.product .woocommerce-product-gallery img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  background: var(--beige);
  object-fit: contain;
}

.single-product .summary {
  flex: 0 1 var(--product-info-col);
  width: var(--product-info-col);
  max-width: var(--product-info-col);
  min-width: min(100%, 320px);
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.product-heading {
  width: 100%;
  text-align: right;
  margin-bottom: 20px;
}
.product-heading__brand {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.product-heading__brand a { color: inherit; }
.product-heading__brand a:hover { color: var(--teal); }
.product-heading__gamme {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #4fab9c;
  line-height: 1.3;
}
.product-heading__gamme a { color: inherit; }
.product-heading__gamme a:hover { color: var(--teal-dark); }
.product-heading__title {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.single-product .woocommerce-product-details__short-description {
  width: 100%;
  text-align: right;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.single-product .woocommerce-product-details__short-description p { margin: 0 0 12px; }

.single-product .woocommerce-tabs {
  flex: 1 1 100%;
  width: 100%;
  margin-top: 4px;
}
.single-product .woocommerce-tabs ul.tabs {
  width: auto;
  max-width: 100%;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  gap: 0;
  border: none;
}
.single-product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}
.single-product .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
  font-weight: 600;
  color: var(--ink-soft);
  background: #fff;
}
.single-product .woocommerce-tabs ul.tabs li.active a {
  color: var(--teal);
  border-bottom-color: #fff;
}
.single-product .woocommerce-tabs .woocommerce-Tabs-panel,
.single-product .woocommerce-tabs #tab-description {
  width: 100%;
  max-width: 100%;
  margin: 0;
  text-align: left;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
}
.single-product .woocommerce-tabs .woocommerce-Tabs-panel h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
  text-align: left;
}
.single-product .woocommerce-tabs .woocommerce-Tabs-panel p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}
.single-product .related.products {
  flex: 1 1 100%;
  width: 100%;
  margin-top: 12px;
}
.single-product .related.products > h2 { text-align: center; color: var(--teal); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 24px; }
.single-product .product_meta {
  width: 100%;
  text-align: right;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
}
.single-product .product_meta > span { display: block; }
.single-product .product_meta a { color: var(--ink-soft); }
.single-product .product_meta a:hover { color: var(--teal); }
.single-product .price { display: none; }

.quote-add--summary {
  margin-top: 8px;
  align-self: flex-end;
}
.quote-add.is-in-quote {
  background: var(--teal);
  color: #fff;
}
.quote-add.is-in-quote:hover { background: var(--teal-dark); }

main.archive-produits ul.products li.product,
.single-product .related.products ul.products li.product,
.woocommerce ul.products li.product {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.quote-add--card {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  padding: 11px 14px;
  font-size: 0.82rem;
}

/* Produits similaires — mêmes cartes visuelles que la boutique */
.single-product .related.products ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 24px;
  margin-top: 0;
}
.single-product .related.products ul.products::before,
.single-product .related.products ul.products::after { content: none; display: none; }
.single-product .related.products ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
}
.single-product .related.products .prod-card { display: block; width: 100%; }
.single-product .related.products .prod-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.single-product .related.products .prod-card:hover .prod-card__media {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}
.single-product .related.products .prod-card__media img {
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: 14px;
  left: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  transform: none;
}
.single-product .related.products .prod-card:hover .prod-card__media img { transform: none; }

@media (max-width: 900px) {
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .single-produit { --product-info-col: 100%; }
  .single-product div.product .woocommerce-product-gallery,
  .single-product div.product div.images {
    flex: 1 1 100%;
    width: 100%;
    max-width: none;
  }
  .single-product .summary {
    flex: 1 1 100%;
    width: 100%;
    max-width: none;
    margin-left: 0;
  }
  .single-product .woocommerce-tabs ul.tabs,
  .single-product .woocommerce-tabs .woocommerce-Tabs-panel,
  .single-product .woocommerce-tabs #tab-description {
    width: 100%;
    margin-left: 0;
  }
  .single-product .related.products ul.products { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; }
  .single-product .summary,
  .product-heading,
  .single-product .woocommerce-product-details__short-description,
  .single-product .product_meta { text-align: left; }
  .quote-add--summary { align-self: flex-start; }
  .single-product .woocommerce-tabs ul.tabs { flex-wrap: wrap; gap: 8px; }
}
@media (max-width: 480px) {
  .woocommerce ul.products,
  .single-product .related.products ul.products { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================ PAGE CONTACT ============================ */
.contact-page .prod-hero__lead { max-width: 760px; }

/* Informations de contact */
.contact-infos { padding-block: 48px 32px; text-align: center; }
.contact-infos__title { display: inline-flex; align-items: center; gap: 10px; justify-content: center; }
.contact-infos__list {
  list-style: none; margin: 26px 0 0; padding: 0;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.contact-infos__list li {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); font-weight: 600; font-size: 0.98rem;
}
.contact-infos__list svg { color: var(--coral); flex: none; }
.contact-infos__list a { color: var(--ink); }
.contact-infos__list a:hover { color: var(--teal); }

/* Formulaire */
.contact-form-section { padding-block: var(--section-y); }
.contact-form-section .eyebrow { text-align: center; }
.contact-form { max-width: 760px; margin: 36px auto 0; }
.contact-form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-form__turnstile { display: flex; justify-content: center; margin-top: 20px; }
.akar-phone-link { cursor: pointer; }
.contact-infos__list .akar-phone-link { color: var(--ink); }
.contact-infos__list .akar-phone-link:hover { color: var(--teal); }
.contact-form__row { display: grid; gap: 18px 20px; grid-template-columns: repeat(3, 1fr); }
.contact-form__row--2 { grid-template-columns: repeat(2, 1fr); margin-top: 18px; }
.contact-field { margin: 0; }
.contact-form > .contact-field { margin-top: 18px; }
.contact-field label {
  display: block; margin: 0 0 8px 4px;
  color: var(--ink); font-weight: 600; font-size: 0.9rem;
}
.contact-field label span { color: var(--coral); }
.contact-field input,
.contact-field textarea {
  width: 100%; font-family: inherit; font-size: 0.95rem;
  color: #fff; background: var(--coral);
  border: 0; border-radius: 22px; padding: 14px 20px;
  box-shadow: 0 8px 20px rgba(231, 76, 51, 0.18);
  transition: background 0.15s ease, box-shadow 0.15s ease;
}
.contact-field textarea { border-radius: 24px; resize: vertical; min-height: 150px; }
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: rgba(255, 255, 255, 0.82); }
.contact-field input:focus,
.contact-field textarea:focus {
  outline: none; background: var(--coral-dark);
  box-shadow: 0 0 0 3px rgba(231, 76, 51, 0.25);
}
.contact-form__actions { text-align: center; margin-top: 30px; }
.contact-form__submit { min-width: 180px; justify-content: center; }

.contact-alert {
  max-width: 760px; margin: 24px auto 0; padding: 14px 20px;
  border-radius: 14px; text-align: center; font-weight: 600; font-size: 0.95rem;
}
.contact-alert--ok { background: #e6f5f0; color: var(--teal-dark); }
.contact-alert--err { background: #fbe3de; color: var(--coral-dark); }

.contact-devis {
  max-width: 760px;
  margin: 20px auto 0;
  padding: 18px 22px;
  background: #e8f6f3;
  border-radius: 16px;
  text-align: left;
}
.contact-devis__title {
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--teal);
  font-size: 0.95rem;
}
.contact-devis__ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}
.contact-devis__ul a { color: var(--teal); font-weight: 600; }

/* Carte */
.contact-map { margin-top: 10px; line-height: 0; }
.contact-map iframe { display: block; width: 100%; height: min(420px, 55vh); filter: saturate(0.95); }

/* Vous êtes un professionnel ? */
.pro-section .eyebrow, .pro-section .section-lead { text-align: center; }
.pro-section__inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
  margin-top: 44px;
}
.pro-section__text { color: var(--ink-soft); line-height: 1.8; font-size: 0.97rem; }
.pro-section__q { margin-top: 26px; font-weight: 600; color: var(--teal); }
.pro-section__text .btn { margin-top: 8px; }
.pro-section__media { display: flex; justify-content: center; }
.pro-section__media img { width: 100%; max-width: 420px; height: auto; }

@media (max-width: 820px) {
  .contact-form__row, .contact-form__row--2 { grid-template-columns: 1fr; }
  .pro-section__inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .pro-section__media { order: -1; }
  .pro-section__media img { max-width: 320px; }
}

/* ========================= PAGE NOTRE HISTOIRE ========================= */
.histoire-page .eyebrow, .histoire-page .section-lead { text-align: center; }

.histoire-page .prod-hero {
  padding-bottom: 28px;
}
.histoire-page .hist-intro {
  padding-top: 28px;
}
.histoire-page .hist-intro .section-lead {
  margin-top: 8px;
}

.hist-intro { position: relative; }
.hist-intro__text {
  max-width: 880px; margin: 36px auto 0;
  text-align: center; color: var(--ink-soft); line-height: 1.85; font-size: 0.97rem;
}
.hist-intro__text p + p { margin-top: 18px; }

.hist-missions {
  position: relative;
  padding-bottom: 0;
}
.hist-missions .container {
  padding-bottom: 120px;
}
.hist-missions__body {
  max-width: 880px;
  margin: 36px auto 0;
  text-align: center;
  color: var(--ink-soft);
  line-height: 1.85;
  font-size: 0.97rem;
}
.hist-missions__body p + p { margin-top: 16px; }
.hist-missions__body .hist-block__cue { text-align: center; }
.hist-missions__body .hist-list {
  margin-top: 20px;
  text-align: left;
}
.hist-list--check li::before {
  content: "";
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%234fab9c' d='M6.2 11.4 3.4 8.6l-.9.9 3.7 3.7 7.8-7.8-.9-.9z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.hist-missions__banner {
  margin-top: 24px;
  width: 100%;
  overflow: hidden;
}
.hist-missions__banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(56vw, 520px);
  object-fit: cover;
  object-position: center;
}

.hist-block { position: relative; }
.hist-block--beige { background: var(--beige); }
.hist-block__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
  margin-top: 48px;
}
.hist-block__media { display: flex; justify-content: center; }
.hist-block__media img {
  width: 100%; max-width: 460px; height: auto; border-radius: var(--radius-lg);
}
.hist-block--beige .hist-block__media img,
.hist-block--vision .hist-block__media img { border-radius: 0; filter: drop-shadow(0 22px 38px rgba(0,0,0,0.12)); }
.hist-block__text { color: var(--ink-soft); line-height: 1.85; font-size: 0.97rem; }
.hist-block__text p + p { margin-top: 16px; }
.hist-block__cue { margin-top: 22px; font-weight: 600; color: var(--ink); }

.hist-list { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 14px; }
.hist-list li {
  position: relative; padding-left: 26px; color: var(--ink-soft); font-size: 0.95rem;
}
.hist-list li::before {
  content: "›"; position: absolute; left: 4px; top: -1px;
  color: var(--coral); font-weight: 700; font-size: 1.1rem;
}
.hist-list strong { color: var(--teal); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 820px) {
  .hist-block__inner { grid-template-columns: 1fr; gap: 28px; }
  .hist-block__text { text-align: center; }
  .hist-list { display: inline-grid; text-align: left; margin-inline: auto; }
}

/* ===================== Bouton fixe « Contactez-nous » ===================== */
/* Liste de devis flottante */
.devis-bar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 46;
  width: min(340px, calc(100vw - 32px));
}
.devis-bar__inner {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  border: 1px solid var(--line);
  padding: 16px 18px;
  max-height: min(50vh, 360px);
  overflow-y: auto;
}
.devis-bar__head {
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--teal);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.devis-bar__count {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: 0.78rem;
}
.devis-bar__empty {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.devis-bar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.devis-bar__item {
  display: grid;
  gap: 2px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.devis-bar__item:last-child { border-bottom: none; padding-bottom: 0; }
.devis-bar__name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.35;
}
.devis-bar__name:hover { color: var(--teal); }
.devis-bar__sku { font-size: 0.78rem; color: var(--muted); }
.devis-bar__remove {
  justify-self: start;
  margin-top: 4px;
  border: none;
  background: none;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}
.devis-bar__actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.devis-bar__actions .btn {
  width: 100%;
  justify-content: center;
  padding: 12px 18px;
  font-size: 0.88rem;
}
.devis-bar__clear {
  border: none;
  background: none;
  color: var(--muted);
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
}
.devis-toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 47;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
}
@media (max-width: 600px) {
  .devis-bar { right: 12px; bottom: calc(12px + env(safe-area-inset-bottom, 0px)); width: calc(100vw - 24px); }
  .devis-toast { bottom: calc(88px + env(safe-area-inset-bottom, 0px)); max-width: 90vw; text-align: center; }
  body.has-devis-bar { padding-bottom: calc(120px + env(safe-area-inset-bottom, 0px)); }
}

.contact-fab {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 45;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: var(--coral);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 12px 16px 12px 14px;
  border-radius: 12px 0 0 12px;
  box-shadow: -3px 4px 16px rgba(0, 0, 0, 0.18);
  transition: background 0.16s ease, padding 0.16s ease;
}
.contact-fab:hover {
  background: var(--coral-dark);
  color: #fff;
  padding-right: 20px;
}
.contact-fab:focus-visible { outline: 3px solid rgba(0, 0, 0, 0.25); outline-offset: 2px; }
.contact-fab svg { flex: none; width: 17px; height: 17px; }
@media (max-width: 600px) {
  .contact-fab {
    top: auto;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    right: auto;
    left: 0;
    transform: none;
    border-radius: 0 12px 12px 0;
    font-size: 0.8rem;
    padding: 12px 14px;
    gap: 6px;
  }
  body.has-devis-bar .contact-fab {
    bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }
  .contact-fab svg { width: 16px; height: 16px; }
}

/* ============================== PAGE FAQ ============================== */
.faq-page__section { background: transparent; padding-block: var(--section-y-sm) var(--section-y); position: relative; }
.faq-page .prod-hero__inner,
.faq-page__inner {
  max-width: var(--container-narrow);
  margin-inline: auto;
  text-align: left;
}
.faq-page .faq__q,
.faq-page .faq__a,
.faq-page .faq__a p { text-align: left; }
.faq-page .faq__a { max-width: none; }
.faq-page .prod-hero__title { max-width: none; }
.faq-page .prod-hero__rule { max-width: none; }
.faq-page .faq__q { font-weight: 600; }
.faq-page .faq__icon { color: var(--ink); }

/* ========================= PAGE DEVENIR REVENDEUR ========================= */
.prod-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.revendeur-intro .eyebrow, .revendeur-intro .section-lead { text-align: center; }
.revendeur-intro__text { max-width: 760px; margin: 26px auto 0; color: var(--ink-soft); line-height: 1.8; font-size: 0.98rem; text-align: center; }

.perks .eyebrow, .perks .section-lead { text-align: center; }
.perks__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px;
}
.perk {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px 26px;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.perk:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.perk__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: rgba(79, 171, 156, 0.12); color: var(--teal);
}
.perk__icon svg { width: 26px; height: 26px; }
.perk h3 { font-size: 1.05rem; font-weight: 600; color: var(--ink); margin: 0 0 8px; }
.perk p { margin: 0; color: var(--ink-soft); font-size: 0.94rem; line-height: 1.6; }

.steps .eyebrow, .steps .section-lead { text-align: center; }
.steps__grid {
  list-style: none; margin: 40px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.step {
  position: relative; background: var(--beige);
  border-radius: var(--radius-lg); padding: 30px 24px 26px;
}
.step__num {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 16px;
  background: var(--teal); color: #fff; font-weight: 700; font-size: 1.05rem;
}
.step h3 { font-size: 1rem; font-weight: 600; color: var(--ink); margin: 0 0 6px; }
.step p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; }

@media (max-width: 900px) {
  .perks__grid { grid-template-columns: repeat(2, 1fr); }
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .perks__grid, .steps__grid { grid-template-columns: 1fr; }
}

/* ============================== MOBILE — optimisations globales ============================== */

.breadcrumb { flex-wrap: wrap; row-gap: 4px; }

@media (max-width: 768px) {
  .prod-hero { padding-block: 40px 32px; }
  .prod-hero__title { font-size: clamp(1.35rem, 5vw, 1.75rem); line-height: 1.3; }
  .prod-hero__blob { width: min(75vw, 320px); opacity: 0.35; pointer-events: none; }
  .prod-circle--left,
  .prod-circle--right { opacity: 0.35; }
  .cat-zones__oursons { display: none; }
  .hist-missions .container { padding-bottom: 48px; }
}

@media (min-width: 821px) {
  .hist-block__inner--reverse .hist-block__media { order: 2; }
  .hist-block__inner--reverse .hist-block__text { order: 1; }
}

@media (max-width: 600px) {
  .shop-filter__search { max-width: none; }
  .shop-filter__controls {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .filter-dd { width: 100%; }
  .filter-dd__btn {
    width: 100%;
    justify-content: space-between;
    min-height: 46px;
  }
  .filter-dd__panel {
    left: 0;
    right: 0;
    width: auto;
    max-width: none;
  }
  .shop-filter__clear { align-self: flex-start; }
  .faq-page .prod-circle--left { display: none; }
  .marques__item a { min-height: 120px; height: 120px; }
  .brand-hero__title { font-size: clamp(1.35rem, 5.5vw, 1.85rem); }
}

@media (max-width: 480px) {
  .brands__arrow { width: 38px; height: 38px; }
  .archive-intro { font-size: 0.92rem; }
  .mega__bar { padding: 12px 16px; gap: 12px; }
  .mega__body { padding: 12px 16px 40px; }
  .footer__inner { gap: 28px; }
}

/* ---------- Mentions légales ---------- */
.legal-page__updated {
  margin: 8px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.legal-page__body { padding-block: var(--section-y-sm) 80px; }
.legal-page__content {
  max-width: 720px;
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 0.98rem;
}
.legal-page__content h2 {
  margin: 36px 0 12px;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
}
.legal-page__content h2:first-child { margin-top: 0; }
.legal-page__content p { margin: 0 0 14px; }
.legal-page__content ul {
  margin: 0 0 16px;
  padding-left: 1.2em;
}
.legal-page__content li { margin-bottom: 6px; }
.legal-page__content a { color: var(--teal); text-decoration: underline; }
.legal-page__content a:hover { color: var(--teal-dark); }
