:root {
  --bg: #0B0C0E;
  --surface: #14161A;
  --surface-2: #1B1E23;
  --line: #262A31;
  --line-soft: #1B1E23;
  --text: #E8E6E1;
  --text-2: #9A9C9F;
  --text-3: #8C9099;
  --text-4: #6E7279;
  --text-5: #5C6169;
  --brass: #C89B4B;
  --brass-hi: #E3BC77;
  --brass-dim: #3A3226;
  --ok: #4E9E6A;
  --alert: #C4574B;
  --sans: Archivo, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --wrap: 1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--brass); text-decoration: none; }
a:hover { color: var(--brass-hi); }
::selection { background: var(--brass); color: var(--bg); }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
h1, h2, h3 { margin: 0; letter-spacing: -0.025em; }
p { margin: 0; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.mono { font-family: var(--mono); }
.nowrap { white-space: nowrap; }

/* ---------- bandeau légal ---------- */
.legal-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 7px 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-3);
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.legal-strip .cat { color: var(--brass); }

/* ---------- en-tête ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 12, 14, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  min-height: 68px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.brand svg { flex: none; }
.brand-name { font-size: 20px; font-weight: 700; letter-spacing: -0.025em; }
.brand-name em { font-style: normal; color: var(--brass); }
.main-nav { display: flex; gap: 4px; font-size: 14px; overflow-x: auto; scrollbar-width: none; }
.main-nav button {
  padding: 8px 12px;
  border-radius: 4px;
  color: #B4B2AC;
  white-space: nowrap;
}
.main-nav button:hover { background: var(--surface-2); color: var(--text); }
.header-end { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.sync-state {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-3);
  white-space: nowrap;
}
.dot-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ok); box-shadow: 0 0 8px var(--ok);
}
.btn-ghost {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--brass); color: var(--brass); }

/* ---------- écrans ---------- */
.screen { display: none; }
.screen.is-active { display: block; }

/* ---------- accueil ---------- */
.hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #101215 0%, var(--bg) 100%);
}
.hero .wrap { padding-top: 88px; padding-bottom: 72px; }
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--brass);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(34px, 5.2vw, 62px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  max-width: 900px;
  text-wrap: balance;
}
.hero-lede {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-2);
  max-width: 620px;
  margin-bottom: 40px;
}
.searchbar { display: flex; gap: 10px; flex-wrap: wrap; max-width: 780px; margin-bottom: 16px; }
.searchbar .field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid #2E333B;
  border-radius: 6px;
  padding: 0 18px;
  height: 60px;
}
.searchbar .prompt { font-family: var(--mono); color: var(--brass); font-size: 15px; }
.searchbar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
}
.searchbar kbd {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-5);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 3px 6px;
}
.btn-primary {
  background: var(--brass);
  color: var(--bg);
  border-radius: 6px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-primary:hover { background: var(--brass-hi); }
.searchbar .btn-primary { height: 60px; padding: 0 32px; font-size: 15px; }
.suggestions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.suggestions .label { font-size: 12px; color: var(--text-4); margin-right: 4px; }
.chip {
  font-family: var(--mono);
  font-size: 12px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--text-2);
}
.chip:hover { border-color: var(--brass); color: var(--text); }

.categories { border-bottom: 1px solid var(--line); }
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.category {
  padding: 26px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.category:hover { background: var(--surface); }
.category-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.category-name { font-size: 16px; font-weight: 600; }
.badge-cat {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--brass);
  border: 1px solid var(--brass-dim);
  padding: 2px 5px;
  border-radius: 3px;
}
.category-meta { font-family: var(--mono); font-size: 12px; color: var(--text-4); }

.deals .wrap { padding-top: 64px; padding-bottom: 64px; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: 30px; font-weight: 700; margin-bottom: 6px; }
.section-head p { color: var(--text-3); font-size: 15px; }
.tabs {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  font-family: var(--mono);
  font-size: 12px;
}
.tabs button { padding: 9px 16px; border-right: 1px solid var(--line); color: var(--text-3); }
.tabs button:last-child { border-right: none; }
.tabs button[aria-pressed="true"] { background: var(--brass); color: var(--bg); }
.deal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 16px; }
.deal {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.deal:hover { border-color: #3A3F48; }
.deal-media {
  height: 150px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: var(--mono);
  font-size: 11px;
  color: #4A4E55;
  letter-spacing: 0.1em;
}
.tag-drop {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  background: var(--alert); color: var(--bg);
  padding: 3px 7px; border-radius: 3px;
}
.tag-cat {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--mono); font-size: 10px; color: var(--text-2);
  border: 1px solid #333840; background: var(--bg);
  padding: 3px 6px; border-radius: 3px;
}
.deal-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.deal-brand { font-family: var(--mono); font-size: 11px; color: var(--text-4); margin-bottom: 5px; }
.deal-name { font-size: 16px; font-weight: 600; line-height: 1.25; }
.deal-spec { font-family: var(--mono); font-size: 12px; color: var(--text-3); }
.deal-foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; }
.deal-price { font-family: var(--mono); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.deal-was { font-family: var(--mono); font-size: 12px; color: var(--text-4); text-decoration: line-through; }
.deal-stock { font-family: var(--mono); font-size: 12px; color: var(--ok); text-align: right; }
.deal-offers { font-family: var(--mono); font-size: 11px; color: var(--text-4); text-align: right; }

.pillars { border-top: 1px solid var(--line); background: #101215; }
.pillars .wrap {
  padding-top: 56px;
  padding-bottom: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}
.pillar { display: flex; flex-direction: column; gap: 10px; }
.pillar-stat { font-family: var(--mono); font-size: 32px; font-weight: 700; color: var(--brass); letter-spacing: -0.03em; }
.pillar-title { font-size: 17px; font-weight: 600; }
.pillar-body { font-size: 14px; line-height: 1.55; color: var(--text-3); }

/* ---------- fiche produit ---------- */
.product.wrap { padding-top: 24px; padding-bottom: 72px; }
.breadcrumb {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-4);
  margin-bottom: 24px;
  display: flex;
  gap: 8px;
}
.breadcrumb button { color: var(--text-3); }
.breadcrumb .here { color: var(--text); }
.product-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 40px;
  margin-bottom: 48px;
}
.gallery-main {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: #4A4E55;
  letter-spacing: 0.1em;
}
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-thumbs div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  color: #4A4E55;
  cursor: pointer;
}
.gallery-thumbs div:hover { border-color: var(--brass); }
.badges { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.badge-legal {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  background: var(--brass-dim); color: var(--brass-hi);
  padding: 4px 8px; border-radius: 3px; letter-spacing: 0.06em;
}
.badge-licence {
  font-family: var(--mono); font-size: 11px;
  border: 1px solid var(--line); color: var(--text-3);
  padding: 4px 8px; border-radius: 3px; letter-spacing: 0.06em;
}
.product-ref { font-family: var(--mono); font-size: 12px; color: var(--text-4); margin-bottom: 8px; }
.product-title { font-size: clamp(26px, 3vw, 38px); line-height: 1.08; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 20px; }
.price-block {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.price-label { font-family: var(--mono); font-size: 11px; color: var(--text-4); letter-spacing: 0.1em; margin-bottom: 6px; }
.price-total { font-family: var(--mono); font-size: 40px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; white-space: nowrap; }
.price-unit { font-family: var(--mono); font-size: 20px; font-weight: 500; color: var(--brass); white-space: nowrap; }
.price-merchant { font-family: var(--mono); font-size: 12px; color: var(--ok); text-align: right; margin-left: auto; padding-bottom: 4px; }
.price-merchant span { color: var(--text-4); display: block; }
.product-actions { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.product-actions .btn-primary { flex: 1; height: 52px; font-size: 15px; }
.btn-alert {
  height: 52px;
  padding: 0 20px;
  border: 1px solid var(--line);
  color: var(--text-3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
}
.btn-alert .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.btn-alert[aria-pressed="true"] { border-color: #2F5B41; color: var(--ok); }
.history { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 20px; }
.history-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; gap: 12px; }
.history-head .title { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--text-3); }
.history-head .delta { font-family: var(--mono); font-size: 12px; color: var(--ok); }
.history svg { width: 100%; height: 130px; display: block; }
.history-axis {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-4);
  margin-top: 8px;
}

.offers-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 320px); gap: 40px; }
.offers-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; gap: 16px; flex-wrap: wrap; }
.offers-head h2 { font-size: 22px; font-weight: 700; }
.offers-head .tabs { font-size: 11px; }
.offers-head .tabs button { padding: 8px 14px; }
.table-scroll { overflow-x: auto; }
.offer-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.5fr) minmax(120px, 1fr) minmax(110px, 1fr) minmax(80px, 0.7fr) 165px;
  gap: 14px;
  align-items: center;
  min-width: 830px;
}
.offer-head {
  padding: 10px 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-4);
  border-bottom: 1px solid var(--line);
}
.offer {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  width: 100%;
}
.offer:hover { background: var(--surface); }
.offer.is-best { background: #121519; }
.offer-merchant { display: flex; align-items: center; gap: 12px; }
.offer-initials {
  width: 34px; height: 34px; border-radius: 5px;
  background: var(--surface-2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--text-3);
}
.offer-name { font-size: 15px; font-weight: 600; }
.offer-note { font-family: var(--mono); font-size: 11px; color: var(--text-4); }
.offer-stock { font-family: var(--mono); font-size: 12px; color: var(--ok); white-space: nowrap; }
.offer-stock.is-out { color: var(--alert); }
.offer-ship { font-family: var(--mono); font-size: 12px; color: var(--text-3); white-space: nowrap; }
.offer-unit { font-family: var(--mono); font-size: 13px; white-space: nowrap; }
.offer-end { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.offer-total { font-family: var(--mono); font-size: 17px; font-weight: 700; white-space: nowrap; }
.offer-cta {
  padding: 7px 12px;
  border: 1px solid #333840;
  color: #B4B2AC;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.offer.is-best .offer-cta { border-color: var(--brass); color: var(--brass); }
.offer-cta:hover { border-color: var(--brass); color: var(--brass); }
.legal-note {
  margin-top: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 2px solid var(--brass);
  border-radius: 6px;
  padding: 18px 20px;
}
.legal-note .title { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--brass); margin-bottom: 8px; }
.legal-note p { font-size: 14px; line-height: 1.6; color: var(--text-2); }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: 8px; padding: 20px; }
.panel + .panel { margin-top: 16px; }
.panel-title { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--text-3); margin-bottom: 14px; }
.spec { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line-soft); font-size: 13px; }
.spec dt { color: var(--text-3); }
.spec dd { margin: 0; font-family: var(--mono); text-align: right; }
.alt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  width: 100%;
  text-align: left;
}
.alt-name { font-size: 14px; font-weight: 600; }
.alt-spec { font-family: var(--mono); font-size: 11px; color: var(--text-4); }
.alt-price { font-family: var(--mono); font-size: 14px; color: var(--brass); white-space: nowrap; }

/* ---------- guides ---------- */
.guides.wrap { padding-top: 56px; padding-bottom: 80px; }
.guides h1 { font-size: clamp(30px, 4vw, 44px); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 12px; max-width: 780px; }
.guides-lede { font-size: 17px; color: var(--text-2); max-width: 640px; margin-bottom: 44px; line-height: 1.55; }
.guides-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 560px), 1fr));
  gap: 40px;
  align-items: start;
}
.article-list { display: flex; flex-direction: column; gap: 16px; }
.article {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 2.4fr);
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
}
.article:hover { border-color: #3A3F48; }
.article-media {
  background: var(--surface-2);
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  color: #4A4E55;
  letter-spacing: 0.1em;
}
.article-body { padding: 20px 22px 20px 0; display: flex; flex-direction: column; gap: 10px; }
.article-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-4);
  white-space: nowrap;
}
.article-meta .tag { color: var(--brass); }
.article-title { font-size: 21px; font-weight: 600; line-height: 1.2; letter-spacing: -0.015em; }
.article-excerpt { font-size: 14px; line-height: 1.55; color: var(--text-3); }
.legal-table { background: #101215; border: 1px solid var(--line); border-radius: 8px; padding: 22px; }
.legal-row { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line-soft); }
.legal-row .cat { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--brass); width: 18px; }
.legal-row .title { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.legal-row .body { font-size: 12px; color: var(--text-3); line-height: 1.45; }
.legal-disclaimer { margin-top: 14px; font-size: 11px; color: var(--text-5); line-height: 1.5; }
.alert-card { background: var(--surface); border: 1px solid var(--brass-dim); border-radius: 8px; padding: 22px; margin-top: 16px; }
.alert-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.alert-card p { font-size: 13px; color: var(--text-3); line-height: 1.55; margin-bottom: 14px; }
.alert-form { display: flex; gap: 8px; }
.alert-form input {
  flex: 1;
  height: 42px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0 12px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text);
}
.alert-form .btn-primary { height: 42px; padding: 0 16px; font-size: 13px; }

/* ---------- catalogue ---------- */
.catalog.wrap { padding-top: 32px; padding-bottom: 80px; }
.catalog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.catalog-head h1 { font-size: 34px; font-weight: 700; }
.catalog-sort { font-family: var(--mono); font-size: 12px; color: var(--text-4); }
.catalog-layout { display: grid; grid-template-columns: minmax(200px, 240px) minmax(0, 1fr); gap: 32px; }
.filter-group + .filter-group { margin-top: 24px; }
.filter-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.filter {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
  border-radius: 4px;
  width: 100%;
  text-align: left;
}
.filter:hover { background: var(--surface-2); }
.filter .box {
  width: 14px; height: 14px; border-radius: 3px;
  border: 1px solid #3A3F48;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--bg); font-weight: 700;
}
.filter .name { font-size: 13px; color: var(--text-2); flex: 1; }
.filter .count { font-family: var(--mono); font-size: 11px; color: var(--text-5); }
.filter[aria-pressed="true"] { background: var(--surface-2); }
.filter[aria-pressed="true"] .box { border-color: var(--brass); background: var(--brass); }
.filter[aria-pressed="true"] .name { color: var(--text); }
.result-row {
  display: grid;
  grid-template-columns: minmax(230px, 2fr) minmax(105px, 1fr) minmax(130px, 1fr) minmax(85px, 0.8fr) 130px;
  gap: 14px;
  align-items: center;
  min-width: 830px;
}
.result-head {
  padding: 10px 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--text-4);
  border-bottom: 1px solid var(--line);
}
.result { padding: 15px 18px; border-bottom: 1px solid var(--line-soft); text-align: left; width: 100%; }
.result:hover { background: var(--surface); }
.result-id { display: flex; align-items: center; gap: 12px; }
.result-thumb { width: 40px; height: 40px; border-radius: 5px; background: var(--surface-2); border: 1px solid var(--line); }
.result-name { font-size: 15px; font-weight: 600; }
.result-brand { font-family: var(--mono); font-size: 11px; color: var(--text-4); }
.result-bullet { font-family: var(--mono); font-size: 12px; color: var(--text-2); }
.result-merchant { font-size: 13px; color: var(--text-2); }
.result-unit { font-family: var(--mono); font-size: 14px; color: var(--brass); white-space: nowrap; }
.result-box { text-align: right; font-family: var(--mono); font-size: 16px; font-weight: 700; white-space: nowrap; }

/* ---------- pied ---------- */
.site-footer { border-top: 1px solid var(--line); background: #101215; }
.site-footer .wrap {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-brand { max-width: 420px; }
.footer-brand .brand { margin-bottom: 10px; cursor: default; }
.footer-brand p { font-size: 13px; line-height: 1.6; color: var(--text-4); }
.footer-cols { display: flex; gap: 40px; font-size: 13px; color: var(--text-3); }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col .head { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--text-5); }

@media (max-width: 900px) {
  .offers-layout, .catalog-layout { grid-template-columns: minmax(0, 1fr); }
}
