@font-face {
  font-family: Satoshi;
  src: url("../fonts/satoshi-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Satoshi;
  src: url("../fonts/satoshi-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Satoshi;
  src: url("../fonts/satoshi-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: #eef1f4;
  --bg-alt: #e2e7ed;
  --bg-deep: #d4dbe3;
  --paper: #f6f7f9;
  --ink: #1a1d21;
  --ink-soft: #3a414b;
  --muted: #5c6570;
  --accent: #b4342a;
  --accent-2: #8f2c24;
  --line: #c5ccd4;
  --chrome: #7a8491;
  --danger: #8f2c24;
  --ok: #2d4a3c;
  --max: 1400px;
  --nav: 76px;
  --r: 12px;
  --r-btn: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --z-nav: 20;
  --z-overlay: 30;
  --z-cookie: 40;
  --shadow: 0 12px 32px rgba(26, 29, 33, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@view-transition {
  navigation: auto;
}

.nav {
  view-transition-name: ret-nav;
}

@media (prefers-reduced-motion: no-preference) {
  main#contenuto {
    animation: page-in 0.48s var(--ease) both;
  }
  html.is-leaving main#contenuto {
    animation: page-out 0.22s var(--ease) both;
  }
  ::view-transition-old(root) {
    animation: page-out 0.32s var(--ease) both;
  }
  ::view-transition-new(root) {
    animation: page-in 0.48s var(--ease) both;
  }
}

@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes page-out {
  from {
    opacity: 1;
    transform: none;
  }
  to {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@supports (view-transition-name: none) {
  @media (prefers-reduced-motion: no-preference) {
    main#contenuto,
    html.is-leaving main#contenuto {
      animation: none;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  @view-transition {
    navigation: none;
  }
  main#contenuto,
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
  }
  .cat:hover img,
  .card:hover img,
  .feat article:hover img {
    transform: none;
  }
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Satoshi, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.1;
  font-weight: 700;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 50;
  background: var(--accent);
  color: var(--paper);
  padding: 8px 12px;
  border-radius: var(--r-btn);
}

.icon {
  width: 1.15rem;
  height: 1.15rem;
  display: inline-block;
  vertical-align: -0.2em;
  flex-shrink: 0;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  height: var(--nav);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  height: var(--nav);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 52px;
  text-decoration: none;
  color: var(--ink);
}
.logo:hover {
  color: var(--ink);
}
.logo img {
  height: 46px;
  width: 46px;
  object-fit: contain;
}
.logo span {
  font-weight: 700;
  letter-spacing: -0.05em;
  font-size: 1.32rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover,
.nav-links a.is-active {
  color: var(--ink);
}
.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
  border-radius: var(--r-btn);
}
.icon-btn:hover {
  background: var(--bg-alt);
}
.icon-btn:active {
  transform: scale(0.98);
}

.menu-btn {
  display: none;
}

.hero {
  --hero-h: clamp(600px, calc(100svh - var(--nav)), 860px);
  min-height: var(--hero-h);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 5vw 56px max(20px, calc((100vw - var(--max)) / 2 + 20px));
}

.hero-copy .wrap-local {
  width: min(600px, 100%);
  display: grid;
  gap: 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  font-size: clamp(2.7rem, 5.2vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 12ch;
  text-wrap: balance;
}

.hero .lede {
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 44ch;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}
.hero-actions .btn {
  min-height: 52px;
  padding: 0 26px;
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
  border-radius: 0 0 0 32px;
  min-height: var(--hero-h);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(26, 29, 33, 0) 45%, rgba(26, 29, 33, 0.45) 100%);
  pointer-events: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #f7f4f2;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  border-radius: var(--r-btn);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.btn:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: #f7f4f2;
}
.btn:active {
  transform: translateY(1px) scale(0.98);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-wide {
  width: 100%;
}
.btn-sm {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section h2,
.page-head h1 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.section h2 {
  margin-bottom: 12px;
}

.prose {
  max-width: 65ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
}
.prose p + p,
.prose ul + p,
.prose p + ul {
  margin-top: 1em;
}
.prose ul,
.legal ul {
  padding-left: 1.15em;
}
.prose li + li,
.legal li + li {
  margin-top: 0.35em;
}

.cats {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 10px;
  margin-top: 28px;
}
.cat {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--r);
}
.cat:first-child {
  grid-row: 1 / span 2;
}
.cat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  opacity: 0.92;
}
.cat:hover img {
  transform: scale(1.04);
}
.cat:hover {
  color: var(--paper);
}
.cat span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-shadow: 0 1px 14px rgba(26, 29, 33, 0.5);
}

.feat {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  gap: 10px;
  margin-top: 28px;
}
.feat article {
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.feat article:first-child {
  grid-row: 1 / span 2;
}
.feat-link {
  display: grid;
  grid-template-rows: 1fr auto;
  text-decoration: none;
  color: inherit;
}
.feat-link:hover {
  color: inherit;
}
.feat .media {
  overflow: hidden;
  min-height: 240px;
  background: var(--bg-alt);
}
.feat .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  transition: transform 0.5s var(--ease);
}
.feat article:first-child .media img {
  aspect-ratio: auto;
  min-height: 520px;
}
.feat article:hover img {
  transform: scale(1.03);
}
.feat-add {
  padding: 0 18px 18px;
}
.feat .meta {
  padding: 16px 18px 18px;
}
.feat h3 {
  font-size: 1.12rem;
  margin-bottom: 4px;
}
.feat p {
  color: var(--muted);
  font-size: 0.92rem;
}

.look {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  min-height: 68vh;
}
.look img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 520px;
}
.look-copy {
  background: var(--bg-deep);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 56px;
  gap: 16px;
}
.look-copy h2 {
  color: var(--ink);
  font-size: clamp(2rem, 3.2vw, 3.1rem);
}
.look-copy p {
  max-width: 44ch;
  color: var(--ink-soft);
}
.look-copy .btn {
  align-self: flex-start;
}

.bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  margin-top: 28px;
}
.bento article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
  min-height: 160px;
}
.bento .photo {
  padding: 0;
  overflow: hidden;
  grid-column: 1;
  grid-row: 1 / span 2;
}
.bento .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 340px;
}
.bento .tint {
  background: var(--bg-deep);
  color: var(--ink);
  border-color: var(--line);
}
.bento h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.bento p {
  color: var(--muted);
  font-size: 0.95rem;
}
.bento .tint p {
  color: var(--ink-soft);
}

.quotes {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quotes blockquote {
  margin: 0;
  padding: 36px 32px;
  border-right: 1px solid var(--line);
}
.quotes blockquote:nth-child(2) {
  background: var(--paper);
}
.quotes blockquote:last-child {
  border-right: 0;
}
.quotes p {
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 16px;
}
.quotes footer {
  color: var(--muted);
  font-size: 0.88rem;
}

.lead {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.lead h2 {
  margin-bottom: 12px;
}

.form {
  display: grid;
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: var(--r);
}
.field {
  display: grid;
  gap: 6px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}
.hint {
  font-size: 0.8rem;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  border: 1px solid #6d7680;
  background: var(--bg);
  padding: 12px;
  min-height: 48px;
  border-radius: var(--r-btn);
}
.field input::placeholder,
.field textarea::placeholder {
  color: #7a8491;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.check input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}
.form-error {
  color: var(--danger);
  font-size: 0.9rem;
  font-weight: 600;
}
.form-ok {
  border: 1px solid var(--ok);
  background: #e7eee9;
  color: var(--ok);
  padding: 20px;
  border-radius: var(--r);
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq details p {
  margin-top: 10px;
  color: var(--ink-soft);
  max-width: 65ch;
}

.page-head {
  padding: 48px 0 24px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 36px;
}
.filters a {
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--r-btn);
  background: var(--paper);
}
.filters a.is-on,
.filters a:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #f7f4f2;
}

.grid-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 14px;
}
.card {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 12px;
  align-content: start;
}
.card-link {
  text-decoration: none;
  color: inherit;
  display: grid;
  gap: 10px;
  align-content: start;
}
.card-link:hover {
  color: inherit;
}
.card .media {
  background: var(--paper);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.card:hover img {
  transform: scale(1.03);
}
.card h3 {
  font-size: 1.05rem;
}
.card .price {
  color: var(--muted);
  font-size: 0.95rem;
}

.pdp {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
  padding-top: 36px;
  padding-bottom: 64px;
}
.pdp-gallery {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.pdp-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.pdp h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 8px 0 12px;
}
.price-lg {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 16px 0;
}
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0;
}
.spec {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.spec strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.split-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.split-story img {
  width: 100%;
  border-radius: var(--r);
  object-fit: cover;
  min-height: 420px;
  max-height: 560px;
}

.guide-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  margin-top: 28px;
}
.guide-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  border-radius: var(--r);
}

.legal {
  padding-bottom: 72px;
}
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}
.legal-nav a {
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--r-btn);
  padding: 7px 13px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.legal-nav a:hover,
.legal-nav a.is-on {
  border-color: var(--accent);
  background: var(--accent);
  color: #f7f4f2;
}
.legal-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
  border-radius: var(--r);
  padding: 20px 22px;
  margin-bottom: 28px;
}
.legal-card .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
  margin-top: 2px;
}
.legal-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 78ch;
}
.legal h1 {
  margin: 8px 0 20px;
}
.legal h2 {
  font-size: 1.25rem;
  margin: 28px 0 10px;
  letter-spacing: -0.03em;
}
.legal p,
.legal li {
  color: var(--ink-soft);
  max-width: 72ch;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  padding-bottom: 72px;
}
.vcard {
  display: grid;
  gap: 14px;
}
.vcard p {
  color: var(--ink-soft);
}
.vcard a {
  color: var(--ink);
}

.cta-band {
  background: var(--accent);
  color: #f7f4f2;
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 44px 0;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  margin-bottom: 8px;
}
.cta-band p {
  color: #f3e2e0;
  max-width: 60ch;
}
.cta-band .btn {
  background: #f7f4f2;
  border-color: #f7f4f2;
  color: var(--accent-2);
}
.cta-band .btn:hover {
  background: #fff;
  border-color: #fff;
  color: var(--accent-2);
}
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cta-band .btn-line {
  background: transparent;
  border-color: #eec3bf;
  color: #f7f4f2;
}
.cta-band .btn-line:hover {
  background: #9d2b22;
  border-color: #f7f4f2;
  color: #f7f4f2;
}

.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 32px;
}
.site-footer h2 {
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer li + li {
  margin-top: 8px;
}
.site-footer a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.site-footer a:hover {
  color: var(--accent);
}
.foot-legal {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.85rem;
  max-width: none;
}
.foot-legal p {
  max-width: none;
}
.foot-bottom {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
}

.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-cookie);
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 16px 0;
  box-shadow: var(--shadow);
}
.cookie-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.cookie p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  max-width: 70ch;
}
.cookie-actions {
  display: flex;
  gap: 8px;
}

[data-reveal] {
  opacity: 1;
}
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  }
  [data-reveal].reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---- Texture and accents ---- */

.hero {
  position: relative;
  background: var(--bg);
}

.hero-copy {
  position: relative;
  isolation: isolate;
}
.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(circle at 1px 1px, rgba(92, 101, 112, 0.32) 1px, transparent 0);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(200deg, #000 8%, rgba(0, 0, 0, 0.35) 46%, transparent 74%);
  mask-image: linear-gradient(200deg, #000 8%, rgba(0, 0, 0, 0.35) 46%, transparent 74%);
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 96px;
  height: 8px;
  background: var(--accent);
  border-radius: 0 6px 0 0;
}

.hl {
  color: var(--accent);
  font-style: normal;
}

.chip {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---- Trust strip under the hero ---- */

.strip {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 24px 26px 24px 0;
  border-right: 1px solid var(--line);
}
.strip-item:last-child {
  border-right: 0;
}
.strip-item + .strip-item {
  padding-left: 26px;
}
.strip-item .icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}
.strip-item strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}
.strip-item span {
  color: var(--muted);
  font-size: 0.87rem;
}

/* ---- Category tiles, richer ---- */

.cat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 23, 27, 0.82) 0%, rgba(20, 23, 27, 0.28) 42%, rgba(20, 23, 27, 0) 68%);
  pointer-events: none;
}
.cat span {
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  right: 18px;
  justify-content: space-between;
}
.cat span small {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #dfe4ea;
}

/* ---- Featured cards ---- */

.feat .media {
  position: relative;
}
.feat .pill {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 7px 12px;
  border-radius: var(--r-btn);
}
.feat .meta {
  display: grid;
  gap: 6px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.feat .chip {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.feat-link:hover h3 {
  color: var(--accent);
}

/* ---- Overlap composition ---- */

.overlap {
  position: relative;
  padding: 0 0 88px;
}
.overlap-media {
  position: relative;
  min-height: 62vh;
  overflow: hidden;
}
.overlap-media img {
  width: 100%;
  height: 100%;
  min-height: 62vh;
  object-fit: cover;
}
.overlap-panel {
  width: min(560px, calc(100% - 40px));
  margin: -120px 0 0 max(20px, calc((100vw - 1400px) / 2 + 20px));
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 6px solid var(--accent);
  border-radius: var(--r);
  padding: 36px 36px 32px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}
.overlap-panel h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  margin: 0;
}
.overlap-panel p {
  color: var(--ink-soft);
}
.overlap-panel .btn {
  justify-self: start;
}
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.fact {
  background: var(--paper);
  padding: 16px 14px;
}
.fact b {
  display: block;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  color: var(--accent);
  line-height: 1.1;
}
.fact span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ---- Horizontal rail ---- */

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 12px;
  margin-top: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: thin;
}
.rail-card {
  position: relative;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper);
  min-height: 300px;
  text-decoration: none;
  color: var(--paper);
  display: block;
}
.rail-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.rail-card:hover img {
  transform: scale(1.05);
}
.rail-card:hover {
  color: var(--paper);
}
.rail-card .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 18px 16px;
  background: linear-gradient(to top, rgba(20, 23, 27, 0.86), rgba(20, 23, 27, 0));
  display: grid;
  gap: 4px;
}
.rail-card .cap strong {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}
.rail-card .cap span {
  font-size: 0.86rem;
  color: #d7dce2;
}

/* ---- Bento enrichment ---- */

.bento .accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #f7f4f2;
}
.bento .accent h3,
.bento .accent p {
  color: #f7f4f2;
}
.bento .icon {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--accent);
  margin-bottom: 10px;
}
.bento .accent .icon {
  color: #f7f4f2;
}
.bento .wide {
  grid-column: 2 / span 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.bento .wide img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}
.bento .wide .txt {
  padding: 22px;
  align-self: center;
}

/* ---- Quotes as cards ---- */

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.quote-card {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 24px 22px;
  display: grid;
  gap: 16px;
  align-content: start;
}
.quote-card p {
  font-size: 1.06rem;
  letter-spacing: -0.02em;
  line-height: 1.38;
  color: var(--ink);
}
.quote-card footer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: 0.88rem;
  color: var(--muted);
}
.mono-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg-deep);
  color: var(--accent-2);
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid var(--line);
}
.quote-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--ink);
  display: block;
}

/* ---- FAQ with side panel ---- */

.faq-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 40px;
  align-items: start;
  margin-top: 28px;
}
.faq-side {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.faq-side img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.faq-side .txt {
  padding: 22px;
  display: grid;
  gap: 12px;
}
.faq-side h3 {
  font-size: 1.15rem;
}
.faq-side p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.faq summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.faq summary .icon {
  color: var(--accent);
  transition: transform 0.25s var(--ease);
}
.faq details[open] summary .icon {
  transform: rotate(180deg);
}
.faq details[open] summary {
  color: var(--accent);
}

/* ---- Lead form panel ---- */

.form {
  border-top: 6px solid var(--accent);
  box-shadow: var(--shadow);
}
.lead-side {
  display: grid;
  gap: 20px;
  align-content: start;
}
.lead-side img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--r);
  border: 1px solid var(--line);
}
.lead-points {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lead-points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.lead-points .icon {
  color: var(--accent);
  margin-top: 2px;
}

/* ---- Catalog cards ---- */

.card .media {
  position: relative;
}
.card .pill {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 11px;
  border-radius: var(--r-btn);
}
.card .chip {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.card-link:hover h3 {
  color: var(--accent);
}
.card-body {
  display: grid;
  gap: 4px;
}
.card-body p.desc {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---- Page banner ---- */

.banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  border: 1px solid var(--line);
  min-height: 300px;
  display: grid;
  align-items: end;
}
.banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .txt {
  position: relative;
  padding: 32px;
  background: linear-gradient(to top, rgba(20, 23, 27, 0.88), rgba(20, 23, 27, 0));
  color: #f6f7f9;
  display: grid;
  gap: 8px;
}
.banner h1 {
  color: #f6f7f9;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
}
.banner p {
  color: #dce1e7;
  max-width: 58ch;
}

/* ---- Product page trust row ---- */

.pdp-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin: 24px 0;
}
.pdp-trust div {
  background: var(--paper);
  padding: 16px 14px;
  display: grid;
  gap: 6px;
  font-size: 0.86rem;
  color: var(--muted);
}
.pdp-trust .icon {
  color: var(--accent);
}
.pdp-trust strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.detail-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.detail-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px;
  font-size: 0.93rem;
  color: var(--ink-soft);
}
.detail-list .icon {
  color: var(--accent);
  margin-top: 2px;
}

.pdp-figure {
  margin: 12px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper);
}
.pdp-figure img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.pdp-figure figcaption {
  padding: 14px 16px 16px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ---- Editorial blocks for content pages ---- */

.figure-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}
.figure-band figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper);
}
.figure-band img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.figure-band figcaption {
  padding: 14px 16px 16px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.figure-band figure:first-child {
  grid-column: span 2;
}
.figure-band figure:first-child img {
  height: 320px;
}

.callout {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 6px solid var(--accent);
  border-radius: var(--r);
  padding: 22px 24px;
  margin-top: 24px;
  display: grid;
  gap: 8px;
}
.callout h2,
.callout h3 {
  font-size: 1.1rem;
}

.list-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 40px;
  font-size: 1.4rem;
}
.list-head span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
.callout p {
  color: var(--ink-soft);
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.compare article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: grid;
  align-content: start;
}
.compare img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.compare .txt {
  padding: 24px;
  display: grid;
  gap: 12px;
}
.compare h3 {
  font-size: 1.25rem;
}
.compare ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.compare li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.compare .icon {
  color: var(--accent);
  margin-top: 2px;
}
.compare .price-note {
  font-weight: 700;
  color: var(--ink);
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
  counter-reset: step;
}
.steps article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 24px;
  display: grid;
  gap: 8px;
}
.steps article::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: -0.05em;
  color: var(--accent);
  line-height: 1;
}
.steps h3 {
  font-size: 1.1rem;
}
.steps p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ---- Hero stats and floating product card ---- */

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
}
.hero-stats > div {
  padding: 20px 20px 0 0;
  border-right: 1px solid var(--line);
}
.hero-stats > div:last-child {
  border-right: 0;
  padding-right: 0;
}
.hero-stats > div + div {
  padding-left: 20px;
}
.hero-stats dt {
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-stats dt small {
  font-size: 0.6em;
  color: var(--accent);
  margin-left: 2px;
}
.hero-stats dd {
  margin: 8px 0 0;
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--muted);
  max-width: 16ch;
}

.hero-card {
  position: absolute;
  z-index: 3;
  left: 28px;
  bottom: 28px;
  right: 28px;
  max-width: 360px;
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 14px;
  align-items: center;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  padding: 12px 14px 12px 12px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(26, 29, 33, 0.22);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.hero-card:hover {
  color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(26, 29, 33, 0.28);
}
.hero-card > img {
  width: 68px;
  height: 68px;
  min-height: 0;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #fff;
}
.hero-card .txt {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.hero-card small {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-card strong {
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}
.hero-card b {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}
.hero-card .go {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #f7f4f2;
  transition: transform 0.25s var(--ease);
}
.hero-card:hover .go {
  transform: translateX(3px);
}
.hero-card .go .icon {
  width: 1rem;
  height: 1rem;
}

/* ---- Cart entry in the nav ---- */

.cart-link {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px;
  align-items: center;
  height: 40px;
  padding: 0 14px 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-btn);
  background: var(--paper);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.cart-link:hover {
  color: var(--ink);
  border-color: var(--accent);
}
.cart-link.has-items {
  border-color: var(--accent);
}
.cart-count {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--bg-deep);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.cart-link.has-items .cart-count {
  background: var(--accent);
  color: #f7f4f2;
}

/* ---- Flash bar ---- */

.flash {
  background: #e7eee9;
  border-bottom: 1px solid #b9cdc0;
  color: var(--ok);
}
.flash.is-warn {
  background: #f6e7e5;
  border-bottom-color: #ddb8b3;
  color: var(--accent-2);
}
.flash-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
}
.flash p {
  font-size: 0.93rem;
  font-weight: 500;
}
.flash a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: inherit;
  white-space: nowrap;
}
.flash a:hover {
  color: inherit;
}
.flash .icon {
  width: 1.35rem;
  height: 1.35rem;
}

/* ---- Add to cart controls ---- */

.card-add,
.feat-add {
  display: grid;
}
.card-add .btn .icon,
.feat-add .btn .icon {
  width: 1.05rem;
  height: 1.05rem;
}

.pdp-add {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
  margin: 20px 0 4px;
}
.qty-field {
  display: grid;
  gap: 6px;
}
.qty-field label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.qty-field input {
  width: 88px;
  min-height: 48px;
  padding: 12px;
  border: 1px solid #6d7680;
  background: var(--bg);
  border-radius: var(--r-btn);
  font-variant-numeric: tabular-nums;
}
.qty-field input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

/* ---- Cart page ---- */

.cart-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 64px;
}
.cart-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.cart-line {
  display: grid;
  grid-template-columns: 104px 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.cart-line .thumb {
  display: block;
  width: 104px;
  height: 104px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper);
}
.cart-line .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-line .info {
  display: grid;
  gap: 3px;
  min-width: 0;
}
.cart-line h2 {
  font-size: 1.1rem;
}
.cart-line h2 a {
  text-decoration: none;
}
.cart-line .info p {
  font-size: 0.88rem;
  color: var(--muted);
}
.cart-line .unit {
  font-weight: 500;
  color: var(--ink-soft);
}
.cart-line .qty {
  display: grid;
  gap: 6px;
  justify-items: start;
}
.cart-line .qty label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.cart-line .qty input {
  width: 78px;
  min-height: 44px;
  padding: 10px;
  border: 1px solid #6d7680;
  background: var(--bg);
  border-radius: var(--r-btn);
  font-variant-numeric: tabular-nums;
}
.cart-line .qty input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.cart-line .line-total {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  min-width: 5ch;
  text-align: right;
}
.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.cart-remove-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.cart-remove-row button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  padding: 4px 0;
  cursor: pointer;
  font-size: 0.86rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.cart-remove-row button:hover {
  color: var(--accent);
}
.cart-remove-row .icon {
  width: 1rem;
  height: 1rem;
}

.cart-summary {
  position: sticky;
  top: calc(var(--nav) + 20px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 6px solid var(--accent);
  border-radius: var(--r);
  padding: 26px 24px;
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow);
}
.cart-summary h2 {
  font-size: 1.25rem;
}
.sum-rows {
  display: grid;
  gap: 10px;
}
.sum-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.sum-row b {
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.sum-row.is-total {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  font-size: 1.05rem;
}
.sum-row.is-total b {
  font-size: 1.45rem;
  letter-spacing: -0.05em;
}
.sum-row.is-note {
  font-size: 0.82rem;
  color: var(--muted);
}
.sum-hint {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.88rem;
  color: var(--ink-soft);
  background: var(--bg-alt);
  border-radius: var(--r);
  padding: 14px;
}
.sum-hint .icon {
  color: var(--accent);
  margin-top: 2px;
}
.cart-summary .lead-points {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 0.9rem;
}

.cart-empty {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 12px;
}
.cart-empty .txt {
  padding: 40px 38px;
  display: grid;
  gap: 14px;
  align-content: center;
}
.cart-empty .icon {
  width: 2rem;
  height: 2rem;
  color: var(--accent);
}
.cart-empty h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}
.cart-empty p {
  color: var(--ink-soft);
  max-width: 52ch;
}
.cart-empty > img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.form-errors {
  border: 1px solid var(--danger);
  border-left: 6px solid var(--danger);
  background: #f6e7e5;
  color: var(--accent-2);
  border-radius: var(--r);
  padding: 18px 22px;
  margin-bottom: 24px;
}
.form-errors ul {
  margin: 8px 0 0;
  padding-left: 1.15em;
  font-size: 0.93rem;
}
.form-errors li + li {
  margin-top: 4px;
}

/* ---- Checkout choices ---- */

.checkout-form {
  max-width: 780px;
  margin-top: 28px;
}
.choice {
  border: 0;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.choice legend {
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0 0 8px;
}
.choice-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: var(--r);
  padding: 14px 16px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.choice-item:hover {
  border-color: var(--chrome);
}
.choice-item input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}
.choice-item strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.choice-item:has(input:checked) {
  border-color: var(--accent);
  background: var(--paper);
}
.field-row-3 {
  grid-template-columns: 0.7fr 1.3fr 0.7fr;
}

/* ---- Order confirmation ---- */

.order-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 64px;
}
.order-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 6px solid var(--accent);
  border-radius: var(--r);
  padding: 26px 24px;
  display: grid;
  gap: 18px;
}
.order-panel h2 {
  font-size: 1.25rem;
}
.order-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.order-lines li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.order-lines .q {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: var(--r-btn);
  background: var(--bg-deep);
  font-weight: 700;
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
}
.order-lines .n {
  display: grid;
  gap: 2px;
  font-weight: 500;
}
.order-lines .n a {
  text-decoration: none;
}
.order-lines .n small {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 400;
}
.order-lines .t {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.order-side {
  display: grid;
  gap: 0;
  align-content: start;
}
.order-side .callout {
  margin-top: 16px;
}
.order-meta {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
  font-size: 0.9rem;
}
.order-meta dt {
  font-weight: 700;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-top: 2px;
}
.order-meta dd {
  margin: 0;
  color: var(--ink-soft);
}
.order-layout .steps {
  margin-top: 12px;
}

/* ---- Data tables ---- */

.table-scroll {
  margin-top: 28px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--paper);
}
.fit-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.fit-table caption {
  text-align: left;
  padding: 16px 20px 14px;
  font-size: 0.85rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.fit-table thead th {
  text-align: left;
  vertical-align: bottom;
  padding: 14px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.fit-table tbody th {
  text-align: left;
  vertical-align: top;
  padding: 16px;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  width: 24%;
  border-bottom: 1px solid var(--line);
}
.fit-table tbody th small {
  display: block;
  margin-top: 5px;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}
.fit-table td {
  padding: 16px;
  vertical-align: top;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.fit-table tbody tr:last-child th,
.fit-table tbody tr:last-child td {
  border-bottom: 0;
}
.fit-table td.y {
  color: var(--ok);
  font-weight: 700;
}
.fit-table td.m {
  color: #8a5a13;
  font-weight: 700;
}
.fit-table td.n {
  color: var(--danger);
  font-weight: 700;
}
.price-table tbody th {
  width: 26%;
}
.price-table .wide-cell {
  width: 40%;
  font-weight: 400;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--r-btn);
  padding: 7px 13px;
  font-size: 0.85rem;
  font-weight: 700;
}
.tag .icon {
  width: 1rem;
  height: 1rem;
}
.tag.y {
  color: var(--ok);
  border-color: #b9cdc0;
}
.tag.m {
  color: #8a5a13;
  border-color: #d9c6a3;
}
.tag.n {
  color: var(--danger);
  border-color: #ddb8b3;
}


/* ============================================================
   Design pass: shared components across all pages
   ============================================================ */

/* ---- Buttons ---- */
.btn {
  box-shadow: 0 1px 0 rgba(26, 29, 33, 0.06);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease), color 0.2s var(--ease);
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(180, 52, 42, 0.22);
}
.btn-ghost:hover {
  box-shadow: 0 8px 18px rgba(26, 29, 33, 0.14);
}
.btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: none;
}
.btn .icon {
  width: 1.05rem;
  height: 1.05rem;
}

/* ---- Add-to-cart buttons in cards: quieter, red only on hover ---- */
.card-add .btn,
.feat-add .btn {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
  font-weight: 700;
}
.card-add .btn:hover,
.feat-add .btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #f7f4f2;
}
.card-add .btn .icon,
.feat-add .btn .icon {
  color: var(--accent);
  transition: color 0.2s var(--ease);
}
.card-add .btn:hover .icon,
.feat-add .btn:hover .icon {
  color: #f7f4f2;
}

/* ---- Page heads with banner ---- */
.page-head {
  padding: 28px 0 24px;
}
.banner {
  min-height: clamp(340px, 42vh, 460px);
  border-radius: 18px;
  border: 0;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.banner img {
  transition: transform 12s linear;
}
.banner .txt {
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(to top, rgba(20, 23, 27, 0.92) 0%, rgba(20, 23, 27, 0.55) 55%, rgba(20, 23, 27, 0) 100%),
    linear-gradient(to right, rgba(20, 23, 27, 0.55), rgba(20, 23, 27, 0) 70%);
  gap: 10px;
  max-width: 100%;
}
.banner .eyebrow {
  color: #f0b9b2;
}
.banner .eyebrow::before {
  background: var(--accent);
}
.banner h1 {
  font-size: clamp(2.3rem, 4.4vw, 3.8rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
  max-width: 18ch;
  text-wrap: balance;
}
.banner p {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  color: #e4e8ed;
  max-width: 56ch;
  line-height: 1.5;
}
.banner::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 88px;
  height: 7px;
  background: var(--accent);
  border-radius: 0 6px 0 0;
}
.page-head > .prose,
.page-head > h1 + .prose {
  margin-top: 12px;
}

/* ---- Section headings: intro rhythm ---- */
.section h2 {
  margin-bottom: 14px;
  text-wrap: balance;
}
.section > .wrap > .prose:first-of-type {
  font-size: 1.06rem;
}

/* ---- Chips: filters and legal nav as pills ---- */
.filters a,
.legal-nav a {
  border-radius: 999px;
  padding: 9px 16px;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.filters a:hover,
.legal-nav a:hover {
  transform: translateY(-1px);
}
.filters {
  margin: 28px 0 32px;
}
.list-head {
  margin-top: 36px;
  margin-bottom: 18px;
}

/* ---- Product cards ---- */
.grid-products {
  gap: 28px 18px;
}
.card {
  gap: 14px;
}
.card .media {
  position: relative;
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(26, 29, 33, 0.04);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover .media {
  box-shadow: 0 16px 34px rgba(26, 29, 33, 0.12);
  transform: translateY(-3px);
  border-color: var(--bg-deep);
}
.card:hover img {
  transform: scale(1.05);
}
.card .pill,
.feat .pill {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(246, 247, 249, 0.94);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.card-body {
  display: grid;
  gap: 5px;
}
.card h3 {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
  transition: color 0.2s var(--ease);
}
.card-link:hover h3 {
  color: var(--accent);
}
.feat article {
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.feat article:hover {
  box-shadow: 0 16px 34px rgba(26, 29, 33, 0.12);
  transform: translateY(-3px);
}

/* ---- Category tiles ---- */
.cat {
  border-radius: 14px;
}

/* ---- Steps ---- */
.steps {
  gap: 14px;
}
.steps article {
  position: relative;
  border-radius: 14px;
  padding: 24px 26px 24px;
  gap: 10px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.steps article::before {
  font-size: 2.2rem;
  color: var(--accent);
  width: max-content;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(180, 52, 42, 0.45);
}
.steps h3 {
  margin-top: 2px;
}
.steps article:hover {
  border-color: var(--bg-deep);
  box-shadow: 0 12px 28px rgba(26, 29, 33, 0.08);
  transform: translateY(-2px);
}

/* ---- Callouts ---- */
.callout,
.legal-card {
  border-radius: 14px;
  border-left-width: 5px;
  background: linear-gradient(90deg, rgba(180, 52, 42, 0.05), rgba(180, 52, 42, 0) 40%), var(--paper);
}

/* ---- Quote cards ---- */
.quote-card {
  position: relative;
  border-radius: 14px;
  padding: 30px 26px 22px;
  overflow: hidden;
}
.quote-card::before {
  content: "\201C";
  position: absolute;
  right: 18px;
  top: -6px;
  font-size: 6rem;
  line-height: 1;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.14;
  pointer-events: none;
}
.mono-badge {
  background: var(--accent);
  color: #f7f4f2;
  border: 0;
}

/* ---- Tables ---- */
.table-scroll {
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(26, 29, 33, 0.04);
}
.fit-table tbody tr:nth-child(even) th,
.fit-table tbody tr:nth-child(even) td {
  background: rgba(226, 231, 237, 0.35);
}
.fit-table tbody tr:hover th,
.fit-table tbody tr:hover td {
  background: rgba(180, 52, 42, 0.05);
}
.fit-table td.y::before,
.fit-table td.m::before,
.fit-table td.n::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  background: currentColor;
  vertical-align: 1px;
}

/* ---- Forms ---- */
.form {
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.field input,
.field select,
.field textarea {
  border-color: var(--line);
  background: #fff;
  border-radius: 10px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--chrome);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(180, 52, 42, 0.14);
}

/* ---- FAQ ---- */
.faq details {
  transition: background 0.2s var(--ease);
}
.faq summary {
  padding: 18px 0;
  font-size: 1.02rem;
}
.faq summary .icon {
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary .icon {
  transform: rotate(180deg);
}
.faq details[open] summary {
  color: var(--accent);
}

/* ---- CTA band ---- */
.cta-band {
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.16) 1px, transparent 0);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(110deg, transparent 40%, #000 100%);
  mask-image: linear-gradient(110deg, transparent 40%, #000 100%);
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  padding: 56px 0;
}
.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.cta-band .btn:hover {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

/* ---- Footer ---- */
.site-footer {
  padding: 64px 0 28px;
  border-top: 0;
}
.site-footer .logo {
  height: 44px;
}
.site-footer .logo img {
  width: 44px;
  height: 44px;
}
.site-footer .logo span {
  font-size: 1.25rem;
}
.site-footer h2 {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.site-footer li + li {
  margin-top: 10px;
}
.site-footer ul a {
  font-size: 0.95rem;
  color: var(--ink);
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.site-footer ul a:hover {
  padding-left: 4px;
}
.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---- Empty states shared by cart, 404 and order fallback ---- */
.cart-empty {
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.cart-empty .txt {
  padding: 48px 44px;
}
.cart-empty .eyebrow {
  margin-bottom: -4px;
}
.cart-empty .txt .hero-actions {
  padding-top: 8px;
}
.cart-empty h2,
.cart-empty h1 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  letter-spacing: -0.045em;
}
.cart-empty > img {
  min-height: 340px;
}

/* ---- Product page ---- */
.pdp-gallery img {
  border-radius: 16px;
}
.pdp-trust,
.spec-grid .spec,
.pdp .callout {
  border-radius: 14px;
}

/* ---- Images inside content ---- */
.split-story img,
.guide-grid img,
.lead-side img,
.overlap-media img,
.bento .photo img,
.compare img,
.figure-band img {
  border-radius: 14px;
}

@media (max-width: 1024px) {
  .cart-layout,
  .order-layout {
    grid-template-columns: 1fr;
  }
  .cart-summary {
    position: static;
  }
  .cart-empty {
    grid-template-columns: 1fr;
  }
  .cart-empty > img {
    min-height: 240px;
    grid-row: 1;
  }
  .hero-card {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  .strip-inner {
    grid-template-columns: 1fr 1fr;
  }
  .strip-item:nth-child(2) {
    border-right: 0;
  }
  .strip-item:nth-child(3),
  .strip-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }
  .strip-item:nth-child(odd) {
    padding-left: 0;
  }
  .strip-item:nth-child(even) {
    padding-left: 26px;
  }
  .overlap-panel {
    width: calc(100% - 40px);
    margin: -80px auto 0;
  }
  .quote-grid,
  .figure-band,
  .steps,
  .compare,
  .faq-grid,
  .detail-list,
  .pdp-trust {
    grid-template-columns: 1fr;
  }
  .figure-band figure:first-child {
    grid-column: auto;
  }
  .bento .wide {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
  }
  .bento .photo {
    grid-column: auto;
    grid-row: auto;
  }
  .bento {
    grid-template-rows: none;
  }
  .hero,
  .look,
  .feat,
  .bento,
  .lead,
  .pdp,
  .split-story,
  .contact-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }
  .feat a:first-child {
    grid-row: auto;
  }
  .feat a:first-child .media img {
    min-height: 280px;
    aspect-ratio: 1 / 1;
  }
  .bento .photo {
    grid-row: auto;
  }
  .cats {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-rows: 200px;
  }
  .cat:first-child {
    grid-row: auto;
    grid-column: 1 / span 2;
    min-height: 240px;
  }
  .quotes {
    grid-template-columns: 1fr;
  }
  .quotes blockquote {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    --hero-h: auto;
    min-height: 0;
  }
  .hero-visual {
    min-height: min(56vh, 520px);
    border-radius: 0;
  }
  .hero-copy {
    padding: 56px 20px 44px;
  }
  .hero-copy .wrap-local {
    width: min(640px, 100%);
  }
  .nav-links {
    gap: 18px;
  }
}

@media (max-width: 1099px) {
  .menu-btn {
    display: grid;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 14px;
    z-index: var(--z-overlay);
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links a {
    font-size: 1rem;
  }
  .nav-inner {
    grid-template-columns: auto 1fr auto;
  }
}

@media (max-width: 767px) {
  :root {
    --nav: 64px;
  }
  .banner {
    min-height: 300px;
    border-radius: 14px;
  }
  .banner h1 {
    font-size: 2rem;
  }
  .cart-empty .txt {
    padding: 30px 22px;
  }
  .grid-products {
    gap: 22px;
  }
  .wrap {
    width: calc(100% - 32px);
  }
  .hero {
    min-height: 0;
  }
  .cats,
  .grid-products,
  .spec-grid,
  .field-row,
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .cat:first-child {
    grid-column: auto;
  }
  .look-copy {
    padding: 32px 20px;
  }
  .cookie-inner,
  .cta-band-inner {
    grid-template-columns: 1fr;
  }
  .cta-band-inner {
    padding: 32px 0;
  }
  .section {
    padding: 56px 0;
  }
  .logo {
    gap: 8px;
    height: 44px;
  }
  .logo img {
    width: 44px;
    height: 44px;
  }
  .logo span {
    font-size: 1.1rem;
  }
  .hero-copy {
    padding: 40px 16px 36px;
  }
  .hero-copy .wrap-local {
    gap: 18px;
  }
  .hero h1 {
    font-size: clamp(2.3rem, 10vw, 3rem);
  }
  .hero-visual {
    min-height: 62vw;
  }
  .strip-inner {
    grid-template-columns: 1fr;
  }
  .strip-item {
    border-right: 0;
    padding: 18px 0;
  }
  .strip-item + .strip-item {
    padding-left: 0;
    border-top: 1px solid var(--line);
  }
  .facts {
    grid-template-columns: 1fr;
  }
  .overlap-media,
  .overlap-media img {
    min-height: 46vh;
  }
  .overlap-panel {
    width: calc(100% - 32px);
    padding: 26px 22px 24px;
    margin-top: -56px;
  }
  .overlap {
    padding-bottom: 56px;
  }
  .banner .txt {
    padding: 22px;
  }
  .rail {
    grid-auto-columns: minmax(230px, 1fr);
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 12px;
  }
  .hero-stats > div,
  .hero-stats > div + div {
    padding: 16px 10px 0 0;
  }
  .hero-stats > div + div {
    padding-left: 10px;
  }
  .hero-stats dt {
    font-size: 1.35rem;
  }
  .hero-stats dd {
    font-size: 0.78rem;
  }
  .hero-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
    grid-template-columns: 56px 1fr auto;
  }
  .hero-card > img {
    width: 56px;
    height: 56px;
  }
  .flash-inner {
    grid-template-columns: auto 1fr;
    gap: 10px;
  }
  .flash-inner a {
    grid-column: 1 / -1;
  }
  .cart-line {
    grid-template-columns: 72px 1fr auto;
    gap: 8px 14px;
  }
  .cart-line .thumb {
    grid-row: 1 / span 2;
    width: 72px;
    height: 72px;
  }
  .cart-line .info {
    grid-column: 2 / span 2;
  }
  .cart-line .qty {
    grid-column: 2;
  }
  .cart-line .line-total {
    grid-column: 3;
    align-self: end;
  }
  .cart-empty .txt {
    padding: 28px 22px;
  }
  .cart-summary {
    padding: 22px 20px;
  }
  .order-meta {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .order-meta dd {
    margin-bottom: 10px;
  }
  .pdp-add {
    gap: 10px;
  }
  .pdp-add .btn {
    width: 100%;
  }
}
