/* =========================================================
  NK Gärten – Feuille de style
   Tout est local : police, images et scripts dans ce dossier.
   ========================================================= */

/* ---------- Police : Plus Jakarta Sans (police variable locale, /fonts) ---------- */
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Variable.woff2") format("woff2");
  font-weight: 200 800; font-style: normal; font-display: swap;
}

:root {
  --green: #1f7a5c;
  --green-dark: #17614a;
  --green-light: #e6f2ed;
  --green-title: #1f5c4a;
  --red: #d9342b;
  --orange: #e8891d;
  --dark: #1e252d;
  --dark-2: #171d23;
  --text: #2b2f33;
  --muted: #6b7278;
  --border: #e6e8ea;
  --bg: #ffffff;
  --bg-soft: #f5f6f6;
  --star: #f2b233;
  --chat: #5b3fd6;
  --radius: 12px;
  --shadow: 0 2px 10px rgba(0, 0, 0, .06);
  --shadow-lg: 0 12px 30px rgba(0, 0, 0, .12);
  --container: 1230px;
  --font: "Plus Jakarta Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { font-family: var(--font); font-size: 14px; line-height: 1.5; color: var(--text); background: var(--bg); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input { font-family: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.muted { color: var(--muted); }

.container { width: 100%; max-width: var(--container); min-width: 0; margin: 0 auto; padding: 0 20px; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 22px; border-radius: 999px;
  font-weight: 600; font-size: 13px; white-space: nowrap;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn svg { width: 16px; height: 16px; }
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(31, 122, 92, .3); }
.btn--dark { background: #1b1f23; color: #fff; }
.btn--dark:hover { background: #000; }
.btn--soft { background: #f0f2f3; color: var(--dark); }
.btn--soft:hover { background: #e4e7e9; }
.btn--light { background: #fff; color: var(--dark); }
.btn--light:hover { background: #f0f2f3; }
.btn--ghost { background: rgba(255,255,255,.14); color: #fff; border: 1.5px solid rgba(255,255,255,.7); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.25); }
.btn--lg { padding: 14px 30px; font-size: 15px; }
.btn--block { width: 100%; }
.btn:disabled { opacity: .7; cursor: default; transform: none; }

/* =========================================================
   TOPBAR + HEADER
   ========================================================= */
.topbar { background: var(--dark); color: #dfe4e8; font-size: 12px; }
.topbar__inner { display: flex; justify-content: center; gap: 40px; height: 34px; align-items: center; }
.topbar__inner span { display: inline-flex; align-items: center; gap: 7px; }
.topbar__inner svg { width: 15px; height: 15px; color: #8fd3b6; }

.header { background: #fff; position: sticky; top: 0; z-index: 50; box-shadow: 0 1px 0 var(--border); }
.header__top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 82px; gap: 20px; }

.search-wrap { position: relative; max-width: 380px; }
.search {
  display: flex; align-items: center; height: 42px;
  border: 1px solid var(--border); border-radius: 999px; padding: 0 14px; background: #f5f6f6;
  transition: border-color .2s, background .2s;
}
.search:focus-within { border-color: var(--green); background: #fff; }
.search__icon svg { width: 17px; height: 17px; color: var(--muted); }
.search input { border: 0; outline: 0; background: transparent; flex: 1; margin-left: 8px; font-size: 13px; color: var(--text); }
.search__results {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 60;
  background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.search__results a { display: grid; grid-template-columns: 44px 1fr auto; gap: 10px; align-items: center; padding: 8px 12px; font-size: 13px; }
.search__results a:hover { background: var(--bg-soft); }
.search__results img { width: 44px; height: 44px; object-fit: cover; border-radius: 6px; }
.search__results b { color: var(--green); }
.search__results .search__empty { padding: 12px; color: var(--muted); font-size: 13px; }

.logo img { height: 48px; width: auto; }

.header__actions { display: flex; justify-content: flex-end; align-items: center; gap: 18px; }
.icon-btn { position: relative; display: inline-flex; color: var(--text); }
.icon-btn svg { width: 23px; height: 23px; }
.icon-btn:hover { color: var(--green); }
.icon-btn__count {
  position: absolute; top: -7px; right: -9px;
  min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--green); color: #fff;
  font-size: 10px; font-weight: 700; line-height: 17px; text-align: center; border-radius: 999px;
}
.icon-btn__count.is-empty { display: none; }

.burger { display: none; flex-direction: column; gap: 4px; padding: 6px; }
.burger span { width: 22px; height: 2px; background: var(--text); display: block; }

/* ---------- Navigation ---------- */
.nav { background: var(--green); }
.nav__list { display: flex; justify-content: center; align-items: center; gap: 4px; height: 46px; }
.nav__list a {
  display: block; padding: 7px 14px; border-radius: 999px;
  color: #fff; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .3px;
  white-space: nowrap; transition: background .2s;
}
.nav__list a:hover { background: rgba(255,255,255,.15); }
.nav__list a.active { background: rgba(255,255,255,.22); }
.nav__list a.nav__sale { background: #fff; color: var(--red); }

/* ---------- Fil d'Ariane ---------- */
.breadcrumb { background: #f3f4f5; }
.breadcrumb__inner { display: flex; justify-content: space-between; align-items: center; min-height: 46px; font-size: 13px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; color: #8a9199; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: #b5bbc1; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb li[aria-current] { color: var(--dark); font-weight: 500; }
.breadcrumb__tools { display: flex; gap: 12px; color: #8a9199; font-size: 20px; line-height: 1; }
.breadcrumb__tools svg { width: 14px; height: 14px; fill: #8a9199; stroke: none; }
.breadcrumb__tools a { display: inline-flex; align-items: center; }
.breadcrumb__tools a:hover { color: var(--green); }

/* =========================================================
   HERO SLIDER
   ========================================================= */
.hero { position: relative; height: 520px; overflow: hidden; color: #fff; background: var(--dark); }
.hero__slide {
  position: absolute; inset: 0; display: flex; align-items: center;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity .8s ease; pointer-events: none;
}
.hero__slide::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.1) 100%); }
.hero__slide.is-active { opacity: 1; pointer-events: auto; }
.hero__content { position: relative; z-index: 2; max-width: 640px; margin-left: max(20px, calc((100% - var(--container)) / 2 + 20px)); margin-right: auto; }
.hero__kicker {
  display: inline-block; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.4);
  padding: 5px 14px; border-radius: 999px; font-size: 12px; font-weight: 600; margin-bottom: 18px; backdrop-filter: blur(4px);
}
.hero h1 { font-size: 46px; font-weight: 800; line-height: 1.1; margin-bottom: 16px; text-shadow: 0 2px 14px rgba(0,0,0,.35); }
.hero p { font-size: 19px; font-weight: 500; margin-bottom: 28px; opacity: .95; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.18); color: #fff;
  font-size: 26px; line-height: 1; backdrop-filter: blur(4px); transition: background .2s;
}
.hero__arrow:hover { background: rgba(255,255,255,.35); }
.hero__arrow--prev { left: 18px; } .hero__arrow--next { right: 18px; }
.hero__dots { position: absolute; bottom: 20px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; z-index: 3; }
.hero__dots button { width: 9px; height: 9px; border-radius: 999px; background: rgba(255,255,255,.5); transition: width .2s, background .2s; }
.hero__dots button.is-active { width: 26px; background: #fff; }

/* =========================================================
   USP
   ========================================================= */
.usp { background: #fff; border-bottom: 1px solid var(--border); }
.usp__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.usp__item { display: flex; gap: 14px; align-items: center; padding: 20px 16px; border-right: 1px solid var(--border); }
.usp__item:last-child { border-right: 0; }
.usp__item svg { width: 34px; height: 34px; color: var(--green); flex: 0 0 34px; }
.usp__item strong { display: block; font-size: 14px; color: var(--dark); }
.usp__item span { font-size: 12px; color: var(--muted); }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: 56px 0; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: 20px 0; }
.section__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 26px; }
.section__head--center { flex-direction: column; align-items: center; text-align: center; }
.section__title { color: var(--green-title); font-size: 26px; font-weight: 800; letter-spacing: -.3px; }
.section__title--left { text-align: left; }
.section__title--mixed { font-size: 32px; }
.section__title--mixed span { color: var(--green); }
.section__subtitle { color: var(--muted); font-size: 14px; margin-top: 6px; }
.eyebrow { display: block; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 8px; }
.eyebrow--left { text-align: left; }
.link-more { color: var(--green); font-weight: 600; font-size: 13px; white-space: nowrap; }
.link-more:hover { text-decoration: underline; }

/* =========================================================
   CATÉGORIES (photos)
   ========================================================= */
.cats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cat {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; text-align: center; transition: box-shadow .25s, transform .25s;
}
.cat:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.cat__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-soft); }
.cat__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cat:hover .cat__img img { transform: scale(1.07); }
.cat__body { padding: 12px 8px 14px; }
.cat__name { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .2px; color: var(--dark); line-height: 1.3; }
.cat__count { display: block; font-size: 11px; color: var(--muted); margin-top: 3px; }

/* =========================================================
   GRILLE PRODUITS & CARTES
   ========================================================= */
.grid { display: grid; gap: 18px; }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; flex-direction: column; min-width: 0; overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card__media { position: relative; display: block; aspect-ratio: 1 / .92; overflow: hidden; background: var(--bg-soft); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.card:hover .card__media img { transform: scale(1.06); }

.card__badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  padding: 4px 9px; border-radius: 6px; font-size: 11px; font-weight: 700; color: #fff;
  background: var(--green);
}
.card__badge--sale { background: var(--red); }
.card__badge--new { background: #2b7ab8; }
.card__badge--top { background: var(--orange); }
.card__badge + .card__badge { top: 38px; }

.card__wish {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%; background: #fff; box-shadow: var(--shadow);
  display: inline-flex; align-items: center; justify-content: center; color: var(--muted);
  transition: color .2s, transform .2s;
}
.card__wish svg { width: 17px; height: 17px; }
.card__wish:hover { color: var(--red); transform: scale(1.1); }
.card__wish.is-active { color: var(--red); }
.card__wish.is-active svg { fill: var(--red); }

.card__quick {
  position: absolute; left: 10px; right: 10px; bottom: 10px; z-index: 2;
  transform: translateY(12px); opacity: 0; transition: transform .25s, opacity .25s;
}
.card:hover .card__quick { transform: translateY(0); opacity: 1; }

.card__body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card__brand { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; font-weight: 600; }
.card__name { font-size: 14px; font-weight: 600; line-height: 1.35; color: var(--dark); min-height: 38px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card__name a:hover { color: var(--green); }
.card__rating { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.stars { color: var(--star); font-size: 13px; letter-spacing: 1px; white-space: nowrap; }
.card__price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-top: 2px; }
.card__price strong { color: var(--green); font-size: 17px; font-weight: 800; }
.card__price s { color: var(--muted); font-size: 12px; }
.card__price small { color: var(--muted); font-size: 11px; }
.card__price .price-note { flex-basis: 100%; }
.card__stock { font-size: 12px; color: var(--green); font-weight: 500; }
.card__stock--low { color: var(--orange); }
.card__stock::before { content: "●"; margin-right: 5px; font-size: 9px; vertical-align: 1px; }
.card__stockbar { height: 4px; border-radius: 4px; background: #eceff1; overflow: hidden; }
.card__stockbar span { display: block; height: 100%; background: var(--orange); border-radius: 4px; }
.card .btn { margin-top: auto; padding: 10px 14px; font-size: 12.5px; }

/* =========================================================
   ANGEBOTE – compte à rebours
   ========================================================= */
.countdown { display: flex; align-items: center; gap: 8px; }
.countdown__label { font-size: 12px; color: var(--muted); font-weight: 600; margin-right: 6px; }
.countdown__box { background: var(--dark); color: #fff; border-radius: 8px; padding: 6px 10px; min-width: 52px; text-align: center; }
.countdown__box b { display: block; font-size: 18px; font-weight: 800; line-height: 1.1; font-variant-numeric: tabular-nums; }
.countdown__box small { font-size: 9px; text-transform: uppercase; letter-spacing: 1px; opacity: .75; }

/* =========================================================
   BANNIÈRES PROMO
   ========================================================= */
.banners { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.banner {
  position: relative; min-height: 300px; border-radius: var(--radius); overflow: hidden;
  background-size: cover; background-position: center; display: flex; align-items: flex-end; color: #fff;
}
.banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 20%, rgba(0,0,0,.75) 100%); transition: background .3s; }
.banner:hover::before { background: linear-gradient(180deg, rgba(0,0,0,.2) 20%, rgba(0,0,0,.85) 100%); }
.banner__body { position: relative; padding: 28px; max-width: 420px; }
.banner__tag { display: inline-block; background: var(--green); padding: 4px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; margin-bottom: 12px; }
.banner__tag--red { background: var(--red); }
.banner h3 { font-size: 30px; font-weight: 800; line-height: 1.1; margin-bottom: 10px; }
.banner p { font-size: 14px; margin-bottom: 16px; opacity: .92; }

/* =========================================================
   KUNDENSTIMMEN
   ========================================================= */
.testimonials__wrap { display: grid; grid-template-columns: 210px 1fr; gap: 24px; align-items: center; }
.rating-box {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 12px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.rating-box img { width: 60px; height: 60px; }
.rating-box strong { font-size: 30px; color: var(--dark); line-height: 1; margin-top: 6px; }
.rating-box strong span { font-size: 14px; color: var(--muted); font-weight: 500; }
.rating-box__label { font-weight: 700; color: var(--green); font-size: 13px; }
.rating-box small { color: var(--muted); font-size: 11px; }

.slider { position: relative; display: flex; align-items: center; gap: 10px; }
.slider__viewport { overflow: hidden; flex: 1; }
.slider__track { display: flex; gap: 14px; transition: transform .4s ease; }
.review {
  flex: 0 0 calc((100% - 42px) / 4); background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px; display: flex; flex-direction: column; gap: 5px;
}
.review time { font-size: 10px; color: var(--muted); }
.review h4 { font-size: 13px; font-weight: 700; color: var(--dark); }
.review p { font-size: 12px; line-height: 1.5; }
.review footer { font-size: 10px; color: var(--muted); margin-top: auto; padding-top: 6px; }
.slider__arrow {
  width: 32px; height: 32px; flex: 0 0 32px; border: 1px solid var(--green); border-radius: 50%;
  color: var(--green); font-size: 20px; line-height: 1; display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s; background: #fff;
}
.slider__arrow:hover { background: var(--green); color: #fff; }
.slider__arrow:disabled { opacity: .35; cursor: default; }
.slider__dots { display: flex; justify-content: center; gap: 6px; margin-top: 22px; }
.slider__dots button { width: 8px; height: 8px; border-radius: 50%; background: #cfd4d8; transition: background .2s, width .2s; }
.slider__dots button.is-active { background: var(--green); width: 22px; border-radius: 999px; }

/* =========================================================
   MARQUES · RATGEBER · NEWSLETTER
   ========================================================= */
.brands { padding: 34px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brands__title { text-align: center; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 18px; }
.brands__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; }
.brands__row span { font-size: 22px; font-weight: 800; color: #b9c0c6; letter-spacing: -.5px; transition: color .2s; }
.brands__row span:hover { color: var(--dark); }

.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.post { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow .25s, transform .25s; }
.post:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.post img { aspect-ratio: 16 / 9; width: 100%; object-fit: cover; }
.post__body { padding: 16px 18px 18px; }
.post__meta { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.post h3 { font-size: 16px; font-weight: 700; line-height: 1.35; margin: 8px 0 12px; color: var(--dark); }
.post__link { color: var(--green); font-weight: 600; font-size: 13px; }

.newsletter { background: var(--green); color: #fff; padding: 50px 0; }
.newsletter__inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.newsletter__tag { display: inline-block; background: #fff; color: var(--green); padding: 4px 12px; border-radius: 999px; font-size: 11px; font-weight: 800; margin-bottom: 12px; }
.newsletter h2 { font-size: 30px; font-weight: 800; margin-bottom: 8px; }
.newsletter p { opacity: .9; font-size: 14px; }
.newsletter__form { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter__form input { flex: 1; min-width: 220px; height: 48px; border: 0; border-radius: 999px; padding: 0 20px; font-size: 14px; outline: 0; }
.newsletter__form .btn { height: 48px; }
.newsletter__ok { flex-basis: 100%; font-size: 13px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--bg-soft); }
.faq__wrap { display: grid; grid-template-columns: 330px 1fr; gap: 40px; align-items: start; }
.faq__intro h2 { font-size: 30px; font-weight: 800; line-height: 1.15; color: var(--dark); margin-bottom: 14px; }
.faq__text { color: var(--muted); font-size: 13px; margin-bottom: 20px; }
.faq__contact { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 18px; display: flex; flex-direction: column; gap: 5px; font-size: 12px; }
.faq__contact strong { color: var(--dark); font-size: 13px; margin-bottom: 4px; }
.faq__contact a:hover { color: var(--green); }
.faq__contact span { color: var(--muted); }
.accordion { display: flex; flex-direction: column; gap: 10px; }
.accordion__item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.accordion__item.is-open { border-color: var(--green); }
.accordion__header { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 14px 18px; text-align: left; font-size: 13.5px; font-weight: 600; color: var(--dark); }
.accordion__icon { position: relative; width: 22px; height: 22px; flex: 0 0 22px; border: 1.5px solid var(--green); border-radius: 50%; }
.accordion__icon::before, .accordion__icon::after { content: ""; position: absolute; background: var(--green); top: 50%; left: 50%; transform: translate(-50%, -50%); transition: transform .25s; }
.accordion__icon::before { width: 10px; height: 1.5px; }
.accordion__icon::after { width: 1.5px; height: 10px; }
.is-open .accordion__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion__body { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; padding: 0 18px; }
.is-open .accordion__body { max-height: 260px; padding: 0 18px 16px; }
.accordion__body p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* =========================================================
   PAGE PRODUIT
   ========================================================= */
.product-hero { padding: 36px 0 30px; }
.product-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }

.gallery { display: grid; grid-template-columns: 84px 1fr; gap: 16px; position: sticky; top: 140px; }
.gallery__thumbs { display: flex; flex-direction: column; gap: 10px; }
.gallery__thumb { border-radius: 8px; overflow: hidden; border: 2px solid transparent; opacity: .7; transition: opacity .2s, border-color .2s; aspect-ratio: 1; }
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb.is-active, .gallery__thumb:hover { opacity: 1; border-color: var(--green); }
.gallery__main { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); aspect-ratio: 1 / .9; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__zoom { position: absolute; right: 12px; bottom: 12px; width: 34px; height: 34px; background: #fff; border-radius: 8px; box-shadow: var(--shadow); display: inline-flex; align-items: center; justify-content: center; color: var(--muted); }
.gallery__zoom svg { width: 15px; height: 15px; }

.product-info__top { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.product-info__brand { text-transform: uppercase; letter-spacing: 1px; font-weight: 700; color: var(--green); }
.product-info__title { color: var(--green-title); font-size: 30px; font-weight: 700; line-height: 1.2; margin-bottom: 10px; }
.product-info__rating { display: flex; align-items: center; gap: 10px; font-size: 13px; margin-bottom: 16px; }
.product-info__rating a { color: var(--muted); text-decoration: underline; }
.product-info__sold { color: var(--orange); font-weight: 600; font-size: 12px; }
.product-info__price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.price-chf { flex-basis: 100%; color: var(--muted); font-size: 14px; font-weight: 600; }
.price-chf small { font-size: 11px; font-weight: 400; }
.dual-price { display: block; color: var(--muted); font-size: 11px; font-weight: 500; line-height: 1.35; }
.dual-amount { display: flex; flex-direction: column; align-items: flex-end; }
.dual-amount small { color: var(--muted); font-size: 11px; font-weight: 500; }
.price { color: var(--green); font-weight: 800; }
.price--lg { font-size: 30px; }
.price-old { color: var(--muted); font-size: 16px; }
.tax { color: var(--muted); font-size: 13px; }
.save-tag { background: #fdeceb; color: var(--red); font-size: 12px; font-weight: 700; padding: 3px 9px; border-radius: 6px; }

.stock-line { font-size: 13px; font-weight: 600; color: var(--green); margin-bottom: 8px; }
.stock-line.is-low { color: var(--orange); }
.stock-line::before { content: "●"; margin-right: 6px; font-size: 9px; vertical-align: 1px; }
.delivery-line { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text); padding: 12px 14px; background: var(--green-light); border-radius: 8px; margin-bottom: 18px; }
.delivery-line svg { width: 20px; height: 20px; color: var(--green); flex: 0 0 20px; }

.features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.features li { display: flex; align-items: center; gap: 12px; border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; font-size: 12px; font-weight: 600; color: var(--dark); }
.features__icon { width: 34px; height: 34px; flex: 0 0 34px; border: 1px solid var(--border); border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; color: var(--green); }
.features__icon svg { width: 16px; height: 16px; }
.features__ok { display: block; color: var(--green); font-size: 10px; font-weight: 500; margin-top: 2px; }

.buy-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; height: 46px; }
.qty__btn { width: 34px; height: 100%; font-size: 16px; color: var(--muted); }
.qty__btn:hover { background: var(--bg-soft); }
.qty input { width: 40px; height: 100%; text-align: center; border: 0; border-left: 1px solid var(--border); border-right: 1px solid var(--border); font-size: 14px; font-weight: 600; outline: 0; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.btn--wide { flex: 1; height: 46px; font-size: 14px; }
.wish-btn { width: 46px; height: 46px; flex: 0 0 46px; border: 1px solid var(--border); border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; color: var(--muted); transition: color .2s, border-color .2s; }
.wish-btn svg { width: 20px; height: 20px; }
.wish-btn:hover, .wish-btn.is-active { color: var(--red); border-color: var(--red); }
.wish-btn.is-active svg { fill: var(--red); }
.mini-trust { display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 12px; color: var(--muted); }

/* Description / Technische Daten */
.details { padding: 20px 0 30px; }
.details__card { background: #fff; border-radius: var(--radius); box-shadow: 0 6px 30px rgba(0,0,0,.08); padding: 34px 28px 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.details__title { color: var(--green-title); font-size: 19px; font-weight: 700; margin-bottom: 24px; }
.details__subtitle { color: var(--green-title); font-size: 16px; font-weight: 600; margin: 0 0 14px; }
.details__text { color: var(--muted); font-size: 13px; line-height: 1.7; margin-bottom: 18px; }
.details__text strong { color: var(--text); font-weight: 600; }
.spec__row { display: grid; grid-template-columns: 130px 1fr; gap: 14px; padding: 14px 0 12px; border-bottom: 1px solid var(--border); align-items: center; }
.spec__row dt { font-size: 12.5px; font-weight: 600; color: var(--text); }
.spec__row dd { font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.spec__row ul { list-style: disc; padding-left: 18px; }
.spec__row li { margin: 5px 0; }
.spec__row li::marker { color: var(--green); }
.tech { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.tech th { text-align: left; padding: 10px 8px; font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--green-title); }
.tech td { padding: 12px 8px; color: var(--muted); }
.tech tbody tr { border-top: 1px solid var(--border); }
.tech tbody tr:last-child { border-bottom: 1px solid var(--border); }

/* Bewertungen */
.rating-inline { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.reviews-grid .review { flex: initial; }

/* Barre d'achat collante */
.sticky-buy { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; background: #fff; box-shadow: 0 -6px 24px rgba(0,0,0,.1); transform: translateY(110%); transition: transform .3s; }
.sticky-buy.is-visible { transform: translateY(0); }
.sticky-buy__inner { display: flex; align-items: center; gap: 14px; height: 68px; }
.sticky-buy img { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; }
.sticky-buy__info { flex: 1; display: flex; flex-direction: column; font-size: 13px; }
.sticky-buy__info b { color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-buy__info span { color: var(--green); font-weight: 800; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--dark); color: #cfd4d8; font-size: 12.5px; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1.3fr 1.3fr; gap: 30px; padding: 48px 20px 30px; }
.footer h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer__logo { height: 44px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .9; }
.footer__col li { margin-bottom: 9px; }
.footer__col a:hover { color: #fff; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; line-height: 1.5; }
.footer__contact svg { width: 15px; height: 15px; flex: 0 0 15px; margin-top: 2px; color: #8fd3b6; }
.footer__label { display: block; font-size: 9px; letter-spacing: 1.2px; text-transform: uppercase; color: #8a9199; margin-bottom: 2px; }
.footer__badges { display: flex; gap: 12px; padding-top: 14px; }
.footer__badges img { width: 62px; height: 62px; border-radius: 50%; }
.footer__bottom { background: var(--dark-2); }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; min-height: 56px; }
.footer__bottom p { font-size: 11.5px; color: #9aa3ab; }
.payments { display: flex; gap: 6px; }
.payments img { width: 40px; height: 24px; border-radius: 3px; }

/* =========================================================
   WARENKORB – panneau latéral
   ========================================================= */
.cart-overlay { position: fixed; inset: 0; z-index: 90; background: rgba(0,0,0,.35); }
.cart-drawer {
  position: fixed; top: 0; right: -100%; bottom: 0; z-index: 100; width: 445px; max-width: 100%;
  background: #fff; box-shadow: -8px 0 30px rgba(0,0,0,.12); display: flex; flex-direction: column;
  transform: none; transition: right .3s ease;
}
.cart-drawer:not(.is-open) { display: none; }
.cart-drawer.is-open { right: 0; }
.cart-drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 22px 22px 16px; border-bottom: 1px solid var(--border); }
.cart-drawer__head h2 { font-size: 22px; font-weight: 700; color: var(--green-title); }
.cart-drawer__head h2 span { font-size: 14px; color: var(--muted); font-weight: 500; }
.cart-drawer__close { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; color: var(--dark); }
.cart-drawer__close svg { width: 16px; height: 16px; }
.cart-drawer__ship { padding: 14px 22px 0; font-size: 12.5px; }
.cart-drawer__ship p { margin-bottom: 8px; }
.cart-drawer__ship b { color: var(--green); }
.cart-drawer__bar { height: 6px; background: #eceff1; border-radius: 6px; overflow: hidden; }
.cart-drawer__bar span { display: block; height: 100%; background: var(--green); border-radius: 6px; transition: width .4s; }
.cart-drawer__items { flex: 1; overflow-y: auto; padding: 14px 22px; }
.cart-drawer__empty { text-align: center; color: var(--muted); font-size: 14px; padding: 40px 0; }
.cart-drawer__empty svg { width: 48px; height: 48px; margin: 0 auto 12px; color: #cfd4d8; }
.cart-item { display: grid; grid-template-columns: 76px 1fr; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); position: relative; }
.cart-item img { width: 76px; height: 76px; object-fit: cover; border-radius: 8px; }
.cart-item__name { font-size: 14px; font-weight: 600; color: var(--dark); line-height: 1.3; padding-right: 26px; }
.cart-item__line { margin-top: 8px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.cart-item__line strong { color: var(--green); font-weight: 700; font-size: 15px; }
.cart-item__qty { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 6px; height: 30px; }
.cart-item__qty button { width: 28px; height: 100%; color: var(--muted); font-size: 14px; }
.cart-item__qty span { min-width: 26px; text-align: center; font-size: 13px; font-weight: 600; }
.cart-item__remove { position: absolute; right: 0; top: 12px; font-size: 18px; color: #9aa1a8; line-height: 1; }
.cart-item__remove:hover { color: var(--red); }
.cart-drawer__foot { border-top: 1px solid var(--border); padding: 16px 22px 20px; display: flex; flex-direction: column; gap: 10px; }
.cart-drawer__total { display: flex; justify-content: space-between; align-items: baseline; }
.cart-drawer__total span { font-size: 18px; font-weight: 700; color: var(--dark); }
.cart-drawer__total strong { font-size: 22px; font-weight: 800; color: var(--green); }
.cart-drawer__hint { font-size: 11px; color: var(--muted); margin-top: -6px; }
.cart-drawer__trust { display: flex; justify-content: center; gap: 6px; margin-top: 4px; }
.cart-drawer__trust img { width: 36px; height: 22px; border-radius: 3px; }

/* =========================================================
   TOAST · TO-TOP · CHAT
   ========================================================= */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px); z-index: 120;
  background: var(--dark); color: #fff; padding: 12px 20px; border-radius: 999px; font-size: 13px; font-weight: 600;
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s; box-shadow: var(--shadow-lg);
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.to-top { position: fixed; right: 22px; bottom: 90px; z-index: 60; width: 42px; height: 42px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-lg); color: var(--dark); font-size: 18px; opacity: 0; pointer-events: none; transition: opacity .2s; }
.to-top.is-visible { opacity: 1; pointer-events: auto; }

.chat-btn {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--chat); color: #fff; padding: 6px 6px 6px 20px; border-radius: 999px;
  font-size: 15px; font-weight: 600; box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.chat-btn__bubble { width: 36px; height: 36px; border-radius: 50%; background: #fff; display: inline-flex; align-items: center; justify-content: center; }
.chat-btn__bubble svg { width: 18px; height: 18px; color: var(--chat); }
.chat-box { position: fixed; right: 22px; bottom: 80px; z-index: 60; width: 300px; background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg); overflow: hidden; }
.chat-box__head { background: var(--chat); color: #fff; padding: 12px 14px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
.chat-box__head button { color: #fff; font-size: 20px; line-height: 1; }
.chat-box__body { padding: 16px 14px; font-size: 13px; }
.chat-box__form { display: flex; gap: 6px; padding: 0 10px 10px; }
.chat-box__form input { flex: 1; border: 1px solid var(--border); border-radius: 999px; padding: 8px 12px; font-size: 12px; outline: 0; }
.chat-box__form .btn { padding: 8px 14px; font-size: 12px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .cats { grid-template-columns: repeat(4, 1fr); }
  .grid--4 { grid-template-columns: repeat(3, 1fr); }
  .review { flex-basis: calc((100% - 28px) / 3); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .usp__grid { grid-template-columns: repeat(2, 1fr); }
  .usp__item:nth-child(2) { border-right: 0; }
  .product-hero__grid { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .details__card { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .topbar__inner { gap: 20px; }
}

@media (max-width: 860px) {
  .topbar__inner span:nth-child(2) { display: none; }
  .header__top { grid-template-columns: auto 1fr auto; height: 68px; }
  .search-wrap { order: 2; max-width: 100%; }
  .logo { order: 1; } .header__actions { order: 3; }
  .burger { display: flex; }
  .nav { display: none; }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; height: auto; padding: 8px 20px; align-items: stretch; }
  .nav__list a { border-radius: 6px; white-space: normal; }
  .hero { height: 460px; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .hero__arrow { display: none; }
  .section { padding: 40px 0; }
  .section__head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section__head--center { align-items: center; }
  .banners { grid-template-columns: 1fr; }
  .testimonials__wrap { grid-template-columns: 1fr; }
  .rating-box { max-width: 220px; margin: 0 auto; }
  .review { flex-basis: calc((100% - 14px) / 2); }
  .posts { grid-template-columns: 1fr; }
  .newsletter__inner { grid-template-columns: 1fr; }
  .faq__wrap { grid-template-columns: 1fr; }
  .breadcrumb__inner { padding: 8px 0; font-size: 12px; }
  .gallery { grid-template-columns: 60px 1fr; gap: 10px; }
  .product-info__title { font-size: 24px; }
  .buy-row { flex-wrap: wrap; }
  .btn--wide { flex: 1 1 100%; }
  .sticky-buy .btn { padding: 10px 16px; }
}

@media (max-width: 600px) {
  .topbar__inner { justify-content: space-between; gap: 10px; font-size: 11px; }
  .topbar__inner span:nth-child(3) { display: none; }
  .header__top { grid-template-columns: 1fr auto; }
  .search-wrap { display: none; }
  .cats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .card__body { padding: 10px 10px 12px; }
  .card__name { font-size: 12.5px; }
  .card__quick { display: none; }
  .usp__grid { grid-template-columns: 1fr; }
  .usp__item { border-right: 0; border-bottom: 1px solid var(--border); padding: 12px 6px; }
  .countdown__box { min-width: 44px; padding: 5px 6px; }
  .review { flex-basis: 100%; }
  .features { grid-template-columns: 1fr; }
  .spec__row { grid-template-columns: 1fr; gap: 6px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom-inner { justify-content: center; text-align: center; padding: 12px 0; }
  .sticky-buy__info b { max-width: 140px; }
}

/* =========================================================
   PAGES SECONDAIRES – éléments communs
   ========================================================= */
.page-head { padding: 34px 0 22px; }
.page-head h1 { color: var(--green-title); font-size: 30px; font-weight: 800; letter-spacing: -.3px; }
.page-head p { color: var(--muted); font-size: 14px; margin-top: 6px; max-width: 720px; }
.page-hero { position: relative; min-height: 300px; display: flex; align-items: center; color: #fff; background-size: cover; background-position: center; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.65), rgba(0,0,0,.25)); }
.page-hero .container { position: relative; }
.page-hero h1 { font-size: 40px; font-weight: 800; margin-bottom: 10px; }
.page-hero p { font-size: 17px; max-width: 620px; opacity: .95; }
.empty-note { color: var(--muted); font-size: 14px; padding: 20px 0; }
.empty-note a { color: var(--green); font-weight: 600; }
.empty-state { grid-column: 1 / -1; text-align: center; padding: 60px 20px; background: #fff; border: 1px dashed var(--border); border-radius: var(--radius); }
.empty-state h3 { font-size: 20px; color: var(--dark); margin-bottom: 8px; }
.empty-state a { color: var(--green); font-weight: 600; }
.empty-state svg { width: 56px; height: 56px; color: #cfd4d8; margin: 0 auto 14px; }
.notice { display: flex; gap: 12px; align-items: flex-start; background: var(--green-light); border-left: 4px solid var(--green); padding: 14px 16px; border-radius: 8px; font-size: 13px; margin: 18px 0; }
.notice--warn { background: #fff6e8; border-color: var(--orange); }
.search__all { display: block; text-align: center; padding: 10px; background: var(--bg-soft); font-weight: 600; color: var(--green); font-size: 13px; }

/* ---------- Formulaires ---------- */
.form { display: flex; flex-direction: column; gap: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .field--full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--dark); }
.field label small { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 11px 14px; font-size: 14px; font-family: inherit;
  background: #fff; outline: 0; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(31,122,92,.12); }
.field input.is-invalid, .field select.is-invalid { border-color: var(--red); box-shadow: 0 0 0 3px rgba(217,52,43,.12); }
.field textarea { min-height: 130px; resize: vertical; }
.check { display: flex; align-items: center; gap: 8px; font-size: 13px; cursor: pointer; }
.check input { width: 16px; height: 16px; accent-color: var(--green); }
.check span { color: var(--muted); }
.check.is-invalid { color: var(--red); }
.form__ok { background: var(--green-light); color: var(--green-dark); padding: 12px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; }
.form__err { background: #fdeceb; color: var(--red); padding: 10px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; }
.form__hint { font-size: 12px; color: var(--muted); }

/* =========================================================
   LISTING
   ========================================================= */
.chips { display: flex; gap: 10px; flex-wrap: wrap; margin: 4px 0 24px; }
.chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 5px 14px 5px 5px; font-size: 12.5px; font-weight: 600; color: var(--dark); transition: border-color .2s, box-shadow .2s; }
.chip img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.chip:hover { border-color: var(--green); box-shadow: var(--shadow); }
.listing { display: grid; grid-template-columns: 250px 1fr; gap: 30px; align-items: start; padding-bottom: 60px; }
.listing > * { min-width: 0; }
.listing > div { min-width: 0; }
.filters { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; position: sticky; top: 140px; }
.filters h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.filter-group { padding: 14px 0; border-top: 1px solid var(--border); }
.filter-group:first-of-type { border-top: 0; }
.filter-group h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 10px; }
.filter-group .check { margin-bottom: 8px; }
.price-row { display: flex; gap: 6px; align-items: center; }
.price-row input { width: 100%; border: 1px solid var(--border); border-radius: 6px; padding: 8px; font-size: 13px; outline: 0; }
.price-row .btn { padding: 8px 12px; }
.filter-toggle { display: none; }
.toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.toolbar__count { font-size: 13px; color: var(--muted); font-weight: 600; }
.toolbar select { border: 1px solid var(--border); border-radius: 999px; padding: 8px 14px; font-size: 13px; font-family: inherit; background: #fff; outline: 0; }
.active-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.filter-chip { background: var(--green-light); color: var(--green-dark); border-radius: 999px; padding: 5px 12px; font-size: 12px; font-weight: 600; }
.filter-chip--all { background: transparent; text-decoration: underline; }
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 30px; }
.pagination button { min-width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--border); background: #fff; font-weight: 600; font-size: 13px; }
.pagination button.is-active { background: var(--green); color: #fff; border-color: var(--green); }
.pagination button:disabled { opacity: .4; cursor: default; }

/* =========================================================
   PANIER (page)
   ========================================================= */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 30px; align-items: start; padding-bottom: 60px; }
.cart-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cart-table th { text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); padding: 14px 16px; background: var(--bg-soft); }
.cart-table td { padding: 16px; border-top: 1px solid var(--border); vertical-align: middle; font-size: 14px; }
.cart-row__prod { display: flex; gap: 14px; align-items: center; }
.cart-row__prod img { width: 84px; height: 84px; object-fit: cover; border-radius: 8px; }
.cart-row__prod div { display: flex; flex-direction: column; gap: 3px; }
.cart-row__prod .muted { font-size: 12px; }
.cart-row__name { font-weight: 600; color: var(--dark); }
.cart-row__name:hover { color: var(--green); }
.cart-actions { display: flex; justify-content: space-between; margin-top: 16px; flex-wrap: wrap; gap: 10px; }
.summary-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; position: sticky; top: 140px; }
.summary-box h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.summary-box dl { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.summary-box dl > div { display: flex; justify-content: space-between; }
.summary-box dl dd { text-align: right; }
.summary-box dl .total { border-top: 1px solid var(--border); padding-top: 12px; margin-top: 4px; font-size: 18px; font-weight: 800; }
.summary-box dl .total dd { color: var(--green); }
.summary-box .tax { display: block; font-size: 11px; color: var(--muted); margin-top: -6px; }
.summary-box .shipmsg { font-size: 12px; color: var(--green); font-weight: 600; margin: 8px 0 14px; }
.promo { display: flex; gap: 6px; margin: 14px 0; }
.promo input { flex: 1; border: 1px solid var(--border); border-radius: 999px; padding: 9px 14px; font-size: 13px; outline: 0; text-transform: uppercase; }
.promo .btn { padding: 9px 16px; }
.summary-box .btn--lg { margin-top: 6px; }
.summary-box .trust-row { display: flex; justify-content: center; gap: 6px; margin-top: 14px; }
.summary-box .trust-row img { width: 36px; height: 22px; border-radius: 3px; }
.summary-box .trust-list { font-size: 12px; color: var(--muted); margin-top: 12px; display: flex; flex-direction: column; gap: 4px; }

/* =========================================================
   CHECKOUT
   ========================================================= */
.co-progress { display: flex; justify-content: center; gap: 0; margin: 10px 0 30px; counter-reset: step; }
.co-progress li { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--muted); padding: 0 18px; position: relative; }
.co-progress li::before { counter-increment: step; content: counter(step); width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--border); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; background: #fff; }
.co-progress li.is-active { color: var(--dark); }
.co-progress li.is-active::before { border-color: var(--green); color: var(--green); }
.co-progress li.is-done::before { background: var(--green); border-color: var(--green); color: #fff; content: "✓"; }
.co-layout { display: grid; grid-template-columns: 1fr 380px; gap: 30px; align-items: start; padding-bottom: 60px; }
.co-step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.co-step h2 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 18px; }
.co-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; gap: 10px; flex-wrap: wrap; }
.radio-card { display: flex; gap: 14px; align-items: center; border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; cursor: pointer; margin-bottom: 10px; transition: border-color .2s, background .2s; }
.radio-card:has(input:checked) { border-color: var(--green); background: var(--green-light); }
.radio-card input { accent-color: var(--green); width: 18px; height: 18px; }
.radio-card > div { flex: 1; }
.radio-card b { display: block; font-size: 14px; color: var(--dark); }
.radio-card small { color: var(--muted); font-size: 12px; }
.radio-card .radio-card__price { font-weight: 700; color: var(--green); white-space: nowrap; }
.radio-card img { width: 40px; height: 24px; border-radius: 3px; }
.radio-card--disabled { cursor: not-allowed; opacity: .58; background: var(--bg-soft); }
.radio-card--disabled:has(input:checked) { border-color: var(--border); background: var(--bg-soft); }
.pay-detail { background: var(--bg-soft); border-radius: 8px; padding: 14px; margin: -4px 0 12px; font-size: 13px; }
.co-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; max-height: 320px; overflow: auto; }
.co-items li { display: grid; grid-template-columns: 52px 1fr auto; gap: 10px; align-items: center; font-size: 13px; }
.co-items img { width: 52px; height: 52px; object-fit: cover; border-radius: 6px; }
.co-items span { display: flex; flex-direction: column; color: var(--dark); font-weight: 600; }
.co-items small { color: var(--muted); font-weight: 400; }
.co-items b { color: var(--dark); text-align: right; }
.co-items b .dual-price { white-space: nowrap; }
.review-box { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.review-box > div { background: var(--bg-soft); border-radius: 8px; padding: 14px; font-size: 13px; line-height: 1.6; }
.review-box h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 6px; display: flex; justify-content: space-between; }
.review-box h4 a { color: var(--green); text-transform: none; letter-spacing: 0; font-weight: 600; }

/* ---------- Confirmation ---------- */
.confirm { max-width: 860px; margin: 0 auto; padding: 40px 0 60px; }
.confirm__head { text-align: center; margin-bottom: 30px; }
.confirm__icon { width: 72px; height: 72px; border-radius: 50%; background: var(--green-light); color: var(--green); display: inline-flex; align-items: center; justify-content: center; font-size: 34px; margin-bottom: 14px; }
.confirm__head h1 { font-size: 30px; color: var(--green-title); font-weight: 800; }
.confirm__head p { color: var(--muted); margin-top: 8px; }
.confirm__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; font-size: 13.5px; line-height: 1.6; }
.info-card h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 8px; }
.info-card--wide { grid-column: 1 / -1; }
.confirm__actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* ---------- Timeline (suivi) ---------- */
.timeline { display: flex; justify-content: space-between; margin: 30px 0; position: relative; }
.timeline::before { content: ""; position: absolute; top: 14px; left: 10%; right: 10%; height: 3px; background: var(--border); }
.timeline li { flex: 1; text-align: center; position: relative; font-size: 12px; color: var(--muted); }
.timeline li span { display: block; width: 30px; height: 30px; border-radius: 50%; background: #fff; border: 3px solid var(--border); margin: 0 auto 10px; position: relative; }
.timeline li.is-done span { background: var(--green); border-color: var(--green); }
.timeline li.is-done span::after { content: "✓"; color: #fff; font-size: 14px; line-height: 24px; }
.timeline li.is-current span { box-shadow: 0 0 0 5px rgba(31,122,92,.2); }
.timeline li b { display: block; color: var(--dark); font-size: 12.5px; }
.timeline li.is-done b { color: var(--green-dark); }
#trackResult h2 { justify-content: flex-start !important; }
#trackResult h2 .status { margin-left: auto; }
.status { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; background: #fff6e8; color: var(--orange); }
.status--versandt { background: #e7f0fb; color: #2b7ab8; }
.status--zugestellt { background: var(--green-light); color: var(--green-dark); }

/* =========================================================
   LOGIN / KONTO
   ========================================================= */
.auth { max-width: 460px; margin: 40px auto 70px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.auth-tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 22px; }
.auth-tabs button { flex: 1; padding: 12px; font-weight: 700; color: var(--muted); border-bottom: 2px solid transparent; }
.auth-tabs button.is-active { color: var(--green); border-color: var(--green); }
.auth h1 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.auth p.muted { font-size: 13px; margin-bottom: 18px; }
.auth .btn--block { margin-top: 6px; }
.auth__links { display: flex; justify-content: space-between; font-size: 12.5px; margin-top: 12px; }
.auth__links a { color: var(--green); font-weight: 600; }
.acc-layout { display: grid; grid-template-columns: 250px 1fr; gap: 30px; align-items: start; padding-bottom: 60px; }
.acc-nav { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; }
.acc-nav__user { padding: 8px 12px 14px; border-bottom: 1px solid var(--border); margin-bottom: 8px; }
.acc-nav__user b { display: block; font-size: 15px; color: var(--dark); }
.acc-nav__user span { font-size: 12px; color: var(--muted); }
.acc-nav a, .acc-nav button { display: block; width: 100%; text-align: left; padding: 10px 12px; border-radius: 8px; font-size: 13.5px; font-weight: 600; color: var(--text); }
.acc-nav a.is-active, .acc-nav a:hover { background: var(--green-light); color: var(--green-dark); }
.acc-nav button { color: var(--red); }
.acc-panel h2 { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 18px; }
.stat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 24px; }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.stat-card b { display: block; font-size: 26px; color: var(--green); font-weight: 800; }
.stat-card span { font-size: 12.5px; color: var(--muted); }
.order-card { display: grid; grid-template-columns: 1fr auto auto auto auto; gap: 14px; align-items: center; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; margin-bottom: 10px; font-size: 13.5px; }
.order-card > div { display: flex; flex-direction: column; }
.order-card .btn { padding: 8px 14px; font-size: 12px; }

/* =========================================================
   PAGES LÉGALES / CONTENU
   ========================================================= */
.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; padding: 10px 0 70px; }
.legal-nav { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 14px; position: sticky; top: 140px; }
.legal-nav h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); padding: 6px 12px 10px; }
.legal-nav a { display: block; padding: 8px 12px; border-radius: 8px; font-size: 13px; font-weight: 500; }
.legal-nav a.is-active, .legal-nav a:hover { background: var(--green-light); color: var(--green-dark); font-weight: 600; }
.prose { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 38px; font-size: 14.5px; line-height: 1.75; color: var(--text); }
.prose h1 { font-size: 28px; font-weight: 800; color: var(--green-title); margin-bottom: 6px; }
.prose .updated { color: var(--muted); font-size: 12.5px; margin-bottom: 26px; display: block; }
.prose h2 { font-size: 18px; font-weight: 700; color: var(--dark); margin: 28px 0 10px; }
.prose h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin: 20px 0 8px; }
.prose p { margin-bottom: 12px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 12px; }
.prose ul { list-style: disc; } .prose ol { list-style: decimal; }
.prose li { margin-bottom: 5px; }
.prose a { color: var(--green); font-weight: 600; }
.prose table { width: 100%; border-collapse: collapse; margin: 12px 0 18px; font-size: 13.5px; }
.prose th, .prose td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--border); vertical-align: top; }
.prose th { background: var(--bg-soft); font-weight: 700; }
.prose .form { margin-top: 20px; }
.prose address { font-style: normal; background: var(--bg-soft); padding: 14px 18px; border-radius: 8px; margin-bottom: 14px; }

/* ---------- Kontakt / Über uns ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 30px; align-items: start; padding: 30px 0 60px; }
.contact-cards { display: grid; gap: 14px; }
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start; font-size: 13.5px; line-height: 1.6; }
.contact-card svg { width: 36px; height: 36px; flex: 0 0 36px; color: var(--green); background: var(--green-light); border-radius: 10px; padding: 8px; }
.contact-card b { display: block; color: var(--dark); font-size: 14px; }
.map-placeholder { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: #e8ede9; aspect-ratio: 16 / 8; display: flex; align-items: center; justify-content: center; position: relative; }
.map-placeholder svg { width: 100%; height: 100%; }
.map-placeholder .pin { position: absolute; left: 50%; top: 45%; transform: translate(-50%, -100%); background: var(--green); color: #fff; padding: 6px 12px; border-radius: 8px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.map-placeholder .pin::after { content: ""; position: absolute; left: 50%; bottom: -8px; transform: translateX(-50%); border: 8px solid transparent; border-top-color: var(--green); border-bottom: 0; }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.form-card h2 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.value svg { width: 34px; height: 34px; color: var(--green); margin-bottom: 12px; }
.value b { display: block; font-size: 15px; color: var(--dark); margin-bottom: 6px; }
.value p { font-size: 13px; color: var(--muted); }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-split img { border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.about-split h2 { font-size: 28px; font-weight: 800; color: var(--green-title); margin-bottom: 14px; }
.about-split p { font-size: 14.5px; line-height: 1.7; margin-bottom: 12px; }
.numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.numbers div { padding: 22px; }
.numbers b { display: block; font-size: 36px; font-weight: 800; color: var(--green); }
.numbers span { font-size: 13px; color: var(--muted); }
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.team__card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; text-align: center; }
.team__avatar { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 12px; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 22px; }
.team__card b { display: block; color: var(--dark); }
.team__card span { font-size: 12.5px; color: var(--muted); }

/* ---------- Marken / Vergleich / Artikel ---------- */
.brands-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-bottom: 60px; }
.brand-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; gap: 10px; transition: box-shadow .25s, transform .25s; }
.brand-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.brand-card__logo { font-size: 26px; font-weight: 800; color: var(--dark); letter-spacing: -.5px; }
.brand-card p { font-size: 13px; color: var(--muted); flex: 1; }
.compare-wrap { overflow-x: auto; padding-bottom: 60px; }
.compare-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); font-size: 13.5px; min-width: 700px; }
.compare-table th { text-align: left; padding: 12px 16px; background: var(--bg-soft); font-size: 12px; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); width: 180px; border-top: 1px solid var(--border); }
.compare-table td { padding: 12px 16px; border-top: 1px solid var(--border); border-left: 1px solid var(--border); vertical-align: middle; }
.compare-table thead td { text-align: center; }
.compare-table thead img { width: 140px; height: 110px; object-fit: cover; border-radius: 8px; margin: 0 auto 8px; }
.compare-table thead b { display: block; font-size: 13.5px; color: var(--dark); }
.article { max-width: 820px; margin: 0 auto; padding: 30px 0 60px; }
.article__tag { color: var(--green); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.article h1 { font-size: 34px; font-weight: 800; line-height: 1.2; color: var(--green-title); margin: 8px 0 14px; }
.article__intro { font-size: 17px; color: var(--muted); line-height: 1.6; margin-bottom: 22px; }
.article > img { border-radius: var(--radius); aspect-ratio: 16 / 8; object-fit: cover; width: 100%; margin-bottom: 26px; }
.article__body p { font-size: 15.5px; line-height: 1.8; margin-bottom: 16px; }
.article__share { display: flex; gap: 10px; align-items: center; margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 13px; color: var(--muted); }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 70px 20px 90px; }
.notfound b { display: block; font-size: 96px; font-weight: 800; color: var(--green-light); line-height: 1; }
.notfound h1 { font-size: 28px; color: var(--dark); margin: -20px 0 10px; }
.notfound p { color: var(--muted); margin-bottom: 22px; }
.notfound .btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ---------- Bandeau cookies ---------- */
.cookie-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 110; background: #fff; box-shadow: 0 -8px 30px rgba(0,0,0,.14); border-top: 1px solid var(--border); }
.cookie-bar__inner { display: flex; align-items: center; gap: 20px; padding: 16px 20px; }
.cookie-bar p { flex: 1; font-size: 13px; }
.cookie-bar a { color: var(--green); font-weight: 600; text-decoration: underline; }
.cookie-bar__btns { display: flex; gap: 8px; }

/* ---------- Responsive pages ---------- */
@media (max-width: 1100px) {
  .co-layout, .cart-layout { grid-template-columns: 1fr; }
  .summary-box { position: static; }
  .values, .numbers { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .listing { grid-template-columns: 1fr; }
  .filters { position: static; display: none; }
  .filters.is-open { display: block; }
  .filter-toggle { display: inline-flex; }
  .acc-layout, .legal-layout, .contact-grid, .about-split { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
  .prose { padding: 24px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .review-box { grid-template-columns: 1fr; }
  .confirm__grid { grid-template-columns: 1fr; }
  .co-progress li { padding: 0 8px; font-size: 0; gap: 0; }
  .co-progress li::before { font-size: 12px; }
  .cart-table thead { display: none; }
  .cart-table tr { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px; border-top: 1px solid var(--border); }
  .cart-table td { border: 0; padding: 4px; }
  .cart-table td.cart-row__prod { grid-column: 1 / -1; }
  .cart-table td[data-label]::before { content: attr(data-label) ": "; color: var(--muted); font-size: 12px; }
  .order-card { grid-template-columns: 1fr 1fr; }
  .stat-cards, .team, .values, .numbers { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 28px; }
  .cookie-bar__inner { flex-direction: column; align-items: stretch; }
  .timeline li b { font-size: 10px; }
}

/* Grilles 3 colonnes (listing, compte) */
.page-listing #listGrid, .page-account .acc-panel .grid--4 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .page-listing #listGrid, .page-account .acc-panel .grid--4 { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   VERSION PHP – transitions, off-canvas, méga-menu, mobile
   ========================================================= */
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--green); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 200; }
.skip-link:focus { left: 8px; }
.flash { padding: 10px 0; font-size: 13.5px; font-weight: 600; }
.flash--success { background: var(--green-light); color: var(--green-dark); }
.flash--error { background: #fdeceb; color: var(--red); }
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__text { font-weight: 800; font-size: 18px; color: var(--green-title); letter-spacing: -.3px; white-space: nowrap; }
.footer__brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 16px; margin-bottom: 8px; }
.footer__tagline { font-size: 12.5px; color: #9aa3ab; margin-bottom: 16px; }

/* ---------- Transitions de page ---------- */
@keyframes pageIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
main#main { animation: pageIn .45s ease both; }
.page-transition { position: fixed; inset: 0; z-index: 400; background: var(--bg); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
body.is-leaving .page-transition { opacity: 1; pointer-events: auto; }
body.is-leaving main#main { opacity: 0; transform: translateY(-6px); transition: opacity .25s, transform .25s; }
@media (prefers-reduced-motion: reduce) { main#main { animation: none; } .page-transition, .cart-drawer, .nav, .card, .cat { transition: none !important; } }
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: 180ms ease-out both fadeOut; }
::view-transition-new(root) { animation: 260ms ease-in both fadeIn; }
@keyframes fadeOut { to { opacity: 0; } } @keyframes fadeIn { from { opacity: 0; } }

/* ---------- Méga-menu (desktop) ---------- */
.nav__list .has-sub { position: relative; }
.nav__sub {
  position: absolute; top: 100%; left: 0; z-index: 60; min-width: 560px;
  background: #fff; border-radius: 0 0 14px 14px; box-shadow: var(--shadow-lg); padding: 14px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s, transform .2s, visibility .2s;
}
.has-sub:hover .nav__sub, .has-sub:focus-within .nav__sub { opacity: 1; visibility: visible; transform: none; }
.nav__sub a { display: flex !important; align-items: center; gap: 12px; padding: 8px 10px !important; border-radius: 8px !important; color: var(--dark) !important; text-transform: none !important; font-size: 13px !important; letter-spacing: 0 !important; }
.nav__sub a:hover { background: var(--bg-soft) !important; color: var(--green) !important; }
.nav__sub img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; }
.nav__sub span { display: flex; flex-direction: column; }
.nav__sub small { color: var(--muted); font-weight: 400; font-size: 11px; }
.nav__mobile-head { display: none; }
.nav-overlay { display: none; }

/* ---------- Barre mobile ---------- */
.mobile-nav { display: none; }

/* ---------- Chat ---------- */
.chat-btn__unread { position: absolute; top: -6px; left: -6px; background: var(--red); color: #fff; font-size: 10px; min-width: 18px; height: 18px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; }
.chat-box { display: flex; flex-direction: column; max-height: 70vh; animation: pageIn .25s ease both; }
.chat-box__head { align-items: flex-start; }
.chat-box__head small { display: block; font-size: 11px; font-weight: 400; opacity: .85; }
.chat-box__body { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 8px; background: #f7f8f8; min-height: 180px; max-height: 320px; }
.chat-msg { max-width: 82%; padding: 9px 13px; border-radius: 14px; font-size: 13px; line-height: 1.45; }
.chat-msg--admin { background: #fff; border: 1px solid var(--border); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg--user { background: var(--chat); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-msg small { display: block; font-size: 10px; opacity: .65; margin-top: 3px; }
.chat-box__start { display: flex; flex-direction: column; gap: 8px; padding: 12px; border-top: 1px solid var(--border); }
.chat-box__start input { border: 1px solid var(--border); border-radius: 8px; padding: 9px 12px; font-size: 13px; outline: 0; }
.chat-box__form { padding: 10px; border-top: 1px solid var(--border); }

/* ---------- Divers ---------- */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,.88); display: flex; align-items: center; justify-content: center; padding: 30px; animation: fadeIn .2s; }
.lightbox img { max-width: 100%; max-height: 100%; border-radius: 10px; }
.lightbox__close { position: absolute; top: 16px; right: 22px; color: #fff; font-size: 40px; line-height: 1; }
.bank-box { background: #fff; border: 2px solid var(--green); border-radius: var(--radius); padding: 24px; margin: 8px 0 20px; box-shadow: var(--shadow-lg); }
.bank-box h2 { font-size: 18px; color: var(--green-title); margin-bottom: 10px; }
.bank-box__amount { color: var(--green); font-size: 20px; }
.bank-box__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin: 16px 0 12px; }
.bank-box__grid > div { background: var(--green-light); border-radius: 8px; padding: 10px 14px; }
.bank-box__grid dt { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.bank-box__grid dd { font-size: 15px; color: var(--dark); word-break: break-all; }
.bank-box__ref { color: var(--red); font-size: 18px; }
[data-copy] { cursor: pointer; border-bottom: 1px dashed currentColor; }
dl.totals { display: flex; flex-direction: column; gap: 6px; border-top: 1px solid var(--border); padding-top: 12px; margin-top: 12px; }
dl.totals > div { display: flex; justify-content: space-between; }
dl.totals .total { font-size: 18px; font-weight: 800; }
dl.totals .total dd { color: var(--green); }
.stock-line.is-out, .card__stock--out { color: var(--red); }
.product-info__short { font-size: 14.5px; color: var(--text); margin-bottom: 12px; }
.hero .hero__title { font-size: 46px; font-weight: 800; line-height: 1.1; margin-bottom: 16px; text-shadow: 0 2px 14px rgba(0,0,0,.35); }
.seo-text { margin-top: 30px; padding: 20px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); font-size: 13.5px; color: var(--muted); }
.seo-text h2 { font-size: 16px; color: var(--dark); margin-bottom: 6px; }
.pagination a { min-width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--border); background: #fff; font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; justify-content: center; }
.pagination a.is-active { background: var(--green); color: #fff; border-color: var(--green); }
.pagination a.is-disabled { opacity: .4; pointer-events: none; }
.brands__row a { font-size: 22px; font-weight: 800; color: #b9c0c6; letter-spacing: -.5px; transition: color .2s; }
.brands__row a:hover { color: var(--dark); }
.card__wish.is-busy, [data-add].is-busy { opacity: .6; pointer-events: none; }
.cart-item__qty button:disabled { opacity: .4; }

/* ---------- Mobile : off-canvas, barre inférieure ---------- */
@media (max-width: 860px) {
  body { padding-bottom: 64px; }
  .header__top { height: 64px; }
  .nav { display: block; position: fixed; top: 0; left: 0; bottom: 0; width: min(320px, 86vw); z-index: 150; background: #fff; transform: translateX(-100%); transition: transform .3s cubic-bezier(.4,0,.2,1); overflow-y: auto; box-shadow: var(--shadow-lg); }
  .nav.is-open { transform: none; }
  .nav-overlay { display: block; position: fixed; inset: 0; z-index: 140; background: rgba(0,0,0,.45); opacity: 0; pointer-events: none; transition: opacity .3s; }
  .nav-overlay.is-open { opacity: 1; pointer-events: auto; }
  .nav__mobile-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; font-weight: 800; color: var(--green-title); border-bottom: 1px solid var(--border); }
  .nav__close svg { width: 22px; height: 22px; }
  .nav__list { flex-direction: column; align-items: stretch; height: auto; padding: 10px 12px; gap: 2px; }
  .nav__list a { color: var(--dark); text-transform: none; font-size: 15px; font-weight: 600; padding: 12px 14px; border-radius: 10px; white-space: normal; }
  .nav__list a.active { background: var(--green-light); color: var(--green-dark); }
  .nav__list a.nav__sale { background: #fdeceb; }
  .nav__sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding: 0 0 8px 12px; min-width: 0; grid-template-columns: 1fr; display: none; }
  .has-sub.is-open .nav__sub { display: grid; }
  .has-sub > a::after { content: "›"; float: right; transition: transform .2s; }
  .has-sub.is-open > a::after { transform: rotate(90deg); }
  .mobile-nav { display: grid; grid-template-columns: repeat(5, 1fr); position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; background: #fff; border-top: 1px solid var(--border); padding: 6px 0 max(6px, env(safe-area-inset-bottom)); }
  .mobile-nav a, .mobile-nav button { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 10px; font-weight: 600; color: var(--muted); position: relative; }
  .mobile-nav svg { width: 22px; height: 22px; }
  .mobile-nav__badge { position: absolute; top: -4px; right: calc(50% - 18px); background: var(--green); color: #fff; font-size: 9px; min-width: 16px; height: 16px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; }
  .mobile-nav__badge.is-empty { display: none; }
  .chat-btn { bottom: 76px; right: 14px; }
  .chat-box { right: 10px; left: 10px; width: auto; bottom: 130px; }
  .to-top { bottom: 140px; right: 14px; }
  .toast { bottom: 80px; width: calc(100% - 28px); text-align: center; }
  .cart-drawer { width: 100%; right: -100%; }
  .cart-drawer.is-open { right: 0; }
  .sticky-buy { bottom: 64px; }
  .cookie-bar { bottom: 64px; }
  .bank-box__grid { grid-template-columns: 1fr; }
  .hero .hero__title { font-size: 30px; }
  .topbar__inner { overflow: hidden; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px 12px;
    margin-right: -20px;
    padding-right: 20px;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--green) transparent;
  }
  .chips::-webkit-scrollbar { height: 4px; }
  .chips::-webkit-scrollbar-track { background: transparent; }
  .chips::-webkit-scrollbar-thumb { background: var(--green); border-radius: 999px; }
  .chip { flex: 0 0 auto; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__thumbs { flex-direction: row; order: 2; overflow-x: auto; }
  .gallery__thumb { flex: 0 0 64px; }
}
@media (max-width: 480px) {
  .header__top { grid-template-columns: auto 1fr auto; }
  .logo img { height: 38px; }
  .logo__text { font-size: 15px; }
  .header__actions { gap: 12px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .card .btn { padding: 9px 8px; font-size: 11.5px; }
  .card__name { font-size: 12.5px; min-height: 34px; }
  .card__price strong { font-size: 15px; }
  .section__title { font-size: 21px; }
  .product-info__title { font-size: 22px; }
  .price--lg { font-size: 24px; }
  .buy-row .btn--wide { flex: 1 1 100%; }
  .co-progress li { padding: 0 6px; }
  .confirm__head h1 { font-size: 22px; }
  .usp__item { padding: 10px 4px; }
}
