/* ==========================================================================
   Maison Taillefer — CSS global
   Pré-template WordPress / Bootstrap 5 / ACF-ready
   ========================================================================== */

/* ---------- Variables ---------- */
:root {
  /* Couleurs charte */
  --mt-orange:        #ff6c00;
  --mt-orange-dark:   #e35f00;
  --mt-orange-soft:   #fff3e9;
  --mt-rose:          #eee2ea;
  --mt-rose-soft:     #f7f0f3;
  --mt-black:         #000000;

  /* Neutres (épicerie fine premium) */
  --mt-cream:         #f8f4ec;
  --mt-cream-2:       #f3ece0;
  --mt-paper:         #fbf9f5;
  --mt-ink:           #1a1614;
  --mt-ink-2:         #3a3430;
  --mt-muted:         #6b635c;
  --mt-line:          #e6dfd4;
  --mt-line-strong:   #d6cdbe;
  --mt-white:         #ffffff;

  /* Sémantique */
  --mt-success:       #4f7d4a;
  --mt-error:         #b1463a;

  /* Typographie */
  --mt-serif:  "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --mt-sans:   "Lato", "Helvetica Neue", Arial, sans-serif;

  /* Échelle de type */
  --fs-display:   clamp(2.5rem, 4.2vw + 1rem, 5.25rem);
  --fs-h1:        clamp(2rem, 2.4vw + 1rem, 3.5rem);
  --fs-h2:        clamp(1.625rem, 1.6vw + 1rem, 2.5rem);
  --fs-h3:        clamp(1.25rem, 0.8vw + 1rem, 1.625rem);
  --fs-h4:        1.125rem;
  --fs-body:      1rem;
  --fs-small:     0.875rem;
  --fs-xs:        0.75rem;
  --fs-eyebrow:   0.78rem;

  /* Spacing rythmé (4px) */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  24px;
  --sp-6:  32px;
  --sp-7:  48px;
  --sp-8:  64px;
  --sp-9:  96px;
  --sp-10: 128px;

  /* Rayons */
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 10px;
  --r-pill: 999px;

  /* Ombres (chaudes) */
  --shadow-sm: 0 1px 2px rgba(26,22,20,0.06), 0 2px 6px rgba(26,22,20,0.04);
  --shadow-md: 0 4px 12px rgba(26,22,20,0.08), 0 2px 4px rgba(26,22,20,0.04);
  --shadow-lg: 0 18px 40px rgba(26,22,20,0.10), 0 4px 12px rgba(26,22,20,0.06);

  /* Motion */
  --ease-out: cubic-bezier(.22,1,.36,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);
  --t-fast: 160ms;
  --t-base: 240ms;
  --t-slow: 480ms;

  /* Layout */
  --container-max: 1320px;
  --header-h: 96px;
}

/* ---------- Reset light ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--mt-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--mt-ink);
  background: var(--mt-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

img, svg { max-width: 100%; display: block; }

a {
  color: var(--mt-ink);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-out);
}
a:hover { color: var(--mt-orange); }

/* ---------- Typographie globale ---------- */
.t-serif { font-family: var(--mt-serif); }
.t-sans  { font-family: var(--mt-sans); }

.t-display,
.t-h1,
.t-h2,
.t-h3,
h1, h2, h3, h4 {
  font-family: var(--mt-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--mt-ink);
  margin: 0 0 var(--sp-4);
  line-height: 1.15;
}

.t-display { font-size: var(--fs-display); line-height: 1.05; letter-spacing: -0.02em; }
.t-h1, h1  { font-size: var(--fs-h1); }
.t-h2, h2  { font-size: var(--fs-h2); }
.t-h3, h3  { font-size: var(--fs-h3); line-height: 1.25; }
h4         { font-size: var(--fs-h4); line-height: 1.3; }

.t-eyebrow {
  font-family: var(--mt-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mt-orange);
  display: inline-block;
}

.t-eyebrow--ink { color: var(--mt-ink); }
.t-eyebrow--muted { color: var(--mt-muted); }

.t-lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--mt-ink-2);
  max-width: 60ch;
}

.t-muted   { color: var(--mt-muted); }
.t-small   { font-size: var(--fs-small); }
.t-xs      { font-size: var(--fs-xs); }

.t-uppercase { text-transform: uppercase; letter-spacing: 0.08em; }

/* Liens éditoriaux (souligné fin) */
.t-link {
  color: var(--mt-ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color var(--t-fast) var(--ease-out);
}
.t-link:hover { color: var(--mt-orange); }

/* ---------- Couleurs utilitaires ---------- */
.bg-paper  { background: var(--mt-paper); }
.bg-cream  { background: var(--mt-cream); }
.bg-cream-2{ background: var(--mt-cream-2); }
.bg-rose   { background: var(--mt-rose); }
.bg-rose-soft { background: var(--mt-rose-soft); }
.bg-ink    { background: var(--mt-ink); color: var(--mt-cream); }
.bg-white  { background: var(--mt-white); }

.text-orange { color: var(--mt-orange); }
.text-ink    { color: var(--mt-ink); }
.text-muted  { color: var(--mt-muted); }

/* ---------- Section / container ---------- */
.section {
  padding-block: clamp(48px, 6vw, 96px);
}
.section--sm { padding-block: clamp(32px, 4vw, 56px); }
.section--lg { padding-block: clamp(72px, 8vw, 128px); }
.section--tight { padding-block: clamp(24px, 3vw, 40px); }

.container,
.container-lg,
.container-xl,
.container-xxl {
  max-width: var(--container-max);
}

/* En-tête de section réutilisable */
.section-head {
  margin-bottom: clamp(32px, 4vw, 56px);
}
.section-head__eyebrow { margin-bottom: var(--sp-3); }
.section-head__title { margin-bottom: var(--sp-3); }
.section-head__intro {
  font-size: 1.0625rem;
  color: var(--mt-ink-2);
  max-width: 60ch;
  margin: 0;
}
.section-head--center { text-align: center; }
.section-head--center .section-head__intro { margin-inline: auto; }

/* ---------- Boutons ---------- */
.btn {
  --btn-bg: var(--mt-orange);
  --btn-fg: #fff;
  --btn-bd: var(--mt-orange);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--mt-sans);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  background: var(--btn-bg) !important;
  color: var(--btn-fg);
  border: 1.5px solid var(--btn-bd);
  cursor: pointer;
  transition: background var(--t-fast) var(--ease-out),
              color var(--t-fast) var(--ease-out),
              border-color var(--t-fast) var(--ease-out),
              transform var(--t-fast) var(--ease-out);
  text-decoration: none;
}
.btn:hover {
  --btn-bg: var(--mt-orange-dark) !important;
  --btn-bd: var(--mt-orange-dark) !important;
  color: #fff !important;
}
.btn:active { transform: translateY(1px); }

.btn--outline {
  --btn-bg: transparent !important;
  --btn-fg: var(--mt-ink) !important;
  --btn-bd: var(--mt-ink) !important;
}
.btn--outline:hover {
  --btn-bg: var(--mt-ink) !important;
  --btn-fg: var(--mt-cream) !important;
  --btn-bd: var(--mt-ink) !important;
}

.btn--outline-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  --btn-bd: rgba(255,255,255,0.7);
}
.btn--outline-light:hover {
  --btn-bg: #fff;
  --btn-fg: var(--mt-ink);
  --btn-bd: #fff;
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--mt-ink);
  --btn-bd: transparent;
  padding: 10px 12px;
}
.btn--ghost:hover {
  --btn-bg: var(--mt-cream);
  --btn-fg: var(--mt-ink);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.8125rem;
}

.btn--block { width: 100%; }

.btn--icon-only {
  padding: 10px;
  width: 42px;
  height: 42px;
}

/* Lien CTA inline avec flèche */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--mt-sans);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mt-ink);
  border-bottom: 1px solid var(--mt-ink);
  padding-bottom: 4px;
  transition: gap var(--t-base) var(--ease-out), color var(--t-fast) var(--ease-out);
}
.cta-link:hover {
  gap: var(--sp-4);
  color: var(--mt-orange);
  border-bottom-color: var(--mt-orange);
}
.cta-link i { font-size: 0.75rem; }

/* ---------- Badges / tags ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--mt-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--mt-cream);
  color: var(--mt-ink-2);
  border: 1px solid var(--mt-line);
}
.tag--orange { background: var(--mt-orange); color: #fff; border-color: var(--mt-orange); }
.tag--rose   { background: var(--mt-rose); color: var(--mt-ink); border-color: transparent; }
.tag--ink    { background: var(--mt-ink); color: var(--mt-cream); border-color: var(--mt-ink); }
.tag--outline { background: transparent; }

/* Badge "depuis 1945" */
.heritage-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--mt-serif);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--mt-muted);
  letter-spacing: 0.04em;
}
.heritage-badge::before,
.heritage-badge::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--mt-line-strong);
}

/* ---------- Forms ---------- */
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field__label {
  font-family: var(--mt-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mt-ink-2);
}
.field__input,
.field__textarea,
.field__select {
  font-family: var(--mt-sans);
  font-size: 1rem;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--mt-line-strong);
  border-radius: var(--r-sm);
  color: var(--mt-ink);
  transition: border-color var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
  width: 100%;
}
.field__textarea { min-height: 140px; resize: vertical; }
.field__input:focus,
.field__textarea:focus,
.field__select:focus {
  outline: none;
  border-color: var(--mt-orange);
  box-shadow: 0 0 0 3px rgba(255,108,0,0.15);
}
.field__hint {
  font-size: 0.8125rem;
  color: var(--mt-muted);
}
.field__check {
  display: inline-flex;
  gap: var(--sp-3);
  align-items: flex-start;
  font-size: 0.875rem;
  color: var(--mt-ink-2);
}

/* Newsletter inline */
.newsletter-form {
  display: flex;
  gap: 0;
  border: 1px solid var(--mt-line-strong);
  border-radius: var(--r-sm);
  background: #fff;
  overflow: hidden;
  max-width: 480px;
}
.newsletter-form__input {
  flex: 1;
  border: 0;
  padding: 14px 16px;
  font-family: var(--mt-sans);
  font-size: 0.9375rem;
  background: transparent;
  color: var(--mt-ink);
}
.newsletter-form__input:focus { outline: none; }
.newsletter-form__btn {
  border: 0;
  padding: 14px 24px;
  background: var(--mt-ink);
  color: #fff;
  font-family: var(--mt-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease-out);
}
.newsletter-form__btn:hover { background: var(--mt-orange); }

/* ---------- Cards génériques ---------- */
.card-soft {
  background: #fff;
  border: 1px solid var(--mt-line);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  transition: box-shadow var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out);
}
.card-soft:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ---------- Carte produit (sobre & minimaliste) ---------- */
.product-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  position: relative;
  text-align: left;
}
.product-card__media {
  position: relative;
  background: var(--mt-cream);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--r-sm);
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.product-card:hover .product-card__media img { transform: scale(1.04); }

.product-card__flags {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.product-card__wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.9);
  border: 0;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mt-ink);
  cursor: pointer;
  transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
  z-index: 2;
}
.product-card__wishlist:hover { color: var(--mt-orange); background: #fff; }
.product-card__wishlist.is-active { color: var(--mt-orange); }

.product-card__quickadd {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: var(--mt-ink);
  color: #fff;
  border: 0;
  padding: 12px 14px;
  font-family: var(--mt-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--r-sm);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out), background var(--t-fast) var(--ease-out);
  z-index: 2;
}
.product-card__quickadd:hover { background: var(--mt-orange); }
.product-card:hover .product-card__quickadd { opacity: 1; transform: translateY(0); }

.product-card__category {
  margin-top: 14px;
  font-family: var(--mt-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mt-muted);
}
.product-card__title {
  margin: 4px 0 6px;
  font-family: var(--mt-serif);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--mt-ink);
}
.product-card__title a { color: inherit; }
.product-card__title a:hover { color: var(--mt-orange); }
.product-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-top: auto;
}
.product-card__price {
  font-family: var(--mt-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--mt-ink);
}
.product-card__price-old {
  font-weight: 400;
  text-decoration: line-through;
  color: var(--mt-muted);
  margin-right: 6px;
}
.product-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--mt-muted);
}
.product-card__rating i { color: var(--mt-orange); font-size: 0.75rem; }

/* Drapeaux produits */
.flag {
  font-family: var(--mt-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-xs);
  background: #fff;
  color: var(--mt-ink);
  border: 1px solid var(--mt-line);
}
.flag--promo { background: var(--mt-orange); color: #fff; border-color: var(--mt-orange); }
.flag--new   { background: var(--mt-ink);    color: #fff; border-color: var(--mt-ink); }
.flag--bio   { background: #4f7d4a;          color: #fff; border-color: #4f7d4a; }

/* ---------- Image placeholders typés produit ---------- */
.placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mt-cream) 0%, var(--mt-cream-2) 100%);
  color: var(--mt-line-strong);
  position: relative;
  overflow: hidden;
}
.placeholder-img i {
  font-size: clamp(48px, 8vw, 96px);
  color: rgba(0,0,0,0.12);
}
/* .placeholder-img::after {
  content: attr(data-label);
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--mt-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mt-muted);
  background: rgba(255,255,255,0.6);
  padding: 4px 8px;
  border-radius: var(--r-xs);
} */

/* ---------- Bandeaux & topbars ---------- */
.promo-bar {
  background: var(--mt-ink);
  color: var(--mt-cream);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 10px var(--sp-4);
  position: relative;
  z-index: 50;
}
.promo-bar a { color: var(--mt-orange); border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.promo-bar a:hover { color: #fff; }

.topbar {
  background: var(--mt-cream);
  border-bottom: 1px solid var(--mt-line);
  font-size: 0.8125rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: var(--sp-4);
  color: var(--mt-muted);
}
.topbar__list {
  display: flex;
  gap: var(--sp-5);
  list-style: none;
  margin: 0;
  padding: 0;
}
.topbar__list a { color: var(--mt-muted); }
.topbar__list a:hover { color: var(--mt-ink); }

/* ---------- Header principal ---------- */
.site-header {
  background: var(--mt-paper);
  border-bottom: 1px solid var(--mt-line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: var(--sp-4) 0;
  gap: var(--sp-5);
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.site-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header__logo img { max-height: 60px; width: auto; }
.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--sp-2);
}
.site-header__icon-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--mt-ink);
  border-radius: var(--r-pill);
  cursor: pointer;
  position: relative;
  transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}
.site-header__icon-btn:hover { background: var(--mt-cream); color: var(--mt-orange); }
.site-header__icon-btn .badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--mt-orange);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Menu principal */
.main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--sp-6);
  align-items: center;
}
.main-menu__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mt-sans);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mt-ink);
  padding: 6px 0;
  position: relative;
}
.main-menu__link:hover { color: var(--mt-orange); }
.main-menu__link.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--mt-orange);
}

/* Mobile burger */
.site-header__burger {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 0;
  align-items: center;
  justify-content: center;
  color: var(--mt-ink);
  cursor: pointer;
}

@media (max-width: 991.98px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }
  .site-header__nav { display: none; }
  .site-header__burger { display: inline-flex; }
  .site-header__logo img { max-height: 48px; }
  .topbar__list { gap: var(--sp-3); }
}

/* Search drawer (placeholder visuel) */
.search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--mt-line-strong);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  width: 100%;
  max-width: 280px;
}
.search-bar input {
  border: 0;
  font-family: var(--mt-sans);
  font-size: 0.875rem;
  background: transparent;
  width: 100%;
}
.search-bar input:focus { outline: none; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--mt-ink);
  color: rgba(255,255,255,0.78);
  padding-top: var(--sp-9);
  padding-bottom: var(--sp-5);
  font-size: 0.9375rem;
}
.site-footer h4 {
  font-family: var(--mt-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--sp-4);
}
.site-footer a { color: rgba(255,255,255,0.78); }
.site-footer a:hover { color: var(--mt-orange); }
.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer__brand img {
  filter: invert(1) brightness(2);
  max-width: 160px;
  margin-bottom: var(--sp-4);
}
.site-footer__about {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--sp-4);
  color: rgba(255,255,255,0.7);
}
.site-footer__socials {
  display: flex;
  gap: var(--sp-3);
}
.site-footer__socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}
.site-footer__socials a:hover {
  background: var(--mt-orange);
  border-color: var(--mt-orange);
  color: #fff;
}
.site-footer__bottom {
  margin-top: var(--sp-7);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
}
.site-footer__payments {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.55);
  font-size: 1.5rem;
}
.site-footer__payments i { color: rgba(255,255,255,0.55); }

/* ---------- Reassurance ---------- */
.reassurance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  border-top: 1px solid var(--mt-line);
  border-bottom: 1px solid var(--mt-line);
  padding: var(--sp-6) 0;
}
.reassurance__item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.reassurance__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-pill);
  background: var(--mt-cream);
  color: var(--mt-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.reassurance__title {
  font-family: var(--mt-sans);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--mt-ink);
  margin-bottom: 2px;
}
.reassurance__text {
  font-size: 0.8125rem;
  color: var(--mt-muted);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 767.98px) {
  .reassurance { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb-bar {
  padding: var(--sp-4) 0;
  font-size: 0.8125rem;
  color: var(--mt-muted);
  border-bottom: 1px solid var(--mt-line);
}
.breadcrumb-bar ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.breadcrumb-bar li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumb-bar li + li::before {
  content: "/";
  color: var(--mt-line-strong);
}
.breadcrumb-bar a { color: var(--mt-muted); }
.breadcrumb-bar a:hover { color: var(--mt-ink); }
.breadcrumb-bar [aria-current="page"] { color: var(--mt-ink); font-weight: 500; }

/* ---------- Page header ---------- */
.page-header {
  background: var(--mt-cream);
  padding: clamp(48px, 6vw, 88px) 0;
  border-bottom: 1px solid var(--mt-line);
}
.page-header__eyebrow { margin-bottom: var(--sp-3); }
.page-header__title { margin-bottom: var(--sp-4); }
.page-header__intro {
  font-size: 1.0625rem;
  color: var(--mt-ink-2);
  max-width: 60ch;
}

/* ---------- Animations utilitaires ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeInUp var(--t-slow) var(--ease-out) both; }

/* ---------- Swiper helpers ---------- */
.swiper-button-next, .swiper-button-prev {
  --swiper-navigation-size: 18px;
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--mt-line-strong);
  color: var(--mt-ink);
  box-shadow: var(--shadow-sm);
  transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background: var(--mt-ink);
  color: #fff;
  border-color: var(--mt-ink);
}
.swiper-pagination-bullet {
  background: var(--mt-line-strong);
  opacity: 1;
}
.swiper-pagination-bullet-active { background: var(--mt-ink); }

/* ---------- Helpers responsive ---------- */
@media (max-width: 575.98px) {
  .section { padding-block: clamp(40px, 7vw, 64px); }
}

/* Focus ring accessible */
:focus-visible {
  outline: 2px solid var(--mt-orange);
  outline-offset: 2px;
  border-radius: var(--r-xs);
}

/* Scroll lock helpers */
.no-scroll { overflow: hidden; }
