/* ============================================================
   Retappelini - foglio di stile principale
   Tema unico chiaro. Neutri freddi, accento arancio segnale.
   Font: Barlow (testo) + Barlow Condensed (titoli, prezzi).
   Raggio 4px ovunque.
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-2: #f3f4f6;
  --bg-3: #e6e8ec;
  --ink: #1b1e23;
  --ink-2: #3a3f47;
  --muted: #5b6270;
  --line: rgba(27, 30, 35, 0.14);
  --line-strong: rgba(27, 30, 35, 0.32);
  --accent: #c74510;
  --accent-hover: #a93a0d;
  --accent-soft: rgba(199, 69, 16, 0.08);
  --on-accent: #ffffff;
  --graphite: #1f2328;
  --graphite-2: #2a2f36;
  --on-graphite: #e9ebee;
  --on-graphite-muted: #a7adb6;
  --ok: #1f7a3f;
  --ok-soft: rgba(31, 122, 63, 0.1);
  --warn: #8a5a00;
  --warn-soft: rgba(138, 90, 0, 0.1);
  --danger: #b42323;
  --danger-soft: rgba(180, 35, 35, 0.08);
  --shadow: 0 18px 40px -24px rgba(27, 30, 35, 0.35);
  --shadow-sm: 0 6px 16px -10px rgba(27, 30, 35, 0.3);
  --font: "Barlow", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-c: "Barlow Condensed", "Barlow", "Arial Narrow", ui-sans-serif, system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 4px;
  --container: 1360px;
  --gutter: clamp(16px, 3vw, 40px);
  --header-h: 72px;
  color-scheme: light;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { margin: 0 0 0.4em; line-height: 1.1; font-family: var(--font-c); font-weight: 700; letter-spacing: -0.005em; }
ul, ol { margin: 0; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 12px; z-index: 100; border-radius: var(--radius); }
.skip:focus { left: 8px; color: #fff; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

.icon { width: 20px; height: 20px; flex: none; }
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 28px; height: 28px; }

/* ---------- Tipografia ---------- */
.h-display { font-size: clamp(34px, 4.4vw, 56px); line-height: 1.02; }
.h-1 { font-size: clamp(30px, 3.4vw, 42px); }
.h-2 { font-size: clamp(24px, 2.6vw, 32px); }
.h-3 { font-size: 22px; }
.lead { font-size: 18px; color: var(--ink-2); max-width: 62ch; }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.tiny { font-size: 13px; }
.link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--accent); }
.link:hover { color: var(--accent-hover); text-decoration: underline; }
.linkbtn { background: none; border: 0; padding: 0; color: inherit; font-weight: inherit; cursor: pointer; }
.linkbtn:hover { color: var(--accent); text-decoration: underline; }
.eyebrow { display: inline-block; font-family: var(--font-c); font-weight: 600; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(40px, 6vw, 72px) 0; }
.section-tight { padding: clamp(24px, 4vw, 44px) 0; }
.section-pad { padding-bottom: clamp(48px, 7vw, 96px); }
.bg-2 { background: var(--bg-2); }
.section-head { margin-bottom: 28px; }
.section-head .lead { margin-top: 4px; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.section-head-row .section-head { margin: 0; }
.page-head { padding: 20px 0 16px; }
.page-head .h-1 { margin-top: 8px; }
.page-head .lead { margin-bottom: 0; }

/* ---------- Bottoni ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: var(--radius); border: 1px solid transparent;
  font-weight: 600; font-size: 16px; line-height: 1.2; white-space: nowrap;
  background: var(--ink); color: #fff; transition: background 0.2s var(--ease), transform 0.12s var(--ease), border-color 0.2s;
}
.btn:hover { background: var(--graphite-2); color: #fff; }
.btn:active { transform: scale(0.98); }
.btn-accent { background: var(--accent); color: var(--on-accent); }
.btn-accent:hover { background: var(--accent-hover); color: var(--on-accent); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { background: var(--bg-2); color: var(--ink); border-color: var(--ink); }
.btn-sm { padding: 9px 14px; font-size: 14px; }
.btn-lg { padding: 15px 28px; font-size: 17px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }
.iconbtn { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
.iconbtn:hover { border-color: var(--ink); }

/* ---------- Topbar ---------- */
.topbar { background: var(--graphite); color: var(--on-graphite); font-size: 13.5px; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 34px; }
.topbar span, .topbar a { display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar-right { gap: 20px; }
.topbar .hide-m { display: inline; }
.topbar .icon { color: var(--accent); opacity: 0.95; }
@media (max-width: 767px) { .topbar .topbar-hours, .topbar .hide-m { display: none; } .topbar .container { gap: 10px; } .topbar span, .topbar a { white-space: nowrap; font-size: 12.5px; } }

/* ---------- Header ---------- */
.site-header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 40; }
.header-row { display: flex; align-items: center; gap: 20px; height: var(--header-h); }
.brand img { height: 34px; width: auto; }
.search { display: flex; flex: 1 1 auto; max-width: 560px; border: 1px solid var(--line-strong); border-radius: var(--radius); overflow: hidden; background: #fff; }
.search input { flex: 1; border: 0; padding: 0 14px; height: 42px; min-width: 0; background: transparent; }
.search input:focus { outline: none; }
.search:focus-within { border-color: var(--ink); box-shadow: 0 0 0 3px var(--accent-soft); }
.search button { border: 0; background: var(--accent); color: #fff; width: 48px; display: grid; place-items: center; }
.search button:hover { background: var(--accent-hover); }
.header-links { display: flex; gap: 6px; margin-left: auto; }
.header-links a { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 6px 10px; border-radius: var(--radius); font-size: 12.5px; font-weight: 600; position: relative; }
.header-links a:hover { background: var(--bg-2); color: var(--ink); }
.header-links .icon { width: 22px; height: 22px; }
.cart-link b { position: absolute; top: 2px; right: 4px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px; background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; display: grid; place-items: center; }
.cart-link b[data-count="0"] { display: none; }
.drawer-btn { display: none; }

.catnav { border-top: 1px solid var(--line); background: #fff; }
.catnav ul { display: flex; list-style: none; gap: 2px; overflow-x: auto; scrollbar-width: none; }
.catnav ul::-webkit-scrollbar { display: none; }
.catnav a { display: block; padding: 11px 10px; font-family: var(--font-c); font-weight: 600; font-size: 15.5px; letter-spacing: 0.01em; white-space: nowrap; border-bottom: 2px solid transparent; }
.catnav a:hover, .catnav a.active { color: var(--accent); border-bottom-color: var(--accent); }
.catnav-offer { color: var(--accent); }
.catnav li:first-child a { padding-left: 0; }

@media (max-width: 1023px) {
  .header-links a span { display: none; }
  .header-links a { padding: 8px; }
  .catnav a { font-size: 15px; padding: 10px 10px; }
}
@media (max-width: 767px) {
  :root { --header-h: 60px; }
  .header-row { gap: 10px; }
  .drawer-btn { display: inline-flex; }
  .brand img { height: 28px; }
  .search { display: none; }
  .catnav { display: none; }
}

/* ---------- Drawer ---------- */
.drawer { position: fixed; inset: 0; z-index: 60; visibility: hidden; }
.drawer.open { visibility: visible; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(27, 30, 35, 0.5); border: 0; opacity: 0; transition: opacity 0.25s; }
.drawer.open .drawer-backdrop { opacity: 1; }
.drawer-panel { position: absolute; top: 0; left: 0; bottom: 0; width: min(340px, 88vw); background: #fff; padding: 16px 20px 32px; overflow-y: auto; transform: translateX(-100%); transition: transform 0.35s var(--ease); z-index: 1; }
.drawer.open .drawer-panel { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.drawer-search { display: flex; margin-bottom: 18px; max-width: none; }
.drawer-label { font-family: var(--font-c); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 13px; color: var(--muted); margin: 18px 0 6px; }
.drawer ul { list-style: none; }
.drawer li a { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); font-weight: 500; }
.drawer li a .icon { color: var(--accent); }
.drawer-contact { margin-top: 20px; font-size: 14px; color: var(--muted); }
.drawer-contact a { font-weight: 600; color: var(--ink); }

/* ---------- Hero ---------- */
.hero { background: var(--bg-2); border-bottom: 1px solid var(--line); }
.hero .container { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(24px, 4vw, 56px); align-items: center; padding-top: clamp(28px, 4vw, 52px); padding-bottom: clamp(28px, 4vw, 52px); }
.hero-copy .h-display { max-width: 16ch; }
.hero-copy .lead { margin: 14px 0 22px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
}

/* ---------- Selettore veicolo ---------- */
.selector-wrap { margin-top: -1px; }
.selector { display: grid; grid-template-columns: auto 1fr 1fr auto; gap: 14px; align-items: end; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow-sm); }
.selector-title { display: flex; align-items: center; gap: 10px; font-family: var(--font-c); font-weight: 700; font-size: 19px; align-self: center; padding-right: 10px; border-right: 1px solid var(--line); margin-right: 4px; }
.selector-title .icon { color: var(--accent); width: 26px; height: 26px; }
.selector .field { margin: 0; }
@media (max-width: 900px) {
  .selector { grid-template-columns: 1fr 1fr; }
  .selector-title { grid-column: 1 / -1; border: 0; padding: 0; }
  .selector .btn { grid-column: 1 / -1; }
}
@media (max-width: 560px) { .selector { grid-template-columns: 1fr; } }

/* ---------- Trust row ---------- */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-item { display: flex; gap: 12px; align-items: flex-start; padding: 14px 0; }
.trust-item .icon { width: 26px; height: 26px; color: var(--accent); margin-top: 2px; }
.trust-item strong { display: block; font-family: var(--font-c); font-size: 18px; font-weight: 700; }
.trust-item span { font-size: 14px; color: var(--muted); }
@media (max-width: 900px) { .trust { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust { grid-template-columns: 1fr; gap: 0; } .trust-item { padding: 10px 0; border-bottom: 1px solid var(--line); } }

/* ---------- Bento categorie ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.tile { position: relative; display: block; overflow: hidden; border-radius: var(--radius); background: var(--bg-3); }
.tile-lg { grid-column: span 2; grid-row: span 2; }
.tile-wide { grid-column: span 2; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.tile:hover img { transform: scale(1.04); }
.tile-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 16px 14px; background: linear-gradient(to top, rgba(27, 30, 35, 0.86), rgba(27, 30, 35, 0)); color: #fff; display: flex; flex-direction: column; }
.tile-title { font-family: var(--font-c); font-weight: 700; font-size: 22px; line-height: 1.1; }
.tile-lg .tile-title { font-size: 28px; }
.tile-sub { font-size: 13.5px; opacity: 0.9; margin-top: 2px; }
.tile:hover { color: #fff; }
@media (max-width: 900px) { .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; } .tile-lg { grid-column: span 2; grid-row: span 1; } .tile-wide { grid-column: span 2; } }
@media (max-width: 480px) { .bento { grid-auto-rows: 150px; } .tile-lg { grid-column: span 2; } .tile-sub { display: none; } }

/* ---------- Product card ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.pcard { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; transition: box-shadow 0.25s var(--ease), border-color 0.25s; }
.pcard:hover { box-shadow: var(--shadow); border-color: var(--line-strong); }
.pcard-media { position: relative; display: block; background: var(--bg-2); }
.pcard-media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.badge { position: absolute; top: 10px; left: 10px; font-family: var(--font-c); font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 8px; border-radius: var(--radius); background: var(--ink); color: #fff; }
.badge-offerta { background: var(--accent); }
.badge-novita { background: var(--ok); }
.badge-su-misura { background: #fff; color: var(--ink); border: 1px solid var(--line-strong); }
.pcard-body { display: flex; flex-direction: column; gap: 4px; padding: 14px 14px 16px; flex: 1; }
.pcard-cat { font-size: 12.5px; color: var(--muted); }
.pcard h3 { font-family: var(--font); font-size: 15.5px; font-weight: 600; line-height: 1.3; margin: 0; }
.pcard h3 a:hover { color: var(--accent); }
.pcard-short { font-size: 13.5px; color: var(--muted); margin: 0; }
.stock { display: flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 500; margin: 6px 0 0; }
.stock-ok { color: var(--ok); }
.stock-wait { color: var(--warn); }
.stock-no { color: var(--danger); }
.pcard-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; margin-top: auto; padding-top: 10px; }
.price-block { display: flex; flex-direction: column; line-height: 1; }
.price { font-family: var(--font-c); font-weight: 700; font-size: 24px; }
.price-old { font-size: 14px; color: var(--muted); margin-bottom: 2px; }
@media (max-width: 480px) { .pcard-foot { flex-direction: column; align-items: stretch; } .pcard-foot .btn { width: 100%; } .pcard-short { display: none; } }

/* ---------- Scroll-snap row (novità) ---------- */
.snap-row { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(250px, 1fr); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: thin; }
.snap-row > * { scroll-snap-align: start; }
@media (min-width: 1200px) { .snap-row { grid-auto-columns: calc((100% - 5 * 16px) / 6); } }

/* ---------- Promo band ---------- */
.band { position: relative; color: #fff; background: var(--graphite); overflow: hidden; }
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.band .container { position: relative; min-height: 380px; display: flex; align-items: center; padding-top: 48px; padding-bottom: 48px; }
.band-box { max-width: 520px; background: rgba(27, 30, 35, 0.86); padding: 28px 30px; border-radius: var(--radius); backdrop-filter: blur(4px); }
.band-box h2 { font-size: clamp(28px, 3vw, 38px); color: #fff; }
.band-box p { color: #d7dbe0; }
.band-box .btn-outline { color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.band-box .btn-outline:hover { background: rgba(255, 255, 255, 0.12); color: #fff; border-color: #fff; }
.band-links { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Split (storia) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 72px); align-items: center; }
.split img { width: 100%; border-radius: var(--radius); aspect-ratio: 3 / 2; object-fit: cover; }
.split-points { list-style: none; display: grid; gap: 14px; margin-top: 20px; }
.split-points li { display: flex; gap: 12px; align-items: flex-start; }
.split-points .icon { color: var(--accent); margin-top: 3px; }
.split-points strong { display: block; font-family: var(--font-c); font-size: 18px; }
.split-points span { color: var(--muted); font-size: 15px; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* ---------- Muro loghi ---------- */
.logos { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; }
.logos a { display: grid; place-items: center; height: 76px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.logos a:hover { border-color: var(--ink); }
.logos img { width: 44px; height: 44px; object-fit: contain; opacity: 0.85; }
@media (max-width: 900px) { .logos { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 480px) { .logos { grid-template-columns: repeat(3, 1fr); } .logos a { height: 64px; } .logos img { width: 36px; height: 36px; } }

/* ---------- Guide ---------- */
.guide-grid { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: auto auto; gap: 20px; }
.gcard { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.gcard-lg { grid-row: span 2; }
.gcard-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.gcard-lg .gcard-media img { aspect-ratio: 4 / 3; height: 100%; }
.gcard-lg .gcard-media { flex: 1; }
.gcard-body { padding: 18px; display: flex; flex-direction: column; gap: 6px; }
.gcard-meta { font-size: 13px; color: var(--muted); }
.gcard h3 { font-size: 22px; margin: 0; }
.gcard-lg h3 { font-size: 28px; }
.gcard p { color: var(--muted); font-size: 15px; margin: 0 0 6px; }
.gcard:not(.gcard-lg) { flex-direction: row; }
.gcard:not(.gcard-lg) .gcard-media { flex: 0 0 38%; }
.gcard:not(.gcard-lg) .gcard-media img { height: 100%; aspect-ratio: auto; }
.gcard:not(.gcard-lg) p { display: none; }
@media (max-width: 860px) {
  .guide-grid { grid-template-columns: 1fr; }
  .gcard-lg { grid-row: auto; }
  .gcard:not(.gcard-lg) .gcard-media { flex-basis: 40%; }
}
@media (max-width: 480px) { .gcard:not(.gcard-lg) { flex-direction: column; } .gcard:not(.gcard-lg) .gcard-media img { aspect-ratio: 3 / 2; } }
.guide-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.guide-list .gcard { flex-direction: column; }
.guide-list .gcard .gcard-media { flex: none; }
.guide-list .gcard .gcard-media img { aspect-ratio: 3 / 2; height: auto; }
.guide-list .gcard p { display: block; }
@media (max-width: 760px) { .guide-list { grid-template-columns: 1fr; } }

/* ---------- Recensioni ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; display: flex; flex-direction: column; gap: 10px; }
.review p { margin: 0; font-size: 15.5px; }
.review-who { font-size: 13.5px; color: var(--muted); margin-top: auto; }
.review-who strong { color: var(--ink); display: block; font-weight: 600; }
.review-prod { font-size: 13px; }
.stars { display: inline-flex; gap: 1px; color: var(--accent); }
@media (max-width: 900px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .reviews { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 0; cursor: pointer; font-weight: 600; font-size: 16.5px; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { color: var(--muted); transition: transform 0.3s var(--ease); }
.faq details[open] summary .icon { transform: rotate(180deg); }
.faq-a { padding: 0 0 18px; color: var(--ink-2); max-width: 75ch; }
.faq-a p { margin: 0; }
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
@media (max-width: 860px) { .faq-cols { grid-template-columns: 1fr; } }
.faq-group { margin-bottom: 40px; }
.faq-group h2 { margin-bottom: 8px; }

/* ---------- Lead form ---------- */
.lead-section { background: var(--graphite); color: var(--on-graphite); }
.lead-section .container { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.lead-copy h2 { color: #fff; }
.lead-copy .lead { color: #d7dbe0; }
.lead-points { list-style: none; display: grid; gap: 18px; margin-top: 24px; }
.lead-points li { display: flex; gap: 14px; }
.lead-points .icon { color: var(--accent); width: 26px; height: 26px; margin-top: 2px; filter: brightness(1.25); }
.lead-points strong { display: block; color: #fff; font-family: var(--font-c); font-size: 19px; }
.lead-points span { color: var(--on-graphite-muted); font-size: 15px; }
.lead-form { background: #fff; color: var(--ink); border-radius: var(--radius); padding: clamp(20px, 3vw, 32px); }
.lead-form h3 { font-size: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 960px) { .lead-section .container { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- Form ---------- */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-weight: 600; font-size: 14.5px; }
.field .opt { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: #fff; color: var(--ink); line-height: 1.3;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231b1e23' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.field input::placeholder, .field textarea::placeholder { color: #7a818c; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); }
.field .help { font-size: 13px; color: var(--muted); }
.field .error { font-size: 13px; color: var(--danger); font-weight: 500; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin-bottom: 12px; cursor: pointer; }
.check input { width: 18px; height: 18px; margin: 2px 0 0; flex: none; accent-color: var(--accent); }
.check a { text-decoration: underline; }
.alert { padding: 12px 14px; border-radius: var(--radius); font-size: 14.5px; margin-bottom: 16px; border: 1px solid; }
.alert-err { background: var(--danger-soft); border-color: var(--danger); color: var(--danger); }
.alert-ok { background: var(--ok-soft); border-color: var(--ok); color: var(--ok); }
.alert-info { background: var(--bg-2); border-color: var(--line); color: var(--ink-2); }
.form-note { font-size: 13px; color: var(--muted); margin-top: 10px; }

/* ---------- Breadcrumb ---------- */
.crumbs ol { display: flex; flex-wrap: wrap; gap: 4px 8px; list-style: none; font-size: 13.5px; color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: var(--line-strong); }
.crumbs a:hover { color: var(--accent); }

/* ---------- Catalogo ---------- */
.catalog { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 32px; align-items: start; }
.filters { position: sticky; top: calc(var(--header-h) + 60px); }
.filters fieldset { border: 0; padding: 0; margin: 0 0 22px; }
.filters legend { font-family: var(--font-c); font-weight: 700; font-size: 17px; margin-bottom: 8px; padding: 0; }
.filters .check { margin-bottom: 8px; }
.filters ul { list-style: none; }
.filters li a { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14.5px; }
.filters li a.active { color: var(--accent); font-weight: 600; }
.filters li a small { color: var(--muted); }
.catalog-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.catalog-bar .count { color: var(--muted); font-size: 14.5px; }
.catalog-bar .field { flex-direction: row; align-items: center; gap: 8px; margin: 0; }
.catalog-bar select { width: auto; padding: 8px 32px 8px 10px; font-size: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border: 1px solid var(--line-strong); border-radius: var(--radius); font-size: 13.5px; font-weight: 500; background: #fff; }
.chip:hover { border-color: var(--ink); }
.chip-static { background: var(--bg-2); border-color: transparent; }
.filters-toggle { display: none; }
.empty { padding: 48px 24px; text-align: center; border: 1px dashed var(--line-strong); border-radius: var(--radius); }
.empty .icon { width: 40px; height: 40px; margin: 0 auto 10px; color: var(--muted); }
.cat-seo { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); color: var(--ink-2); max-width: 80ch; }
@media (max-width: 900px) {
  .catalog { grid-template-columns: 1fr; }
  .filters { position: static; display: none; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 16px; }
  .filters.open { display: block; }
  .filters-toggle { display: inline-flex; }
}

/* ---------- Prodotto ---------- */
.product { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(24px, 4vw, 56px); align-items: start; }
.gallery-main { position: relative; background: var(--bg-2); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.gallery-main img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 10px; }
.gallery-thumbs button { width: 84px; padding: 0; border: 2px solid transparent; border-radius: var(--radius); overflow: hidden; background: var(--bg-2); }
.gallery-thumbs button.active { border-color: var(--accent); }
.gallery-thumbs img { aspect-ratio: 1; object-fit: cover; }
.product-info h1 { font-size: clamp(26px, 2.6vw, 34px); }
.product-meta { font-size: 13.5px; color: var(--muted); display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 10px; }
.product-price { display: flex; align-items: baseline; gap: 12px; margin: 14px 0 4px; }
.product-price .price { font-size: 38px; }
.product-price .price-old { font-size: 17px; }
.product-price .save { font-size: 13.5px; font-weight: 600; color: var(--accent); background: var(--accent-soft); padding: 3px 8px; border-radius: var(--radius); }
.vat-note { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.buy { display: flex; gap: 12px; align-items: stretch; margin: 16px 0; }
.qty { display: inline-flex; border: 1px solid var(--line-strong); border-radius: var(--radius); overflow: hidden; }
.qty button { width: 42px; border: 0; background: #fff; display: grid; place-items: center; }
.qty button:hover { background: var(--bg-2); }
.qty input { width: 52px; text-align: center; border: 0; border-left: 1px solid var(--line); border-right: 1px solid var(--line); -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.buy .btn { flex: 1; }
.product-usp { list-style: none; display: grid; gap: 8px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 14.5px; }
.product-usp li { display: flex; gap: 10px; align-items: center; }
.product-usp .icon { color: var(--accent); }
.compat { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.compat img { width: 20px; height: 20px; }
.product-sections { margin-top: clamp(32px, 5vw, 56px); display: grid; gap: clamp(28px, 4vw, 44px); }
.prose { max-width: 78ch; font-size: 16.5px; }
.prose h2 { font-size: 26px; margin-top: 1.4em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 21px; margin-top: 1.2em; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1em; }
.prose li { margin-bottom: 0.4em; }
.prose a { color: var(--accent); text-decoration: underline; }
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 1.2em; font-size: 15px; }
.prose th, .prose td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { font-weight: 600; background: var(--bg-2); }
.prose .updated { font-size: 14px; color: var(--muted); padding: 10px 12px; background: var(--bg-2); border-radius: var(--radius); }
.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.spec-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; background: #fff; }
.spec-card h3 { font-size: 18px; margin-bottom: 10px; }
.spec-card dl { margin: 0; display: grid; gap: 8px; }
.spec-card dt { font-size: 13px; color: var(--muted); }
.spec-card dd { margin: 0 0 2px; font-weight: 500; font-size: 15px; }
@media (max-width: 900px) { .product { grid-template-columns: 1fr; } .spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .spec-grid { grid-template-columns: 1fr; } }
.box-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 8px 20px; }
.box-list li { display: flex; gap: 8px; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.box-list .icon { color: var(--ok); }
.acc details { border-top: 1px solid var(--line); }
.acc details:last-child { border-bottom: 1px solid var(--line); }
.acc summary { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 14px 0; font-weight: 600; cursor: pointer; list-style: none; }
.acc summary::-webkit-details-marker { display: none; }
.acc details[open] summary .icon { transform: rotate(180deg); }
.acc-body { padding: 0 0 16px; color: var(--ink-2); font-size: 15px; max-width: 70ch; }
.acc-body p:last-child { margin: 0; }

/* ---------- Carrello / checkout ---------- */
.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 32px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); padding: 0 8px 10px; border-bottom: 1px solid var(--line); font-weight: 600; }
.cart-table td { padding: 14px 8px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cart-item { display: flex; gap: 14px; align-items: center; }
.cart-item img { width: 76px; height: 76px; object-fit: cover; border-radius: var(--radius); background: var(--bg-2); flex: none; }
.cart-item a { font-weight: 600; }
.cart-item small { display: block; color: var(--muted); font-size: 13px; }
.cart-table .price { font-size: 19px; }
.cart-table .remove { color: var(--muted); display: inline-flex; align-items: center; gap: 4px; font-size: 13.5px; background: none; border: 0; }
.cart-table .remove:hover { color: var(--danger); }
.summary { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; background: var(--bg-2); position: sticky; top: calc(var(--header-h) + 60px); }
.summary h2 { font-size: 22px; }
.summary dl { display: grid; grid-template-columns: 1fr auto; gap: 8px 12px; margin: 0 0 14px; font-size: 15px; }
.summary dt { color: var(--muted); }
.summary dd { margin: 0; text-align: right; font-weight: 500; }
.summary .total { border-top: 1px solid var(--line-strong); padding-top: 12px; margin-top: 4px; font-family: var(--font-c); font-size: 24px; font-weight: 700; }
.summary .total dt { color: var(--ink); }
.summary .free-note { font-size: 13.5px; color: var(--ok); font-weight: 500; }
.summary .ship-note { font-size: 13.5px; color: var(--muted); }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; } .summary { position: static; } .cart-table thead { display: none; } .cart-table td { display: block; padding: 6px 0; border: 0; } .cart-table tr { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); } }
.checkout-steps { display: grid; gap: 28px; }
.step { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.step h2 { font-size: 22px; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.step h2 .icon { color: var(--accent); }
.radio-list { display: grid; gap: 10px; }
.radio { display: flex; gap: 12px; align-items: flex-start; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: var(--radius); cursor: pointer; }
.radio:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.radio input { margin-top: 3px; accent-color: var(--accent); }
.radio strong { display: block; }
.radio span { font-size: 14px; color: var(--muted); }
.radio .radio-price { margin-left: auto; font-family: var(--font-c); font-weight: 700; font-size: 18px; white-space: nowrap; color: var(--ink); }
.order-lines { list-style: none; margin-bottom: 14px; }
.order-lines li { display: flex; justify-content: space-between; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.order-lines li span:first-child { color: var(--ink-2); }
.confirm-box { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: var(--bg-2); }
.confirm-box dl { display: grid; grid-template-columns: max-content 1fr; gap: 8px 18px; margin: 0; }
.confirm-box dt { color: var(--muted); }
.confirm-box dd { margin: 0; font-weight: 500; }
.iban { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: 15px; background: #fff; padding: 8px 12px; border-radius: var(--radius); border: 1px solid var(--line); display: inline-block; }

/* ---------- Chi siamo / timeline / numeri ---------- */
.timeline { list-style: none; display: grid; gap: 0; border-left: 2px solid var(--line); padding-left: 24px; }
.timeline li { position: relative; padding-bottom: 26px; }
.timeline li::before { content: ""; position: absolute; left: -31px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); border: 2px solid #fff; box-shadow: 0 0 0 2px var(--line); }
.timeline .year { font-family: var(--font-c); font-weight: 700; font-size: 22px; color: var(--accent); }
.timeline h3 { font-size: 20px; margin: 2px 0 4px; }
.timeline p { color: var(--ink-2); margin: 0; max-width: 60ch; }
.numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.number { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.number b { display: block; font-family: var(--font-c); font-size: 40px; font-weight: 700; line-height: 1; color: var(--accent); }
.number span { display: block; margin-top: 6px; color: var(--muted); font-size: 14.5px; }
@media (max-width: 760px) { .numbers { grid-template-columns: repeat(2, 1fr); } }
.photo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.photo-row img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); }
.photo-row figcaption { font-size: 13.5px; color: var(--muted); margin-top: 6px; }
.photo-row figure { margin: 0; }
@media (max-width: 760px) { .photo-row { grid-template-columns: 1fr; } }
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.team div { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); }
.team strong { display: block; font-family: var(--font-c); font-size: 20px; }
.team span { color: var(--muted); font-size: 14.5px; display: block; }
@media (max-width: 760px) { .team { grid-template-columns: 1fr; } }

/* ---------- Contatti ---------- */
.contact-layout { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.contact-list { list-style: none; display: grid; gap: 16px; margin: 20px 0; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; }
.contact-list .icon { color: var(--accent); margin-top: 3px; }
.contact-list strong { display: block; font-family: var(--font-c); font-size: 18px; }
.contact-list a:hover { text-decoration: underline; }
.contact-photo img { width: 100%; border-radius: var(--radius); aspect-ratio: 3 / 2; object-fit: cover; margin-top: 8px; }
@media (max-width: 860px) { .contact-layout { grid-template-columns: 1fr; } }

/* ---------- Legal ---------- */
.legal { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 40px; align-items: start; }
.legal-nav { position: sticky; top: calc(var(--header-h) + 60px); }
.legal-nav ul { list-style: none; border-left: 2px solid var(--line); }
.legal-nav a { display: block; padding: 8px 14px; font-size: 14.5px; margin-left: -2px; border-left: 2px solid transparent; }
.legal-nav a.active, .legal-nav a:hover { border-left-color: var(--accent); color: var(--accent); }
@media (max-width: 860px) { .legal { grid-template-columns: 1fr; } .legal-nav { position: static; } .legal-nav ul { display: flex; flex-wrap: wrap; border: 0; gap: 4px; } .legal-nav a { border: 1px solid var(--line); border-radius: var(--radius); padding: 6px 10px; margin: 0; } }

/* ---------- Guida (articolo) ---------- */
.article-head { max-width: 860px; }
.article-head .h-display { font-size: clamp(30px, 4vw, 48px); }
.article-hero img { width: 100%; max-width: 1100px; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); margin: 24px 0 32px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 48px; align-items: start; }
.aside-box { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; position: sticky; top: calc(var(--header-h) + 60px); }
.aside-box h3 { font-size: 19px; }
.aside-prod { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-top: 1px solid var(--line); }
.aside-prod img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius); background: var(--bg-2); }
.aside-prod a { font-weight: 600; font-size: 14.5px; line-height: 1.3; }
.aside-prod .price { font-size: 17px; }
@media (max-width: 900px) { .article-layout { grid-template-columns: 1fr; } .aside-box { position: static; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--graphite); color: var(--on-graphite); margin-top: clamp(40px, 6vw, 72px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr; gap: 32px; padding: 52px 0 36px; }
.footer-brand img { height: 30px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; color: var(--on-graphite-muted); max-width: 34ch; }
.footer-contact { display: grid; gap: 6px; }
.footer-contact a, .footer-contact span { display: inline-flex; gap: 8px; align-items: center; color: var(--on-graphite); }
.footer-contact a:hover { color: #fff; text-decoration: underline; }
.footer-contact .icon { color: var(--accent); filter: brightness(1.3); }
.site-footer h4 { color: #fff; font-size: 17px; letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 12px; }
.site-footer ul { list-style: none; display: grid; gap: 7px; }
.site-footer li a, .site-footer li button { font-size: 14.5px; color: var(--on-graphite-muted); }
.site-footer li a:hover, .site-footer li button:hover { color: #fff; text-decoration: underline; }
.footer-news p { font-size: 14.5px; color: var(--on-graphite-muted); }
.footer-news .field label { color: var(--on-graphite); }
.footer-news .field input { border-color: transparent; }
.footer-news .check { color: var(--on-graphite-muted); }
.footer-news .check a { color: var(--on-graphite); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; align-items: center; padding: 20px 0 28px; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 13px; color: var(--on-graphite-muted); flex-wrap: wrap; }
.footer-bottom p { margin: 0; max-width: 72ch; }
.pay { display: flex; gap: 8px; flex-wrap: wrap; }
.pay span { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: var(--radius); color: var(--on-graphite); }
@media (max-width: 1000px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; gap: 26px; padding-top: 36px; } }

/* ---------- Cookie ---------- */
.cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 50; max-width: 520px; background: #fff; border: 1px solid var(--line-strong); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; font-size: 14.5px; }
.cookie h4 { font-size: 19px; margin-bottom: 6px; }
.cookie p { margin-bottom: 12px; color: var(--ink-2); }
.cookie p a { text-decoration: underline; }
.cookie-prefs { display: grid; gap: 8px; margin-bottom: 14px; padding-top: 10px; border-top: 1px solid var(--line); }
.cookie-prefs .check { margin: 0; }
.cookie-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.cookie-actions .linkbtn { margin-left: auto; font-size: 14px; }

/* ---------- Toast ---------- */
.toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px); z-index: 70; background: var(--ink); color: #fff; padding: 12px 16px; border-radius: var(--radius); box-shadow: var(--shadow); display: flex; gap: 14px; align-items: center; font-size: 14.5px; opacity: 0; pointer-events: none; transition: opacity 0.25s, transform 0.35s var(--ease); max-width: calc(100vw - 32px); }
.toast.show { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.toast a { color: #fff; font-weight: 600; text-decoration: underline; white-space: nowrap; }

/* ---------- Reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); transition-delay: var(--d, 0s); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Varie ---------- */
.notice { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--line); font-size: 14.5px; }
.notice .icon { color: var(--accent); margin-top: 2px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; } }
.grazie { max-width: 640px; margin: 0 auto; text-align: center; padding: clamp(40px, 8vw, 96px) 0; }
.grazie .icon { width: 56px; height: 56px; margin: 0 auto 16px; color: var(--ok); }
.p404 { max-width: 640px; padding: clamp(40px, 8vw, 96px) 0; }
.rate-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.rate-table th, .rate-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--line); }
.rate-table th { background: var(--bg-2); font-weight: 600; }
.rate-table td:last-child, .rate-table th:last-child { text-align: right; white-space: nowrap; }
