:root {
  --page: #f6f7f5;
  --surface: #ffffff;
  --surface-soft: #eef3ef;
  --ink: #1b201d;
  --muted: #69726c;
  --line: #dfe5df;
  --accent: #176f5d;
  --accent-dark: #0f5748;
  --accent-soft: #e3f2ed;
  --warm: #b85b35;
  --shadow: 0 18px 48px rgba(25, 36, 31, 0.08);
  --radius: 8px;
  --content: min(100% - 40px, 1440px);
  --narrow: min(100% - 40px, 1120px);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.shop-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 84px;
  padding: 16px max(20px, calc((100vw - 1440px) / 2 + 20px));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.shop-brand,
.shop-nav,
.shop-actions {
  display: flex;
  align-items: center;
}

.shop-brand {
  gap: 12px;
  min-height: 48px;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0;
}

.shop-brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--surface);
  font-size: 13px;
  font-weight: 900;
}

.shop-nav {
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.shop-nav a,
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: var(--surface);
  color: var(--muted);
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.nav-dropdown-trigger {
  gap: 6px;
  font: inherit;
  font-weight: 800;
}

.shop-nav a:hover,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger[aria-expanded="true"] {
  border-color: var(--line);
  background: var(--surface-soft);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(25, 36, 31, 0.06);
}

.nav-dropdown-trigger span {
  color: var(--muted);
  font-size: 12px;
  transform: translateY(1px);
}

.shop-actions {
  justify-content: flex-end;
  gap: 8px;
}

.shop-actions button,
.shop-action-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-size: 19px;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.shop-actions button:hover,
.shop-action-link:hover {
  border-color: #c7d5ca;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.wishlist-header-link span {
  position: absolute;
  top: -7px;
  right: -7px;
  display: none;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  padding: 0 6px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 20px;
  text-align: center;
}

.wishlist-header-link.has-items span {
  display: block;
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  gap: 28px 36px;
  max-height: 0;
  overflow: hidden;
  border-bottom: 1px solid transparent;
  padding: 0 max(20px, calc((100vw - 1440px) / 2 + 20px));
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 64px rgba(25, 36, 31, 0);
  opacity: 0;
  transition:
    max-height 180ms ease,
    padding 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease;
}

.shop-header.mega-open .mega-menu {
  max-height: 560px;
  border-bottom-color: var(--line);
  padding-top: 30px;
  padding-bottom: 34px;
  box-shadow: 0 28px 64px rgba(25, 36, 31, 0.12);
  opacity: 1;
}

.mega-group {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}

.mega-group h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
}

.mega-group a {
  display: block;
  color: #303832;
  font-size: 14px;
  line-height: 1.35;
}

.mega-group a:hover {
  color: var(--accent-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: var(--content);
  min-height: 560px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 84px) 0 58px;
}

.hero-copy {
  max-width: 720px;
}

.hero-badge,
.section-kicker,
.section-heading p {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy > p:not(.hero-badge) {
  max-width: 620px;
  margin: 22px 0 0;
  color: #4d5750;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-link,
.secondary-link-site {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 850;
}

.primary-link {
  background: var(--accent);
  color: #fff;
}

.primary-link:hover {
  background: var(--accent-dark);
}

.secondary-link-site {
  border: 1px solid var(--line);
  background: var(--surface);
}

.hero-visual {
  min-height: 430px;
  display: grid;
  place-items: center;
}

.visual-card {
  position: relative;
  width: min(500px, 100%);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, #26322d, #53665a 55%, #d9ded5);
  box-shadow: var(--shadow);
}

.print-grid {
  position: absolute;
  inset: 14%;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 28px 28px;
  transform: perspective(700px) rotateX(62deg) rotateZ(-8deg);
}

.miniature-shape {
  position: absolute;
  left: 50%;
  bottom: 20%;
  width: 150px;
  height: 235px;
  transform: translateX(-50%);
  border-radius: 48% 48% 28% 28%;
  background:
    radial-gradient(circle at 50% 13%, #f0eee8 0 18px, transparent 19px),
    linear-gradient(90deg, transparent 0 28px, #cfd4ca 29px 120px, transparent 121px),
    linear-gradient(#eeeee8, #abb2a8);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.26);
}

.miniature-shape::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: -24px;
  height: 34px;
  border-radius: 50%;
  background: #202622;
}

.visual-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 13px;
}

.visual-caption span {
  color: var(--muted);
}

.category-strip,
.products-section,
.about-section,
.producers-section {
  padding: 68px max(20px, calc((100vw - 1440px) / 2 + 20px));
}

.products-section,
.producers-section,
.content-page,
.shop-footer {
  background: var(--surface);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.news-heading {
  border-top: 1px solid var(--line);
  padding-top: 44px;
}

.news-controls,
.producer-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-controls button,
.producer-arrows button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
}

.news-controls button:hover,
.producer-arrows button:hover {
  border-color: #c7d5ca;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.news-controls button:disabled {
  cursor: default;
  opacity: 0.35;
}

.news-controls a {
  margin-left: 10px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.section-heading h2,
.about-section h2,
.producers-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: 0;
}

.category-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 26px;
}

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

.category-card,
.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(25, 36, 31, 0.06);
}

.category-card {
  min-height: 220px;
  padding: 20px;
}

.category-card span,
.new-label {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 8px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 850;
}

.category-card span {
  margin-bottom: 36px;
}

.category-card h3,
.product-card h3 {
  margin: 0 0 10px;
  font-weight: 850;
}

.category-card h3 {
  font-size: 20px;
}

.category-card p,
.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-card {
  position: relative;
  overflow: hidden;
}

.product-card-link {
  display: block;
  color: inherit;
}

.product-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 190px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, #eef2ef, #faf7f3);
}

.product-mini {
  width: 74px;
  height: 112px;
  border-radius: 44% 44% 22% 22%;
  background: linear-gradient(#f7f2e8, #b8b0a5);
  box-shadow: 0 22px 44px rgba(25, 36, 31, 0.16);
}

.product-photo {
  width: 100%;
  height: 190px;
  object-fit: contain;
  padding: 16px;
}

.product-body {
  min-height: 140px;
  padding: 16px 14px 18px;
  text-align: center;
}

.product-price {
  display: block;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.product-body h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.new-label {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.wishlist-button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 21px;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.wishlist-button:hover,
.wishlist-button.active {
  border-color: #d7b9ad;
  background: #fff5f1;
  color: var(--warm);
}

.wishlist-empty {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--surface);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 40px;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.about-section p:last-child {
  margin: 0;
  color: #465049;
  font-size: 18px;
  line-height: 1.7;
}

.producers-section {
  border-top: 1px solid var(--line);
}

.producers-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: var(--narrow);
  margin: 0 auto 44px;
}

.producer-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
  min-height: 100px;
  width: var(--narrow);
  margin: 0 auto;
}

.producer-list a {
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
}

.content-page {
  min-height: 58vh;
  padding: 60px max(20px, calc((100vw - 1440px) / 2 + 20px)) 74px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  width: var(--narrow);
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--ink);
  font-weight: 800;
}

.content-card {
  width: var(--narrow);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding-top: 38px;
}

.content-card h1 {
  margin: 0 0 24px;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  line-height: 1;
}

.page-copy {
  display: grid;
  gap: 18px;
  max-width: 780px;
  color: #3f4842;
  font-size: 17px;
  line-height: 1.65;
}

.page-copy h2 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 850;
}

.page-copy p {
  margin: 0;
}

.news-catalog-page .content-page {
  padding-top: 38px;
}

.news-catalog-page .breadcrumbs,
.news-catalog-page #pageKicker {
  display: none;
}

.news-catalog-page .content-card {
  border-top: 0;
  padding-top: 0;
}

.news-catalog-page .content-card h1 {
  margin-bottom: 22px;
}

.news-catalog-page .page-copy {
  display: block;
  max-width: none;
}

.product-detail-page .content-page {
  padding-top: 38px;
}

.product-detail-page .content-card {
  border-top: 0;
  padding-top: 0;
}

.product-detail-page .content-card > h1 {
  display: none;
}

.product-detail-page .page-copy {
  display: grid;
  max-width: none;
  gap: 32px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}

.product-detail-gallery,
.product-detail-summary,
.product-description-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.product-detail-gallery {
  overflow: hidden;
}

.product-detail-image {
  display: grid;
  place-items: center;
  min-height: 520px;
  background: linear-gradient(135deg, #eef2ef, #fbf8f2);
}

.product-detail-image .product-photo {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  padding: 28px;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.product-thumbs img {
  width: 100%;
  height: 82px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfb;
  padding: 6px;
}

.product-detail-summary {
  display: grid;
  gap: 22px;
  padding: 30px;
}

.product-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-detail-tags span {
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.product-detail-summary h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  line-height: 1.12;
}

.product-lead {
  margin: 0;
  color: #4f5b53;
  font-size: 18px;
  line-height: 1.6;
}

.product-buy-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #f8faf7;
}

.product-buy-box strong {
  color: var(--ink);
  font-size: 30px;
  font-weight: 950;
}

.product-buy-box span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.product-detail-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, auto);
  gap: 10px;
}

.primary-shop-button,
.wishlist-inline-button {
  min-height: 48px;
  border-radius: var(--radius);
  padding: 0 18px;
  font: inherit;
  font-weight: 900;
}

.primary-shop-button {
  border: 0;
  background: var(--accent);
  color: #ffffff;
}

.wishlist-inline-button {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.wishlist-inline-button.active {
  border-color: #d7b9ad;
  background: #fff5f1;
  color: var(--warm);
}

.product-detail-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.product-detail-specs div {
  display: grid;
  gap: 5px;
  padding: 13px;
  background: #ffffff;
}

.product-detail-specs dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-specs dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.product-description-block {
  padding: 30px;
}

.product-description-block h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
}

.product-description-block p {
  max-width: 920px;
  margin: 0 0 14px;
  color: #3f4842;
  font-size: 17px;
  line-height: 1.7;
}

.news-catalog-shell {
  display: grid;
  gap: 18px;
}

.catalog-filter-bar {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) minmax(240px, 1.5fr) minmax(120px, auto) minmax(190px, auto);
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--surface);
}

.catalog-filter-title {
  min-width: 0;
}

.catalog-filter-bar strong,
.catalog-filter-bar span {
  display: block;
}

.catalog-filter-bar strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.catalog-filter-bar span,
.catalog-count {
  color: var(--muted);
  font-size: 13px;
}

.scale-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.scale-filter-list button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 850;
}

.scale-filter-list button.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.catalog-sort-control {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.catalog-sort-control select {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 34px 0 12px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
}

.catalog-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.catalog-pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.catalog-pagination button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 850;
}

.catalog-pagination button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.category-catalog-page .breadcrumbs,
.category-catalog-page #pageKicker {
  display: none;
}

.category-catalog-page .content-card {
  border-top: 0;
  padding-top: 0;
}

.category-catalog-page .page-copy {
  display: block;
  max-width: none;
}

.catalog-product-grid {
  align-items: stretch;
}

.shop-footer {
  padding: 0 max(20px, calc((100vw - 1440px) / 2 + 20px)) 12px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 0.9fr 1.1fr;
  gap: 44px;
  width: var(--narrow);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 34px 0 74px;
}

.footer-column,
.footer-newsletter {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column h3,
.footer-newsletter h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.footer-column p,
.footer-column a {
  margin: 0;
  color: #303832;
  font-size: 13px;
  line-height: 1.4;
}

.footer-column a:hover {
  color: var(--accent-dark);
}

.footer-newsletter input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  background: var(--surface);
  color: var(--ink);
}

.footer-newsletter button {
  min-height: 42px;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.footer-newsletter button:hover {
  background: var(--accent-dark);
}

.footer-credit {
  width: var(--narrow);
  margin: 0 auto;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (max-width: 920px) {
  .shop-header,
  .hero,
  .about-section,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .shop-header {
    gap: 14px;
  }

  .shop-nav {
    justify-content: flex-start;
    order: 3;
    grid-column: 1 / -1;
    overflow-x: auto;
  }

  .mega-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: static;
    grid-column: 1 / -1;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 360px;
  }

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

  .news-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-filter-bar {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .scale-filter-list {
    justify-content: flex-start;
  }

  .catalog-meta-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-detail-image {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  :root {
    --content: min(100% - 28px, 1440px);
    --narrow: min(100% - 28px, 1120px);
  }

  .shop-header,
  .category-strip,
  .products-section,
  .about-section,
  .producers-section,
  .content-page,
  .shop-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .shop-actions {
    justify-content: flex-end;
  }

  .shop-actions button,
  .shop-action-link {
    width: 44px;
    height: 44px;
  }

  .category-grid,
  .product-grid,
  .producer-list,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .mega-menu {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    gap: 22px;
    padding-bottom: 40px;
  }

  .product-detail-summary,
  .product-description-block {
    padding: 18px;
  }

  .product-detail-image {
    min-height: 320px;
  }

  .product-detail-image .product-photo {
    max-height: 320px;
    padding: 16px;
  }

  .product-detail-actions,
  .product-detail-specs {
    grid-template-columns: 1fr;
  }

  .product-buy-box {
    align-items: flex-start;
    flex-direction: column;
  }

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