/* =========================================================================
   LTM Location — design tokens & styles
   ========================================================================= */

:root {
  /* colors */
  --ink: #171b24;
  --ink-2: #2a2f3c;
  --ink-3: #4a5163;
  --muted: #7a8295;
  --line: #e7e2d7;
  --line-2: #efeae0;
  --paper: #f5f2ec;
  --paper-2: #fbf9f4;
  --white: #ffffff;
  --orange: #ee6a1f;
  --orange-d: #d8551a;
  --orange-50: #fdece1;
  --steel: #2e5a8a;
  --green: #3a7a4d;
  --red: #c84545;

  --shadow-sm: 0 1px 2px rgba(23,27,36,.04), 0 1px 0 rgba(23,27,36,.02);
  --shadow-md: 0 4px 12px -2px rgba(23,27,36,.06), 0 2px 4px rgba(23,27,36,.04);
  --shadow-lg: 0 20px 40px -16px rgba(23,27,36,.18), 0 4px 12px rgba(23,27,36,.06);

  --r-sm: 6px;
  --r: 10px;
  --r-lg: 14px;
  --r-xl: 22px;

  --c-w: 1240px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  font-family: "Manrope", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: "Archivo", "Helvetica Neue", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: clamp(34px, 4.4vw, 56px); }
h2 { font-size: clamp(26px, 2.6vw, 36px); }
h3 { font-size: 20px; }
h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; }

p { margin: 0; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.muted { color: var(--muted); }
.small { font-size: 12.5px; }
em { font-style: normal; }
.container { max-width: var(--c-w); margin: 0 auto; padding: 0 28px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); display: inline-block; }

/* =========================================================================
   LOGO
   ========================================================================= */
.ltm-logo { display: inline-flex; align-items: center; gap: 12px; }
.ltm-logo__txt { display: flex; flex-direction: column; line-height: 1.2; }
.ltm-logo__txt strong { font-family: "Archivo"; font-weight: 800; letter-spacing: -.02em; font-size: 17px; }
.ltm-logo__txt span { font-size: 11px; color: var(--muted); margin-top: 2px; max-width: 280px; }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  height: 44px; padding: 0 18px;
  border: 0; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  letter-spacing: -0.005em;
  transition: transform .12s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn--primary { background: var(--orange); color: white; box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 8px 18px -8px rgba(238,106,31,.6); }
.btn--primary:hover:not(:disabled) { background: var(--orange-d); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn--ghost:hover { background: var(--paper-2); }
.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { background: var(--ink-2); }
.btn--lg { height: 52px; padding: 0 24px; font-size: 15px; }
.btn--sm { height: 34px; padding: 0 14px; font-size: 13px; }
.btn--full { width: 100%; }

.link {
  background: none; border: 0; color: var(--ink); font-weight: 600;
  display: inline-flex; gap: 6px; align-items: center;
  padding: 4px 0; border-bottom: 1px solid var(--ink);
}
.link:hover { color: var(--orange); border-color: var(--orange); }

/* =========================================================================
   HEADER
   ========================================================================= */
.header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(245, 242, 236, .92);
}
.header__inner {
  display: flex; align-items: center; gap: 28px;
  height: 88px;
}
.header__logo { background: none; border: 0; padding: 0; display: flex; align-items: center; gap: 12px; }
.header__logo img { width: 56px; height: 56px; object-fit: contain; border-radius: 12px; background: var(--paper-2); border: 1px solid var(--line); padding: 5px; }
.header__logo strong { font-family: "Archivo"; font-weight: 800; font-size: 20px; letter-spacing: -.01em; color: var(--ink); }
.header__nav {
  display: flex; gap: 4px; margin-left: 12px;
}
.header__nav button {
  background: none; border: 0;
  padding: 8px 14px;
  font-size: 14px; font-weight: 500;
  color: var(--ink-2);
  border-radius: 999px;
}
.header__nav button:hover { background: var(--line-2); }
.header__nav button.is-on { background: var(--ink); color: var(--paper); }
.header__slogan {
  flex: 1;
  text-align: center;
  font-family: "Archivo";
  font-weight: 600;
  font-style: italic;
  font-size: 19px;
  color: var(--ink-2);
  letter-spacing: .01em;
}
.header__right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.header__phone {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--ink);
  padding: 6px 10px;
}
.header__phone small { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.header__phone strong { font-family: "Archivo"; font-size: 14px; }
.header__cart {
  position: relative;
  display: flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--paper);
  border: 0; border-radius: 999px;
  padding: 10px 18px; font-weight: 600; font-size: 14px;
}
.header__cart:hover { background: var(--ink-2); }
.header__cart em {
  font-style: normal; font-size: 11px;
  background: var(--orange); color: white;
  border-radius: 999px; padding: 2px 7px; margin-left: 4px;
  font-weight: 700;
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 90% -10%, rgba(238,106,31,.18), transparent 60%),
    radial-gradient(600px 300px at 0% 100%, rgba(46,90,138,.18), transparent 60%);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--c-w);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 56px;
  position: relative;
}
.hero__copy { padding-top: 12px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; text-transform: uppercase; letter-spacing: .15em;
  color: rgba(245,242,236,.7);
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--paper);
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.hero h1 em { color: var(--orange); font-style: italic; font-weight: 800; }
.hero__sub {
  font-size: 17px;
  color: rgba(245,242,236,.78);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero__search {
  background: var(--paper);
  color: var(--ink);
  padding: 14px;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.4);
}
.hero__search-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 10px;
  align-items: stretch;
}
.hero__search-input {
  display: flex; align-items: center; gap: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0 14px;
  color: var(--ink-3);
}
.hero__search-input input {
  flex: 1; border: 0; outline: 0; height: 48px;
  background: transparent;
  font-size: 14px;
}
.hero__chips {
  margin-top: 12px;
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  font-size: 12.5px; color: var(--muted);
  padding: 0 4px;
}
.hero__chips button {
  background: var(--line-2); border: 0; color: var(--ink-2);
  border-radius: 999px; padding: 4px 10px; font-size: 12.5px;
}
.hero__chips button:hover { background: var(--line); }

.hero__visual { position: relative; }
.hero__visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  transform: rotate(-2deg);
}
.hero__tile {
  aspect-ratio: 1; position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink-2), var(--ink));
  border: 1px solid rgba(245,242,236,.08);
  display: flex; align-items: flex-end; padding: 14px;
  color: var(--paper); font-weight: 600;
  font-size: 13px; letter-spacing: .02em;
}
.hero__tile:nth-child(1) { background: linear-gradient(135deg, #2a3142, #1a1f2e); }
.hero__tile:nth-child(2) { background: linear-gradient(135deg, #c2451f, #8a2e15); transform: translateY(20px); }
.hero__tile:nth-child(3) { background: linear-gradient(135deg, #3d6a3f, #25422a); transform: translateY(-12px); }
.hero__tile:nth-child(4) { background: linear-gradient(135deg, #2e5a8a, #1e3d61); }
.hero__tile-stripes {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 8px, transparent 8px 18px);
}
.hero__badge {
  position: absolute; bottom: -16px; left: 24px;
  background: var(--paper); color: var(--ink);
  border-radius: var(--r-lg);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
}
.hero__badge strong { font-family: "Archivo"; font-size: 26px; }
.hero__badge svg { color: var(--orange); }
.hero__badge small { display: block; color: var(--muted); font-size: 11.5px; }

/* =========================================================================
   SECTIONS
   ========================================================================= */
.section { padding: 84px 0; }
.section--alt { background: var(--paper-2); }
.section--tight { padding: 56px 0 0; }
.section__head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section__head p { color: var(--muted); margin-top: 12px; font-size: 16px; }
.section__head--row {
  text-align: left;
  max-width: none;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px;
}
.section__head--row p { margin-top: 4px; }

/* =========================================================================
   CATEGORY CARDS (home)
   ========================================================================= */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  text-align: left; padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cat-card__bar { height: 8px; }
.cat-card__body { padding: 28px 28px 32px; }
.cat-card__num {
  font-family: "Archivo"; font-size: 13px; font-weight: 700;
  color: var(--muted); letter-spacing: .08em;
}
.cat-card h3 { font-size: 22px; margin: 8px 0 10px; }
.cat-card p { color: var(--muted); font-size: 14px; }
.cat-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px;
  font-weight: 600; font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.cat-card:hover .cat-card__cta { color: var(--orange); border-color: var(--orange); }

/* =========================================================================
   PRODUCT CARDS
   ========================================================================= */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.prod-card {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.prod-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.prod-card__media { position: relative; }
/* Petites flèches pour feuilleter les photos directement sur la carte */
.prod-card__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 999px; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.82); color: var(--ink);
  border: 1px solid var(--line); cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,.14);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  transition: background .15s ease, box-shadow .15s ease;
}
.prod-card__nav:hover { background: #fff; box-shadow: 0 2px 7px rgba(0,0,0,.2); }
.prod-card__nav--prev { left: 6px; }
.prod-card__nav--next { right: 6px; }
.prod-card__body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.prod-card__cat {
  font-family: "Archivo", sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 5px;
}
.prod-card h3 {
  font-size: 15px; font-weight: 600; letter-spacing: -.01em;
  margin-bottom: 12px; min-height: 54px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  font-family: "Manrope";
}
.prod-card__price {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 14px;
}
.prod-card__price strong {
  font-family: "Archivo"; font-size: 22px; font-weight: 700;
}
.prod-card__price small { color: var(--muted); font-size: 12px; margin-left: 2px; }
.prod-card__price .muted { font-size: 13px; }
.prod-card__foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.prod-card__btn {
  background: var(--orange); color: white;
  border: 0; border-radius: 999px;
  padding: 8px 14px; font-weight: 600; font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px;
}
.prod-card__btn:hover { background: var(--orange-d); }

.stock {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--green); font-weight: 600;
}
.stock__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.stock--low { color: #b87a18; }
.stock--low .stock__dot { background: #e8a236; }

/* =========================================================================
   PRODUCT IMAGE PLACEHOLDER
   ========================================================================= */
.prod-img {
  position: relative;
  overflow: hidden;
  background: #f0ece4;
}
.prod-img__bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.prod-img__chip {
  position: absolute; top: 8px; left: 8px;
  /* Fond translucide : la couleur de catégorie est passée via --chip-bg (style
     inline dans ProdImg), color-mix lui ajoute de la transparence pour qu'on
     voie la photo dessous. Le flou d'arrière-plan garde le texte lisible. */
  background: color-mix(in srgb, var(--chip-bg, var(--ink)) 72%, transparent);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  color: var(--paper);
  font-size: 9px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px;
}
.prod-img__label {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  font-family: "JetBrains Mono", "SF Mono", ui-monospace, monospace;
  font-size: 10.5px;
  color: rgba(23,27,36,.55);
  line-height: 1.4;
  letter-spacing: -.01em;
}
.prod-img__mini {
  position: absolute; bottom: 8px; right: 8px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 9px;
  color: rgba(23,27,36,.4);
  text-transform: lowercase;
}

/* =========================================================================
   STEPS (how it works)
   ========================================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: relative;
}
.step__num {
  font-family: "Archivo"; font-weight: 800;
  font-size: 32px; letter-spacing: -.04em;
  color: var(--orange);
  margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; }

/* =========================================================================
   TRUST BANNER
   ========================================================================= */
.trust {
  background: var(--ink);
  color: var(--paper);
  padding: 32px 0;
}
.trust__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust__item {
  display: flex; align-items: center; gap: 14px;
  color: var(--paper);
}
.trust__item svg { color: var(--orange); flex-shrink: 0; }
.trust__item strong { display: block; font-family: "Archivo"; font-size: 15px; }
.trust__item span { display: block; color: rgba(245,242,236,.65); font-size: 12.5px; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  background: #0f1218;
  color: rgba(245,242,236,.78);
  padding: 64px 0 24px;
  margin-top: 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer h4 { color: var(--paper); margin-bottom: 18px; }
.footer ul li { margin-bottom: 8px; }
.footer a, .footer button {
  background: none; border: 0; padding: 0;
  color: rgba(245,242,236,.78);
  text-decoration: none; font-size: 14px;
  text-align: left;
}
.footer a:hover, .footer button:hover { color: var(--orange); }
.footer__brand p { font-size: 14px; max-width: 320px; margin: 16px 0 24px; }
.footer__logo { display: flex; gap: 12px; align-items: center; }
.footer__logo img { width: 48px; height: 48px; object-fit: contain; border-radius: 10px; background: white; padding: 4px; }
.footer__logo strong { display: block; font-family: "Archivo"; font-weight: 800; font-size: 18px; color: var(--paper); }
.footer__logo span { display: block; font-size: 11.5px; color: rgba(245,242,236,.55); margin-top: 2px; }
.footer__pay { display: flex; gap: 6px; }
.brand {
  display: inline-flex; align-items: center; justify-content: center;
  height: 24px; padding: 0 8px;
  background: rgba(245,242,236,.08);
  border-radius: 4px;
  font-size: 10px; font-weight: 800;
  letter-spacing: .05em;
  color: var(--paper);
  font-family: "Archivo";
}
.brand--mc { background: #eb001b; color: white; }
.brand--apple { background: #000; color: white; }
.brand--google { background: #fff; color: #4285f4; border: 1px solid #dadce0; }
.footer address {
  font-style: normal; font-size: 14px;
}
.footer address p { margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(245,242,236,.1);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__legal { display: flex; gap: 18px; }
.footer__legal button {
  background: none; border: 0; padding: 0;
  color: rgba(245,242,236,.55); font-size: 12px;
  cursor: pointer;
}
.footer__legal button:hover { color: var(--orange); }
.footer__bottom small { color: rgba(245,242,236,.55); font-size: 12px; }

/* =========================================================================
   DATE RANGE INPUT
   ========================================================================= */
.daterange {
  display: flex; align-items: stretch; gap: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.daterange label {
  flex: 1; display: flex; flex-direction: column; padding: 6px 14px;
  cursor: pointer; min-width: 0;
}
.daterange__lbl {
  font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); display: flex; align-items: center; gap: 5px;
  margin-bottom: 2px;
}
.daterange input {
  border: 0; outline: 0; background: transparent;
  font-size: 14px; font-weight: 500;
  padding: 0; width: 100%;
  font-family: inherit;
  color: var(--ink);
}
.daterange input::-webkit-calendar-picker-indicator { opacity: .35; cursor: pointer; }
.daterange__sep {
  display: flex; align-items: center;
  padding: 0 4px;
  color: var(--muted); font-size: 14px;
}
.daterange--compact label { padding: 4px 12px; }
.daterange--compact .daterange__lbl { font-size: 9.5px; }
.daterange--compact input { font-size: 13px; }

/* =========================================================================
   FIELD
   ========================================================================= */
.field { display: flex; flex-direction: column; gap: 6px; }
.field--wide { grid-column: 1 / -1; }
.field--narrow { max-width: 140px; }
.field__lbl {
  font-size: 12px; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); font-weight: 600;
}
.field__hint { font-size: 12px; color: var(--muted); }
.field__err { font-size: 12px; color: var(--red); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"] {
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: white;
  outline: 0;
  font-size: 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(23,27,36,.08);
}
.input-with-icon { position: relative; }
.input-with-icon svg { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.input-with-icon input { padding-right: 40px !important; }

.check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; cursor: pointer;
  padding: 6px 0;
}
.check input { margin-top: 2px; accent-color: var(--ink); }
.check a { color: var(--ink); }

/* =========================================================================
   STEPPER
   ========================================================================= */
.stepper {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: white;
  overflow: hidden;
  height: 44px;
}
.stepper button {
  width: 40px; height: 100%;
  background: none; border: 0;
  display: grid; place-items: center;
  color: var(--ink);
}
.stepper button:hover { background: var(--paper-2); }
.stepper span {
  min-width: 36px; text-align: center;
  font-weight: 700; font-family: "Archivo"; font-size: 15px;
}

/* =========================================================================
   TAGS
   ========================================================================= */
.tag {
  display: inline-flex;
  font-size: 12px;
  padding: 3px 9px;
  background: var(--line-2);
  border-radius: 999px;
  color: var(--ink-2);
}

/* =========================================================================
   CATALOGUE
   ========================================================================= */
.cat-header {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: 28px 0 24px;
}
.cat-header h1 { font-size: 32px; margin: 8px 0 18px; }
.cat-header__row {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 12px;
}
.cat-header__search {
  display: flex; align-items: center; gap: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0 14px;
}
.cat-header__search input {
  flex: 1; border: 0; outline: 0; height: 48px;
  background: transparent;
  font-size: 14px;
}
.back-btn {
  background: none; border: 0; padding: 6px 0;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px;
}
.back-btn:hover { color: var(--ink); }

.cat-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  padding-top: 36px;
  padding-bottom: 80px;
}
.cat-side { position: sticky; top: 96px; align-self: start; }
.cat-side__block {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.cat-side h4 { margin-bottom: 14px; color: var(--ink); }
.cat-side__list li button {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: none; border: 0;
  padding: 8px 10px; border-radius: var(--r);
  font-size: 13.5px; color: var(--ink-2);
  text-align: left;
}
.cat-side__list li button:hover { background: var(--line-2); }
.cat-side__list li button.is-on { background: var(--ink); color: var(--paper); }
.cat-side__list li button.is-on em { color: rgba(245,242,236,.65); }
.cat-side__list li button .dot { width: 8px; height: 8px; margin-right: 8px; }
.cat-side__list em { font-style: normal; color: var(--muted); font-size: 12px; }
.cat-side__range-bar {
  height: 6px; background: var(--line); border-radius: 999px;
  position: relative; margin: 12px 0 6px;
}
.cat-side__range-bar span {
  position: absolute; left: 10%; right: 30%; top: 0; bottom: 0;
  background: var(--ink); border-radius: 999px;
}
.cat-side__range-vals { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); }
.cat-side__help {
  background: var(--orange-50);
  border-radius: var(--r);
  padding: 14px;
  display: flex; gap: 12px;
  align-items: flex-start;
}
.cat-side__help svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.cat-side__help strong { display: block; font-size: 13px; margin-bottom: 2px; }
.cat-side__help span { font-size: 12.5px; color: var(--ink-3); }

.cat-results__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.cat-results__head strong { font-family: "Archivo"; }
.sort { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; }
.sort select {
  border: 1px solid var(--line); background: white; padding: 6px 10px;
  border-radius: var(--r); font-size: 13px;
}
.empty {
  text-align: center; padding: 80px 20px;
  background: var(--paper-2); border-radius: var(--r-lg);
}
.empty p { margin-bottom: 16px; color: var(--muted); }

/* =========================================================================
   FICHE PRODUIT
   ========================================================================= */
.fiche { padding: 28px 0 80px; }
.crumbs {
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; color: var(--muted);
  margin-bottom: 24px;
}
.crumbs button { background: none; border: 0; padding: 0; color: var(--ink-3); font-size: inherit; }
.crumbs button:hover { color: var(--orange); }
.fiche__main {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.fiche__gallery { position: sticky; top: 96px; align-self: start; }
.fiche__big {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 12px;
}
.fiche__big-overlay {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(23,27,36,.7); color: white;
  font-size: 11px; padding: 4px 10px; border-radius: 999px;
}
/* Petites flèches pour faire défiler les photos sur la grande image */
.fiche__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.82); color: var(--ink);
  border: 1px solid var(--line); cursor: pointer;
  box-shadow: 0 1px 5px rgba(0,0,0,.14);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  transition: background .15s ease, box-shadow .15s ease;
}
.fiche__nav:hover { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.fiche__nav--prev { left: 10px; }
.fiche__nav--next { right: 10px; }
.fiche__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.fiche__thumbs button {
  background: none; border: 2px solid transparent;
  padding: 0; border-radius: var(--r); overflow: hidden;
  cursor: pointer;
}
.fiche__thumbs button.is-on { border-color: var(--orange); }

.fiche__cat {
  font-family: "Archivo"; font-size: 11.5px; font-weight: 700;
  letter-spacing: .12em; margin-bottom: 14px;
}
.fiche h1 { font-size: clamp(28px, 3vw, 38px); margin-bottom: 14px; }
.fiche__meta {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--ink-3);
  margin-bottom: 26px;
}
.fiche__meta svg { color: #e8a236; vertical-align: -2px; margin-right: 4px; }

.fiche__tariff {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  margin-bottom: 24px;
}
.fiche__tariff-line { display: flex; align-items: center; gap: 20px; margin-bottom: 10px; }
.fiche__tariff-line .sep { width: 1px; height: 32px; background: var(--line); }
.fiche__tariff-line span { display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; }
.fiche__tariff-line strong { font-family: "Archivo"; font-size: 24px; }
.fiche__tariff small { color: var(--muted); }

.fiche__desc { color: var(--ink-3); margin-bottom: 16px; line-height: 1.65; }
.fiche__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 28px; }

.fiche__reserve {
  border: 1.5px solid var(--ink);
  background: white;
  border-radius: var(--r-lg);
  padding: 22px 22px 20px;
}
.fiche__reserve h3 { margin-bottom: 16px; font-size: 18px; }
.fiche__reserve-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-end;
}
.fiche__summary {
  padding: 14px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  margin-bottom: 16px;
}
.fiche__summary-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 4px;
}
.fiche__summary-row strong { font-family: "Archivo"; font-size: 24px; }
.fiche__notes {
  display: flex; gap: 18px; margin-top: 12px;
  font-size: 12px; color: var(--muted);
  flex-wrap: wrap;
}
.fiche__notes svg { color: var(--green); vertical-align: -2px; }

.fiche__details {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fiche__details h3 { margin-bottom: 18px; }
.specs { width: 100%; border-collapse: collapse; }
.specs tr { border-bottom: 1px solid var(--line-2); }
.specs th, .specs td { text-align: left; padding: 12px 0; font-size: 14px; }
.specs th { color: var(--muted); font-weight: 500; width: 40%; }
.specs td { font-weight: 600; font-family: "Archivo"; }
.includes li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; font-size: 14px;
}
.includes svg { color: var(--green); }

/* =========================================================================
   CART / RESERVATION
   ========================================================================= */
.cart { padding: 28px 0 80px; }
.cart__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  margin-top: 28px;
}
.cart__main h1 { margin-bottom: 28px; }
.cart__empty {
  background: var(--paper-2); border-radius: var(--r-lg);
  padding: 60px 30px; text-align: center;
}
.cart__empty p { margin-bottom: 18px; color: var(--muted); }

.cart__items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.cart-line {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 14px;
  align-items: center;
}
.cart-line__img {
  background: none; border: 0; padding: 0;
  border-radius: var(--r); overflow: hidden;
  aspect-ratio: 1; cursor: pointer;
}
.cart-line__body h3 {
  font-size: 16px; font-family: "Archivo";
  margin-bottom: 6px; cursor: pointer;
}
.cart-line__body h3:hover { color: var(--orange); }
.cart-line__meta { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13px; color: var(--muted); }
.badge {
  background: var(--orange-50); color: var(--orange-d);
  font-size: 11px; font-weight: 700; padding: 2px 8px;
  border-radius: 999px; text-transform: uppercase; letter-spacing: .05em;
}
.cart-line__controls { display: flex; align-items: center; gap: 14px; }
.cart-line__del {
  background: none; border: 0; padding: 0;
  color: var(--muted); font-size: 13px;
  display: inline-flex; align-items: center; gap: 4px;
}
.cart-line__del:hover { color: var(--red); }
.cart-line__total { text-align: right; }
.cart-line__total strong { display: block; font-family: "Archivo"; font-size: 20px; }

.cart__block {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px 24px 26px;
  margin-bottom: 18px;
}
.cart__block-head { margin-bottom: 18px; }
.cart__block-head h2 { font-size: 20px; margin-bottom: 2px; }

.cart__dates {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}
.cart__dates label {
  display: flex; flex-direction: column; gap: 6px;
}
.cart__dates label > span:first-child {
  font-size: 12px; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.cart__dates input {
  height: 48px; border: 1px solid var(--line); border-radius: var(--r);
  padding: 0 14px; font-size: 14px; background: white;
}
.cart__dates-duration {
  background: var(--ink); color: var(--paper);
  border-radius: var(--r);
  padding: 8px 16px;
  text-align: center;
  margin-top: 16px;
}
.cart__dates-duration span { display: block; font-family: "Archivo"; font-size: 22px; font-weight: 700; }
.cart__dates-duration small { font-size: 11px; opacity: .7; }

/* MODES */
.modes { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mode {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  padding: 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  cursor: pointer;
  align-items: flex-start;
  transition: border-color .15s ease, background .15s ease;
}
.mode input { position: absolute; opacity: 0; }
.mode svg { color: var(--ink-3); margin-top: 2px; }
.mode strong { display: block; font-family: "Archivo"; font-size: 15px; margin-bottom: 4px; }
.mode span { display: block; font-size: 12.5px; color: var(--muted); line-height: 1.5; }
.mode__price {
  font-family: "Archivo"; font-weight: 700; font-size: 14px;
  color: var(--ink);
  white-space: nowrap;
}
.mode.is-on { border-color: var(--ink); background: var(--paper-2); }
.mode.is-on svg { color: var(--orange); }

.addr {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.addr h4 { margin-bottom: 14px; }
.addr__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 12px;
}

/* RECAP */
.cart__recap {
  position: sticky; top: 96px;
  align-self: start;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
}
.cart__recap h3 { margin-bottom: 16px; }
.recap__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; font-size: 14px;
}
.recap__row strong { font-family: "Archivo"; }
.recap__row.small { font-size: 13px; padding: 3px 0; }
.recap__row--total {
  font-size: 16px; padding: 12px 0 4px;
}
.recap__row--total strong { font-size: 26px; color: var(--ink); }
.cart__recap hr { border: 0; border-top: 1px solid var(--line); margin: 8px 0; }
.cart__recap small { display: block; margin-bottom: 18px; font-size: 12px; }
.cart__warn { color: var(--orange-d); margin-top: 10px; font-size: 12.5px; }
.recap__trust {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted);
}

/* =========================================================================
   STEP LINE
   ========================================================================= */
.stepline {
  display: flex; align-items: center; gap: 0;
  margin: 12px 0 36px;
  list-style: none;
  flex-wrap: wrap;
}
.stepline li {
  display: flex; align-items: center; gap: 10px;
  color: var(--muted);
  font-size: 13.5px;
  padding-right: 14px;
}
.stepline li:not(:last-child)::after {
  content: ""; width: 32px; height: 1px; background: var(--line);
  margin-left: 6px;
}
.stepline__num {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  background: var(--line-2); color: var(--ink-3);
  border-radius: 50%; font-weight: 700; font-size: 12px;
  font-family: "Archivo";
}
.stepline li.is-on { color: var(--ink); font-weight: 600; }
.stepline li.is-on .stepline__num { background: var(--ink); color: var(--paper); }
.stepline li.is-done .stepline__num { background: var(--green); color: white; }
.stepline li.is-done { color: var(--ink-2); }

/* =========================================================================
   PAYMENT
   ========================================================================= */
.payment { padding: 28px 0 80px; }
.pay__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  margin-top: 12px;
}
.pay__main h1 { margin-bottom: 8px; }
.pay__main > p { margin-bottom: 28px; }
.pay__card, .pay__contact {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 18px;
  display: flex; flex-direction: column; gap: 16px;
}
.pay__card-head { display: flex; align-items: center; justify-content: space-between; }
.pay__card-head h3 { margin: 0; }
.pay__brands { display: flex; gap: 4px; }
.pay__card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pay__remember { font-size: 13px; }

.pay__recap {
  position: sticky; top: 96px;
  align-self: start;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
}
.pay__recap h3 { margin-bottom: 16px; }
.pay__recap-block { margin-bottom: 8px; }

/* =========================================================================
   CONFIRMATION
   ========================================================================= */
.confirm { padding: 28px 0 80px; }
.confirm__card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 60px 56px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.confirm__card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange) 100%);
}
.confirm__icon {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--orange-50);
  color: var(--orange);
  display: grid; place-items: center;
  margin: 0 auto 24px;
}
.confirm__eyebrow {
  font-family: "Archivo"; font-size: 12px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.confirm h1 { font-size: clamp(32px, 3.4vw, 44px); margin-bottom: 16px; }
.confirm__lead { color: var(--ink-3); font-size: 16px; max-width: 560px; margin: 0 auto 32px; }
.confirm__num {
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 16px 28px;
  background: var(--paper-2);
  border-radius: var(--r-lg);
  border: 1px dashed var(--line);
  margin-bottom: 40px;
}
.confirm__num span { font-size: 11.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.confirm__num strong { font-family: "Archivo"; font-size: 26px; letter-spacing: .04em; }

.confirm__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  text-align: left;
  margin-bottom: 32px;
}
.confirm__panel {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px 22px;
}
.confirm__panel h3 { margin-bottom: 14px; font-size: 15px; }
.confirm__panel ul li {
  padding: 6px 0; font-size: 14px;
  border-bottom: 1px dashed var(--line-2);
}
.confirm__panel ul li:last-child { border: 0; }
.confirm__list li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; font-size: 14px;
}
.confirm__list svg { color: var(--muted); }
.confirm__totals { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.confirm__totals div { display: flex; justify-content: space-between; align-items: baseline; }
.confirm__totals strong { font-family: "Archivo"; font-size: 22px; }
.confirm__totals small { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }

.confirm__next {
  text-align: left;
  background: var(--paper-2);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  margin-bottom: 32px;
}
.confirm__next h3 { margin-bottom: 16px; }
.confirm__next ol { padding-left: 20px; counter-reset: c; }
.confirm__next ol li {
  margin-bottom: 10px; padding-left: 8px;
  font-size: 14px; color: var(--ink-3); line-height: 1.6;
}
.confirm__next ol li strong { color: var(--ink); }
.confirm__actions { display: flex; gap: 12px; justify-content: center; }

/* =========================================================================
   STOREFRONT (Lokki-inspired Home)
   ========================================================================= */
.storefront { background: var(--white); }

.shop-head {
  padding: 32px 28px 24px;
  display: flex; align-items: flex-start;
  gap: 24px;
}
.shop-head__left { display: flex; gap: 18px; align-items: center; }
.shop-head__logo {
  width: 72px; height: 72px;
  object-fit: contain;
  border-radius: 14px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 6px;
  flex-shrink: 0;
}
.shop-head__name {
  font-size: clamp(26px, 3vw, 32px);
  margin-bottom: 6px;
}
.shop-head__meta {
  display: flex; gap: 20px; align-items: center;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--ink-3);
}
.rating { display: inline-flex; align-items: center; gap: 6px; }
.rating svg { color: #f5a623; }
.rating strong { font-family: "Archivo"; }
.rating a { color: var(--ink-3); text-decoration: underline; }
.delivery { display: inline-flex; align-items: center; gap: 6px; }
.delivery svg { color: var(--green); }

/* TABS */
.shop-tabs {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 88px; z-index: 30;
}
.shop-tabs__inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.shop-tabs__inner::-webkit-scrollbar { display: none; }
.shop-tabs button {
  background: none; border: 0;
  padding: 18px 4px;
  margin-right: 28px;
  font-size: 15px; font-weight: 500;
  color: var(--ink-3);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .15s ease, border-color .15s ease;
}
.shop-tabs button:hover { color: var(--ink); }
.shop-tabs button.is-on {
  color: var(--ink);
  border-bottom-color: var(--ink);
  font-weight: 700;
}

/* MAIN 2-COL LAYOUT */
.storefront__body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  padding-top: 32px;
  padding-bottom: 64px;
  align-items: start;
}
.storefront__main { min-width: 0; }
.storefront__side { position: sticky; top: 152px; display: flex; flex-direction: column; gap: 16px; }

/* DATE PANEL */
.datepanel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.datepanel h3 { margin-bottom: 16px; font-size: 16px; }
.datepanel__row {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 14px;
}
.datepanel__lbl {
  font-size: 12px; font-weight: 600;
  color: var(--ink-3);
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.datepanel__row input {
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: white;
  font-size: 14px;
  font-family: inherit;
  outline: 0;
  transition: border-color .15s ease;
}
.datepanel__row input:focus { border-color: var(--ink); }
.datepanel__duration {
  padding: 10px 14px;
  margin-bottom: 14px;
  background: var(--paper-2);
  border-radius: var(--r);
  font-size: 13.5px;
}
.datepanel__duration strong { font-family: "Archivo"; font-size: 16px; }

/* BUSINESS CARD */
.bizcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.bizcard__head {
  display: flex; gap: 12px; align-items: center;
  margin-bottom: 14px;
}
.bizcard__logo {
  width: 40px; height: 40px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--paper-2);
  padding: 4px;
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.bizcard__head strong {
  display: block; font-family: "Archivo"; font-size: 15px; margin-bottom: 2px;
}
.bizcard__head a {
  display: block;
  font-size: 12.5px;
  color: var(--ink-3);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.bizcard__meta {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12.5px; color: var(--ink-3);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 14px;
}
.bizcard__meta span { display: inline-flex; align-items: center; gap: 6px; }
.bizcard__meta .rating svg { color: #f5a623; }
.bizcard__meta strong { font-family: "Archivo"; }
.bizcard__pay { display: flex; gap: 5px; flex-wrap: wrap; }
.paychip {
  display: inline-flex; align-items: center; justify-content: center;
  height: 22px; padding: 0 7px;
  border-radius: 4px;
  font-size: 9.5px; font-weight: 800;
  letter-spacing: .04em;
  font-family: "Archivo";
  border: 1px solid var(--line);
  background: white; color: var(--ink-2);
}
.paychip--visa { color: #1a1f71; }
.paychip--mc { background: #fff; color: #eb001b; font-size: 12px; }
.paychip--amex { color: #006fcf; }

/* QUESTION CARD */
.qcard {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: 18px 20px;
}
.qcard__head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.qcard__head svg { color: var(--orange); }
.qcard__head strong { font-family: "Archivo"; font-size: 14px; }
.qcard__cta {
  display: inline-block;
  background: var(--orange);
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  transition: background .15s ease;
}
.qcard__cta:hover { background: var(--orange-d); }

/* PRODUITS TAB */
.produits-tab { padding-top: 4px; }
.produits__bar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  margin-bottom: 20px;
}
.produits__search {
  position: relative;
  display: flex;
}
.produits__search input {
  flex: 1;
  height: 48px;
  padding: 0 56px 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-size: 14px;
  outline: 0;
  font-family: inherit;
  transition: border-color .15s ease;
}
.produits__search input:focus { border-color: var(--ink); }
.produits__search-btn {
  position: absolute; right: 4px; top: 4px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink); color: var(--paper);
  border: 0;
  display: grid; place-items: center;
}
.produits__search-btn:hover { background: var(--ink-2); }
.produits__filter {
  height: 48px; padding: 0 18px;
  border: 1px solid var(--line); border-radius: 999px;
  background: white; color: var(--ink);
  font-weight: 500; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.produits__filter:hover { background: var(--paper-2); }
.produits__filter.is-on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.produits__sort {
  display: flex; align-items: center;
}
.produits__sort label {
  display: flex; align-items: center; gap: 8px;
  height: 48px; padding: 0 8px 0 18px;
  border: 1px solid var(--line); border-radius: 999px;
  background: white;
  font-size: 13.5px; color: var(--ink-3);
}
.produits__sort select {
  border: 0; outline: 0; background: transparent;
  font-size: 14px; font-weight: 500; color: var(--ink);
  padding-right: 8px;
  font-family: inherit;
  cursor: pointer;
}

/* Category chips */
.produits__chips {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.produits__chips button {
  height: 38px; padding: 0 16px;
  border: 1px solid var(--line); border-radius: 999px;
  background: white; color: var(--ink-2);
  font-size: 13.5px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .15s ease;
  white-space: nowrap;
}
.produits__chips button em { font-style: normal; color: var(--muted); font-size: 12px; }
.produits__chips button:hover { background: var(--paper-2); }
.produits__chips button.is-on {
  background: var(--ink); color: var(--paper);
  border-color: var(--ink); font-weight: 600;
}
.produits__chips button.is-on em { color: rgba(245,242,236,.6); }

/* Collapsible filters */
.produits__filters {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  padding: 20px 22px;
  background: var(--paper-2);
  border-radius: var(--r-lg);
  margin-bottom: 24px;
}
.produits__filters h4 { margin-bottom: 12px; }

.produits__count {
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.produits__count strong { color: var(--ink); font-family: "Archivo"; }

/* Product grid (storefront) */
.produits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
.produits__grid .prod-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: white;
  overflow: hidden;
  cursor: pointer;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.produits__grid .prod-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.produits__grid .prod-card__body {
  padding: 12px 14px 16px;
  flex: 1;
}
.produits__grid .prod-card h3 {
  font-size: 14px; font-weight: 600;
  margin-bottom: 6px;
  min-height: 54px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  letter-spacing: -.005em;
  font-family: "Manrope";
}
.produits__grid .prod-card__price {
  font-size: 12.5px; color: var(--ink-3);
  display: block;
  margin-bottom: 0;
}
.produits__grid .prod-card__price strong {
  font-family: "Archivo";
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.produits__more {
  display: flex; justify-content: center;
  margin-top: 28px;
}
.produits__more .btn { padding: 0 28px; }

/* =========================================================================
   TAB CONTENT BLOCKS (Localisation / À propos / Avis / Infos)
   ========================================================================= */
.tab-content { padding: 8px 0 24px; }
.tab-content h2 { font-size: 28px; margin-bottom: 8px; }
.tab-content > .muted, .tab-content .lead {
  font-size: 16px; color: var(--ink-3); margin-bottom: 28px;
}

/* Map block */
.map-block {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px;
}
.map-block__map {
  background: #eef0e8;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 16/10;
}
.map-block__info h3 { margin-bottom: 14px; }
.map-block__info p {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--ink-3);
}
.map-block__info svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.map-block__info .link { margin-top: 12px; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 36px;
  margin-bottom: 32px;
}
.about-grid h3 { margin-bottom: 14px; }
.about-grid p { color: var(--ink-3); line-height: 1.7; }
.bullets li {
  padding: 8px 0;
  padding-left: 22px;
  position: relative;
  color: var(--ink-3);
  font-size: 14px;
}
.bullets li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
}
.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.kpis div {
  background: var(--paper-2);
  border-radius: var(--r-lg);
  padding: 20px;
  text-align: center;
}
.kpis strong {
  display: block;
  font-family: "Archivo";
  font-size: 28px;
  margin-bottom: 4px;
  color: var(--orange);
}
.kpis span { font-size: 12.5px; color: var(--ink-3); }

/* Avis */
.avis-head { margin-bottom: 28px; }
.avis-head__score {
  display: flex; align-items: center; gap: 14px;
  margin-top: 10px;
}
.avis-head__score strong {
  font-family: "Archivo"; font-size: 40px; line-height: 1;
}
.avis-head__score .stars { display: flex; gap: 2px; }
.avis-head__score .stars svg { color: #f5a623; }
.avis-head__score span { color: var(--ink-3); font-size: 13.5px; }

.avis-list { display: flex; flex-direction: column; gap: 16px; }
.avis {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 20px 22px;
}
.avis__head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.avis__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
  font-family: "Archivo"; font-weight: 700;
}
.avis__head strong { display: block; font-family: "Archivo"; font-size: 14.5px; }
.avis__head span { display: block; font-size: 12.5px; color: var(--muted); }
.avis__stars { margin-left: auto; display: flex; gap: 1px; color: #f5a623; }
.avis p { font-size: 14px; color: var(--ink-3); line-height: 1.6; }

/* Infos grid */
.infos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.info-block {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 24px;
}
.info-block svg { color: var(--orange); margin-bottom: 12px; }
.info-block h3 { margin-bottom: 12px; }
.info-block p { font-size: 14px; color: var(--ink-3); line-height: 1.6; }
.info-block ul li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line-2);
  font-size: 13.5px;
}
.info-block ul li:last-child { border: 0; }
.info-block ul li strong { font-family: "Archivo"; }
.info-block ul li span { color: var(--muted); }
.info-block--wide { grid-column: 1 / -1; }
.infos-steps {
  counter-reset: step;
  list-style: none; padding: 0;
}
.infos-steps li {
  counter-increment: step;
  position: relative;
  padding: 10px 0 10px 44px;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
  border-bottom: 1px dashed var(--line-2);
}
.infos-steps li:last-child { border: 0; }
.infos-steps li::before {
  content: "0" counter(step);
  position: absolute; left: 0; top: 10px;
  font-family: "Archivo"; font-weight: 800;
  color: var(--orange); font-size: 16px;
}
.infos-steps li strong { color: var(--ink); font-family: "Manrope"; font-weight: 700; }
.check-mark { color: var(--green) !important; }

@media (max-width: 880px) {
  .storefront__body { grid-template-columns: 1fr; }
  .storefront__side { position: static; }
  .produits__bar { grid-template-columns: 1fr 1fr; }
  .produits__sort { grid-column: 1 / -1; }
  .produits__filters { grid-template-columns: 1fr; }
  .map-block, .about-grid { grid-template-columns: 1fr; }
  .kpis, .infos-grid { grid-template-columns: 1fr 1fr; }
  .shop-tabs { top: 0; }
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 30px; }
  .hero__visual { order: -1; }
  .hero__search-row { grid-template-columns: 1fr; }
  .cat-grid, .steps, .trust__row, .footer__inner { grid-template-columns: repeat(2, 1fr); }
  .cat-body { grid-template-columns: 1fr; }
  .cat-side { position: static; }
  .fiche__main, .fiche__details, .cart__layout, .pay__layout { grid-template-columns: 1fr; }
  .fiche__gallery, .cart__recap, .pay__recap { position: static; }
  .confirm__grid { grid-template-columns: 1fr; }
  .header__nav, .header__slogan { display: none; }
  .header__phone { display: none; }
  .modes { grid-template-columns: 1fr; }
  .addr__row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .hero { padding: 40px 0 60px; }
  .section { padding: 56px 0; }
  .cat-grid, .steps, .trust__row, .footer__inner { grid-template-columns: 1fr; }
  .cart-line { grid-template-columns: 80px 1fr; }
  .cart-line__total { grid-column: 1 / -1; text-align: left; padding-top: 8px; border-top: 1px dashed var(--line); }
  .cart__dates { grid-template-columns: 1fr; }
  .cart__dates-duration { margin: 0; }
  .pay__card-row { grid-template-columns: 1fr; }
  .confirm__card { padding: 40px 24px; }
  .section__head--row { flex-direction: column; align-items: flex-start; }
}

/* Message de chargement / d'erreur affiché le temps de récupérer le catalogue
   depuis le moteur (voir ltm-app.jsx). */
.boot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 60vh;
  text-align: center;
  font-family: var(--font-body, system-ui, sans-serif);
  color: #555;
  padding: 24px;
}
.boot--err { color: #b00020; }
.boot code {
  font-family: "JetBrains Mono", monospace;
  background: #f3f3f3;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Message "indisponible aux dates choisies" sous le bouton de réservation. */
.fiche__dispo-msg {
  background: #fdecec;
  color: #b00020;
  border: 1px solid #f3c4c4;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  margin-bottom: 10px;
}

/* Bouton désactivé (ex : produit indisponible, paiement en cours). */
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Le défilement vers "Comment ça marche" s'arrête sous le bandeau collant
   (88px) au lieu de coller le titre tout en haut, caché derrière l'en-tête. */
#comment-ca-marche {
  scroll-margin-top: 100px;
}

/* Vraies photos produits (fond blanc, produit entier sans déformation,
   comme sur Lokki). S'affichent à la place du visuel rayé quand le fichier
   existe dans site/assets/produits/. */
.prod-img--photo {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.prod-img__real {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* =========================================================================
   PAGES LÉGALES (mentions légales, confidentialité)
   ========================================================================= */
.legal { padding: 36px 0 80px; }
.legal .container { max-width: 820px; }
.legal__title {
  font-family: "Archivo", sans-serif;
  font-size: 34px; font-weight: 800; letter-spacing: -.02em;
  margin: 20px 0 4px;
}
.legal__updated { color: var(--muted); font-size: 13px; margin: 0 0 32px; }
.legal h2 {
  font-family: "Archivo", sans-serif;
  font-size: 19px; font-weight: 700;
  margin: 32px 0 8px;
}
.legal p { color: var(--ink-2); margin: 0 0 12px; max-width: 70ch; }
.legal a { color: var(--steel); }
.legal__dl { margin: 0 0 12px; }
.legal__dl dt { font-weight: 700; color: var(--ink); margin-top: 12px; }
.legal__dl dd { margin: 2px 0 0; color: var(--ink-2); }
.legal__link {
  background: none; border: none; padding: 0;
  font: inherit; color: var(--steel); text-decoration: underline; cursor: pointer;
}
.legal__todo {
  display: inline-block;
  background: var(--orange-50); border: 1px dashed var(--orange);
  color: var(--orange-d); font-weight: 600; font-size: 13px;
  padding: 2px 8px; border-radius: var(--r-sm);
}
