@font-face {
  font-family: "Instrument Sans Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 400 700;
  src: url("/assets/fonts/instrument-sans-latin-wght-normal.woff2") format("woff2-variations");
}

:root {
  --canvas: #edf0ff;
  --canvas-deep: #dfe5ff;
  --cobalt: #5267f4;
  --cobalt-dark: #3448c9;
  --cobalt-soft: #e2e7ff;
  --paper: #fffdf8;
  --paper-cool: #f8f9ff;
  --ink: #111a36;
  --ink-soft: #273356;
  --muted: #5b6480;
  --line: #cbd2f0;
  --line-dark: #9da8d5;
  --coral: #ff735e;
  --coral-dark: #d64a38;
  --proof: #087d70;
  --proof-soft: #def3ec;
  --warning: #98620c;
  --warning-soft: #fff0c9;
  --danger: #a33a42;
  --danger-soft: #ffe7e9;
  --shadow: 0 16px 42px rgba(30, 45, 106, .16);
  --shadow-small: 0 8px 24px rgba(30, 45, 106, .12);
  --radius-small: 8px;
  --radius: 14px;
  --radius-large: 26px;
  --page: 1180px;
  --font: "Instrument Sans Variable", sans-serif;
  --display: "Instrument Sans Variable", sans-serif;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  min-height: 100%;
  scroll-behavior: smooth;
  scrollbar-color: var(--cobalt) var(--canvas);
  scrollbar-width: thin;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--coral); color: #1b1730; }
*::-webkit-scrollbar { width: 12px; height: 12px; }
*::-webkit-scrollbar-track { background: var(--canvas); }
*::-webkit-scrollbar-thumb { border: 3px solid var(--canvas); border-radius: 999px; background: var(--cobalt); }

a { color: inherit; text-underline-offset: .18em; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: var(--radius-small);
  background: var(--ink);
  color: white;
  font-weight: 750;
}

.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  width: min(calc(100% - 40px), var(--page));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.025em;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  padding: 7px;
  display: grid;
  align-content: end;
  gap: 3px;
  border-radius: 10px 10px 10px 3px;
  background: var(--cobalt);
  box-shadow: 0 5px 14px rgba(52, 72, 201, .24);
}

.brand-mark i { display: block; height: 3px; border-radius: 1px; background: white; }
.brand-mark i:nth-child(1) { width: 45%; }
.brand-mark i:nth-child(2) { width: 72%; }
.brand-mark i:nth-child(3) { width: 100%; }

.header-promise { color: var(--muted); font-size: 14px; }
.header-search {
  min-height: 44px;
  margin-left: auto;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, .55);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.header-search:hover { background: var(--paper); }

main, .site-footer { width: min(calc(100% - 40px), var(--page)); margin-inline: auto; }

.hero {
  min-height: 640px;
  padding: clamp(34px, 6vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .65fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
  border-radius: var(--radius-large);
  overflow: hidden;
  background: var(--cobalt);
  color: white;
  box-shadow: var(--shadow);
}

.hero-main { max-width: 720px; }
.hero h1 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.15rem, 7vw, 6rem);
  line-height: .96;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.hero h1 span { color: #dce2ff; }
.hero-copy {
  max-width: 64ch;
  margin: 30px 0 34px;
  color: #edf0ff;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.search-form { max-width: 720px; }
.search-form > label { display: block; margin-bottom: 9px; font-size: 14px; font-weight: 760; }
.search-control {
  min-height: 68px;
  padding: 7px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(26, 37, 111, .24);
}
.search-symbol { width: 34px; height: 34px; display: grid; place-items: center; color: var(--cobalt); }
.search-symbol svg, .result-action svg, .merchant-cta svg, .empty-mark svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.search-control input {
  width: 100%;
  min-width: 0;
  height: 52px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  caret-color: var(--coral-dark);
  font-size: 17px;
}
.search-control input::placeholder { color: #727a94; opacity: 1; }
.search-control button {
  min-width: 124px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  background: var(--coral);
  color: #241530;
  cursor: pointer;
  font-weight: 820;
  box-shadow: 0 6px 16px rgba(164, 51, 38, .2);
}
.search-control button:hover { background: #ff8976; }
.search-control button:disabled { cursor: wait; opacity: .78; }
.search-help { margin: 10px 2px 0; color: #e6eaff; font-size: 13px; }

.proof-ticket {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 5px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 14px 18px 36px rgba(20, 30, 92, .24);
  transform: rotate(1.25deg);
}
.proof-ticket::before, .proof-ticket::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-dark) 0 5px, transparent 5px 9px);
}
.proof-ticket::before { top: 12px; }
.proof-ticket::after { bottom: 12px; }
.ticket-title { margin: 4px 0 26px; color: var(--cobalt-dark); font-size: 17px; font-weight: 700; line-height: 1.2; }
.proof-ticket > div { min-height: 56px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px; border-bottom: 1px solid var(--line); }
.proof-ticket > div b { color: var(--coral-dark); font-size: 24px; }
.proof-ticket .ticket-total { min-height: 92px; align-items: end; padding-bottom: 14px; border-bottom-color: var(--ink); }
.ticket-total span { font-weight: 750; }
.ticket-total strong { font-size: 25px; letter-spacing: -.03em; }
.proof-ticket > p:last-child { margin: 20px 0 4px; color: var(--muted); font-size: 13px; }

.how-it-works { padding: 104px 0 88px; }
.section-intro { max-width: 720px; }
.section-intro h2, .results-heading h1, .section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.section-intro > p { max-width: 56ch; margin: 18px 0 0; color: var(--muted); }
.how-it-works ol { margin: 48px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; border-top: 1px solid var(--line-dark); }
.how-it-works li { min-height: 220px; padding: 24px 34px 24px 0; border-bottom: 1px solid var(--line); }
.how-it-works li + li { padding-left: 34px; border-left: 1px solid var(--line-dark); }
.how-it-works li > span { display: block; color: var(--cobalt-dark); font-variant-numeric: tabular-nums; font-weight: 820; }
.how-it-works h3 { margin: 42px 0 8px; font-size: 22px; letter-spacing: -.02em; }
.how-it-works li p { max-width: 28ch; margin: 0; color: var(--muted); }

.trust-band {
  margin-bottom: 84px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-block: 1px solid var(--line-dark);
}
.trust-band p { margin: 0; padding: 0 28px; color: var(--muted); }
.trust-band p:first-child { padding-left: 0; }
.trust-band p + p { border-left: 1px solid var(--line-dark); }
.trust-band strong { display: block; color: var(--ink); }

.search-band {
  margin-top: 18px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--cobalt);
  color: white;
}
.search-form-compact { max-width: none; }
.search-form-compact .search-control { max-width: 820px; }

.results-shell { padding: 66px 0 96px; }
.results-heading { margin-bottom: 36px; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.results-heading > p { max-width: 42ch; margin: 0; color: var(--muted); text-align: right; }
.result-count { margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.offer-summary { min-width: 0; }
.offer-summary .result-count { margin-bottom: 4px; }
.offer-evidence { margin: 0; color: var(--ink); font-size: 14px; line-height: 1.45; overflow-wrap: anywhere; }
.product-results { display: grid; gap: 14px; }
.product-result {
  min-width: 0;
  padding: 20px;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) minmax(190px, .45fr) 190px;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-small);
}
.result-visual { width: 128px; height: 128px; }
.product-image, .product-image-fallback { width: 100%; height: 100%; border: 1px solid var(--line); border-radius: 12px; background: var(--paper-cool); object-fit: contain; }
.product-image-fallback { padding: 24px; display: grid; place-items: center; gap: 8px; color: var(--line-dark); text-align: center; }
.product-image-fallback svg { width: 64px; fill: none; stroke: currentColor; stroke-width: 2; }
.product-image-fallback small { color: var(--muted); font-size: 12px; }
.product-image-fallback-small { padding: 16px; }
.product-image-fallback-small svg { width: 46px; }
.result-copy { min-width: 0; }
.result-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(1.35rem, 2vw, 1.75rem); line-height: 1.12; letter-spacing: -.025em; }
.result-copy h2 a { text-decoration-thickness: 1px; text-decoration-color: transparent; }
.result-copy h2 a:hover { text-decoration-color: currentColor; }
.identity-line { margin-top: 15px; display: flex; flex-wrap: wrap; gap: 7px 0; color: var(--muted); font-size: 13px; }
.identity-line span { padding: 0 9px; border-left: 1px solid var(--line-dark); }
.identity-line span:first-child { padding-left: 0; border-left: 0; }
.identity-line .identity-state { color: var(--cobalt-dark); font-weight: 760; }
.result-best { padding-left: 24px; border-left: 1px solid var(--line); }
.result-best span, .result-best small { display: block; color: var(--muted); font-size: 12px; }
.result-best strong { display: block; margin: 3px 0; color: var(--proof); font-size: 27px; line-height: 1.05; letter-spacing: -.035em; font-variant-numeric: tabular-nums; }
.result-best-pending strong { color: var(--warning); font-size: 21px; }
.result-action, .primary-link, .pagination a {
  min-height: 48px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  font-weight: 760;
  text-decoration: none;
}
.result-action:hover, .primary-link:hover, .pagination a:hover { background: var(--cobalt-dark); }
.result-action svg { width: 18px; }
.pagination { margin-top: 34px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center; }
.pagination-note, .pagination-feedback { max-width: 52ch; margin: 0; color: var(--muted); font-size: 14px; }
.pagination-feedback:empty { display: none; }
.pagination-feedback:focus { outline: none; }
.pagination-loading { pointer-events: none; opacity: .72; }

.breadcrumbs { min-height: 48px; margin: 14px 0 18px; display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 14px; }
.breadcrumbs a:hover { color: var(--ink); }
.product-hero {
  min-height: 390px;
  padding: 36px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 270px;
  align-items: center;
  gap: 40px;
  border-radius: var(--radius-large);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.product-visual { width: 280px; height: 280px; }
.product-title h1 { max-width: 18ch; margin: 0; font-family: var(--display); font-size: clamp(2.25rem, 4.5vw, 4.6rem); line-height: .98; letter-spacing: -.04em; text-wrap: balance; }
.freshness { margin: 20px 0 0; color: var(--muted); font-size: 13px; }
.winning-offer { min-height: 210px; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; border-radius: 4px; background: var(--proof); color: white; box-shadow: 10px 14px 28px rgba(8, 84, 76, .2); }
.winning-label { margin-bottom: auto; color: #d9fff7; font-size: 13px; font-weight: 760; }
.winning-offer strong { margin: 26px 0 5px; font-size: clamp(2rem, 4vw, 3.7rem); line-height: .9; letter-spacing: -.04em; font-variant-numeric: tabular-nums; }
.winning-offer > span:last-child { color: #d9fff7; }
.winning-offer-pending { background: var(--warning-soft); color: #684100; box-shadow: 10px 14px 28px rgba(120, 78, 10, .12); }
.winning-offer-pending .winning-label, .winning-offer-pending > span:last-child { color: #74501a; }

.offer-section { padding: 82px 0 0; }
.section-heading { margin-bottom: 24px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .55fr); align-items: end; gap: 50px; }
.section-heading h2 { font-size: clamp(1.8rem, 3vw, 2.75rem); }
.section-heading > p { margin: 0; color: var(--muted); }
.section-count { margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.offer-list { display: grid; gap: 12px; }
.offer-row {
  min-width: 0;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(190px, .8fr) minmax(210px, .75fr) minmax(170px, .65fr) minmax(190px, .6fr);
  align-items: center;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.offer-row-best { border-color: var(--proof); background: #f7fffc; box-shadow: var(--shadow-small); }
.offer-merchant h3 { margin: 0; font-size: 19px; line-height: 1.15; letter-spacing: -.015em; }
.best-label { margin: 0 0 8px; color: var(--proof); font-size: 12px; font-weight: 820; text-transform: uppercase; letter-spacing: .06em; }
.offer-meta { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 6px 12px; color: var(--muted); font-size: 12px; }
.offer-price { padding-inline: 22px; border-inline: 1px solid var(--line); }
.offer-price > span { display: block; color: var(--muted); font-size: 12px; }
.offer-price > strong { display: block; margin: 3px 0 12px; font-size: 28px; line-height: 1; letter-spacing: -.035em; font-variant-numeric: tabular-nums; }
.offer-price dl { margin: 0; display: grid; gap: 4px; }
.offer-price dl div { display: flex; justify-content: space-between; gap: 16px; font-size: 12px; }
.offer-price dt { color: var(--muted); }
.offer-price dd { margin: 0; text-align: right; font-variant-numeric: tabular-nums; }
.offer-proof { display: grid; gap: 4px; color: var(--muted); font-size: 12px; }
.status-line { display: block; color: var(--ink-soft); font-weight: 650; }
.offer-proof time { margin-top: 5px; }
.offer-action { display: flex; justify-content: flex-end; }
.merchant-cta {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--ink);
  border-radius: 10px;
  background: var(--ink);
  color: white;
  font-size: 14px;
  font-weight: 760;
  text-align: center;
  text-decoration: none;
}
.merchant-cta:hover { border-color: var(--cobalt-dark); background: var(--cobalt-dark); }
.merchant-cta svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.merchant-cta-disabled { border-color: var(--line-dark); background: var(--paper-cool); color: var(--muted); }
.offer-section-shipping .offer-row { background: #fffaf0; }
.offer-section-incomplete .offer-row { background: #fbf9fb; }
.truncation-note { margin: 28px 0 0; padding: 18px; border: 1px solid var(--warning); border-radius: var(--radius-small); background: var(--warning-soft); color: #6b460d; }

.empty-state { min-height: 450px; max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.empty-mark, .error-mark { width: 68px; height: 68px; margin-bottom: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--cobalt-soft); color: var(--cobalt-dark); }
.empty-mark svg { width: 30px; height: 30px; }
.error-mark { position: relative; background: var(--danger-soft); }
.error-mark::before, .error-mark::after { content: ""; position: absolute; width: 30px; height: 3px; border-radius: 3px; background: var(--danger); transform: rotate(45deg); }
.error-mark::after { transform: rotate(-45deg); }
.empty-state h1 { max-width: 16ch; margin: 0; font-family: var(--display); font-size: clamp(2.1rem, 5vw, 4.4rem); line-height: 1; letter-spacing: -.04em; }
.empty-state > p { max-width: 52ch; margin: 20px 0 0; color: var(--muted); }
.empty-state .error-code { order: -1; margin: 0 0 12px; color: var(--danger); font-weight: 760; }
.empty-state .primary-link { margin-top: 28px; }

.site-footer { min-height: 160px; margin-top: 100px; padding: 36px 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; border-top: 1px solid var(--line-dark); }
.site-footer > span { font-family: var(--display); font-size: 22px; font-weight: 820; }
.site-footer p { max-width: 58ch; margin: 0; color: var(--muted); font-size: 13px; text-align: right; }

@keyframes search-ready {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}
.search-form[aria-busy="true"] .search-help { position: relative; color: transparent; }
.search-form[aria-busy="true"] .search-help::after { content: "Recherche en cours…"; position: absolute; inset: 0 auto auto 0; color: #e6eaff; animation: search-ready .45s cubic-bezier(.16, 1, .3, 1) both; }

@media (max-width: 980px) {
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .proof-ticket { max-width: 520px; transform: none; }
  .product-result { grid-template-columns: 110px minmax(0, 1fr) minmax(180px, .55fr); }
  .result-visual { width: 110px; height: 110px; }
  .result-action { grid-column: 2 / -1; justify-self: start; }
  .product-hero { grid-template-columns: 220px minmax(0, 1fr); }
  .product-visual { width: 220px; height: 220px; }
  .winning-offer { grid-column: 1 / -1; min-height: 150px; }
  .offer-row { grid-template-columns: 1fr 1fr; }
  .offer-price { border-right: 0; }
  .offer-action { justify-content: flex-start; }
  .merchant-cta { max-width: 300px; }
}

@media (max-width: 720px) {
  .site-header, main, .site-footer { width: min(calc(100% - 28px), var(--page)); }
  .site-header { min-height: 68px; }
  .header-promise { display: none; }
  .header-search { font-size: 13px; }
  .hero { padding: 38px 22px 24px; gap: 34px; border-radius: 20px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .hero-copy { margin: 24px 0 28px; }
  .search-control { grid-template-columns: 30px minmax(0, 1fr); padding: 7px; }
  .search-control button { grid-column: 1 / -1; width: 100%; }
  .proof-ticket { padding: 26px 22px; }
  .how-it-works { padding: 76px 0 58px; }
  .how-it-works ol { grid-template-columns: 1fr; }
  .how-it-works li, .how-it-works li + li { min-height: 160px; padding: 22px 0; border-left: 0; }
  .how-it-works h3 { margin-top: 24px; }
  .trust-band { grid-template-columns: 1fr; }
  .trust-band p, .trust-band p:first-child { padding: 18px 0; }
  .trust-band p + p { border-top: 1px solid var(--line); border-left: 0; }
  .search-band { padding: 20px 16px; }
  .results-shell { padding-top: 46px; }
  .results-heading { align-items: flex-start; flex-direction: column; gap: 14px; }
  .results-heading > p { text-align: left; }
  .product-result { grid-template-columns: 88px minmax(0, 1fr); gap: 16px; }
  .result-visual { width: 88px; height: 88px; }
  .result-best { grid-column: 1 / -1; padding: 16px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .result-action { grid-column: 1 / -1; width: 100%; justify-self: stretch; }
  .product-hero { min-height: auto; padding: 24px; grid-template-columns: 96px minmax(0, 1fr); gap: 18px; }
  .product-visual { width: 96px; height: 96px; }
  .product-image-fallback { padding: 12px; }
  .product-image-fallback small { display: none; }
  .product-title h1 { font-size: clamp(2rem, 9vw, 3.3rem); }
  .winning-offer { grid-column: 1 / -1; min-height: 145px; padding: 22px; }
  .offer-section { padding-top: 64px; }
  .section-heading { grid-template-columns: 1fr; gap: 14px; }
  .offer-row { grid-template-columns: 1fr; padding: 20px; }
  .offer-price { padding: 18px 0; border-block: 1px solid var(--line); border-inline: 0; }
  .merchant-cta { max-width: none; }
  .site-footer { min-height: 180px; margin-top: 76px; flex-direction: column; }
  .site-footer p { text-align: left; }
}

@media (max-width: 430px) {
  .site-header, main, .site-footer { width: min(calc(100% - 20px), var(--page)); }
  .brand { font-size: 19px; }
  .brand-mark { width: 32px; height: 32px; }
  .header-search { padding-inline: 10px; }
  .hero { padding: 32px 16px 18px; }
  .hero h1 { font-size: clamp(2.75rem, 14vw, 3.75rem); }
  .search-control input { font-size: 16px; }
  .proof-ticket { padding-inline: 18px; }
  .search-band { margin-top: 8px; }
  .product-result { padding: 16px; }
  .result-copy h2 { font-size: 1.28rem; }
  .product-hero { padding: 18px; grid-template-columns: 82px minmax(0, 1fr); }
  .product-visual { width: 82px; height: 82px; }
  .identity-line span { padding-inline: 7px; }
  .offer-row { padding: 17px; }
  .offer-price > strong { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
