:root {
  --ink: #121417;
  --paper: #f6f3ed;
  --shell: #fffdf8;
  --linen: #e7e2d8;
  --mist: #dfeee9;
  --lilac: #ece7f4;
  --clay: #b45445;
  --berry: #9f3e62;
  --olive: #586f5b;
  --blue: #405f86;
  --gold: #d6a145;
  --line: rgba(18, 20, 23, 0.14);
  --muted: rgba(18, 20, 23, 0.64);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 112px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.topline {
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 8px 18px;
  background: var(--ink);
  color: #fff8ec;
  font-size: 13px;
  text-align: center;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 243, 237, 0.92);
  backdrop-filter: blur(16px);
}

.header-start {
  display: flex;
  align-items: center;
  min-width: 0;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  place-items: center;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.mobile-menu { display: none; }

.nav {
  display: flex;
  gap: clamp(12px, 2vw, 24px);
  align-items: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 38px);
  letter-spacing: 0.11em;
  text-align: center;
}

.actions { justify-content: flex-end; }
.icon-button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  padding: clamp(54px, 7vw, 96px) clamp(20px, 6vw, 86px);
  min-height: 520px;
  background: var(--shell);
}

.page-hero.compact { min-height: 460px; }

.page-hero.media {
  color: #fff8ec;
  background:
    linear-gradient(90deg, rgba(18, 20, 23, 0.75), rgba(18, 20, 23, 0.32)),
    var(--hero) center / cover no-repeat;
}

.eyebrow {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}

.media .eyebrow { color: rgba(255, 248, 236, 0.78); }

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  margin: 0 0 22px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  max-width: 900px;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

h3 { letter-spacing: 0; }
p {
  color: var(--muted);
  line-height: 1.55;
}

.media p { color: rgba(255, 248, 236, 0.82); }

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 253, 248, 0.84);
  color: var(--ink);
}

.hero-panel p { margin: 0; }

section {
  padding: clamp(52px, 7vw, 96px) clamp(20px, 6vw, 86px);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 32px;
}

.section-head p {
  max-width: 560px;
  margin: 0;
}

.button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 760;
  background: #fff8ec;
  color: var(--ink);
}

.button.dark {
  background: var(--ink);
  color: #fff8ec;
  border-color: var(--ink);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill, .tag {
  border: 1px solid rgba(18, 20, 23, 0.16);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(18, 20, 23, 0.72);
  font-size: 13px;
  background: rgba(255, 253, 248, 0.65);
}

.grid-4, .grid-3, .grid-2 {
  display: grid;
  gap: 18px;
}
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  border: 1px solid rgba(18, 20, 23, 0.1);
  border-radius: 8px;
  background: var(--shell);
  overflow: hidden;
}

.card-body { padding: 20px; }
.card h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.15;
}
.card p { margin: 0 0 18px; }

.product-card img,
.visual-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  background: var(--linen);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-weight: 760;
}

.filter-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 28px;
}

.filters {
  position: sticky;
  top: 98px;
  align-self: start;
  border-top: 2px solid var(--ink);
  padding-top: 20px;
}

.filter-group {
  border-bottom: 1px solid var(--line);
  padding: 0 0 18px;
  margin-bottom: 18px;
}

.filter-group strong {
  display: block;
  margin-bottom: 10px;
}

.pdp-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  grid-template-areas: "gallery buy";
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.gallery {
  grid-area: gallery;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.gallery .main {
  grid-column: span 2;
}

.gallery figure {
  position: relative;
  margin: 0;
  min-width: 0;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: var(--linen);
}

.gallery .main img { aspect-ratio: 5 / 4; }

.gallery figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 7px 9px;
  border-radius: 4px;
  background: rgba(18, 20, 23, 0.78);
  color: #fff8ec;
  font-size: 11px;
}

.buy-box {
  grid-area: buy;
  position: sticky;
  top: 100px;
  border-top: 2px solid var(--ink);
  padding-top: 24px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 20px 0;
  font-size: 28px;
  font-weight: 800;
}

.price small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.price del {
  color: rgba(18, 20, 23, 0.42);
  font-size: 18px;
}

.swatches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0 20px;
}

.swatch {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid #fff;
  outline: 1px solid rgba(18, 20, 23, 0.24);
  background: var(--swatch);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.spec-grid div {
  background: var(--shell);
  padding: 16px;
}

.spec-grid strong {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.band-dark {
  background: var(--ink);
  color: #fff8ec;
}

.band-dark p,
.band-dark .pill {
  color: rgba(255, 248, 236, 0.74);
}

.band-mist { background: var(--mist); }
.band-lilac { background: var(--lilac); }

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.flow-step {
  background: var(--shell);
  padding: 22px;
  min-height: 210px;
}

.num {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff8ec;
  font-weight: 800;
  margin-bottom: 18px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--shell);
  padding: 18px 20px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: 8px;
}

.compare-cell {
  background: var(--shell);
  padding: 18px;
  min-height: 170px;
}

.compare-cell.head {
  background: var(--ink);
  color: #fff8ec;
  min-height: auto;
}

.compare-cell h3,
.compare-cell h4 {
  margin: 0 0 10px;
  line-height: 1.15;
}

.compare-cell p,
.compare-cell li {
  color: var(--muted);
  line-height: 1.45;
}

.compare-cell.head p,
.compare-cell.head li {
  color: rgba(255, 248, 236, 0.76);
}

.compare-cell ul {
  padding-left: 18px;
  margin: 0;
}

.score-list {
  display: grid;
  gap: 14px;
}

.score-row {
  display: grid;
  grid-template-columns: 150px 1fr 38px;
  gap: 12px;
  align-items: center;
}

.score-track {
  height: 10px;
  border-radius: 999px;
  background: rgba(18, 20, 23, 0.12);
  overflow: hidden;
}

.score-fill {
  height: 100%;
  width: var(--score);
  background: var(--ink);
}

.verdict {
  border-left: 4px solid var(--ink);
  padding: 18px 20px;
  background: var(--shell);
  border-radius: 0 8px 8px 0;
}

.verdict.good { border-color: var(--olive); }
.verdict.warn { border-color: var(--gold); }
.verdict.risk { border-color: var(--clay); }

.source-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.source-list a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--shell);
  font-weight: 760;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.shot-card {
  border: 1px solid rgba(18, 20, 23, 0.1);
  border-radius: 8px;
  background: var(--shell);
  overflow: hidden;
}

.shot-frame {
  aspect-ratio: 4 / 3;
  overflow: auto;
  background: var(--linen);
  border-bottom: 1px solid var(--line);
}

.shot-frame.tall {
  aspect-ratio: 4 / 4.7;
}

.shot-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  display: block;
}

.shot-body {
  padding: 18px;
}

.shot-body h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.shot-body p {
  margin: 0 0 14px;
}

.shot-body ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.caption-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--shell);
  border: 1px solid var(--line);
}

th, td {
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  padding: 14px;
}

th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sticky-buy {
  position: sticky;
  bottom: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px clamp(20px, 6vw, 86px);
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
}

footer {
  padding: 42px clamp(20px, 6vw, 86px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.panel-title {
  margin: 10px 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
}

.catalog-status {
  display: block;
  color: var(--berry);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-status::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 5px 1px 0;
  border-radius: 50%;
  background: var(--gold);
}

.status-draft::before { background: var(--gold); }
.status-pending::before { background: var(--clay); }
.status-verified::before { background: var(--olive); }

.shortcut-card,
.confidence-card,
.recommendation {
  min-height: 230px;
}

.shortcut-card .card-body,
.confidence-card .card-body,
.recommendation .card-body {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.shortcut-number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--berry);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.text-link,
.product-card-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: auto;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.filter-heading,
.results-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.filter-heading {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.text-button {
  min-height: 36px;
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.filter-button {
  min-height: 38px;
  border: 1px solid rgba(18, 20, 23, 0.18);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 253, 248, 0.68);
  font-size: 13px;
  cursor: pointer;
}

.filter-button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff8ec;
}

.filter-disclaimer {
  margin: 4px 0 0;
  font-size: 12px;
}

.catalog-results { min-width: 0; }

.results-toolbar {
  min-height: 58px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(18, 20, 23, 0.18);
}

.results-toolbar strong,
.results-toolbar span {
  display: block;
}

.results-toolbar span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.catalog-product {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.catalog-product[hidden] { display: none; }

.catalog-product .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.catalog-product h3 {
  margin-top: 8px;
  font-size: 21px;
}

.product-image-link {
  position: relative;
  display: block;
}

.product-image-link img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  background: var(--linen);
}

.image-note {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 8px;
  border-radius: 4px;
  background: rgba(18, 20, 23, 0.78);
  color: #fff8ec;
  font-size: 11px;
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: auto 0 16px;
  padding: 1px;
  background: var(--line);
}

.product-facts div {
  min-width: 0;
  padding: 10px;
  background: var(--shell);
}

.product-facts dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-facts dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.product-facts .status-value { color: var(--clay); }

.active-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-height: 38px;
  margin: -4px 0 18px;
}

.active-filters:empty { display: none; }

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 5px 9px 5px 11px;
  border: 1px solid rgba(18, 20, 23, 0.22);
  border-radius: 999px;
  background: var(--shell);
  font-size: 12px;
  font-weight: 800;
}

.filter-chip button {
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff8ec;
  cursor: pointer;
  line-height: 1;
}

.filter-clear { margin-left: auto; }

.result-empty {
  min-height: 320px;
  padding: 52px 24px;
  border: 1px dashed rgba(18, 20, 23, 0.28);
  text-align: center;
  background: rgba(255, 253, 248, 0.58);
}

.result-empty strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
}

.result-empty p {
  max-width: 430px;
  margin: 14px auto 22px;
}

.product-stage {
  padding-top: clamp(34px, 3vw, 46px);
  background: var(--shell);
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  border-bottom: 1px solid currentColor;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.pdp-preview-media { display: none; }

.product-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-title {
  margin: 0;
  font-size: clamp(38px, 3.6vw, 54px);
  line-height: 0.98;
}

.currency-toggle {
  flex: 0 0 auto;
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.currency-toggle button {
  min-width: 48px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.currency-toggle button[aria-pressed="true"] {
  background: var(--ink);
  color: #fff8ec;
}

.product-summary {
  margin: 12px 0;
  font-size: 15px;
}

.product-tags { margin-bottom: 14px; }

.price-block {
  margin: 0 0 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-label {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-block .price { margin: 5px 0 0; }

.variant-group {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
}

.variant-group legend {
  width: 100%;
  margin-bottom: 9px;
  font-weight: 800;
}

.variant-group legend span {
  float: right;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.option-button {
  min-height: 42px;
  padding: 8px;
  border: 1px solid rgba(18, 20, 23, 0.22);
  border-radius: 5px;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.option-button span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.option-button[aria-pressed="true"] {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
  background: rgba(223, 238, 233, 0.72);
}

.option-button:disabled,
.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.selection-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 14px;
}

.selection-detail > span {
  padding: 12px;
  border: 1px solid var(--line);
}

.selection-detail strong,
.selection-detail span span {
  display: block;
}

.selection-detail strong {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.selection-detail span span {
  font-size: 13px;
  font-weight: 750;
}

.quantity-cart-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 10px;
}

.quantity-stepper {
  min-height: 48px;
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.quantity-stepper button {
  height: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
}

.quantity-stepper output {
  text-align: center;
  font-weight: 800;
}

.add-button { width: 100%; }

.buy-now {
  width: 100%;
  margin-top: 10px;
  background: var(--shell);
}

.purchase-terms {
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.purchase-terms p {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.purchase-terms strong { color: var(--ink); }
.purchase-terms span { color: var(--muted); }

.demo-message {
  margin: 14px 0 0;
  padding: 12px;
  border-left: 3px solid var(--berry);
  background: rgba(159, 62, 98, 0.07);
  font-size: 12px;
}

.video-placeholder {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  color: #fff8ec;
}

.video-placeholder span {
  margin-bottom: auto;
  color: rgba(255, 248, 236, 0.68);
  font-size: 12px;
}

.video-placeholder strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.video-placeholder p {
  margin: 8px 0 0;
  color: rgba(255, 248, 236, 0.7);
}

.compliance-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--clay);
  background: rgba(180, 84, 69, 0.07);
}

.proof-requirement,
.recommendation { min-height: 250px; }

.sticky-buy > div {
  min-width: 0;
}

.sticky-buy { display: none; }

.sticky-buy strong,
.sticky-buy span {
  display: block;
}

.sticky-buy span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 980px) {
  header { grid-template-columns: 1fr auto 1fr; }
  .brand { text-align: center; }
  .primary-nav { display: none; }
  .menu-toggle { display: inline-grid; }
  .mobile-menu {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 18px;
    padding: 12px 0 2px;
    border-top: 1px solid var(--line);
  }
  .mobile-menu:not([hidden]) { display: grid; }
  .mobile-menu a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .actions { justify-content: flex-end; }
  .page-hero,
  .filter-layout,
  .pdp-layout,
  .compare-grid,
  .source-list,
  .shot-grid,
  .grid-4,
  .grid-3,
  .catalog-grid,
  .flow {
    grid-template-columns: 1fr 1fr;
  }
  .filters { position: static; }
  .buy-box { position: static; }
  .product-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .topline { font-size: 12px; }
  header { padding: 14px 16px; gap: 10px; }
  .brand { font-size: 23px; }
  .actions a { display: none; }
  .mobile-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-hero,
  .filter-layout,
  .pdp-layout,
  .compare-grid,
  .source-list,
  .shot-grid,
  .grid-4,
  .grid-3,
  .catalog-grid,
  .grid-2,
  .flow {
    grid-template-columns: 1fr;
  }
  h1 { font-size: 46px; }
  .section-head { display: block; }
  .section-head p { margin-top: 14px; }
  section, .page-hero { padding: 44px 18px; }
  .hero-panel { padding: 18px; }
  .page-hero.compact { min-height: auto; }
  .product-stage {
    grid-template-areas:
      "buy"
      "gallery";
    padding-top: 18px;
  }
  .back-link { margin-bottom: 12px; }
  .pdp-preview-media {
    position: relative;
    display: block;
    margin-bottom: 12px;
  }
  .pdp-preview-media img {
    width: 100%;
    height: 116px;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    object-position: center 38%;
    background: var(--linen);
  }
  .pdp-preview-media span {
    position: absolute;
    left: 10px;
    bottom: 10px;
    padding: 6px 8px;
    border-radius: 4px;
    background: rgba(18, 20, 23, 0.78);
    color: #fff8ec;
    font-size: 11px;
  }
  .product-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .filter-clear { margin-left: 0; }
  .product-heading-row { display: block; }
  .product-title { font-size: 30px; }
  .buy-box .eyebrow { margin-bottom: 7px; }
  .currency-toggle { margin-top: 8px; }
  .product-summary,
  .product-tags { display: none; }
  .price-block { margin-bottom: 10px; padding: 8px 0; }
  .price-block .price { font-size: 25px; }
  .variant-group { margin-bottom: 10px; }
  .variant-group legend { margin-bottom: 6px; font-size: 13px; }
  .variant-group legend span {
    float: none;
    display: block;
    margin-top: 1px;
  }
  .option-button { min-height: 40px; padding: 5px; }
  .option-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .selection-detail { display: none; }
  .product-facts { grid-template-columns: 1fr 1fr; }
  .results-toolbar { align-items: flex-end; }
  .gallery { grid-template-columns: 1fr; }
  .gallery .main { grid-column: auto; }
  .spec-grid { grid-template-columns: 1fr; }
  .score-row { grid-template-columns: 1fr; gap: 6px; }
  table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
  }
  th, td { min-width: 150px; }
  .has-sticky-buy { padding-bottom: 78px; }
  .sticky-buy {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    padding: 10px 14px;
  }
  .sticky-buy strong {
    max-width: 165px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
  }
  .sticky-buy .button {
    width: auto;
    min-width: 138px;
  }
}
