:root {
  --bg: #f5f6f4;
  --bg-soft: #fafaf8;
  --panel: #ffffff;
  --panel-strong: #ffffff;
  --text: #11161b;
  --muted: #5f666d;
  --line: rgba(17, 22, 27, 0.09);
  --accent: #f05a28;
  --accent-dark: #b93f17;
  --shadow: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 40px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  background: rgba(245, 246, 244, 0.96);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: #11161b;
  color: #f5f7f8;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__text strong {
  font-size: 0.98rem;
}

.brand__text small {
  color: var(--muted);
  text-transform: lowercase;
}

.site-nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--accent-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 0;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.header-cta,
.button--primary {
  background: var(--text);
  color: #f4f7f9;
}

.header-cta {
  min-width: 168px;
}

.button--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  padding: 56px 0 24px;
}

.hero__copy h1,
.section__heading h2,
.product-showcase__details h2,
.seo-strip h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero__copy h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  max-width: 10ch;
}

.hero__lead,
.section__intro,
.seo-strip p,
.product-showcase__details p,
.product-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
}

.hero__actions,
.cta-row,
.filter-row,
.footer-links,
.catalog-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.hero__facts li,
.filter-pill {
  padding: 8px 10px;
  border-radius: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.hero__showcase {
  display: grid;
  gap: 18px;
  align-content: end;
}

.mobile-featured {
  display: none;
}

.highlight-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 0;
  padding: 18px;
  box-shadow: none;
}

.highlight-card--large {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, transparent 0%, rgba(10, 14, 18, 0.36) 100%),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.16), transparent 28%),
    linear-gradient(140deg, #596771 0%, #1b2329 52%, #414c55 100%);
  color: #f4f7f9;
}

.highlight-card--large p,
.highlight-card--large span {
  color: rgba(244, 247, 249, 0.82);
}

.badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 0;
  background: rgba(244, 247, 249, 0.12);
  border: 1px solid rgba(244, 247, 249, 0.22);
  margin-bottom: auto;
}

.highlight-card h2 {
  margin: 0 0 8px;
  font-size: 2rem;
  font-family: "Space Grotesk", sans-serif;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.highlight-card--stack strong {
  font-size: 1.3rem;
  line-height: 1.15;
}

.highlight-card__label {
  margin: 0 0 8px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
}

.section {
  padding: 56px 0;
}

main.section {
  padding-top: 28px;
}

.section--soft {
  margin-top: 12px;
  padding: 24px 0;
  border-radius: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
}

.section__heading {
  margin-bottom: 24px;
}

.section__heading--split {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 20px;
  align-items: end;
}

.section__heading h2,
.product-showcase__details h2,
.seo-strip h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.category-grid,
.product-grid {
  display: grid;
  gap: 18px;
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 16px;
}

.category-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-height: 64px;
  padding: 8px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.category-card span {
  font-size: 1rem;
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.05;
}

.category-card small {
  font-size: 0.74rem;
  line-height: 1.25;
}

.category-card small,
.product-meta,
.detail-grid span {
  color: var(--muted);
}

.filter-pill {
  cursor: pointer;
  font: inherit;
  min-height: 34px;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-pill.is-active {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.catalog-controls {
  margin-top: 12px;
  align-items: end;
  gap: 10px 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.catalog-mobile-sticky {
  display: grid;
  gap: 10px;
}

#catalog-page .filter-row {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 0 2px;
}

#catalog-page .filter-pill {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.catalog-search,
.catalog-select {
  display: grid;
  gap: 4px;
  min-width: 160px;
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.catalog-search {
  flex: 1 1 240px;
}

.catalog-search input,
.catalog-select select {
  min-height: 36px;
  padding: 0 0 2px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.catalog-search input:focus,
.catalog-select select:focus {
  outline: none;
  border-color: var(--text);
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.catalog-more {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  margin-bottom: 0;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--text);
  border-radius: 0;
  background: var(--text);
  color: #f4f7f9;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background 0.2s ease, color 0.2s ease;
  pointer-events: none;
}

.back-to-top:hover {
  background: #f4f7f9;
  color: var(--text);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.product-card {
  overflow: hidden;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.product-card__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.84;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}

.product-card__visual--real {
  background-color: #d8dde1;
}

.product-card__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-card__visual.is-missing {
  background: linear-gradient(135deg, #d7c1ad, #f2e7d8);
}

.product-card__visual--one {
  background:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,0.22), transparent 24%),
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.25)),
    linear-gradient(160deg, #6d675f, #2d2927 55%, #9d7259);
}

.product-card__visual--two {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.2)),
    linear-gradient(150deg, #9f8f7b, #47413a 55%, #1c1a19);
}

.product-card__visual--three {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(0,0,0,0.15)),
    linear-gradient(150deg, #6d88b0, #355170 50%, #23374e);
}

.product-card__visual--four {
  background:
    radial-gradient(circle at 70% 18%, rgba(255,255,255,0.18), transparent 20%),
    linear-gradient(150deg, #87937e, #4c5a47 50%, #21251f);
}

.product-card__body {
  display: grid;
  gap: 8px;
  padding: 10px 0 12px;
}

.product-card__body h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.product-meta,
.product-card__footer,
.detail-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 10px;
}

.product-meta,
.product-card__footer {
  font-size: 0.8rem;
  line-height: 1.25;
}

.product-card__footer strong {
  font-size: 0.95rem;
}

.product-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  padding: 24px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.gallery-main,
.gallery-thumb {
  border-radius: 26px;
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center;
}

.gallery-main {
  min-height: 280px;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(246, 249, 250, 0.94);
  max-width: 360px;
  margin: 0 auto;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.gallery-thumb {
  aspect-ratio: 1;
}


.similar-box {
  padding: 18px 0;
  border-radius: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
}

.similar-box__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 14px;
}

.similar-box h3 {
  margin: 0 0 4px;
}

.similar-box__head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.similar-box__link {
  flex: 0 0 auto;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.home-info-block h3 {
  margin: 0 0 10px;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-info-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.seo-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding: 24px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding: 20px 0 28px;
  border-radius: 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.is-hidden {
  display: none;
}

.product-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.product-top-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.8fr);
  grid-template-areas:
    "headline headline"
    "gallery hero";
  align-items: stretch;
  gap: 24px;
  padding: 0 0 24px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.product-top-card__headline {
  grid-area: headline;
  display: grid;
  gap: 10px;
  padding: 4px 4px 6px;
}

.product-top-card__headline h1 {
  max-width: 16ch;
}

.product-page-layout__gallery,
.product-page-layout__content {
  display: grid;
  gap: 16px;
}

.product-page-layout__gallery {
  grid-area: gallery;
  min-width: 0;
}

.product-gallery-card,
.product-info-card {
  padding: 0;
  border-radius: 0;
  border: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.product-gallery-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-self: stretch;
  overflow: hidden;
}

.product-gallery-stage {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 18px 18px 10px;
  border-radius: 0;
  background: #fff;
  border: 0;
}

.product-gallery-stage__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.gallery-strip--product {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  padding: 0 18px 18px;
  border-top: 0;
  border-left: 0;
  background: transparent;
  overflow-y: visible;
  align-content: stretch;
}

.gallery-strip--product .gallery-thumb {
  width: 100%;
  aspect-ratio: 1;
  min-height: 56px;
}

.product-info-card--hero {
  grid-area: hero;
  align-self: start;
  padding: 18px;
  background: rgba(252, 253, 253, 0.9);
  border: 1px solid var(--line);
}

.product-hero-core {
  display: grid;
  gap: 14px;
}

.product-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
}

.product-back-link:hover {
  color: var(--text);
  transform: translateX(-2px);
}

.product-back-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-size: 1rem;
  line-height: 1;
}

.product-page-layout h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.98;
}

.product-price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 0;
}

.product-price-line strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.product-price-line span {
  color: var(--muted);
  font-size: 1rem;
  white-space: nowrap;
}

.product-brand-line {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.product-status-chip {
  padding: 7px 12px;
  border-radius: 0;
  background: transparent;
  border: 1px solid rgba(17, 22, 27, 0.14);
  color: var(--text);
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-spec-grid--secondary {
  grid-template-columns: 1fr;
  gap: 0;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.product-spec {
  display: grid;
  gap: 6px;
  padding: 12px 0;
  border-radius: 0;
  border: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
  background: transparent;
}

.product-spec-grid--primary .product-spec {
  padding: 12px 0 10px;
}

.product-spec-grid--primary .product-spec strong {
  font-size: 1.12rem;
  line-height: 1.1;
}

.product-spec small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-spec--secondary {
  background: transparent;
}

.product-spec--secondary strong {
  font-size: 0.96rem;
}

.product-cta-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding-top: 6px;
}

.product-cta-row .button {
  min-height: 50px;
}

.product-cta-row__primary {
  min-width: 0;
}

.product-cta-row__secondary {
  padding: 0 16px;
}

.product-info-card h3 {
  margin: 0 0 12px;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.gallery-thumb--interactive {
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.gallery-thumb--interactive:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.gallery-thumb--interactive.is-active {
  border-color: var(--text);
  box-shadow: none;
}

.gallery-thumb--interactive img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.similar-product-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 8px 14px;
  align-items: start;
  padding: 0 0 12px;
  border-radius: 0;
  border: 1px solid var(--line);
  border-left: 0;
  border-right: 0;
  background: transparent;
  color: var(--text);
}

.similar-product-card__image {
  display: block;
  width: 86px;
  aspect-ratio: 0.92;
  grid-row: span 3;
  border-radius: 0;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}

.similar-product-card__meta,
.similar-product-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.similar-product-card strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.28;
}

.similar-product-card__footer small:first-child {
  color: var(--text);
  font-weight: 800;
}

.cta-row--stack {
  display: grid;
}

.similar-box--product {
  padding: 0;
  border: 0;
  background: transparent;
}

.similar-box--product h3 {
  margin-bottom: 0;
}

.product-mobile-bar {
  display: none;
}

.site-footer--product {
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .site-header,
  .hero,
  .section__heading--split,
  .product-showcase,
  .seo-strip,
  .site-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .site-header {
    align-items: flex-start;
    padding: 16px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .category-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-page-layout {
    grid-template-columns: 1fr;
  }

  .product-top-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "headline"
      "gallery"
      "hero";
  }

  .product-gallery-card {
    display: block;
    overflow: visible;
  }

  .product-gallery-stage {
    min-height: 260px;
    padding: 8px;
  }

  .product-gallery-stage__image {
    max-height: 240px;
  }

  .gallery-strip--product {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 8px;
    padding: 8px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    overflow-y: visible;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 12px, 1200px);
    margin: 0 auto 12px;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    gap: 8px;
    padding: 8px 0;
    background: rgba(245, 246, 244, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .brand__text small {
    display: none;
  }

  .site-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  main.section {
    padding-top: 8px;
    padding-bottom: 12px;
  }

  .catalog-page-heading {
    position: static;
    margin: 0;
    padding: 0;
    background: transparent;
    border-bottom: 0;
  }

  .catalog-page-heading .section__intro {
    display: none;
  }

  .catalog-mobile-sticky {
    position: sticky;
    top: 51px;
    z-index: 35;
    margin: 0 -6px 0;
    padding: 6px 6px 6px;
    background: rgba(245, 246, 244, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .hero {
    gap: 10px;
    padding: 10px 0 2px;
  }

  .hero__copy h1 {
    font-size: 1.9rem;
    line-height: 0.98;
    max-width: none;
  }

  .hero__lead,
  .section__intro,
  .seo-strip p,
  .site-footer p {
    line-height: 1.4;
    font-size: 0.88rem;
  }

  .hero__actions,
  .filter-row,
  .footer-links,
  .catalog-controls {
    gap: 8px;
  }

  .hero__actions {
    margin-top: 6px;
  }

  .hero__lead {
    margin: 0;
    max-width: 34ch;
  }

  .hero__actions .button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .hero__actions .button--primary {
    display: inline-flex;
  }

  .hero__actions .button--secondary {
    background: transparent;
    color: var(--muted);
    border-color: var(--line);
  }

  .filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  #catalog-page .filter-row {
    position: static;
    margin: 6px 0 0;
    padding: 0 0 2px;
    background: transparent;
    border-bottom: 0;
  }

  .filter-row::-webkit-scrollbar {
    display: none;
  }

  .filter-pill {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .hero__facts {
    gap: 6px;
    margin-top: 12px;
  }

  .hero__facts {
    display: none;
  }

  .hero__showcase {
    display: none;
  }

  .mobile-featured {
    display: block;
    padding: 4px 0 2px;
  }

  .mobile-featured-card {
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    background: var(--panel);
    color: var(--text);
  }

  .mobile-featured-card .badge {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-featured-card h2 {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.1;
    font-family: "Space Grotesk", sans-serif;
  }

  .mobile-featured-card__image {
    display: block;
    aspect-ratio: 1.08;
    border: 1px solid var(--line);
    background-color: #d8dde1;
    background-size: cover;
    background-position: center;
  }

  .mobile-featured-card p {
    margin: 0;
  }

  .mobile-featured-card > p:first-of-type {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .mobile-featured-card .price-row {
    margin-top: 2px;
  }

  .mobile-featured-card .price-row strong {
    font-size: 1.1rem;
  }

  .mobile-featured-card .price-row span {
    color: var(--muted);
    font-size: 0.82rem;
  }

  .highlight-card {
    padding: 12px;
  }

  .highlight-card--large {
    min-height: 200px;
  }

  .highlight-card h2 {
    font-size: 1.35rem;
  }

  .price-row {
    margin-top: 8px;
  }

  .section {
    padding: 28px 0;
  }

  #catalog {
    padding-bottom: 8px;
  }

  .section__heading {
    margin-bottom: 12px;
  }

  #catalog-preview .section__heading--split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  #catalog-preview .section__heading--split > div {
    margin: 0;
  }

  #catalog-preview .section__intro {
    margin: 0;
  }

  .section__heading h2,
  .seo-strip h2 {
    font-size: 1.5rem;
  }

  #catalog .section__intro {
    display: none;
  }

  #categories {
    display: none;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 10px;
  }

  .similar-products {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 42px;
    padding: 6px 0;
  }

  .category-card span {
    font-size: 0.88rem;
  }

  .category-card small {
    display: none;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
  }

  .section--soft,
  .product-showcase,
  .seo-strip,
  .site-footer {
    padding: 12px 0;
  }

  .site-footer {
    margin-top: 8px;
  }

  .catalog-controls {
    gap: 8px;
    padding-top: 8px;
  }

  .catalog-search,
  .catalog-select {
    min-width: 0;
    font-size: 0.66rem;
  }

  .catalog-search {
    flex-basis: 100%;
  }

  .catalog-search input,
  .catalog-select select {
    min-height: 32px;
    padding: 0 0 2px;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.68rem;
  }

  .filter-pill {
    min-height: 28px;
    padding-bottom: 4px;
    font-size: 0.68rem;
  }

  .product-card__visual {
    aspect-ratio: 0.62;
  }

  .product-card__body {
    gap: 4px;
    padding: 7px 0 8px;
  }

  .product-card__body h3 {
    font-size: 0.92rem;
    line-height: 1.18;
  }

  .product-meta,
  .product-card__footer {
    font-size: 0.74rem;
  }

  .product-card__body h3 {
    font-size: 0.86rem;
    line-height: 1.15;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-meta,
  .product-card__footer {
    font-size: 0.72rem;
    gap: 4px 8px;
  }

  .product-card__footer {
    justify-content: flex-start;
  }

  .product-card__footer span {
    display: none;
  }

  .product-card__footer strong {
    font-size: 0.82rem;
  }

  .product-price-line {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 12px 0 16px;
  }

  .product-brand-line {
    margin: 0 0 12px;
    font-size: 0.88rem;
  }

  .product-page-layout {
    gap: 10px;
    padding-bottom: 8px;
  }

  .product-top-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "headline"
      "gallery"
      "hero";
    gap: 10px;
    padding: 0 0 12px;
    border-radius: 0;
  }

  .product-top-card > * {
    min-width: 0;
  }

  .product-top-card__headline {
    padding: 0;
    gap: 4px;
  }

  .product-back-link {
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .product-back-link__icon {
    width: 26px;
    height: 26px;
    font-size: 0.92rem;
  }

  .product-top-card__headline h1 {
    max-width: none;
  }

  .eyebrow {
    display: none;
  }

  .product-page-layout__content {
    gap: 8px;
  }

  .product-page-layout__gallery {
    gap: 8px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .product-gallery-stage {
    min-height: 220px;
    padding: 8px;
    border-radius: 0;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .product-gallery-stage__image {
    max-height: 208px;
  }

  .product-info-card,
  .product-gallery-card {
    display: block;
    overflow: visible;
  }

  .product-gallery-card,
  .product-info-card {
    padding: 0;
    border-radius: 0;
    border: 0;
  }

  .product-gallery-card {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .product-info-card--hero {
    padding: 0;
    background: transparent;
    border: 0;
  }

  .product-page-layout h1 {
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.04;
  }

  .product-price-line strong {
    font-size: 1.55rem;
  }

  .product-price-line span {
    font-size: 0.88rem;
  }

  .product-price-line {
    align-items: center;
  }

  .product-price-line__meta {
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
    gap: 6px 10px;
  }

  .product-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .product-spec-grid--secondary {
    padding-top: 0;
    border-top: 0;
  }

  .product-cta-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-top: 2px;
  }

  .product-cta-row .button {
    min-height: 46px;
    padding: 0 12px;
  }

  .product-spec {
    padding: 8px 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
  }

  .product-spec small {
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .product-status-chip {
    padding: 6px 10px;
    font-size: 0.72rem;
  }

  .product-spec--secondary {
    display: none;
  }

  .gallery-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 60px;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .gallery-strip--product {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 60px;
    grid-template-columns: none;
    grid-auto-rows: auto;
    gap: 8px;
    padding: 8px 0 2px;
    border-top: 0;
    border-left: 0;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .gallery-strip--product::-webkit-scrollbar {
    display: none;
  }

  .gallery-strip::-webkit-scrollbar {
    display: none;
  }

  .gallery-thumb {
    width: 60px;
    height: 60px;
    border-radius: 0;
  }

  .product-description {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .cta-row--stack {
    grid-template-columns: 1fr;
  }

  .product-cta-card {
    display: none;
  }

  .product-mobile-bar {
    position: sticky;
    bottom: 6px;
    z-index: 30;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    margin-top: 4px;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 251, 245, 0.96);
    box-shadow: 0 10px 24px rgba(49, 31, 19, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .product-mobile-bar__meta {
    display: grid;
    gap: 2px;
  }

  .product-mobile-bar__meta strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
  }

  .product-mobile-bar__meta span {
    color: var(--muted);
    font-size: 0.78rem;
  }

  .product-mobile-bar__cta {
    min-height: 38px;
    padding-inline: 12px;
  }

  .site-footer--product {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    padding: 10px 0 10px;
  }

  .back-to-top {
    bottom: 76px;
  }

  .home-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .home-info-block h3 {
    font-size: 0.78rem;
    margin-bottom: 6px;
  }

  .home-info-list {
    padding-left: 16px;
    line-height: 1.45;
    font-size: 0.88rem;
  }

  .seo-strip {
    display: none;
  }

  .similar-product-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .similar-product-card__image {
    width: 64px;
  }

  .similar-products {
    grid-template-columns: 1fr;
  }

  .similar-box__head {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }
}
