:root {
  --page: #ffffff;
  --surface: #ffffff;
  --zebra: #f7f7f5;
  --tint: #f3f2f0;
  --tint-2: #e9e7e4;
  --line: #e6e4e0;
  --line-strong: #c8c4be;
  --ink: #1a1917;
  --body: #3d3a37;
  --muted: #6b6762;
  --brand: #624e4c;
  --brand-deep: #4a3b39;
  --brand-soft: #efe9e7;
  --accent: #b23b2e;
  --accent-soft: #f9e9e6;
  --ok: #1f7a48;
  --ok-soft: #e4f2e9;
  --warn: #8a5a00;
  --warn-soft: #fbf0d9;
  --star: #e3a600;
  --focus: #2f6fed;
  --r: 8px;
  --r-sm: 6px;
  --r-pill: 999px;
  --sh-1: 0 1px 2px rgba(20, 20, 20, 0.04), 0 2px 6px rgba(20, 20, 20, 0.05);
  --sh-2: 0 6px 20px rgba(20, 20, 20, 0.1);
  --sh-3: 0 18px 50px rgba(20, 20, 20, 0.16);
  --font-display:
    system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    sans-serif;
  --font-body:
    system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    sans-serif;
  --header-h: 56px;
  --topbar-h: 30px;
  --container: 1240px;
  --gutter: 16px;
}
@media (min-width: 1024px) {
  :root {
    --header-h: 72px;
    --gutter: 24px;
    --topbar-h: 34px;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}
body {
  margin: 0;
  background: var(--page);
  color: var(--body);
  font: 15px/1.5 var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--brand);
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
}
h1,
.h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 0;
  line-height: 1.1;
}
h2,
.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0;
}
h3 {
  font-size: 1.05rem;
  letter-spacing: 0;
}
p {
  margin: 0 0 1em;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}
::selection {
  background: var(--brand-soft);
}
dialog {
  border: 0;
  padding: 0;
  color: inherit;
}
dialog::backdrop {
  background: rgba(42, 33, 31, 0.45);
  backdrop-filter: blur(2px);
}
details summary {
  list-style: none;
  cursor: pointer;
}
details summary::-webkit-details-marker {
  display: none;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}
.section {
  padding-block: 36px;
}
.section--categories {
  padding-top: 40px;
}
.section--flush-top {
  padding-top: 0;
}
@media (min-width: 1024px) {
  .section {
    padding-block: 56px;
  }
}
.section__head {
  margin-bottom: 20px;
}
.section__head p {
  color: var(--muted);
  margin: 6px 0 0;
  max-width: 60ch;
}
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 0.8125rem;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.skip {
  position: absolute;
  left: 8px;
  top: -60px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  z-index: 100;
}
.skip:focus {
  top: 8px;
}
.row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  flex: none;
}
.dot--warn {
  background: var(--warn);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1.5px solid transparent;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s,
    transform 0.05s;
  text-align: center;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: var(--ink);
  color: #fff;
}
.btn--primary:hover {
  background: #000;
  color: #fff;
}
.btn--secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost {
  color: var(--ink);
  padding-inline: 10px;
  min-height: 40px;
}
.btn--ghost:hover {
  background: var(--tint);
}
.btn--sm {
  padding: 7px 12px;
  font-size: 0.82rem;
  min-height: 0;
}
.btn--lg {
  min-height: 52px;
  font-size: 1rem;
  padding-inline: 24px;
}
.btn--block {
  width: 100%;
  white-space: normal;
}
.btn--wa {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}
.btn--wa:hover {
  background: #1ebe5a;
  color: #fff;
  border-color: #1ebe5a;
}
.btn--wa-outline {
  background: var(--surface);
  color: #128c7e;
  border-color: #25d366;
}
.btn--wa-outline:hover {
  background: #f0fbf4;
  color: #075e54;
  border-color: #1ebe5a;
}
.btn--wa-outline .wa-ico {
  --s: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #25d366;
}
.pdp__wa-note {
  margin: -4px 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}
.wa-ico {
  --s: 22px;
  display: inline-grid;
  place-items: center;
  width: var(--s);
  height: var(--s);
  flex: none;
  pointer-events: none;
  color: #fff;
}
.wa-ico object,
.wa-ico .icon {
  display: block;
  width: var(--s);
  height: var(--s);
  color: #fff;
}
.wa-ico__cdn {
  filter: brightness(0) invert(1);
}
.btn .wa-ico {
  --s: 20px;
}
.btn--lg .wa-ico {
  --s: 22px;
}
.wa-ico--badge {
  --s: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25d366;
}
.channel--wa {
  border-color: #25d366;
}
.channel--wa .wa-ico {
  margin-top: 0;
}
.stars {
  --pct: 100%;
  position: relative;
  display: inline-block;
  font-size: 0.95em;
  line-height: 1;
  letter-spacing: 0;
  color: var(--line-strong);
  white-space: nowrap;
}
.stars::before {
  content: "★★★★★";
}
.stars::after {
  content: "★★★★★";
  position: absolute;
  left: 0;
  top: 0;
  width: var(--pct);
  overflow: hidden;
  color: var(--star);
}
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.74rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  white-space: nowrap;
  overflow: hidden;
}
.topbar__usps {
  display: none;
  gap: 22px;
}
.topbar__usps li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar__usps .icon {
  color: #7ed39b;
}
.topbar__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #fff;
}
.topbar .muted {
  color: rgba(255, 255, 255, 0.6);
}
.topbar__rating .stars {
  font-size: 0.8rem;
}
.topbar__mobile {
  display: flex;
  gap: 6px;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.topbar__rating {
  flex: none;
}
.topbar__count {
  display: none;
}
@media (min-width: 1024px) {
  .topbar__count {
    display: inline;
  }
}
@media (min-width: 1024px) {
  .topbar__usps {
    display: flex;
  }
  .topbar__mobile {
    display: none;
  }
  .topbar {
    font-size: 0.8rem;
  }
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}
.header__left,
.header__right {
  display: flex;
  align-items: center;
  gap: 2px;
}
.header__right {
  justify-content: flex-end;
}
.header__right .icon-btn--account {
  display: none;
}
@media (min-width: 1024px) {
  .header__right .icon-btn--account {
    display: inline-flex;
  }
}
.logo {
  display: block;
  width: 118px;
  color: var(--brand);
}
.logo svg {
  width: 100%;
  height: auto;
  fill: currentColor;
}
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  color: var(--ink);
  position: relative;
}
.icon-btn:hover {
  background: var(--tint);
}
.icon-btn .icon {
  width: 24px;
  height: 24px;
}
.icon-btn__badge {
  position: absolute;
  top: 5px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.nav {
  display: none;
}
.search {
  display: none;
}
@media (min-width: 1024px) {
  .header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 24px;
  }
  .header__left .icon-btn--menu {
    display: none;
  }
  .logo {
    width: 150px;
  }
  .nav {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .nav a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 6px;
    font-weight: 600;
    color: var(--ink);
    font-size: 0.92rem;
  }
  .nav a:hover,
  .nav a[aria-current="page"] {
    background: var(--tint);
    color: var(--ink);
  }
  .nav a.nav__premium::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
    margin-left: 6px;
    vertical-align: 2px;
  }
  .search {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 260px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    background: var(--surface);
    color: var(--muted);
  }
  .search input {
    border: 0;
    outline: 0;
    flex: 1;
    font: inherit;
    background: transparent;
    color: var(--ink);
    min-width: 0;
  }
  .search:focus-within {
    border-color: var(--ink);
  }
  .header__right .icon-btn--search {
    display: none;
  }
}
.lang {
  position: relative;
}
.lang > summary {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 44px;
  padding: 0 8px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.lang > summary:hover {
  background: var(--tint);
}
.lang__menu {
  position: absolute;
  right: 0;
  top: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-2);
  min-width: 190px;
  padding: 6px;
  z-index: 60;
}
.lang__menu a,
.lang__menu span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
}
.lang__menu a:hover {
  background: var(--tint);
}
.lang__menu a[aria-current] {
  font-weight: 700;
  color: var(--ink);
}
.lang__menu span {
  color: var(--muted);
}
.lang__menu span small {
  font-size: 0.7rem;
}
.drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(90vw, 380px);
  max-width: none;
  max-height: none;
  height: 100dvh;
  margin: 0;
  background: var(--page);
  box-shadow: var(--sh-3);
  flex-direction: column;
}
.drawer[open] {
  display: flex;
  transition: transform 0.25s ease;
}
@starting-style {
  .drawer[open] {
    transform: translateX(-100%);
  }
}
.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 8px 16px;
  border-bottom: 1px solid var(--line);
  min-height: var(--header-h);
  flex: none;
}
.drawer__body {
  padding: 12px 16px 24px;
  overflow: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}
.drawer__search {
  margin: 4px 0 8px;
}
.drawer__searchbox {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
}
.drawer__searchbox:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(26, 25, 23, 0.08);
}
.drawer__searchbox .icon {
  width: 22px;
  height: 22px;
  color: var(--ink);
}
.drawer__searchbox input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  height: 100%;
}
.drawer__searchbox input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.drawer__search small {
  display: block;
  margin: 6px 2px 0;
  font-size: 0.75rem;
  color: var(--muted);
}
.drawer__group {
  margin-top: 18px;
}
.drawer__group h4 {
  font-size: 0.7rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.drawer__nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  color: var(--ink);
  font-size: 1.05rem;
}
.drawer__nav a span {
  flex: 1;
}
.drawer__nav a small {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.85rem;
}
.drawer__nav a .icon {
  width: 18px;
  height: 18px;
  color: var(--line-strong);
}
.drawer__nav a em {
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: 2px;
}
.drawer__nav--compact a {
  min-height: 46px;
  font-size: 0.95rem;
  font-weight: 500;
}
.drawer__wa {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #25d366;
  color: #fff;
}
.drawer__wa .icon {
  width: 22px;
  height: 22px;
}
.drawer__wa b {
  display: block;
  font-size: 0.95rem;
}
.drawer__wa small {
  display: block;
  font-size: 0.78rem;
  opacity: 0.85;
}
.drawer__langs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.drawer__langs a,
.drawer__langs span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 600;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
.drawer__langs a[aria-current] {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.drawer__langs span {
  color: var(--muted);
  border-style: dashed;
}
.drawer.is-searching .drawer__group,
.drawer.is-searching .drawer__trust {
  display: none;
}
.drawer__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding: 10px 0 0;
}
.drawer__brands small {
  font-size: 0.7rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 4px;
}
.drawer__brands a {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}
.drawer__trust {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.drawer__trust b {
  color: var(--ink);
}
.drawer__trust .stars {
  font-size: 0.75rem;
}
.search-wrap {
  position: relative;
}
.search__results {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  width: min(92vw, 560px);
  max-height: min(70vh, 640px);
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh-2);
  padding: 6px;
  z-index: 70;
}
.search__results--inline {
  position: static;
  width: auto;
  max-height: none;
  box-shadow: none;
  border: 0;
  padding: 0;
  background: transparent;
  margin-top: 4px;
}
.sr__group {
  padding: 6px 0;
}
.sr__group + .sr__group {
  border-top: 1px solid var(--line);
}
.sr__group h4 {
  font-size: 0.68rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 10px 4px;
}
.sr__group h4 small {
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.sr__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--body);
}
.sr__item:hover,
.sr__item:focus {
  background: var(--tint);
  color: var(--body);
  outline: 0;
}
.sr__thumb {
  flex: none;
  width: 44px;
  height: 56px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--tint);
}
.sr__thumb svg {
  width: 100%;
  height: 100%;
}
.sr__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sr__ico {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: var(--tint);
  display: grid;
  place-items: center;
  color: var(--ink);
}
.sr__text {
  flex: 1;
  min-width: 0;
}
.sr__text b {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sr__text small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sr__price {
  flex: none;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.92rem;
  text-align: right;
}
.sr__price small {
  display: block;
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--warn);
}
.sr__empty {
  margin: 0;
  padding: 14px 12px;
  color: var(--muted);
  font-size: 0.9rem;
}
.search__results--inline .sr__text b,
.search__results--inline .sr__text small {
  white-space: normal;
}
.search__results--inline .sr__item {
  padding: 10px 6px;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}
.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 12px 0 0;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb li + li::before {
  content: "›";
  margin-right: 6px;
  color: var(--line-strong);
}
.breadcrumb a:hover {
  color: var(--brand);
  text-decoration: underline;
}
.breadcrumb [aria-current] {
  color: var(--ink);
}
.chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 2px 0 6px;
  margin-inline: calc(-1 * var(--gutter));
  padding-inline: var(--gutter);
  scroll-snap-type: x proximity;
}
.chips::-webkit-scrollbar {
  display: none;
}
.chip {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  background: var(--surface);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  scroll-snap-align: start;
}
.chip:hover {
  border-color: var(--ink);
}
.chip[aria-pressed="true"],
.chip--active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.chip small {
  font-weight: 500;
  opacity: 0.7;
}
.chip .icon {
  width: 14px;
  height: 14px;
}
.chip--premium {
  border-color: var(--ink);
}
.chip--premium::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.chip--premium[aria-pressed="true"]::before {
  background: #fff;
}
.fopt__tag {
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--brand);
  margin-left: 4px;
}
@media (min-width: 1024px) {
  .chips {
    margin-inline: 0;
    padding-inline: 0;
    flex-wrap: wrap;
    overflow: visible;
  }
}
.plp-head {
  padding: 8px 0 12px;
}
.plp-head h1 {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.plp-head h1 small {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}
.plp-head__intro {
  margin: 8px 0 12px;
  max-width: 70ch;
  color: var(--body);
}
.plp-head__intro a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .plp-head {
    padding: 12px 0 14px;
  }
  .plp-head__intro {
    font-size: 1rem;
    max-width: 78ch;
    margin: 10px 0 14px;
  }
  .plp-head h1 small {
    font-size: 1rem;
  }
}
.usps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: -4px 0 14px;
  font-size: 0.85rem;
  color: var(--body);
}
.usps li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.usps .icon {
  width: 16px;
  height: 16px;
  color: var(--ok);
}
.plp {
  display: grid;
  gap: 20px;
  align-items: start;
}
@media (min-width: 1024px) {
  .plp {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 36px;
  }
}
.toolbar {
  position: sticky;
  top: var(--header-h);
  z-index: 30;
  background: var(--page);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}
.toolbar__count {
  font-size: 0.85rem;
  color: var(--muted);
  display: none;
}
.toolbar__btns {
  display: flex;
  gap: 8px;
  width: 100%;
}
.toolbar .btn {
  flex: 1;
  min-height: 44px;
  font-size: 0.9rem;
}
.toolbar .select {
  flex: 1;
}
.select {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--surface);
  padding: 0 34px 0 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}
.select select {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  width: 100%;
  height: 42px;
  outline: 0;
  padding: 0;
}
.select::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.select span {
  color: var(--muted);
  font-weight: 500;
  margin-right: 6px;
  white-space: nowrap;
  display: none;
}
@media (min-width: 1024px) {
  .select span {
    display: inline;
  }
}
@media (min-width: 1024px) {
  .toolbar {
    position: static;
    border: 0;
    padding: 0 0 6px;
  }
  .toolbar__count {
    display: block;
  }
  .toolbar__btns {
    width: auto;
  }
  .toolbar .btn--filters {
    display: none;
  }
  .toolbar .select {
    flex: none;
    min-width: 230px;
  }
}
.applied {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: -4px 0 12px;
}
.applied:empty {
  display: none;
}
.applied .chip {
  height: 30px;
  font-size: 0.78rem;
  padding: 0 10px;
  background: var(--brand-soft);
  border-color: transparent;
}
.applied .chip--reset {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--muted);
}
.filters {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 80;
  background: var(--page);
  border-radius: 18px 18px 0 0;
  max-height: 92dvh;
  transform: translateY(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sh-3);
  visibility: hidden;
}
.filters.is-open {
  transform: none;
  visibility: visible;
}
.filters__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(42, 33, 31, 0.45);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.filters__backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 8px 12px 20px;
  border-bottom: 1px solid var(--line);
}
.filters__head h2 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
}
.filters__body {
  overflow: auto;
  padding: 0 20px 16px;
  flex: 1;
}
.filters__foot {
  display: flex;
  gap: 10px;
  padding: 12px 20px;
  border-top: 1px solid var(--line);
  background: var(--page);
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}
.filters__foot .btn {
  flex: 1;
}
.fgroup {
  border-bottom: 1px solid var(--line);
}
.fgroup > summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}
.fgroup > summary::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.2s;
  margin-right: 4px;
}
.fgroup[open] > summary::after {
  transform: rotate(-135deg);
}
.fgroup__body {
  padding: 0 0 14px;
  display: grid;
  gap: 4px;
}
.fopt {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 2px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.92rem;
}
.fopt:hover {
  background: var(--tint);
}
.fopt input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--ink);
  flex: none;
}
.fopt .count {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
}
.fopt.is-zero {
  opacity: 0.45;
}
.swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  flex: none;
}
.frange {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.frange input {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 0 10px;
  font: inherit;
  background: var(--surface);
}
.frange span {
  color: var(--muted);
}
@media (min-width: 1024px) {
  .filters {
    position: static;
    inset: auto;
    transform: none;
    visibility: visible;
    box-shadow: none;
    border-radius: 0;
    max-height: none;
    background: transparent;
  }
  .filters__head,
  .filters__foot,
  .filters__backdrop {
    display: none;
  }
  .filters__body {
    padding: 0;
    overflow: visible;
  }
  .filters__reset {
    display: block;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--ink);
    text-decoration: underline;
  }
}
.filters__reset {
  display: none;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 12px;
}
@media (min-width: 640px) {
  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 16px;
  }
}
@media (min-width: 1280px) {
  .grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.grid--home {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 640px) {
  .grid--home {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.card__body {
  gap: 2px;
}
.card.is-hidden {
  display: none;
}
.card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--tint);
}
.card__media svg,
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
@media (hover: hover) {
  .card:hover .card__media svg,
  .card:hover .card__media img {
    transform: scale(1.03);
  }
}
.card__badges {
  position: absolute;
  left: 8px;
  top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 22px;
  padding: 0 7px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
  background: var(--surface);
  color: var(--ink);
}
.badge--sale {
  background: var(--accent);
  color: #fff;
}
.badge--new {
  background: var(--ink);
  color: #fff;
}
.card__add {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition:
    transform 0.15s,
    background 0.15s,
    color 0.15s;
}
.card__add .icon {
  width: 18px;
  height: 18px;
  stroke-width: 1.6;
}
.card__add:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.card__add:active {
  transform: scale(0.96);
}
.card__add.is-added {
  background: var(--ok);
  color: #fff;
  border-color: var(--ok);
}
.badge--premium {
  background: var(--ink);
  color: #fff;
}
.card__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.card__brand {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--muted);
}
.card__title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.card__title a::after {
  content: "";
  position: absolute;
  inset: 0;
}
.card__spec {
  font-size: 0.8rem;
  color: var(--muted);
}
.card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.price {
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}
.price--sale {
  color: var(--accent);
}
.price-old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.85rem;
}
.card__omnibus {
  font-size: 0.7rem;
  color: var(--muted);
}
.card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--muted);
}
.card__stock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--ok);
  font-weight: 600;
}
.card__stock--order {
  color: var(--warn);
}
.card__stock .dot {
  width: 7px;
  height: 7px;
}
.band {
  grid-column: 1 / -1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px;
  display: grid;
  gap: 14px;
}
.band__score {
  display: flex;
  align-items: center;
  gap: 14px;
}
.band__num {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--ink);
}
.band__num small {
  font-size: 1rem;
  color: var(--muted);
  font-family: var(--font-body);
}
.band h3 {
  font-size: 1rem;
}
.band p {
  margin: 2px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.band__quotes {
  display: grid;
  gap: 10px;
}
.band__quotes .quote:nth-child(n + 2) {
  display: none;
}
@media (min-width: 640px) {
  .band__quotes .quote:nth-child(2) {
    display: block;
  }
}
@media (min-width: 1280px) {
  .band__quotes .quote:nth-child(3) {
    display: block;
  }
}
.quote {
  background: var(--tint);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 0.85rem;
  margin: 0;
}
.quote p {
  margin: 0 0 6px;
  color: var(--body);
}
.quote footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--muted);
}
.quote .stars {
  font-size: 0.7rem;
}
.band__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (min-width: 640px) {
  .band {
    grid-template-columns: 300px 1fr;
    align-items: center;
    padding: 22px 26px;
  }
  .band__quotes {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1280px) {
  .band__quotes {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.loadmore {
  text-align: center;
  margin: 28px 0 8px;
  display: grid;
  gap: 12px;
  justify-items: center;
}
.loadmore__progress {
  width: 200px;
  height: 3px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.loadmore__progress i {
  display: block;
  height: 100%;
  width: var(--pct, 30%);
  background: var(--ink);
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 0.9rem;
  margin-top: 8px;
}
.pagination a,
.pagination span {
  min-width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  padding: 0 10px;
}
.pagination a:hover {
  background: var(--tint);
}
.pagination [aria-current] {
  background: var(--ink);
  color: #fff;
}
.pagination .pagination__next {
  width: auto;
  padding: 0 12px;
  font-weight: 600;
}
.empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 16px;
  color: var(--muted);
}
.empty h3 {
  margin-bottom: 6px;
}
.prose {
  max-width: 72ch;
}
.prose p {
  color: var(--body);
}
.prose a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.plp-content {
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 40px;
}
.plp-content > * {
  min-width: 0;
}
@media (min-width: 1024px) {
  .plp-content {
    grid-template-columns: 1fr 1fr;
    gap: 48px 64px;
  }
  .plp-content > .span2 {
    grid-column: 1 / -1;
  }
}
.compare {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
}
.compare table {
  min-width: 560px;
  font-size: 0.88rem;
}
.compare th,
.compare td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.compare th {
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  background: var(--tint);
}
.compare tr:last-child td {
  border-bottom: 0;
}
.compare td:first-child {
  font-weight: 600;
  color: var(--ink);
}
.compare .stars {
  font-size: 0.75rem;
}
.faq {
  display: grid;
  gap: 8px;
}
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}
.faq summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--muted);
  line-height: 1;
  flex: none;
}
.faq details[open] summary::after {
  content: "–";
}
.faq .faq__a {
  padding: 0 16px 16px;
  color: var(--body);
  font-size: 0.92rem;
}
.faq .faq__a p {
  margin: 0;
}
.refine {
  display: grid;
  gap: 18px;
}
@media (min-width: 640px) {
  .refine {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .refine {
    grid-template-columns: repeat(4, 1fr);
  }
}
.refine h3 {
  font-size: 0.75rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.refine a {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.9rem;
  color: var(--body);
}
.refine a:hover {
  color: var(--brand-deep);
}
.refine a span {
  color: var(--muted);
  font-size: 0.8rem;
}
.hero {
  padding: 28px 0 32px;
  background: #f1eae6;
  border-bottom: 1px solid var(--line);
}
.hero__grid {
  display: grid;
  gap: 28px;
  align-items: center;
}
.hero h1 {
  max-width: 16ch;
}
.hero .eyebrow {
  color: var(--brand);
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--body);
  max-width: 46ch;
  margin: 14px 0 20px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__micro {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--muted);
}
.hero__micro li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero__micro .icon {
  color: var(--ok);
  width: 16px;
  height: 16px;
}
.hero__visual {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  padding-top: 6px;
}
.hero__visual .tile {
  display: block;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(74, 59, 57, 0.16);
  border: 1px solid rgba(98, 78, 76, 0.12);
  min-height: 0;
}
.hero__visual .tile:first-child {
  grid-row: 1 / 3;
  aspect-ratio: 3 / 4;
}
.hero__visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero__proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 6px 14px 6px 8px;
  font-size: 0.82rem;
  margin-bottom: 18px;
  color: var(--body);
}
.hero__proof b {
  color: var(--ink);
}
.hero__proof:hover {
  border-color: var(--ink);
}
.trust {
  scroll-margin-top: calc(var(--header-h) + 12px);
}
.hero__proof .stars {
  font-size: 0.75rem;
}
@media (min-width: 1024px) {
  .hero {
    padding: 56px 0 56px;
  }
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
  }
  .hero__visual {
    gap: 16px;
    padding-top: 0;
  }
}
.cats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
.cats .cat {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--tint);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  transition: border-color 0.2s;
}
.cats .cat:hover {
  border-color: var(--ink);
}
.cat__media {
  aspect-ratio: 4 / 3;
  background: var(--tint-2);
}
.cat__media svg {
  width: 100%;
  height: 100%;
}
.cat__body {
  padding: 12px 14px 14px;
  background: var(--surface);
  flex: 1;
}
.cat__body h3 {
  font-size: 1rem;
}
.cat__body p {
  margin: 2px 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}
.cat--main {
  grid-column: 1 / -1;
}
.cat--main .cat__media {
  aspect-ratio: 16 / 9;
}
.cat--main .cat__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cat--main h3 {
  font-size: 1.15rem;
}
.cat a::after {
  content: "";
  position: absolute;
  inset: 0;
}
@media (min-width: 1024px) {
  .cats {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .cat--main {
    grid-column: auto;
    grid-row: span 1;
  }
  .cat--main .cat__media {
    aspect-ratio: auto;
    flex: 1;
    min-height: 280px;
  }
}
.spotlight {
  padding-top: 0;
}
.spotlight__grid {
  display: grid;
  gap: 22px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.spotlight__grid > * {
  min-width: 0;
}
.spotlight__text h2 {
  font-size: 1.55rem;
}
.spotlight__text > p {
  color: var(--body);
  margin: 10px 0 14px;
  max-width: 46ch;
}
.spotlight__usps {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  color: var(--body);
}
.spotlight__usps li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.spotlight__usps .icon {
  width: 16px;
  height: 16px;
  color: var(--ok);
}
.spotlight .btn--lg {
  width: 100%;
  white-space: normal;
}
@media (min-width: 1024px) {
  .spotlight__grid {
    grid-template-columns: 360px 1fr;
    gap: 40px;
    padding: 32px;
    align-items: center;
  }
  .spotlight .btn--lg {
    width: auto;
    white-space: nowrap;
    padding-inline: 20px;
  }
}
.policy {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--ink);
  border-radius: var(--r);
  background: var(--surface);
}
.policy .icon {
  width: 26px;
  height: 26px;
  color: var(--ink);
  flex: none;
}
.policy h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.policy p {
  margin: 0 0 6px;
  font-size: 0.9rem;
  color: var(--body);
  max-width: 80ch;
}
.policy a {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.policy--page {
  margin: 0 0 22px;
}
.brandlist article.is-premium {
  border-color: var(--ink);
}
.brandlist article .eyebrow {
  margin-bottom: 0;
}
.pick {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) {
  .pick {
    grid-template-columns: repeat(4, 1fr);
  }
}
.pick__col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px;
}
.pick__col h3 {
  font-size: 0.75rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.pick__col a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.92rem;
}
.pick__col a span {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.8rem;
  flex: none;
  margin-left: 8px;
}
.pick__col a:hover {
  color: var(--brand);
}
.trust {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust__grid {
  display: grid;
  gap: 28px;
}
.trust__intro {
  margin: 8px 0 22px;
}
@media (min-width: 1024px) {
  .trust__grid {
    grid-template-columns: 380px 1fr;
    gap: 56px;
    align-items: start;
  }
}
.score {
  display: flex;
  gap: 18px;
  align-items: center;
}
.score__ring {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 8px solid var(--ink);
  flex: none;
  display: grid;
  place-items: center;
  background: var(--tint);
}
.score__ring > div {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--surface);
  display: grid;
  place-items: center;
  text-align: center;
}
.score__ring b {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--ink);
  line-height: 1;
  display: block;
}
.score__ring small {
  font-size: 0.7rem;
  color: var(--muted);
}
.score__meta b {
  display: block;
  font-size: 1rem;
  color: var(--ink);
}
.score__meta .stars {
  font-size: 0.95rem;
}
.score__meta p {
  margin: 4px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.score__meta a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  font-size: 0.85rem;
}
.subs {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}
.subs li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
  font-size: 0.82rem;
  align-items: center;
}
.subs li b {
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.subs .bar {
  grid-column: 1 / -1;
  height: 5px;
  border-radius: 3px;
  background: var(--tint-2);
  overflow: hidden;
}
.subs .bar i {
  display: block;
  height: 100%;
  width: var(--pct);
  background: var(--ink);
  border-radius: 3px;
}
.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.platform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.82rem;
  color: var(--body);
  background: var(--page);
}
.platform .mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}
.platform .mark--wwk {
  background: #1e7f4f;
}
.platform .mark--tp {
  background: #00b67a;
}
.platform .stars {
  font-size: 0.8rem;
  vertical-align: -1px;
}
.stars--tp {
  --star: #00b67a;
}
.platform b {
  color: var(--ink);
}
.platform small {
  color: var(--muted);
}
.reviews-grid {
  display: grid;
  gap: 12px;
}
@media (min-width: 640px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.review {
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px 16px;
  font-size: 0.9rem;
}
.review header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.review header b {
  color: var(--ink);
  font-size: 0.9rem;
}
.review header time {
  color: var(--muted);
  font-size: 0.75rem;
}
.review p {
  margin: 0 0 8px;
  color: var(--body);
}
.review footer {
  font-size: 0.72rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 4px 6px;
  align-items: center;
}
.review footer .icon {
  width: 14px;
  height: 14px;
  color: var(--ok);
}
.review header time {
  white-space: nowrap;
}
.review header .row {
  min-width: 0;
  flex-wrap: wrap;
}
.review__translated {
  font-style: italic;
}
.review__variant {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--muted);
  margin: -2px 0 8px !important;
}
.review__variant .icon {
  width: 13px;
  height: 13px;
  flex: none;
}
.reviews__policy {
  margin: -4px 0 14px;
}
.reviews__policy summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--body);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 5px 12px 5px 9px;
  background: var(--surface);
}
.reviews__policy summary::-webkit-details-marker {
  display: none;
}
.reviews__policy summary:hover,
.reviews__policy[open] summary {
  border-color: var(--ink);
  color: var(--ink);
}
.reviews__policy summary .icon {
  width: 14px;
  height: 14px;
}
.reviews__policy p {
  margin: 10px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 70ch;
}
.reviews__toggle:not(:checked) ~ .reviews-grid .review--more {
  display: none;
}
.reviews__more {
  margin-top: 14px;
}
.reviews__more-close,
.reviews__toggle:checked ~ .reviews__more .reviews__more-open {
  display: none;
}
.reviews__toggle:checked ~ .reviews__more .reviews__more-close {
  display: inline;
}
.guarantees {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) {
  .guarantees {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
.guarantee {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.guarantee .icon {
  width: 24px;
  height: 24px;
  color: var(--ink);
  flex: none;
}
.guarantee h3 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.guarantee p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}
@media (max-width: 639px) {
  .guarantee {
    flex-direction: column;
    gap: 8px;
  }
}
.brands {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (min-width: 900px) {
  .brands {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.brands a {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  min-width: 0;
}
.brands a b {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--ink);
}
@media (min-width: 900px) {
  .brands a.is-premium b {
    padding-right: 96px;
  }
}
.brands a.is-premium {
  border-color: var(--ink);
}
.brands a .badge--premium {
  position: static;
  order: -1;
  align-self: flex-start;
  margin-bottom: 4px;
}
@media (min-width: 900px) {
  .brands a .badge--premium {
    position: absolute;
    right: 14px;
    top: 16px;
    margin: 0;
  }
}
.brands a span {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}
.brands a:hover {
  border-color: var(--ink);
}
.kb {
  display: grid;
  gap: 12px;
}
@media (min-width: 640px) {
  .kb {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
.kb article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kb article h3 {
  font-size: 1rem;
}
.kb article p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  flex: 1;
}
.kb article a {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.85rem;
}
.pdp {
  display: grid;
  gap: 24px;
  padding-top: 8px;
}
.pdp > *,
.hero__grid > *,
.trust__grid > *,
.plp > * {
  min-width: 0;
}
@media (min-width: 1024px) {
  .pdp {
    grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
    gap: 56px;
    align-items: start;
  }
  .pdp__buy {
    position: sticky;
    top: calc(var(--header-h) + 16px);
  }
}
.gallery {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin-inline: calc(-1 * var(--gutter));
  padding-inline: var(--gutter);
}
.gallery::-webkit-scrollbar {
  display: none;
}
.gallery figure {
  margin: 0;
  flex: 0 0 86%;
  aspect-ratio: 3 / 4;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--tint);
  scroll-snap-align: center;
  position: relative;
}
.gallery figure svg {
  width: 100%;
  height: 100%;
  background: var(--bg, var(--tint));
}
.gallery figure figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.85);
  padding: 3px 8px;
  border-radius: 6px;
  color: var(--muted);
}
.gallery__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-top: 10px;
}
.gallery__bar .gallery__dots {
  grid-column: 2;
  margin-top: 0;
}
.gallery__3d {
  grid-column: 3;
  justify-self: end;
  gap: 6px;
}
.gallery__3d .icon {
  width: 16px;
  height: 16px;
}
.gallery__3d[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.viewer3d__stage {
  aspect-ratio: 3 / 4;
  max-height: 70vh;
  border-radius: var(--r);
  background: var(--tint);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.viewer3d__stage model-viewer {
  width: 100%;
  height: 100%;
  --poster-color: transparent;
}
.viewer3d__msg {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 20px;
  text-align: center;
}
.viewer3d__hint {
  margin: 8px 0 0;
}
@media (min-width: 1024px) {
  .viewer3d__stage {
    aspect-ratio: 4 / 3;
  }
}
.gallery__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}
.gallery__dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--line-strong);
}
.gallery__dots i.is-active {
  background: var(--ink);
}
@media (min-width: 1024px) {
  .gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
  }
  .gallery figure {
    flex: none;
  }
  .gallery figure:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 3;
  }
  .gallery__dots {
    display: none;
  }
}
.pdp__brand {
  font-size: 0.75rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.pdp__title {
  font-size: 1.75rem;
  margin: 4px 0 8px;
}
.pdp__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}
.pdp__rating a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pdp__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin: 16px 0 2px;
}
.pdp__price .price {
  font-size: 1.8rem;
}
.pdp__price .price-old {
  font-size: 1rem;
}
.pdp__price .badge--sale {
  align-self: center;
}
.pdp__incl {
  font-size: 0.78rem;
  color: var(--muted);
}
.pdp__omnibus {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}
.stock {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 6px;
  font-weight: 600;
  color: var(--ok);
  font-size: 0.95rem;
}
.delivery {
  font-size: 0.9rem;
  color: var(--body);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.delivery .icon {
  color: var(--ok);
  width: 18px;
  height: 18px;
  margin-top: 3px;
}
.delivery b {
  color: var(--ink);
  display: block;
}
.delivery__note {
  display: block;
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 2px;
}
.pdp__quality {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--muted);
}
.pdp__quality .sep {
  color: var(--line-strong);
}
.qstars {
  color: var(--star);
  letter-spacing: 0;
  font-size: 0.95em;
  white-space: nowrap;
}
.qstars__off {
  color: var(--line-strong);
}
.glance {
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.glance li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 8px 10px;
}
.glance li span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--muted);
}
.glance li b {
  color: var(--ink);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.glance .swatch {
  width: 12px;
  height: 12px;
}
.buy {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.micro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 12px;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--muted);
}
.micro li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.micro .icon {
  width: 16px;
  height: 16px;
  color: var(--ok);
}
.nudge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  color: var(--body);
  transition: border-color 0.2s;
}
.nudge:hover {
  border-color: var(--ink);
  color: var(--body);
}
.nudge__mark {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
}
.nudge > span:nth-child(2) {
  flex: 1;
  min-width: 0;
}
.nudge b {
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
}
.nudge small {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}
.nudge .icon {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex: none;
}
.pdp__free {
  color: var(--ok);
  font-weight: 600;
}
.acc {
  margin-top: 20px;
  border-top: 1px solid var(--line);
}
.acc details {
  border-bottom: 1px solid var(--line);
}
.acc summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  font-weight: 600;
  color: var(--ink);
}
.acc summary small {
  margin-left: auto;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--ok);
  text-align: right;
}
.acc summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--muted);
  line-height: 1;
  margin-left: auto;
  flex: none;
  width: 16px;
  text-align: center;
}
.acc summary:has(small)::after {
  margin-left: 10px;
}
.acc details[open] summary::after {
  content: "–";
}
.acc__body {
  padding: 0 0 16px;
  font-size: 0.9rem;
  color: var(--body);
}
.acc__body p {
  margin: 0 0 8px;
}
.acc__body a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ship {
  width: 100%;
  font-size: 0.88rem;
}
.ship th {
  text-align: left;
  font-size: 0.7rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  padding: 0 0 6px;
}
.ship td {
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
}
.ship td:last-child,
.ship td:nth-child(2),
.ship th:last-child,
.ship th:nth-child(2) {
  text-align: right;
  white-space: nowrap;
}
.ship td:first-child {
  color: var(--ink);
}
.ship .free {
  color: var(--ok);
  font-weight: 600;
}
.ship th.ship__head {
  text-align: left;
  padding-top: 4px;
}
.ship__free {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ok);
  font-weight: 600;
  margin: 0 0 8px !important;
}
.ship__free .icon {
  width: 16px;
  height: 16px;
}
.pdp__sections {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}
.pdp__sections > * {
  min-width: 0;
}
.specs {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  overflow: hidden;
  max-width: 640px;
}
.specs tr:nth-child(even) {
  background: var(--zebra);
}
.specs th,
.specs td {
  text-align: left;
  padding: 10px 14px;
  font-size: 0.9rem;
  vertical-align: top;
}
.specs th {
  width: 38%;
  color: var(--muted);
  font-weight: 500;
}
.specs td {
  color: var(--ink);
  font-weight: 500;
}
.sisters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 4px 8px;
  margin: -4px -4px 0;
}
.sisters::-webkit-scrollbar {
  display: none;
}
.sister {
  flex: 0 0 132px;
  display: grid;
  gap: 4px;
  text-align: center;
  font-size: 0.78rem;
}
.sister .card__media {
  aspect-ratio: 1;
  border-radius: var(--r-sm);
}
.sister b {
  color: var(--ink);
  font-size: 0.85rem;
}
.sister span {
  color: var(--muted);
  font-size: 0.72rem;
}
.sister.is-current .card__media {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.tabs label {
  padding: 10px 14px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  font-size: 0.92rem;
}
#tab-product,
#tab-shop {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  margin: 0;
}
.tabpanel {
  display: none;
}
#tab-product:checked ~ .tabs label[for="tab-product"],
#tab-shop:checked ~ .tabs label[for="tab-shop"] {
  color: var(--ink);
  border-color: var(--ink);
}
#tab-product:checked ~ .tabpanel--product,
#tab-shop:checked ~ .tabpanel--shop {
  display: block;
}
.reviews__summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--muted);
}
.reviews__summary b {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0;
}
.stickybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 10px var(--gutter) max(10px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(110%);
  transition: transform 0.25s;
  box-shadow: 0 -6px 20px rgba(60, 40, 35, 0.08);
}
.stickybar.is-visible {
  transform: none;
}
.stickybar__info {
  min-width: 0;
  flex: 1;
}
.stickybar__info b {
  display: block;
  font-size: 1.05rem;
  color: var(--ink);
}
.stickybar__info span {
  font-size: 0.75rem;
  color: var(--ok);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.stickybar .btn {
  flex: 0 0 auto;
}
.stickybar__thumb,
.stickybar__name {
  display: none;
}
@media (min-width: 1024px) {
  .stickybar {
    top: var(--header-h);
    bottom: auto;
    border-top: 0;
    border-bottom: 1px solid var(--line);
    padding: 10px var(--gutter);
    transform: translateY(-120%);
    box-shadow: 0 8px 24px rgba(60, 40, 35, 0.08);
    gap: 16px;
  }
  .stickybar.is-visible {
    transform: none;
  }
  .stickybar > * {
    max-width: none;
  }
  .stickybar__thumb {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--tint);
    flex: none;
  }
  .stickybar__thumb svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  .stickybar__name {
    display: block;
    flex: 1;
    min-width: 0;
  }
  .stickybar__name b {
    display: block;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .stickybar__name span {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .stickybar__info {
    flex: 0 0 auto;
    text-align: right;
  }
  .stickybar .btn {
    min-height: 44px;
  }
}
.cart {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(92vw, 400px);
  height: 100dvh;
  max-height: none;
  max-width: none;
  margin: 0;
  background: var(--page);
  box-shadow: var(--sh-3);
  flex-direction: column;
}
.cart[open] {
  display: flex;
  transition: transform 0.25s;
}
@starting-style {
  .cart[open] {
    transform: translateX(100%);
  }
}
.cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 8px 20px;
  border-bottom: 1px solid var(--line);
  min-height: var(--header-h);
}
.cart__head h2 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
}
.cart__body {
  padding: 16px 20px;
  flex: 1;
  overflow: auto;
}
.cart__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: start;
}
.cart__item .card__media {
  aspect-ratio: 3/4;
  border-radius: var(--r-sm);
}
.cart__item b {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}
.cart__item span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}
.cart__item .price {
  font-size: 1rem;
  margin-top: 4px;
  display: block;
}
.cart__foot {
  padding: 16px 20px max(16px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
}
.cart__line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}
.cart__line b {
  color: var(--ink);
}
.cart__line .is-free {
  color: var(--ok);
}
.cart__free {
  display: grid;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--tint);
}
.cart__free-head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart__free-head .icon {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--ink);
}
.cart__free small {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
}
.cart__freebar {
  height: 5px;
  border-radius: 3px;
  background: var(--tint-2);
  overflow: hidden;
}
.cart__freebar i {
  display: block;
  height: 100%;
  width: var(--pct, 0%);
  background: var(--ink);
  border-radius: 3px;
  transition: width 0.3s;
}
.cart__free.is-free {
  background: var(--ok-soft);
}
.cart__free.is-free .icon,
.cart__free.is-free small {
  color: var(--ok);
}
.cart__free.is-free .cart__freebar {
  display: none;
}
.cart__note {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  gap: 6px;
  align-items: center;
}
.cart__note .icon {
  width: 14px;
  height: 14px;
  color: var(--ok);
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 84px;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  opacity: 0;
  transition:
    opacity 0.2s,
    transform 0.2s;
  z-index: 90;
  pointer-events: none;
  max-width: 90vw;
  text-align: center;
}
.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (min-width: 1024px) {
  .toast {
    bottom: 32px;
  }
}
.footer {
  margin-top: 56px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  color: var(--body);
  font-size: 0.88rem;
}
.footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.footer__trust .platform {
  background: var(--page);
  padding: 6px 10px;
  font-size: 0.78rem;
  gap: 7px;
  white-space: nowrap;
}
.footer__trust .platform .mark {
  width: 20px;
  height: 20px;
}
.footer__trust .platform .stars {
  font-size: 0.72rem;
}
.footer__pay {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}
.footer__pay span {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 3px 7px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--page);
  white-space: nowrap;
}
.footer__pay small {
  color: var(--muted);
  margin-right: 4px;
  white-space: nowrap;
}
@media (min-width: 1100px) {
  .footer__trust {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .footer__pay {
    margin-left: auto;
    flex-wrap: nowrap;
  }
}
.footer__grid {
  display: grid;
  gap: 28px;
  padding: 32px 0;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
  }
}
.footer h4 {
  font-size: 0.75rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.footer li {
  margin-bottom: 8px;
}
.footer a:hover {
  color: var(--brand);
  text-decoration: underline;
}
.footer__company {
  grid-column: 1 / -1;
}
@media (min-width: 1024px) {
  .footer__company {
    grid-column: auto;
  }
}
.footer__company .logo {
  width: 130px;
  margin-bottom: 14px;
}
.footer__company address {
  font-style: normal;
  line-height: 1.6;
}
.footer__company address b {
  color: var(--ink);
}
.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 16px 0 calc(16px + 64px);
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .footer__bottom {
    padding-bottom: 16px;
  }
}
.concept-note {
  position: fixed;
  left: 10px;
  bottom: 10px;
  z-index: 95;
  font-size: 0.68rem;
  background: rgba(42, 33, 31, 0.85);
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  opacity: 0.55;
  pointer-events: none;
}
@media (max-width: 1023px) {
  .concept-note {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
.facts {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
  overflow: hidden;
  font-size: 0.9rem;
}
.facts th,
.facts td {
  text-align: left;
  padding: 9px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.facts tr:last-child th,
.facts tr:last-child td {
  border-bottom: 0;
}
.facts th {
  color: var(--muted);
  font-weight: 500;
  width: 46%;
}
.facts td {
  color: var(--ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.facts a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.guide,
.brandlist {
  display: grid;
  gap: 12px;
}
@media (min-width: 640px) {
  .guide {
    grid-template-columns: repeat(3, 1fr);
  }
  .guide--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .brandlist {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .guide--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.compare--brands table {
  min-width: 860px;
}
.compare tr.is-recommended td {
  background: var(--brand-soft);
}
.compare td .badge {
  margin-left: 6px;
  vertical-align: 1px;
}
.compare td a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.advice,
.vs {
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
}
.advice {
  border-left: 4px solid var(--ink);
}
.advice h3,
.vs h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.advice p,
.vs p {
  margin: 0;
  color: var(--body);
  font-size: 0.95rem;
  max-width: 90ch;
}
.vs .btn {
  margin-top: 12px;
}
.brandlist article h3 a:hover {
  color: var(--brand);
}
@media (min-width: 1024px) {
  .brandlist {
    grid-template-columns: repeat(3, 1fr);
  }
}
.guide article,
.brandlist article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.guide h3,
.brandlist h3 {
  font-size: 1rem;
}
.guide p,
.brandlist p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--body);
  flex: 1;
}
.guide a,
.brandlist a {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
}
.guide a:hover,
.brandlist a:hover {
  color: var(--brand);
}
.kbhead {
  display: grid;
  gap: 16px;
  padding: 8px 0 16px;
}
.kbhead h1 small {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}
.kbhead__intro {
  color: var(--body);
  max-width: 70ch;
  margin: 8px 0 0;
}
.kbsearch {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--surface);
  color: var(--muted);
}
.kbsearch input {
  border: 0;
  outline: 0;
  flex: 1;
  font: inherit;
  background: transparent;
  color: var(--ink);
  min-width: 0;
}
.kbsearch:focus-within {
  border-color: var(--ink);
}
@media (min-width: 1024px) {
  .kbhead {
    grid-template-columns: 1fr 320px;
    align-items: end;
    gap: 40px;
  }
}
.kbgrid {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}
@media (min-width: 640px) {
  .kbgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .kbgrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
.kbcard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.2s;
}
.kbcard:hover {
  border-color: var(--ink);
}
.kbcard.is-hidden {
  display: none;
}
.kbcard__media {
  aspect-ratio: 16 / 9;
  background: var(--tint);
  overflow: hidden;
}
.kbcard__media svg {
  width: 100%;
  height: 100%;
}
.kbcard__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.kbcard__cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--muted);
}
.kbcard h2 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
}
.kbcard h2 a::after {
  content: "";
  position: absolute;
  inset: 0;
}
.kbcard p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--body);
  flex: 1;
}
.kbcard__more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
@media (min-width: 1024px) {
  .kbcard--lead {
    grid-column: span 2;
    flex-direction: row;
  }
  .kbcard--lead .kbcard__media {
    aspect-ratio: auto;
    flex: 0 0 46%;
    max-height: 360px;
  }
  .kbcard--lead h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0;
  }
}
.kbcta {
  display: grid;
  gap: 14px;
  align-items: center;
  margin-top: 36px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.kbcta > * {
  min-width: 0;
}
.kbcta .btn {
  white-space: normal;
  text-align: center;
}
.kbcta h2 {
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 700;
}
.kbcta p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
@media (min-width: 1024px) {
  .kbcta {
    grid-template-columns: 1fr auto;
  }
}
.article {
  display: grid;
  gap: 24px;
  padding-top: 8px;
}
.article > * {
  min-width: 0;
}
@media (min-width: 1024px) {
  .article {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 56px;
    align-items: start;
  }
  .article__side {
    position: sticky;
    top: calc(var(--header-h) + 24px);
  }
}
.toc {
  border-left: 2px solid var(--line);
  padding-left: 14px;
}
.toc h2 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.toc a {
  font-size: 0.88rem;
  color: var(--body);
}
.toc a:hover {
  color: var(--ink);
  text-decoration: underline;
}
@media (max-width: 1023px) {
  .toc {
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 14px 16px;
    background: var(--surface);
  }
  .toc ol {
    display: grid;
    gap: 4px;
  }
}
.article__main {
  max-width: 74ch;
}
.article__head h1 {
  margin: 6px 0 12px;
}
.article__lead {
  font-size: 1.1rem;
  color: var(--body);
}
.article__meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.article__body h2 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 30px 0 8px;
  letter-spacing: 0;
}
.article__body p {
  font-size: 1.02rem;
  line-height: 1.7;
}
.article__body ul,
.article__body ol {
  padding-left: 1.3em;
  margin: 0 0 1em;
  list-style: disc;
}
.article__body li {
  margin-bottom: 4px;
  color: var(--body);
}
.article__products {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.article__main > section {
  margin-top: 36px;
}
.contact {
  display: grid;
  gap: 28px;
}
.contact > * {
  min-width: 0;
}
@media (min-width: 1024px) {
  .contact {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 56px;
    align-items: start;
  }
}
.contact__channels {
  display: grid;
  gap: 12px;
}
.channel {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: border-color 0.2s;
}
.channel:hover {
  border-color: var(--ink);
}
.channel--static:hover {
  border-color: var(--line);
}
.channel .icon {
  width: 24px;
  height: 24px;
  color: var(--ink);
  flex: none;
  margin-top: 2px;
}
.channel h2 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}
.channel p {
  margin: 2px 0 4px;
  font-size: 0.88rem;
  color: var(--muted);
}
.channel b {
  color: var(--ink);
  font-size: 0.95rem;
}
.channel address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--body);
  margin-top: 4px;
}
.contactform {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
}
.field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}
.field > span:first-child {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}
.field input,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font: inherit;
  background: var(--page);
  color: var(--ink);
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--ink);
  background: var(--surface);
}
.field input:user-invalid,
.field textarea:user-invalid {
  border-color: var(--accent);
}
.field .select {
  min-height: 46px;
  background: var(--page);
}
.field-row {
  display: grid;
  gap: 0 14px;
}
@media (min-width: 640px) {
  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}
.pdp__blurb {
  margin: 14px 0 4px;
  color: var(--body);
  font-size: 0.95rem;
}
.opts {
  border: 0;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.opts legend {
  float: left;
  width: 100%;
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.opt input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.opt span {
  display: inline-block;
  padding: 8px 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
}
.opt input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.opt input:focus-visible + span {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.svcgrid {
  display: grid;
  gap: 10px;
}
@media (min-width: 640px) {
  .svcgrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (min-width: 1024px) {
  .svcgrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.svccard {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 16px 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  color: var(--body);
  transition: border-color 0.2s;
}
.svccard:hover {
  border-color: var(--ink);
  color: var(--body);
}
.svccard > .icon {
  width: 22px;
  height: 22px;
  color: var(--ink);
  flex: none;
  margin-top: 2px;
}
.svccard > div {
  flex: 1;
  min-width: 0;
}
.svccard h3 {
  font-size: 0.98rem;
  margin-bottom: 2px;
}
.svccard p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}
.svccard__chev {
  color: var(--line-strong);
  align-self: center;
}
.svccard--policy {
  border-left: 4px solid var(--ink);
}
.svcnav h2 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.svcnav h3 {
  font-size: 0.68rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--muted);
  margin: 14px 0 4px;
}
.svcnav ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.svcnav a {
  display: block;
  padding: 7px 10px;
  margin-left: -10px;
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--body);
}
.svcnav a:hover {
  background: var(--tint);
  color: var(--ink);
}
.svcnav a[aria-current] {
  background: var(--ink);
  color: #fff;
  font-weight: 600;
}
.svc-toc {
  margin-top: 22px;
}
@media (max-width: 1023px) {
  .svcnav {
    display: none;
  }
  .svc-toc {
    margin-top: 0;
  }
}
.svc__body h3 {
  font-size: 1.02rem;
  margin: 22px 0 6px;
}
.tablewrap {
  overflow-x: auto;
  margin: 0 0 1.2em;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--surface);
}
.svc__body table,
.article__body table {
  font-size: 0.92rem;
  margin: 0;
  min-width: 100%;
}
.svc__body th,
.svc__body td {
  text-align: left;
  padding: 9px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.svc__body th {
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--tint);
}
.svc__body tr:last-child td {
  border-bottom: 0;
}
.svc__body blockquote {
  margin: 0 0 1.2em;
  padding: 14px 18px;
  border-left: 3px solid var(--ink);
  background: var(--surface);
  border-radius: 0 var(--r) var(--r) 0;
  font-size: 0.95rem;
}
.svc__body blockquote p:last-child {
  margin: 0;
}
.svc__body hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 24px 0;
}
.svc__body .form-block {
  border: 1px dashed var(--line-strong);
  border-radius: var(--r);
  padding: 18px 20px;
  background: var(--surface);
}
.video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 960px;
  border-radius: var(--r);
  background: var(--tint);
  border: 1px dashed var(--line-strong);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.video__play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--sh-2);
}
.video__play svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}
.video__label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}
@media (min-width: 1024px) {
  h1,
  .h1 {
    font-size: 2.25rem;
  }
  h2,
  .h2 {
    font-size: 1.6rem;
  }
  .spotlight__text h2 {
    font-size: 1.8rem;
  }
  .pdp__title {
    font-size: 2rem;
  }
}
.trust__grid--summary {
  grid-template-columns: minmax(0, 760px);
}
