:root {
  /* Editorial luxury palette — calibrated to brand logo (#004030 deep teal-green) */
  --emerald-900: #002418;
  --emerald-800: #004030;  /* exact logo brand color */
  --emerald-700: #0F5644;
  --emerald-600: #1F6B4F;
  --emerald-100: #E1ECE7;
  --emerald-50:  #F2F7F4;

  --gold-700: #8C6E2A;
  --gold-600: #A88433;
  --gold-500: #C9A961;
  --gold-300: #E2CC95;
  --gold-100: #F2E8CE;

  --cream: #F7F3EA;
  --paper: #FBF9F4;
  --bone:  #F5F1E8;
  --ink:   #11201A;
  --ink-soft: #3A4A42;
  --ink-muted: #6B7A72;
  --rule: #DCD4BF;
  --rule-soft: #E9E3D0;

  --serif: 'Playfair Display', 'Noto Serif SC', Georgia, serif;
  --sans: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif-cn: 'Noto Serif SC', 'Playfair Display', serif;

  --container: 100%;
  --gutter: clamp(24px, 4vw, 80px);
  --section-y: clamp(80px, 9vw, 140px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

/* ===== Typography ===== */
.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow-line::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.02;
  color: var(--emerald-900);
  text-wrap: balance;
}
.display em { font-style: italic; color: var(--gold-600); font-weight: 400; }

.h-cn {
  font-family: var(--serif-cn);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--emerald-700);
}

p { text-wrap: pretty; }

.lead {
  font-family: var(--serif);
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.45;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ===== Layout ===== */
/* High-specificity overrides for PrestaShop's Bootstrap .container */
body .container,
body .container-fluid {
  max-width: var(--container) !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding-left: var(--gutter) !important;
  padding-right: var(--gutter) !important;
}
.section { padding-block: var(--section-y); }
.section-tight { padding-block: clamp(56px, 6vw, 88px); }

/* Prevent Bootstrap row/col interference inside design grids + safe shrink */
body .hero-grid,
body .cat-grid,
body .fp-grid,
body .trust-grid,
body .why-grid,
body .coverage-grid,
body .contact-grid,
body .footer-top { margin: 0; }
body .hero-grid > *,
body .cat-grid > *,
body .fp-grid > *,
body .why-grid > *,
body .coverage-grid > * { min-width: 0; }

/* ===== Top utility bar ===== */
.utility-bar {
  background: var(--emerald-900);
  color: #C9D6CF;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.utility-left, .utility-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.utility-bar .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-300);
}
.utility-bar a:hover { color: #fff; }
.utility-right > a { color: #fff; font-weight: 500; }
.utility-right > a:hover { color: var(--gold-300); }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(201,169,97,0.35);
  border-radius: 999px;
}
.lang-switch a,
.lang-switch button {
  font-family: var(--sans);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
  transition: all 200ms;
  text-decoration: none;
  line-height: 1;
  opacity: 1;
}
.lang-switch a:hover { color: var(--gold-300); }
.lang-switch a.active,
.lang-switch button.active {
  background: var(--gold-500);
  color: var(--emerald-900);
  font-weight: 600;
}
.lang-switch a.active:hover { color: var(--emerald-900); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--rule-soft);
  transition: box-shadow 240ms, padding 240ms;
}
.site-header.scrolled {
  box-shadow: 0 8px 28px -22px rgba(11, 61, 46, 0.4);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 88px;
}
.site-header.scrolled .header-inner { height: 70px; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--emerald-800);
  color: var(--gold-300);
  display: grid;
  place-items: center;
  font-family: var(--serif-cn);
  font-size: 22px;
  font-weight: 500;
  border: 1px solid var(--gold-600);
}
.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.footer .logo-img { width: 56px; height: 56px; filter: brightness(0) invert(1); opacity: 0.95; }
.logo-text { line-height: 1.05; }
.logo-text .name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--emerald-900);
}
.logo-text .name em { color: var(--gold-600); font-style: italic; font-weight: 400; }
.logo-text .sub {
  font-family: var(--serif-cn);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink-muted);
  margin-top: 2px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  justify-self: center;
}
.nav a {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
  position: relative;
  padding-block: 8px;
  font-weight: 500;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-600);
  transition: width 240ms ease, left 240ms ease;
}
.nav a:hover::after { width: 100%; left: 0; }
.nav a.has-mega::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-right: 6px;
  opacity: 0.6;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
}
.icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
  transition: background 200ms, color 200ms;
}
.icon-btn:hover { background: var(--emerald-50); color: var(--emerald-800); }
.icon-btn .badge {
  position: absolute;
  width: 16px; height: 16px;
  font-size: 10px;
  background: var(--gold-500);
  color: var(--emerald-900);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700;
  transform: translate(12px, -10px);
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald-800);
  color: var(--paper);
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 500;
  text-transform: uppercase;
  transition: background 200ms;
}
.cta-pill:hover { background: var(--emerald-900); }
.cta-pill.gold {
  background: var(--gold-500);
  color: var(--emerald-900);
}
.cta-pill.gold:hover { background: var(--gold-600); color: var(--paper); }

/* ===== Mega menu ===== */
.mega-menu {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: var(--paper);
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  box-shadow: 0 30px 60px -40px rgba(11, 61, 46, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 220ms, transform 220ms, visibility 220ms;
}
.mega-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding-block: 48px;
  align-items: start;
}
/* Long lists (>5 items) split into 2 sub-columns inside their cell */
.mega-col[data-multi="2"] ul {
  columns: 2;
  column-gap: 28px;
}
.mega-col[data-multi="2"] li { break-inside: avoid; }
/* Parent categories with >7 children get a wider cell */
.mega-col[data-multi="2"] {
  grid-column: span 2;
}
/* Feature card always last and takes 1 cell */
.mega-feature { grid-column: span 1; }
.mega-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 500;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule-soft);
}
.mega-col h4 a,
.mega-col h4 .mega-col-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 500;
  transition: color 180ms;
}
.mega-col h4 a:hover { color: var(--emerald-800); }
.mega-col ul { list-style: none; padding: 0; margin: 0; }
.mega-col li { margin-bottom: 10px; }
.mega-col li a {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--emerald-900);
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  transition: color 180ms;
  line-height: 1.35;
}
.mega-col li a:hover { color: var(--gold-600); }
.mega-col li a .count { font-family: var(--sans); font-size: 11px; color: var(--ink-muted); letter-spacing: 0.05em; }
.mega-feature {
  background: var(--emerald-800);
  color: var(--paper);
  padding: 28px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.mega-feature .eyebrow { color: var(--gold-300); }
.mega-feature h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin: 12px 0 16px;
  line-height: 1.15;
}
.mega-feature p { color: #C9D6CF; font-size: 14px; margin: 0 0 20px; }

/* ============================================================
   Cookie consent (CNIL/RGPD) — fst_toolkit
   ============================================================ */
.fst-consent[hidden] { display: none; }
.fst-consent { font-family: var(--sans, system-ui); }

/* Banner — bottom-sticky strip */
.fst-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9990;
  background: var(--paper, #FBF9F4);
  border-top: 2px solid var(--emerald-800, #004030);
  box-shadow: 0 -10px 40px -15px rgba(11, 61, 46, 0.2);
  animation: fstConsentSlideUp 320ms cubic-bezier(.2,.8,.2,1);
}
@keyframes fstConsentSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.fst-consent-banner-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px clamp(16px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.fst-consent-heading {
  font-family: var(--serif, Georgia, serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--emerald-900, #002418);
  margin: 0 0 6px;
}
.fst-consent-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft, #3A4A42);
  margin: 0;
  max-width: 70ch;
}
.fst-consent-link {
  color: var(--gold-600, #8C6E2A);
  text-decoration: underline;
}
.fst-consent-link:hover { color: var(--emerald-800, #004030); }
.fst-consent-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* Buttons — equal visual weight per CNIL */
.fst-consent-btn {
  font-family: var(--sans, system-ui);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--emerald-800, #004030);
  cursor: pointer;
  transition: background 200ms, color 200ms, border-color 200ms;
  white-space: nowrap;
}
.fst-consent-btn--ghost {
  background: transparent;
  color: var(--emerald-800, #004030);
}
.fst-consent-btn--ghost:hover {
  background: var(--emerald-800, #004030);
  color: var(--paper, #FBF9F4);
}
.fst-consent-btn--primary {
  background: var(--emerald-800, #004030);
  color: var(--paper, #FBF9F4);
}
.fst-consent-btn--primary:hover {
  background: var(--emerald-900, #002418);
  border-color: var(--emerald-900, #002418);
}

/* Modal */
.fst-consent-modal[hidden] { display: none; }
.fst-consent-modal {
  position: fixed;
  inset: 0;
  z-index: 9995;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.fst-consent-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 36, 24, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.fst-consent-modal-card {
  position: relative;
  background: var(--paper, #FBF9F4);
  border-radius: 8px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px -20px rgba(11, 61, 46, 0.5);
  animation: fstConsentFadeIn 220ms ease-out;
}
@keyframes fstConsentFadeIn {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
.fst-consent-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--rule-soft, #E5DECC);
}
.fst-consent-modal-head h3 {
  font-family: var(--serif, Georgia, serif);
  font-size: 22px;
  color: var(--emerald-900, #002418);
  margin: 0;
  font-weight: 500;
}
.fst-consent-modal-close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--ink-muted, #6B7A72);
  padding: 4px;
}
.fst-consent-modal-close:hover { color: var(--emerald-800, #004030); }

.fst-consent-modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}
.fst-consent-modal-intro {
  font-size: 14px;
  color: var(--ink-soft, #3A4A42);
  margin: 0 0 24px;
  line-height: 1.5;
}

.fst-consent-cat {
  border-top: 1px solid var(--rule-soft, #E5DECC);
  padding: 18px 0;
}
.fst-consent-cat:first-of-type { border-top: none; padding-top: 0; }
.fst-consent-cat-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.fst-consent-cat h4 {
  font-family: var(--serif, Georgia, serif);
  font-size: 17px;
  color: var(--emerald-900, #002418);
  margin: 0 0 6px;
  font-weight: 500;
}
.fst-consent-cat p {
  font-size: 13px;
  color: var(--ink-muted, #6B7A72);
  margin: 0;
  line-height: 1.45;
  max-width: 380px;
}

/* Toggle switch */
.fst-consent-toggle {
  position: relative;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.fst-consent-toggle--locked {
  font-family: var(--sans, system-ui);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600, #8C6E2A);
  font-weight: 600;
  cursor: default;
}
.fst-consent-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.fst-consent-toggle-slider {
  display: inline-block;
  width: 44px;
  height: 24px;
  background: #C8C8C8;
  border-radius: 12px;
  position: relative;
  transition: background 200ms;
}
.fst-consent-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 220ms cubic-bezier(.4,.2,.2,1.2);
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.fst-consent-toggle input:checked + .fst-consent-toggle-slider {
  background: var(--emerald-800, #004030);
}
.fst-consent-toggle input:checked + .fst-consent-toggle-slider::before {
  transform: translateX(20px);
}
.fst-consent-toggle input:focus-visible + .fst-consent-toggle-slider {
  outline: 2px solid var(--gold-600, #8C6E2A);
  outline-offset: 2px;
}

.fst-consent-modal-foot {
  padding: 18px 24px;
  border-top: 1px solid var(--rule-soft, #E5DECC);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* Mobile — stack actions */
@media (max-width: 720px) {
  .fst-consent-banner-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .fst-consent-actions {
    flex-direction: column;
    width: 100%;
  }
  .fst-consent-btn { width: 100%; text-align: center; }
  .fst-consent-modal-head h3 { font-size: 19px; }
  .fst-consent-cat-head { flex-direction: column; align-items: flex-start; }
  .fst-consent-modal-foot { flex-direction: column; }
  .fst-consent-modal-foot .fst-consent-btn { width: 100%; }
}

/* ===== Mobile drawer ===== */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 9998;
}
.mobile-drawer[hidden] { display: none; }
.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 36, 24, 0.45);
  opacity: 0;
  transition: opacity 280ms ease;
}
.mobile-drawer.open .mobile-drawer-backdrop { opacity: 1; }
.mobile-drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(.2,.8,.2,1);
  box-shadow: -20px 0 40px -20px rgba(11,61,46,.3);
  overflow-y: auto;
}
.mobile-drawer.open .mobile-drawer-panel { transform: translateX(0); }
.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--rule-soft);
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 1;
}
.mobile-drawer-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 500;
}
.mobile-nav {
  flex: 1;
  padding: 8px 0;
}
.mobile-nav-link {
  display: block;
  padding: 16px 24px;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--emerald-900);
  border-bottom: 1px solid var(--rule-soft);
  transition: background 180ms, color 180ms;
}
.mobile-nav-link:hover { background: var(--emerald-50); color: var(--gold-600); }

.mobile-nav-group, .mobile-nav-subgroup {
  border-bottom: 1px solid var(--rule-soft);
}
.mobile-nav-subgroup { border-bottom: none; border-top: 1px solid var(--rule-soft); }
.mobile-nav-group > summary,
.mobile-nav-subgroup > summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--emerald-900);
  cursor: pointer;
  user-select: none;
}
.mobile-nav-group > summary::-webkit-details-marker,
.mobile-nav-subgroup > summary::-webkit-details-marker { display: none; }
.mobile-nav-subgroup > summary {
  padding-left: 36px;
  font-size: 16px;
  background: var(--bone);
}
.mobile-chevron {
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--ink-muted);
  border-bottom: 1.5px solid var(--ink-muted);
  transform: rotate(-45deg);
  transition: transform 220ms;
  margin-right: 4px;
}
details[open] > summary > .mobile-chevron {
  transform: rotate(45deg);
}
.mobile-nav-sub { background: var(--paper); }
.mobile-nav-list {
  list-style: none;
  padding: 4px 0 12px;
  margin: 0;
  background: var(--paper);
}
.mobile-nav-list li a {
  display: block;
  padding: 11px 24px 11px 48px;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--emerald-900);
  transition: color 180ms, background 180ms;
}
.mobile-nav-list li a:hover { color: var(--gold-600); background: var(--emerald-50); }
.mobile-nav-list .mobile-nav-all {
  color: var(--gold-600);
  font-style: italic;
  font-size: 14px;
}
.mobile-nav-leaf { padding-left: 36px; font-size: 16px; background: var(--bone); }

.mobile-drawer-foot {
  padding: 20px 24px 28px;
  border-top: 1px solid var(--rule-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-drawer-foot .btn-block {
  display: inline-block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--emerald-800);
  color: var(--paper);
}
.mobile-drawer-foot .mobile-nav-link {
  border: none;
  padding: 0;
  text-align: center;
  font-size: 13px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--sans);
}

/* ===== Promo bar (active promotions) ===== */
.promo-bar {
  background: var(--emerald-700);
  color: var(--bone);
  font-size: 13px;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}
.promo-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  height: 44px;
}
.promo-bar .gold { color: var(--gold-300); font-weight: 600; letter-spacing: 0.08em; }
.promo-bar .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-500); display: inline-block; }
.promo-bar .arrow {
  margin-left: 8px;
  transition: transform 220ms;
}
.promo-bar a:hover .arrow { transform: translateX(4px); }
.promo-marquee-wrap { overflow: hidden; flex: 1; max-width: 700px; }
.promo-marquee {
  display: flex;
  gap: 40px;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 760px;
  background: var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  min-height: 760px;
}
.hero-text {
  padding: clamp(60px, 7vw, 110px) clamp(40px, 5vw, 80px) clamp(60px, 7vw, 110px) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-text .eyebrow { margin-bottom: 28px; }

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 5.6vw, 84px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--emerald-900);
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--gold-600); font-weight: 400; }
.hero h1 .accent {
  position: relative;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.04em;
  height: 0.12em;
  background: var(--gold-300);
  z-index: -1;
  opacity: 0.55;
}

.hero-sub {
  font-family: var(--serif-cn);
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 300;
  color: var(--emerald-700);
  letter-spacing: 0.06em;
  margin: 0 0 36px;
  line-height: 1.5;
  border-left: 2px solid var(--gold-500);
  padding-left: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 48px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 500;
  padding: 16px 28px;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 220ms;
  white-space: nowrap;
}
.btn-primary {
  background: var(--emerald-800);
  color: var(--paper);
}
.btn-primary:hover { background: var(--emerald-900); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--emerald-900);
  border: 1px solid var(--emerald-800);
}
.btn-secondary:hover { background: var(--emerald-800); color: var(--paper); }
.btn-tertiary {
  background: transparent;
  color: var(--emerald-900);
  padding: 16px 8px;
}
.btn-tertiary:hover { color: var(--gold-600); }
.btn .arrow { display: inline-block; transition: transform 220ms; }
.btn:hover .arrow { transform: translateX(3px); }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  padding-top: 28px;
  max-width: 560px;
}
.hero-meta .item {
  border-right: 1px solid var(--rule);
  padding-right: 18px;
}
.hero-meta .item:last-child { border-right: none; padding-left: 18px; }
.hero-meta .item:first-child { padding-right: 18px; }
.hero-meta .item:not(:first-child) { padding-left: 18px; }
.hero-meta .num {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--emerald-900);
  font-weight: 400;
  line-height: 1;
}
.hero-meta .num em { font-style: italic; color: var(--gold-600); }
.hero-meta .label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-top: 8px;
}

.hero-image {
  position: relative;
  background-size: cover;
  background-position: center;
  background-image:
    linear-gradient(105deg, rgba(247,243,234,0.0) 0%, rgba(247,243,234,0.0) 60%, rgba(247,243,234,0.6) 100%),
    url('../img/hero-presentation.jpg');
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(247,243,234,1) 0%, rgba(247,243,234,0) 12%);
}
.hero-image-card {
  position: absolute;
  background: var(--paper);
  padding: 20px 24px;
  border-radius: 4px;
  box-shadow: 0 30px 60px -30px rgba(11, 61, 46, 0.35);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-image-card.tl { top: 48px; left: 48px; }
.hero-image-card.br { bottom: 48px; right: 48px; }
.hero-image-card .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--emerald-600);
  box-shadow: 0 0 0 4px rgba(31, 107, 79, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(31,107,79,0.18); }
  50% { box-shadow: 0 0 0 10px rgba(31,107,79,0); }
}
.hero-image-card .num {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
  color: var(--emerald-900);
}
.hero-image-card .lbl {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-top: 4px;
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
}
.scroll-cue::before, .scroll-cue::after {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
}

/* ===== Trust strip ===== */
.trust {
  background: var(--paper);
  border-block: 1px solid var(--rule-soft);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.trust-item {
  padding: 36px 28px;
  border-right: 1px solid var(--rule-soft);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background 240ms;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--emerald-50); }
.trust-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  color: var(--gold-600);
  margin-top: 2px;
}
.trust-item h4 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--emerald-900);
  margin: 0 0 4px;
  line-height: 1.2;
}
.trust-item p {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.45;
}

/* ===== Promo block (first order discount) ===== */
.promo-block {
  background: var(--emerald-800);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.promo-block::before, .promo-block::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.promo-block::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle at center, rgba(201,169,97,0.18) 0%, rgba(201,169,97,0) 65%);
  top: -300px; right: -180px;
}
.promo-block::after {
  width: 400px; height: 400px;
  background: radial-gradient(circle at center, rgba(31,107,79,0.4) 0%, rgba(31,107,79,0) 60%);
  bottom: -200px; left: -100px;
}
.promo-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 60px;
  align-items: center;
  padding-block: clamp(56px, 6vw, 80px);
  position: relative;
  z-index: 2;
}
.promo-badge {
  font-family: var(--serif);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 400;
  line-height: 0.9;
  color: var(--gold-500);
  letter-spacing: -0.02em;
  position: relative;
}
.promo-badge .pct {
  font-family: var(--serif);
  font-size: 0.45em;
  vertical-align: top;
  display: inline-block;
  margin-top: 0.2em;
}
.promo-text .eyebrow { color: var(--gold-300); }
.promo-text h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  color: var(--bone);
  margin: 14px 0 12px;
  line-height: 1.15;
}
.promo-text h2 em { color: var(--gold-300); font-style: italic; }
.promo-text p {
  color: rgba(247,241,232,0.75);
  margin: 0;
  max-width: 540px;
  font-size: 15px;
}

/* ===== Categories grid ===== */
.cat-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 32px;
}
.cat-header .left { max-width: 700px; }
.cat-header h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 400;
  margin: 16px 0 0;
  line-height: 1.05;
  color: var(--emerald-900);
  letter-spacing: -0.01em;
}
.cat-header h2 em { font-style: italic; color: var(--gold-600); }
.cat-header .right {
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  text-align: right;
}
.cat-header .right strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 38px;
  color: var(--emerald-900);
  letter-spacing: -0.01em;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
  gap: 24px;
  justify-content: center;
}
@media (max-width: 720px) {
  .cat-grid { grid-template-columns: 1fr; }
}
.cat-card {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 280ms;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(11, 61, 46, 0.3);
}
.cat-card .placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream), var(--bone));
  display: grid;
  place-items: center;
  z-index: 1;
}
.cat-card .placeholder svg {
  width: 50%;
  height: 50%;
  color: var(--emerald-700);
  opacity: 0.5;
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 400ms;
}
.cat-card:hover .placeholder svg { transform: scale(1.08); opacity: 0.7; }
.cat-card .placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cat-card:hover .placeholder img { transform: scale(1.06); }
.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,61,46,0) 30%, rgba(11,61,46,0.55) 100%);
  z-index: 2;
  opacity: 0;
  transition: opacity 280ms;
}
.cat-card:hover::after { opacity: 1; }
.cat-card .top {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.cat-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-muted);
}
.cat-card .badge-new {
  font-size: 10px;
  letter-spacing: 0.18em;
  background: var(--gold-500);
  color: var(--emerald-900);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
}
.cat-card .bottom {
  position: relative;
  z-index: 3;
  color: var(--paper);
  text-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.cat-card .bottom .cn {
  font-family: var(--serif-cn);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(247,243,234,0.85);
  margin-bottom: 4px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 280ms 60ms, transform 280ms 60ms;
}
.cat-card:hover .bottom .cn { opacity: 1; transform: translateY(0); }
.cat-card .bottom .name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--emerald-900);
  transition: color 280ms;
}
.cat-card:hover .bottom .name { color: var(--paper); }
.cat-card .bottom .meta {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ink-muted);
  margin-top: 6px;
  transition: color 280ms;
}
.cat-card:hover .bottom .meta { color: rgba(247,243,234,0.85); }
.cat-card .arrow-circle {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 4;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--emerald-900);
  display: grid;
  place-items: center;
  transform: scale(0) rotate(-45deg);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cat-card:hover .arrow-circle { transform: scale(1) rotate(0deg); }

/* ===== Why us ===== */
.why-us {
  background: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.why-image-stack {
  position: relative;
  aspect-ratio: 4/5;
}
.why-image-stack .main-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('../img/why-main.jpg');
  border-radius: 4px;
}
.why-image-stack .accent-img {
  position: absolute;
  width: 45%;
  aspect-ratio: 1;
  bottom: -40px;
  right: -40px;
  background-size: cover;
  background-position: center;
  background-image: url('../img/why-accent.jpg');
  border-radius: 4px;
  border: 8px solid var(--cream);
}
.why-image-stack .stat-card {
  position: absolute;
  top: 32px;
  left: -40px;
  background: var(--paper);
  padding: 24px 28px;
  border-radius: 4px;
  box-shadow: 0 30px 60px -30px rgba(11,61,46,0.3);
  min-width: 200px;
}
.why-image-stack .stat-card .num {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--emerald-900);
  line-height: 1;
}
.why-image-stack .stat-card .num em { color: var(--gold-600); font-style: italic; }
.why-image-stack .stat-card .lbl {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 8px;
}
.why-text h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--emerald-900);
  margin: 16px 0 24px;
}
.why-text h2 em { color: var(--gold-600); font-style: italic; }
.why-text .lead { margin-bottom: 32px; }
.why-points {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}
.why-points li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.why-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 18px; height: 1px;
  background: var(--gold-500);
}
.why-points li strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--emerald-900);
  display: block;
  margin-bottom: 4px;
}

/* ===== Featured products ===== */
.featured {
  background: var(--paper);
}
.fp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 210px));
  gap: 18px;
  margin-top: 56px;
  justify-content: center;
}
@media (max-width: 720px) {
  .fp-grid { grid-template-columns: 1fr; }
}
.fp-card {
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 240ms, transform 240ms;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.fp-card:hover { border-color: var(--gold-500); transform: translateY(-4px); }
.fp-image {
  aspect-ratio: 1;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.fp-image .ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--emerald-700);
  opacity: 0.45;
}
.fp-image .ph svg { width: 50%; height: 50%; }
.fp-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--paper);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  color: var(--emerald-800);
  font-weight: 600;
  border-radius: 2px;
}
.fp-tag.bestseller { background: var(--emerald-800); color: var(--gold-300); }
.fp-tag.promo { background: var(--gold-500); color: var(--emerald-900); }
.fp-add {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--emerald-800);
  color: var(--paper);
  display: grid; place-items: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms, transform 220ms, background 200ms;
}
.fp-card:hover .fp-add { opacity: 1; transform: translateY(0); }
.fp-add:hover { background: var(--gold-500); color: var(--emerald-900); }
.fp-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.fp-body .cat {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.fp-body h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--emerald-900);
  margin: 0 0 4px;
  line-height: 1.15;
}
.fp-body .cn {
  font-family: var(--serif-cn);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-bottom: 14px;
}
.fp-body .specs {
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: auto;
  padding-bottom: 18px;
}
.fp-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--rule-soft);
  padding-top: 16px;
}
.fp-price {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--emerald-900);
  font-weight: 500;
  line-height: 1;
}
.fp-price small {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  margin-left: 4px;
}
.fp-price .strike {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-muted);
  text-decoration: line-through;
  margin-right: 6px;
  font-weight: 400;
}
.fp-price-pro {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
}

/* ===== Map / coverage ===== */
.coverage {
  background: var(--emerald-900);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.coverage-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 64px;
  align-items: center;
}
.coverage h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  margin: 16px 0 24px;
  line-height: 1.05;
  color: var(--bone);
}
.coverage h2 em { color: var(--gold-300); font-style: italic; }
.coverage p {
  color: rgba(247,241,232,0.75);
  font-size: 16px;
  max-width: 480px;
  margin-bottom: 32px;
}
.coverage .eyebrow { color: var(--gold-300); }

.zone-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.zone-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,169,97,0.2);
  font-size: 14px;
}
.zone-list li .city {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--bone);
}
.zone-list li .day {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.map-wrap {
  position: relative;
  aspect-ratio: 5/4;
  background: var(--emerald-800);
  border-radius: 4px;
  border: 1px solid rgba(201,169,97,0.25);
  overflow: hidden;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.85) contrast(1.02);
}
.map-overlay-card {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(6, 42, 31, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 22px;
  border-radius: 4px;
  border: 1px solid rgba(201,169,97,0.3);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 280px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.4);
}
.map-overlay-card .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold-500);
  margin-top: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(201,169,97,0.25);
  animation: pulse 2.4s ease-in-out infinite;
}
.map-overlay-card .oc-name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--bone);
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}
.map-overlay-card .oc-addr {
  font-size: 12px;
  color: rgba(229,239,233,0.7);
  line-height: 1.5;
  margin-bottom: 10px;
}
.map-overlay-card .oc-link {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 200ms;
}
.map-overlay-card .oc-link:hover { color: var(--gold-500); }
.map-overlay-card .oc-link span { transition: transform 220ms; display: inline-block; }
.map-overlay-card .oc-link:hover span { transform: translateX(3px); }
.map-legend {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(6, 42, 31, 0.85);
  backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-radius: 4px;
  border: 1px solid rgba(201,169,97,0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-300);
}
.map-legend .item { display: flex; align-items: center; gap: 8px; }
.map-legend .swatch {
  width: 10px; height: 10px;
  border-radius: 50%;
}

/* ===== Account CTA ===== */
.account {
  background: var(--paper);
}
.account-card {
  background: var(--cream);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  min-height: 480px;
}
.account-card .left {
  padding: clamp(48px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.account-card h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--emerald-900);
  margin: 16px 0 20px;
  letter-spacing: -0.01em;
}
.account-card h2 em { color: var(--gold-600); font-style: italic; }
.account-card .lead { margin-bottom: 32px; max-width: 520px; }
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 12px;
}
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-soft);
}
.benefits-list li svg {
  flex-shrink: 0;
  color: var(--gold-600);
  margin-top: 3px;
}
.account-form-side {
  background: var(--emerald-800);
  color: var(--bone);
  padding: clamp(40px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.account-form-side h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 8px;
  color: var(--bone);
}
.account-form-side h3 em { color: var(--gold-300); font-style: italic; }
.account-form-side p {
  color: rgba(247,241,232,0.7);
  margin: 0 0 28px;
  font-size: 14px;
}
.account-form { display: grid; gap: 14px; }
.account-form label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
  display: block;
  margin-bottom: 6px;
}
.account-form input, .account-form select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(247,241,232,0.06);
  border: 1px solid rgba(201,169,97,0.3);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 14px;
  border-radius: 2px;
  transition: border-color 200ms, background 200ms;
}
.account-form input:focus, .account-form select:focus {
  outline: none;
  border-color: var(--gold-500);
  background: rgba(247,241,232,0.1);
}
.account-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  background: var(--gold-500);
  color: var(--emerald-900);
}
.account-form .btn:hover { background: var(--gold-600); color: var(--bone); }

/* ===== Contact ===== */
.contact {
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.contact-card {
  background: var(--paper);
  padding: 32px 28px;
  border-radius: 4px;
  border: 1px solid var(--rule-soft);
  transition: border-color 240ms, transform 240ms;
}
.contact-card:hover { border-color: var(--gold-500); transform: translateY(-4px); }
.contact-card .ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--emerald-50);
  color: var(--emerald-800);
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.contact-card .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.contact-card .val {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--emerald-900);
  line-height: 1.2;
  word-break: break-word;
}
.contact-card .val a:hover { color: var(--gold-600); }
.contact-card .sub {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 8px;
  line-height: 1.5;
}

/* ===== Footer ===== */
.footer {
  background: var(--emerald-900);
  color: var(--bone);
  padding-block: 80px 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(201,169,97,0.25);
}
.footer-brand .logo-text .name { color: var(--bone); font-size: 26px; }
.footer-brand .logo-text .name em { color: var(--gold-300); }
.footer-brand .logo-text .sub { color: var(--gold-300); }
.footer-brand p {
  color: rgba(247,241,232,0.7);
  font-size: 14px;
  max-width: 320px;
  margin: 24px 0;
  line-height: 1.6;
}
.footer-brand .socials { display: flex; gap: 10px; }
.footer-brand .social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,97,0.3);
  display: grid; place-items: center;
  color: var(--gold-300);
  transition: all 200ms;
}
.footer-brand .social-btn:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--emerald-900);
}
.footer h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin: 0 0 20px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--bone);
  transition: color 180ms;
}
.footer ul a:hover { color: var(--gold-300); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  font-size: 12px;
  color: rgba(247,241,232,0.55);
  letter-spacing: 0.05em;
}
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom .legal a:hover { color: var(--gold-300); }
.footer-credit { color: var(--gold); font-weight: 500; }
.footer-credit a { color: var(--gold); text-decoration: none; }
.footer-credit a:hover { color: var(--gold-300); text-decoration: underline; }

/* Footer columns use <details> for mobile accordion; on desktop they look like plain blocks */
.footer-col > summary {
  list-style: none;
  cursor: default;
  display: block;
  pointer-events: none; /* desktop: kill the click-to-toggle so it's not an accordion */
}
.footer-col > summary::-webkit-details-marker { display: none; }
.footer-col > summary::marker { display: none; content: ''; }
.footer-col > summary h5 { display: block; }
.footer-col .footer-chev { display: none; }
/* Force-show ul on desktop — !important to definitively beat UA's details:not([open]) > :not(summary) {display:none} */
.footer-col[open] > ul,
.footer-col:not([open]) > ul { display: block !important; }

/* ===== Cursor follower for hero (light flourish) ===== */
.hero-cursor {
  pointer-events: none;
  position: absolute;
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,97,0.6);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 4;
  display: grid;
  place-items: center;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  background: rgba(247,243,234,0.5);
  backdrop-filter: blur(4px);
}
.hero-image:hover .hero-cursor { transform: translate(-50%, -50%) scale(1); }

/* ===== Responsive ===== */
/* Hamburger hidden on desktop (high specificity to beat .icon-btn) */
.header-actions .hamburger-btn { display: none; }

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { min-height: 480px; }
  .cat-grid, .fp-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--rule-soft); }
  .why-grid, .coverage-grid, .account-card { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .mega-menu { display: none !important; }
  .header-actions .hamburger-btn { display: inline-flex !important; }
  .header-actions .cta-pill { display: none; }
}
@media (max-width: 640px) {
  .cat-grid, .fp-grid, .contact-grid, .why-points, .footer-top { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .promo-content { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .promo-content .promo-badge { justify-self: center; }
  .header-inner { grid-template-columns: 1fr auto; }
  .header-actions .cta-pill span { display: none; }

  /* Footer accordion on mobile */
  .footer-top { gap: 0; padding-bottom: 32px; }
  .footer-brand {
    order: 99;
    margin-top: 32px;
    text-align: center;
  }
  .footer-brand .logo { justify-content: center; }
  .footer-brand p { margin-inline: auto; }
  .footer-brand .socials { justify-content: center; }
  .footer-col {
    border-top: 1px solid rgba(247,241,232,0.12);
  }
  .footer-col:last-of-type {
    border-bottom: 1px solid rgba(247,241,232,0.12);
  }
  .footer-col > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 2px;
    cursor: pointer;
    pointer-events: auto; /* re-enable click for mobile accordion */
    -webkit-tap-highlight-color: transparent;
  }
  .footer-col > summary h5 {
    margin: 0;
    color: var(--bone);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
  }
  .footer-col .footer-chev {
    display: block;
    color: rgba(247,241,232,0.75);
    transition: transform 220ms ease;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
  }
  .footer-col[open] .footer-chev { transform: rotate(180deg); }
  .footer-col[open] > ul { display: block !important; padding: 4px 2px 20px; }
  .footer-col:not([open]) > ul { display: none !important; }

  /* Stack copyright and legal links on mobile */
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }
}

/* ============================================================
   Catalog pages (category, search, manufacturer, prices-drop)
   Override PrestaShop classic sidebar + Bootstrap row layout
   ============================================================ */

/* Catalog wrapper: full-width content + restored sidebar (left filters) */
body.layout-left-column #wrapper,
body#search #wrapper,
body#manufacturer #wrapper,
body#prices-drop #wrapper,
body#new-products #wrapper,
body#best-sales #wrapper {
  background: var(--paper);
  padding-block: clamp(40px, 5vw, 80px);
}

/* Hide right column always */
body.layout-left-column #right-column,
body#search #right-column,
body#manufacturer #right-column,
body#prices-drop #right-column,
body#new-products #right-column,
body#best-sales #right-column { display: none !important; }

/* Layout: sidebar 260px + main flex */
body.layout-left-column .l-wrapper > .row,
body#search .l-wrapper > .row,
body#manufacturer .l-wrapper > .row,
body#prices-drop .l-wrapper > .row,
body#new-products .l-wrapper > .row,
body#best-sales .l-wrapper > .row,
body.layout-left-column #wrapper > .container > .row,
body#search #wrapper > .container > .row,
body#manufacturer #wrapper > .container > .row,
body#prices-drop #wrapper > .container > .row,
body#new-products #wrapper > .container > .row,
body#best-sales #wrapper > .container > .row {
  display: grid !important;
  grid-template-columns: 260px 1fr !important;
  gap: 48px !important;
  margin: 0 !important;
}
body.layout-left-column #left-column,
body#search #left-column,
body#manufacturer #left-column,
body#prices-drop #left-column,
body#new-products #left-column,
body#best-sales #left-column {
  background: transparent;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
}
body.layout-left-column #content-wrapper,
body#search #content-wrapper,
body#manufacturer #content-wrapper,
body#prices-drop #content-wrapper,
body#new-products #content-wrapper,
body#best-sales #content-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  flex: 1 1 0 !important;
  padding: 0 !important;
  min-width: 0;
}

/* Editorial sidebar styling */
body.layout-left-column #left-column .block-categories,
body.layout-left-column #left-column #search_filters_wrapper,
body.layout-left-column #left-column .block,
body#search #left-column .block {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0 0 32px;
  box-shadow: none;
}
body.layout-left-column #left-column .block-categories h2,
body.layout-left-column #left-column .block h1,
body.layout-left-column #left-column .block .h6,
body.layout-left-column #left-column #search_filters .h6 {
  font-family: var(--sans);
  font-size: 11px !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
  border: none;
  padding: 0 0 12px;
  margin: 0 0 16px;
  border-bottom: 1px solid var(--rule);
}
body.layout-left-column #left-column .block-categories ul,
body.layout-left-column #left-column .category-sub-menu,
body#search #left-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.layout-left-column #left-column .category-sub-menu li,
body#search #left-column li {
  margin: 0 0 8px;
}
body.layout-left-column #left-column .category-sub-menu li a,
body#search #left-column li a {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--emerald-900);
  display: block;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 200ms;
}
body.layout-left-column #left-column .category-sub-menu li a:hover {
  color: var(--gold-600);
}
body.layout-left-column #left-column .category-sub-menu li.current > a {
  color: var(--gold-600);
  font-weight: 500;
}
body.layout-left-column #left-column .navigation-pipe { display: none; }

/* Hide classic theme's "-" prefix on deep category items */
body.layout-left-column #left-column .category-sub-menu li::before { content: none !important; margin: 0 !important; }

/* Indent sub-sub-categories (depth 2+) for visual hierarchy */
body.layout-left-column #left-column .category-sub-menu .category-sub-menu {
  padding-left: 16px;
  margin-top: 4px;
  margin-bottom: 8px;
  border-left: 1px solid var(--rule-soft);
}
body.layout-left-column #left-column .category-sub-menu .category-sub-menu li a {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 5px 0;
}
body.layout-left-column #left-column .category-sub-menu .category-sub-menu li a:hover {
  color: var(--gold-600);
}

/* Show open collapse panels — but WITHOUT !important so Bootstrap can close them on click */
body.layout-left-column #left-column .block-categories .collapse.in,
body.layout-left-column #left-column .block-categories .collapse.show {
  display: block;
}

/* Replace material-icons +/- and arrows with clean CSS chevrons (more lightweight, always renders) */
body.layout-left-column #left-column .block-categories .navbar-toggler,
body.layout-left-column #left-column .block-categories .arrows {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 6px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  background: transparent;
  border: none;
}
body.layout-left-column #left-column .block-categories .navbar-toggler i,
body.layout-left-column #left-column .block-categories .arrows i { display: none !important; }

body.layout-left-column #left-column .block-categories .navbar-toggler::before,
body.layout-left-column #left-column .block-categories .arrows::before {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--ink-muted);
  border-bottom: 1.5px solid var(--ink-muted);
  transform: rotate(-45deg);
  transition: transform 220ms;
}
/* When parent <li> is open, rotate chevron */
body.layout-left-column #left-column .block-categories li.open > .navbar-toggler::before,
body.layout-left-column #left-column .block-categories li.open > .arrows::before,
body.layout-left-column #left-column .block-categories .navbar-toggler[aria-expanded="true"]::before,
body.layout-left-column #left-column .block-categories .arrows[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

/* Mark "current" link with gold accent */
body.layout-left-column #left-column .block-categories a.current,
body.layout-left-column #left-column .block-categories li.current > a {
  color: var(--gold-600) !important;
  font-weight: 500;
}

/* Make <li> position:relative so toggle is positioned correctly */
body.layout-left-column #left-column .block-categories li {
  position: relative;
  padding-right: 28px;
}

/* Faceted filter blocks (price slider, attributes) */
body.layout-left-column #search_filters .facet,
body#search #search_filters .facet {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--rule-soft);
  padding-bottom: 24px;
}
body.layout-left-column #search_filters .facet-title,
body.layout-left-column #search_filters .facet h2 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  margin: 0 0 12px;
}
body.layout-left-column #search_filters .facet ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.layout-left-column #search_filters .facet li {
  margin: 0 0 8px;
}
body.layout-left-column #search_filters .facet label {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--emerald-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
body.layout-left-column #search_filters .magnitude,
body.layout-left-column #search_filters .count {
  color: var(--ink-muted);
  font-size: 12px;
  font-family: var(--sans);
}
body.layout-left-column #search_filters input[type='checkbox'],
body.layout-left-column #search_filters .custom-checkbox input {
  accent-color: var(--gold-600);
}
body.layout-left-column .clear-all-wrapper button,
body.layout-left-column .js-search-filters-clear-all {
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald-900);
  font-family: var(--sans);
  cursor: pointer;
  transition: border-color 200ms, color 200ms;
}
body.layout-left-column .clear-all-wrapper button:hover {
  border-color: var(--gold-600);
  color: var(--gold-600);
}

/* Mobile: stack sidebar above products */
@media (max-width: 1024px) {
  body.layout-left-column .l-wrapper > .row,
  body#search .l-wrapper > .row,
  body#manufacturer .l-wrapper > .row,
  body#prices-drop .l-wrapper > .row,
  body#new-products .l-wrapper > .row,
  body#best-sales .l-wrapper > .row,
  body.layout-left-column #wrapper > .container > .row,
  body#search #wrapper > .container > .row,
  body#manufacturer #wrapper > .container > .row,
  body#prices-drop #wrapper > .container > .row,
  body#new-products #wrapper > .container > .row,
  body#best-sales #wrapper > .container > .row {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  body.layout-left-column #left-column,
  body#search #left-column,
  body#manufacturer #left-column,
  body#prices-drop #left-column,
  body#new-products #left-column,
  body#best-sales #left-column {
    border-bottom: 1px solid var(--rule);
    padding-bottom: 24px !important;
  }
}

/* Page heading (category title) */
.page-header h1,
#js-product-list-header h1,
.block-category h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 400;
  color: var(--emerald-900);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0 0 16px;
}
.block-category .category-cover img,
.block-category #category-description { display: none; }

.breadcrumb,
nav.breadcrumb,
.breadcrumb ol {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: transparent;
}
.breadcrumb li { display: inline; }
.breadcrumb li::after { content: '·'; margin-left: 8px; opacity: 0.5; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--ink-muted); }
.breadcrumb a:hover { color: var(--gold-600); }

/* Toolbar (sort + total) */
#js-product-list-top,
.products-selection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0 24px;
  border-bottom: 1px solid var(--rule-soft);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.total-products,
.products-selection .total-products,
.products-selection p {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--emerald-900);
  margin: 0;
}
/* Hide PrestaShop default "Il y a X produits." — fst-grid-header already shows count */
.products-selection .total-products { display: none !important; }
/* Hide "Sélections" facet (extras) — only shows on some pages, hide everywhere for consistency */
.facet[data-type="extras"] { display: none !important; }

/* ===== Search overlay (header search) ===== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 61, 46, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18vh;
  animation: fadeIn 200ms ease-out;
}
.search-overlay[hidden] { display: none; }
.search-overlay-inner { width: min(720px, 90vw); }
.search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  padding: 8px 8px 8px 24px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.45);
}
.search-input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--emerald-900);
  padding: 12px 0;
}
.search-input::placeholder { color: var(--ink-muted); font-style: italic; }
.search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--emerald-800);
  color: var(--gold-300);
  border: 0;
  cursor: pointer;
  transition: background 200ms;
}
.search-submit:hover { background: var(--emerald-900); color: var(--paper); }
.search-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 0;
  color: var(--ink-muted);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: color 200ms, background 200ms;
}
.search-close:hover { background: var(--rule-soft); color: var(--emerald-900); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 720px) {
  .search-overlay { padding-top: 8vh; }
  .search-input { font-size: 15px; padding: 10px 0; }
}
.products-sort-order .select-title,
.products-sort-order > a,
.sort-by-row .sort-by,
#search_filter_toggler,
.filter-button .btn,
.filter-button .btn-secondary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 36px;
  padding: 0 16px !important;
  background: var(--paper) !important;
  border: 1px solid var(--rule) !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  line-height: 1 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  color: var(--emerald-900) !important;
  box-sizing: border-box;
  width: auto !important;
  white-space: nowrap;
}
.products-sort-order .select-title .material-icons,
.products-sort-order .select-title i { font-size: 14px !important; }
.sort-by-row .products-sort-order { flex: 0 0 auto !important; max-width: none !important; width: auto !important; }
.filter-button { flex: 0 0 auto !important; max-width: none !important; width: auto !important; }
.view-switcher,
.display { display: none !important; }

/* Product grid: dense default with column-toggle support */
#js-product-list .products,
.product_list,
.products.row,
ul.products,
.featured-products .products,
.product-accessories .products,
.fst-products-list {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
.fst-products-list.fst-cols-3 { grid-template-columns: repeat(3, 1fr) !important; }
.fst-products-list.fst-cols-4 { grid-template-columns: repeat(4, 1fr) !important; }
.fst-products-list.fst-cols-5 { grid-template-columns: repeat(5, 1fr) !important; }
.fst-products-list.fst-cols-6 { grid-template-columns: repeat(6, 1fr) !important; }

/* On wide screens (27" iMac etc) default 6 cols if class fst-cols-6 set */
@media (min-width: 1700px) {
  .fst-products-list:not([class*='fst-cols-']) {
    grid-template-columns: repeat(6, 1fr) !important;
  }
}
.products [class*="col-"],
.products .product,
.products .js-product {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Product miniature / fst-product-card → .fp-card style */
.product-miniature,
.js-product .product-miniature,
.product-thumbnail,
.fst-product-card {
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 240ms, transform 240ms;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0 !important;
  text-decoration: none;
  color: inherit;
}
.product-miniature:hover,
.fst-product-card:hover { border-color: var(--gold-500); transform: translateY(-4px); }

.fst-product-card .fst-product-image,
.fst-product-card .fst-card-image,
.fst-product-card > a > img,
.fst-product-card > img {
  position: relative;
  aspect-ratio: 1;
  background: var(--cream);
  overflow: hidden;
  display: block;
  width: 100% !important;
  height: auto !important;
}
.fst-product-card .fst-product-image img,
.fst-product-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
.fst-product-card .fst-product-info,
.fst-product-card .fst-product-details,
.fst-product-card .fst-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
  background: var(--paper);
}
.fst-product-card h3,
.fst-product-card h2,
.fst-product-card .fst-product-name,
.fst-product-card .fst-product-title {
  font-family: var(--serif) !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  color: var(--emerald-900) !important;
  margin: 0 0 12px !important;
}
.fst-product-card a,
.fst-product-card .fst-product-name a {
  color: var(--emerald-900) !important;
  text-decoration: none !important;
}
.fst-product-card a:hover { color: var(--gold-600) !important; }
.fst-product-card .fst-product-price,
.fst-product-card .fst-price,
.fst-product-card .price {
  font-family: var(--serif) !important;
  font-size: 20px !important;
  color: var(--emerald-900) !important;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--rule-soft);
}

.product-miniature .thumbnail-container,
.product-miniature .thumbnail {
  position: relative;
  aspect-ratio: 1;
  background: var(--cream);
  overflow: hidden;
  display: block;
  height: auto !important;
  width: 100% !important;
  border: none !important;
}
.product-miniature .thumbnail-container img,
.product-miniature img.product-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: static;
  transform: none;
}

.product-miniature .product-description,
.product-miniature .product-desc {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
  background: var(--paper);
}
.product-miniature .product-title,
.product-miniature h2.product-title,
.product-miniature h3.product-title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}
.product-miniature .product-title a {
  color: var(--emerald-900) !important;
  text-decoration: none;
}
.product-miniature .product-title a:hover { color: var(--gold-600) !important; }

.product-miniature .product-price-and-shipping,
.product-miniature .price,
.product-miniature .regular-price,
.product-miniature .product-prices {
  font-family: var(--serif) !important;
  font-size: 20px !important;
  color: var(--emerald-900) !important;
  font-weight: 400;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--rule-soft);
}
.product-miniature .fst-hidden-price,
.product-miniature .fst-login-to-see-price {
  font-family: var(--sans);
  font-size: 11px !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600) !important;
  font-weight: 600 !important;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--rule-soft);
}
.product-miniature .fst-hidden-price a {
  color: var(--gold-600) !important;
  font-weight: 600;
}
.product-miniature .product-flags { top: 14px; left: 14px; padding: 0; right: auto; }
.product-miniature .product-flag {
  background: var(--paper);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  color: var(--emerald-800);
  font-weight: 600;
  border-radius: 2px;
  margin: 0 6px 6px 0;
}
.product-miniature .product-flag.discount,
.product-miniature .product-flag.discount-amount,
.product-miniature .product-flag.discount-percentage,
.product-miniature .product-flag.on-sale { background: var(--gold-500); color: var(--emerald-900); }
.product-miniature .product-flag.new { background: var(--emerald-800); color: var(--gold-300); }

.product-miniature .highlighted-informations,
.product-miniature .product-availability,
.product-miniature .variant-links,
.product-miniature .comments_note { display: none; }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 56px 0 0;
  padding-top: 32px;
  border-top: 1px solid var(--rule-soft);
}
.pagination .page-list { display: flex; gap: 4px; padding: 0; margin: 0; list-style: none; }
.pagination a, .pagination span {
  display: grid; place-items: center;
  min-width: 40px; height: 40px;
  padding: 0 12px;
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--emerald-900);
  border: 1px solid var(--rule-soft);
  background: var(--paper);
}
.pagination a:hover { background: var(--emerald-50); border-color: var(--emerald-700); }
.pagination .current a, .pagination .current span {
  background: var(--emerald-800); color: var(--paper); border-color: var(--emerald-800);
}

/* Custom listing toolbar (4saisons fst-grid-header) */
.fst-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0 24px;
  border-bottom: 1px solid var(--rule-soft);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.fst-grid-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--paper);
}
.fst-grid-switcher button {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--ink-muted);
  border-radius: 4px;
  cursor: pointer;
  transition: background 180ms, color 180ms;
}
.fst-grid-switcher button:hover { color: var(--emerald-800); }
.fst-grid-switcher button.active {
  background: var(--emerald-800);
  color: var(--paper);
}
.fst-result-count {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--emerald-900);
}
.fst-per-page,
.fst-grid-header .fst-display,
.fst-display-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.fst-per-page a,
.fst-per-page button,
.fst-per-page .fst-per-page-link {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  color: var(--emerald-900);
}
.fst-per-page a.active,
.fst-per-page a.is-active,
.fst-per-page .fst-per-page-link.active {
  background: var(--emerald-800);
  color: var(--paper);
}
.fst-per-page a:hover { border-color: var(--rule); }

/* ============================================================
   Product detail page (body#product)
   ============================================================ */
body#product #wrapper {
  background: var(--paper);
  padding-block: clamp(40px, 5vw, 80px);
}
body#product #content-wrapper,
body#product #main {
  width: 100% !important;
  max-width: 100% !important;
  flex: 1 1 100% !important;
  padding: 0 !important;
}

/* Product main row: image left, info right */
body#product .product-container,
body#product .row.product-container {
  display: grid !important;
  grid-template-columns: 1.1fr 1fr !important;
  gap: clamp(40px, 5vw, 80px) !important;
  margin: 0 !important;
}
body#product .product-container > .col-md-6,
body#product .product-container > [class*="col-"] {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  padding: 0 !important;
}

/* Image gallery */
body#product .images-container {
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  padding: clamp(16px, 2vw, 32px);
}
body#product .product-cover {
  background: var(--paper);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}
body#product .product-cover img,
body#product .js-qv-product-cover {
  width: 100% !important;
  height: auto !important;
  display: block;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--paper);
}
body#product .product-images {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
}
body#product .product-images .thumb-container {
  flex: 0 0 80px;
  margin: 0;
}
body#product .product-images .thumb {
  width: 80px;
  height: 80px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--paper);
  padding: 4px;
  cursor: pointer;
  transition: border-color 200ms;
  object-fit: contain;
}
body#product .product-images .thumb.selected,
body#product .product-images .thumb.js-thumb-selected,
body#product .product-images .thumb:hover {
  border-color: var(--gold-500) !important;
}
body#product .scroll-box-arrows { display: none; }

/* Product flags */
body#product .product-flags { top: 16px; left: 16px; right: auto; padding: 0; }
body#product .product-flag {
  background: var(--paper);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  color: var(--emerald-800);
  font-weight: 600;
  border-radius: 2px;
  margin: 0 6px 6px 0;
  border: 1px solid var(--rule);
  position: static;
}
body#product .product-flag.new { background: var(--emerald-800); color: var(--gold-300); border-color: transparent; }
body#product .product-flag.discount,
body#product .product-flag.discount-amount,
body#product .product-flag.discount-percentage,
body#product .product-flag.on-sale { background: var(--gold-500); color: var(--emerald-900); border-color: transparent; }

/* Product info column */
body#product .page-content,
body#product .product-information,
body#product .product-actions {
  background: transparent;
}

/* Eyebrow / category breadcrumb */
body#product .breadcrumb,
body#product nav.breadcrumb,
body#product .breadcrumb ol {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  background: transparent;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
body#product .breadcrumb li::after { content: '·'; margin-left: 8px; opacity: 0.5; }
body#product .breadcrumb li:last-child::after { display: none; }
body#product .breadcrumb a { color: var(--ink-muted); }
body#product .breadcrumb a:hover { color: var(--gold-600); }

/* H1 */
body#product h1.h1,
body#product .product-information h1,
body#product .h1 {
  font-family: var(--serif) !important;
  font-size: clamp(32px, 3.4vw, 48px) !important;
  font-weight: 400 !important;
  letter-spacing: -0.01em !important;
  color: var(--emerald-900) !important;
  line-height: 1.1 !important;
  margin: 0 0 20px !important;
  text-transform: none !important;
}

/* Reference + brand */
body#product .product-reference {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 16px;
}
body#product .product-reference span,
body#product .product-reference strong { font-weight: 600; color: var(--emerald-900); letter-spacing: 0.06em; }

/* Price area */
body#product .product-prices,
body#product #product-prices {
  font-family: var(--serif);
  margin: 24px 0;
  padding: 24px 0;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
}
body#product .current-price,
body#product .product-price,
body#product .current-price-value {
  font-family: var(--serif) !important;
  font-size: 36px !important;
  color: var(--emerald-900) !important;
  font-weight: 400 !important;
  letter-spacing: -0.01em !important;
}
body#product .product-discount .regular-price {
  font-family: var(--serif) !important;
  font-size: 18px !important;
  color: var(--ink-muted) !important;
  text-decoration: line-through;
  margin-right: 12px;
}
body#product .discount {
  display: inline-block;
  background: var(--gold-500);
  color: var(--emerald-900);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-left: 12px;
  vertical-align: middle;
}
body#product .tax-shipping-delivery-label,
body#product .product-tax {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 8px;
}
body#product .fst-hidden-price,
body#product .fst-login-price-msg,
body#product .fst-login-to-see-price {
  font-family: var(--serif) !important;
  font-size: 22px !important;
  font-style: italic;
  color: var(--gold-700) !important;
  font-weight: 400 !important;
}
body#product .fst-hidden-price a,
body#product .fst-login-to-see-price a {
  color: var(--gold-700) !important;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
body#product .fst-hidden-price a:hover { color: var(--emerald-800) !important; text-decoration-color: var(--gold-500); }

/* Short description */
body#product .product-description,
body#product .product-information .product-description {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 16px 0 24px;
}

/* Quantity + add-to-cart */
body#product .product-add-to-cart,
body#product .product-quantity {
  display: flex;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}
body#product .qty,
body#product .product-quantity .qty,
body#product .product-quantity .input-group {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--rule);
  border-radius: 999px;
  overflow: hidden;
  background: var(--paper);
}
body#product .product-quantity input.qty,
body#product input[name='qty'],
body#product input.product-quantity-input,
body#product .product-quantity .input-group input {
  border: none !important;
  width: 48px !important;
  text-align: center;
  font-family: var(--serif) !important;
  font-size: 18px !important;
  background: transparent !important;
  padding: 12px 0 !important;
  color: var(--emerald-900);
  -moz-appearance: textfield;
}
body#product .product-quantity .input-group-btn-vertical button,
body#product .bootstrap-touchspin .btn,
body#product .product-quantity .btn-touchspin,
body#product .product-quantity button[type='button'] {
  background: transparent !important;
  border: none !important;
  color: var(--emerald-700) !important;
  width: 36px !important;
  padding: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body#product .product-quantity .input-group-btn-vertical button:hover { color: var(--gold-600) !important; }
body#product .add-to-cart,
body#product #add-to-cart,
body#product button.btn.add-to-cart,
body#product .product-actions button[type='submit'] {
  background: var(--emerald-800) !important;
  color: var(--paper) !important;
  font-family: var(--sans) !important;
  font-size: 13px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  padding: 16px 32px !important;
  border: none !important;
  border-radius: 999px !important;
  transition: background 220ms, transform 220ms;
  cursor: pointer;
  flex: 1 1 auto;
}
body#product .add-to-cart:hover { background: var(--emerald-900) !important; transform: translateY(-1px); }
body#product .add-to-cart .material-icons,
body#product #add-to-cart .material-icons { display: none; }

/* Tabs */
body#product .tabs,
body#product .product-tabs,
body#product .tab-content {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}
body#product .nav-tabs,
body#product .tabs .nav-tabs {
  border: none;
  border-bottom: 1px solid var(--rule);
  margin: 48px 0 0;
  display: flex;
  gap: 32px;
}
body#product .nav-tabs .nav-link,
body#product .nav-tabs li > a {
  border: none !important;
  background: transparent !important;
  color: var(--ink-muted) !important;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 16px 0 !important;
  border-radius: 0 !important;
  position: relative;
  transition: color 200ms;
}
body#product .nav-tabs .nav-link.active,
body#product .nav-tabs li.active > a {
  color: var(--emerald-900) !important;
  background: transparent !important;
}
body#product .nav-tabs .nav-link.active::after,
body#product .nav-tabs li.active > a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--gold-500);
}
body#product .nav-tabs .nav-link:hover { color: var(--emerald-900) !important; }
body#product .tab-pane {
  padding: 32px 0;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}
body#product .product-features dl,
body#product .product-info dl {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12px 24px;
  margin: 0;
}
body#product .product-features dt,
body#product .product-info dt {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-soft);
}
body#product .product-features dd,
body#product .product-info dd {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--emerald-900);
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-soft);
}

/* Quantity discounts table */
body#product .product-discounts {
  margin: 32px 0;
  padding: 24px;
  background: var(--cream);
  border-radius: 4px;
}
body#product .product-discounts h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--emerald-900);
  margin: 0 0 16px;
}
body#product .product-discounts table { width: 100%; border-collapse: collapse; }
body#product .product-discounts th,
body#product .product-discounts td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--rule-soft);
}
body#product .product-discounts th {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
body#product .product-discounts td {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--emerald-900);
}

/* Related/accessory products */
body#product .product-accessories,
body#product .featured-products {
  margin-top: clamp(56px, 6vw, 96px);
  padding-top: 32px;
  border-top: 1px solid var(--rule-soft);
}
body#product .product-accessories h2,
body#product .featured-products h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  color: var(--emerald-900);
  margin: 0 0 32px;
  text-transform: none;
}
body#product .product-accessories h2 em,
body#product .featured-products h2 em { font-style: italic; color: var(--gold-600); }

/* Product page responsive */
@media (max-width: 1024px) {
  body#product .product-container { grid-template-columns: 1fr !important; }
}

/* Catalog responsive */
@media (max-width: 1100px) {
  #js-product-list .products,
  ul.products,
  .product_list,
  .products.row,
  .fst-products-list,
  .fst-products-list.fst-cols-3,
  .fst-products-list.fst-cols-4,
  .fst-products-list.fst-cols-5,
  .fst-products-list.fst-cols-6 { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 768px) {
  #js-product-list .products,
  ul.products,
  .product_list,
  .products.row,
  .featured-products .products,
  .product-accessories .products,
  .fst-products-list,
  .fst-products-list.fst-cols-3,
  .fst-products-list.fst-cols-4,
  .fst-products-list.fst-cols-5,
  .fst-products-list.fst-cols-6 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  #js-product-list .products,
  ul.products,
  .product_list,
  .products.row,
  .featured-products .products,
  .product-accessories .products,
  .fst-products-list,
  .fst-products-list.fst-cols-3,
  .fst-products-list.fst-cols-4,
  .fst-products-list.fst-cols-5,
  .fst-products-list.fst-cols-6 { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
}

/* ===== Mobile fixes (≤ 720px) ===== */
@media (max-width: 720px) {
  /* Utility bar: keep phone + hours on one line, drop secondary items */
  .utility-bar { font-size: 11px; letter-spacing: 0.02em; }
  .utility-bar .container { gap: 12px; height: 36px; }
  .utility-left, .utility-right { gap: 14px; flex-wrap: nowrap; }
  .utility-bar .pill { white-space: nowrap; }
  .utility-left > span:not(.pill) { white-space: nowrap; font-size: 10px; }
  .utility-right > a { display: none; }
  .utility-right .lang-switch { display: inline-flex; }

  /* Promo bar: hide "En savoir plus" link to free up marquee width */
  .promo-bar .container > a[href*="promotions"] { display: none !important; }
  .promo-marquee-wrap { max-width: 100% !important; }

  /* Logo: compact, prevent line breaks */
  .logo { gap: 10px; }
  .logo-img { width: 40px; height: 40px; }
  .logo-text .name { font-size: 17px; white-space: nowrap; }
  .logo-text .sub { font-size: 9px; letter-spacing: 0.12em; white-space: nowrap; }

  /* PERTINENCE / TRIER PAR / FILTRER: unified base rule above already handles all sizes */
  .fst-grid-switcher { display: none !important; }

  /* Product detail page: stack image + info vertically */
  body#product .product-container,
  body#product .row.product-container {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Prevent any horizontal scroll on mobile */
  html, body { overflow-x: hidden !important; max-width: 100vw !important; }

  /* Tighter container gutter on mobile (was 24-80px → 12-16px) */
  body .container, body .container-fluid {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  /* Hide "Créer un compte Pro" CTA pill in header (saves width) */
  .header-actions .cta-pill { display: none !important; }

  /* Account card / Pro signup form: stack + tight padding */
  .account-card {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .account-card .left,
  .account-form-side {
    padding: 28px 20px !important;
  }
  .account-form input,
  .account-form select {
    padding: 12px 14px !important;
    font-size: 14px !important;
  }
  .account-form .btn {
    width: 100% !important;
    justify-content: center;
  }

  /* Map overlay card: stack below map on mobile (don't cover map) */
  .map-overlay-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    max-width: 100% !important;
    width: auto !important;
    margin: 12px 0 0 !important;
  }
  .map-wrap { aspect-ratio: 4/3 !important; }

  /* Hero: reduce side padding */
  .hero-grid > * { padding: 28px 20px !important; }

  /* cat-header: stack title + count vertically, fix "2 400+" wrap */
  .cat-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 18px !important;
    padding-bottom: 24px !important;
    margin-bottom: 32px !important;
  }
  .cat-header .right {
    text-align: left !important;
    width: 100%;
  }
  .cat-header .right strong { font-size: 28px !important; white-space: nowrap; }
  /* Contact section address: stop justify-end + right-align inline styles from overflowing on mobile */
  .contact .cat-header .right > div { justify-content: flex-start !important; flex-wrap: wrap; }
  .contact .cat-header .right > div > div { text-align: left !important; font-size: 15px !important; }
  .contact .cat-header .right > div > div span { font-size: 13px !important; }
}

/* ===== Hide all product prices (catalog-only display, no public pricing) ===== */
/* Custom theme miniature & featured cards */
.fst-product-card .fst-product-price,
.fst-product-card .fst-price,
.fst-product-card .fst-price-original,
.fst-product-card .fst-price-sale,
.fst-product-card .price,
/* PS classic miniature classes (used in some module hooks/partials) */
.product-miniature .price,
.product-miniature .regular-price,
.product-miniature .product-price,
.product-miniature .product-prices,
.product-miniature .product-price-and-shipping,
.product-miniature .discount,
.product-miniature .product-discount,
/* Product detail page */
body#product .product-prices,
body#product .current-price,
body#product .regular-price,
body#product .product-discount,
body#product .discount,
body#product .has-discount,
body#product #product-prices,
body#product .tax-shipping-delivery-label,
body#product .product-unit-price,
/* Generic catch-all anywhere */
.product-price-and-shipping,
.fst-box-price-override {
  display: none !important;
}

/* ===== Product variant pill-buttons (Taille HP / Capacité / Couleur etc.) ===== */
.product-variants .product-variants-item {
  margin: 0 0 16px;
}
.product-variants .product-variants-item .control-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--emerald-900, #002418);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.fst-variant-buttons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fst-variant-buttons li { margin: 0; padding: 0; }

/* Visually hide the radio input but keep it accessible */
.fst-variant-input {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fst-variant-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 8px 14px;
  border: 1.5px solid var(--emerald-100, #E1ECE7);
  border-radius: 6px;
  background: var(--paper, #FBF9F4);
  color: var(--emerald-900, #002418);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
  margin: 0;
  text-align: center;
}
.fst-variant-btn:hover {
  border-color: var(--emerald-600, #1F6B4F);
  background: var(--emerald-50, #F2F7F4);
}
.fst-variant-input:checked + .fst-variant-btn {
  border-color: var(--emerald-800, #004030);
  background: var(--emerald-800, #004030);
  color: var(--paper, #FBF9F4);
}
.fst-variant-input:focus-visible + .fst-variant-btn {
  outline: 2px solid var(--gold-500, #C9A961);
  outline-offset: 2px;
}
.fst-variant-input:disabled + .fst-variant-btn {
  opacity: 0.45;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Color attribute swatches — for Couleur group */
.fst-variant-buttons.fst-variant-color .fst-variant-btn[data-color]::before,
.fst-variant-btn[style*="background-color"]::before {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  margin-right: 6px;
  border-radius: 50%;
  background-color: currentColor;
  vertical-align: middle;
}
