/* PlayHot — portable fan catalog. Палитра снята с ЛОГО и БАННЕРА бренда:
   синий градиент wordmark (#2f6ae0 -> #8a9ff0), альпийское небо баннера,
   белые облака как фон карточек, зелень лугов — единственный вторичный акцент.
   Мотив «штрихов скорости» из лого повторён в .streak и подчёркиваниях. */

/* Шрифты свои: latin-подмножества woff2, без сторонних origin на критическом пути. */
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 500; font-display: swap;
  src: url(../fonts/outfit-latin.woff2) format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 600; font-display: swap;
  src: url(../fonts/outfit-latin.woff2) format('woff2'); }
@font-face { font-family: 'Outfit'; font-style: normal; font-weight: 700; font-display: swap;
  src: url(../fonts/outfit-latin.woff2) format('woff2'); }
@font-face { font-family: 'Source Sans 3'; font-style: normal; font-weight: 400; font-display: swap;
  src: url(../fonts/sourcesans3-latin.woff2) format('woff2'); }
@font-face { font-family: 'Source Sans 3'; font-style: normal; font-weight: 600; font-display: swap;
  src: url(../fonts/sourcesans3-latin.woff2) format('woff2'); }
@font-face { font-family: 'Source Sans 3'; font-style: normal; font-weight: 700; font-display: swap;
  src: url(../fonts/sourcesans3-latin.woff2) format('woff2'); }

:root {
  --blue: #2f6ae0;           /* основной синий wordmark */
  --blue-deep: #1b4bb0;      /* hover, тёмные плашки */
  --blue-night: #16233d;     /* тёмно-синий текст и футер */
  --peri: #8a9ff0;           /* светлый конец градиента лого */
  --peri-soft: #c9d6fb;
  --meadow: #4e9040;         /* зелень лугов баннера */
  --sky: #eef4fd;            /* фон страницы — светлое небо */
  --card: #ffffff;
  --line: #dde6f4;
  --ink: #16233d;
  --body: #3c4759;
  --muted: #78849a;
  --star: #f0a92b;
  --radius: 16px;
  --shadow: 0 2px 12px rgba(22, 35, 61, .07);
  --shadow-hover: 0 12px 30px rgba(22, 35, 61, .15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--body);
  background: var(--sky);
}

h1, h2, h3, h4, .logo-word { font-family: 'Outfit', 'Segoe UI', Arial, sans-serif; line-height: 1.2; color: var(--ink); }
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

.btn {
  display: inline-block;
  background: linear-gradient(100deg, var(--blue), #4d7ce8);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: .02em;
  padding: 13px 32px;
  border-radius: 999px;
  border: 0;
  box-shadow: 0 4px 14px rgba(47, 106, 224, .28);
  transition: filter .18s, transform .18s, box-shadow .18s;
}
.btn:hover { filter: brightness(1.06); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(47, 106, 224, .34); }

/* штрихи скорости из лого */
.streak { display: inline-flex; align-items: center; gap: 4px; vertical-align: middle; margin-right: 9px; }
.streak i { display: block; height: 3px; border-radius: 2px; background: var(--peri); }
.streak i:nth-child(1) { width: 6px; }
.streak i:nth-child(2) { width: 12px; background: var(--blue); }
.streak i:nth-child(3) { width: 18px; background: var(--blue); }

/* ---------- header ---------- */
.site-header {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 60;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 68px; }
.logo { display: flex; align-items: center; gap: 9px; }
.logo-mark { flex: 0 0 auto; }
.logo-text { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: .01em; color: var(--blue); white-space: nowrap; }
.main-nav { display: flex; gap: 4px; flex-wrap: wrap; justify-content: flex-end; }
.main-nav a {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 999px;
}
.main-nav a:hover { background: var(--sky); color: var(--blue); }
.main-nav a.active { background: var(--blue); color: #fff; }
/* Выпадающий пункт «Fans» — на CSS, без JS: hover + focus-within.
   На мобильном меню (<=900px) раскрыт всегда, вложенным списком. */
.nav-drop { position: relative; }
.nav-drop-top { display: inline-flex; align-items: center; gap: 5px; }
.nav-drop.on > .nav-drop-top { background: var(--blue); color: #fff; }
.nav-drop-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 252px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-hover);
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu { display: block; }
.nav-drop-menu a { display: flex; justify-content: space-between; gap: 14px; border-radius: 10px; padding: 9px 12px; }
.nav-drop-menu a span { color: var(--muted); font-size: 13px; }
.nav-drop-menu a.active span, .nav-drop-menu a:hover span { color: inherit; opacity: .8; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 3px; background: var(--blue); margin: 5px 0; border-radius: 2px; }

/* ---------- hero ---------- */
.hero {
  background: linear-gradient(168deg, #f9fcff 0%, var(--sky) 48%, #dde9fb 100%);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  right: -180px; top: -220px;
  width: 660px; height: 660px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 159, 240, .3), rgba(138, 159, 240, 0) 68%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding: 68px 22px 74px;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
/* hero.png — правый край панорамы (575x300), вырезанный из баннера: wordmark
   из его середины в кадр не попадает ни на одной ширине экрана. */
.hero-shot { position: relative; }
.hero-shot img {
  width: 100%;
  height: 336px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(22, 35, 61, .18);
}
.hero-shot-tag {
  position: absolute;
  left: 18px; bottom: 18px;
  display: inline-flex; align-items: center;
  background: rgba(255, 255, 255, .93);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 17px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 13.5px;
  color: var(--blue-night);
  box-shadow: var(--shadow);
}
.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--blue-deep);
}
.hero h1 { font-size: 54px; font-weight: 700; margin: 10px 0 16px; color: var(--blue-night); }
.hero h1 em { font-style: normal; background: linear-gradient(95deg, var(--blue), var(--peri)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 19px; color: #33405a; max-width: 580px; margin-bottom: 28px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-facts span {
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  color: var(--blue-night);
}

/* ---------- лента доверия под hero ---------- */
.trust-strip { background: #fff; border-bottom: 1px solid var(--line); }
.trust-strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding: 24px 22px; }
.trust-item { display: flex; gap: 12px; align-items: flex-start; }
.trust-num { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 24px; color: var(--blue); line-height: 1.1; }
.trust-item h3 { font-size: 15px; margin-bottom: 2px; }
.trust-item p { font-size: 13.5px; color: var(--muted); line-height: 1.45; }

/* ---------- страница категории ---------- */
.cat-intro { display: grid; grid-template-columns: 1.5fr 1fr; gap: 36px; padding: 44px 22px 8px; align-items: start; }
.cat-intro-copy p { margin-bottom: 15px; }
.cat-intro-copy p:last-child { margin-bottom: 0; }
.cat-facts {
  background: var(--sky); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px;
}
.cat-facts h2 { font-size: 19px; margin-bottom: 12px; }
.cat-facts ul { list-style: none; }
.cat-facts li { font-size: 14.5px; color: var(--body); line-height: 1.5; padding-left: 15px; position: relative; margin-bottom: 11px; }
.cat-facts li::before { content: ''; position: absolute; left: 0; top: 9px; width: 7px; height: 3px; border-radius: 2px; background: var(--peri); }
.cat-facts li strong { color: var(--ink); }
.cat-facts-note { font-size: 13px; color: var(--muted); border-top: 1px solid var(--line); padding-top: 12px; margin-top: 4px; }
.cat-more { padding: 8px 22px 56px; }
.cat-more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cat-more-card {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow);
  transition: box-shadow .18s, transform .18s, border-color .18s;
}
.cat-more-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); border-color: var(--peri); }
.cat-more-card h3 { font-size: 18px; margin-bottom: 7px; }
.cat-more-card p { font-size: 14px; color: var(--body); line-height: 1.5; margin-bottom: 10px; }
.cat-more-card span { font-size: 13px; color: var(--blue); font-family: 'Outfit', sans-serif; font-weight: 500; }

/* ---------- catalog / cards ---------- */
.catalog { padding: 48px 22px; }
.section-head { text-align: center; margin-bottom: 30px; }
.section-head h2 { font-size: 33px; }
.section-head p { color: var(--muted); margin-top: 6px; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s, transform .18s, border-color .18s;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); border-color: var(--peri); }
.card-link { display: flex; flex-direction: column; flex: 1; }
/* Кадр строго квадратный: картинка абсолютная, поэтому портретный снимок
   (шнурок-ланъярд) не может растянуть карточку по высоте. */
.card-img { aspect-ratio: 1; background: linear-gradient(170deg, #fbfcff, #eef4fd); position: relative; }
.card-img img { position: absolute; inset: 16px; width: calc(100% - 32px); height: calc(100% - 32px); object-fit: contain; }
.card-body { padding: 14px 16px 6px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-cat {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
}
.card-title { font-size: 16px; font-weight: 600; color: var(--ink); }
.card-short { font-size: 13.5px; line-height: 1.45; color: var(--muted); margin-bottom: 4px; }
.card-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; flex-wrap: wrap; }
.price { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 19px; color: var(--blue-night); }
.stars .star { color: #d6dfee; font-size: 14px; }
.stars .star.on { color: var(--star); }
.rcount { color: var(--muted); font-size: 13px; margin-left: 4px; }
.card .btn-buy { margin: 12px 16px 16px; text-align: center; padding: 11px 16px; font-size: 14.5px; }

/* ---------- value band ---------- */
.value-band { background: linear-gradient(135deg, var(--blue-night), #22417c 60%, var(--blue-deep)); color: #fff; padding: 58px 0; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.value-item { text-align: center; }
.value-icon { margin-bottom: 10px; color: var(--peri); display: flex; justify-content: center; }
.value-item h3 { font-size: 19px; margin-bottom: 8px; color: #fff; }
.value-item p { color: #c3d1ea; font-size: 15px; }

/* ---------- как работает каталог (3 шага) ---------- */
.steps { padding: 58px 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: var(--sky); border-radius: var(--radius); padding: 24px 24px 22px; position: relative; }
.step-n { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: .16em; color: var(--blue); margin-bottom: 8px; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--body); }

/* ---------- блок доверия с карточками ---------- */
.assurance { padding: 58px 0; }
.assurance-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.assurance-card { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--blue); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow); }
.assurance-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.assurance-card p { font-size: 15px; color: var(--body); }
.assurance-card.green { border-left-color: var(--meadow); }

/* ---------- рейтинговая сводка ---------- */
.ratings-band { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 46px 0; }
.ratings-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.rb-num { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 34px; color: var(--blue); }
.rb-lab { font-size: 14px; color: var(--muted); }

/* ---------- advantage table ---------- */
.advantage { padding: 56px 0; }
.advantage .section-head { margin-bottom: 26px; }
.adv-table-wrap { overflow-x: auto; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.advantage table { width: 100%; border-collapse: collapse; font-size: 15px; min-width: 660px; }
.advantage th, .advantage td { border: 1px solid var(--line); padding: 12px 14px; text-align: left; vertical-align: top; }
.advantage thead th { background: var(--blue-night); color: #fff; font-family: 'Outfit', sans-serif; font-weight: 600; }
.advantage thead th:first-child { background: #fff; }
.advantage tbody th { background: var(--sky); font-family: 'Outfit', sans-serif; font-weight: 600; color: var(--ink); white-space: nowrap; }
.advantage td.win { background: #eaf1fe; }
.advantage td.win strong { color: var(--blue-deep); }
.adv-note { margin-top: 14px; font-size: 13.5px; color: var(--muted); text-align: center; }

/* ---------- reviews ---------- */
.reviews { padding: 58px 0 26px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px 22px; display: flex; flex-direction: column; }
.review-stars { color: var(--star); font-size: 15px; letter-spacing: 2px; margin-bottom: 8px; }
.review-card blockquote { font-size: 15.5px; color: var(--body); margin: 0 0 14px; }
.review-who { margin-top: auto; display: flex; align-items: center; gap: 10px; }
.review-ava { width: 38px; height: 38px; border-radius: 50%; background: var(--sky); border: 1px solid var(--line); color: var(--blue); font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; }
.review-name { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 14.5px; color: var(--ink); }
.review-item { font-size: 13px; color: var(--muted); }
.review-item a { color: var(--muted); border-bottom: 1px dotted var(--line); }
.review-item a:hover { color: var(--blue); }

/* ---------- mission + seo ---------- */
.mission-band { padding: 60px 0; text-align: center; }
.mission-band h2 { font-size: 28px; max-width: 800px; margin: 0 auto 14px; }
.mission-band p { color: var(--muted); max-width: 730px; margin: 0 auto; }

.seo-content { background: #fff; border-top: 1px solid var(--line); padding: 58px 0; }
.seo-content h2 { font-size: 27px; margin-bottom: 16px; }
.seo-content h3 { font-size: 20px; margin: 26px 0 10px; }
.seo-content p { margin-bottom: 12px; }
.seo-content ul { margin: 10px 0 14px 22px; }
.seo-content li { margin-bottom: 6px; }
.seo-content table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 15px; }
.seo-content th, .seo-content td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.seo-content th { background: var(--sky); font-family: 'Outfit', sans-serif; color: var(--ink); }

/* ---------- page hero (info) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--blue-night), #22417c 60%, var(--blue));
  color: #fff;
  padding: 54px 0 50px;
}
.page-hero h1 { font-size: 38px; margin: 8px 0 10px; color: #fff; }
.page-hero .eyebrow { color: var(--peri); }
.page-hero-sub { color: #cddaf1; max-width: 660px; }

/* ---------- product page ---------- */
.breadcrumb { padding: 16px 22px 0; font-size: 14px; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--blue); }
.product { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 44px; padding: 26px 22px 50px; }
.product-media {
  background: linear-gradient(170deg, #fbfcff, #e9f1fd);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  align-self: start;
  position: sticky;
  top: 92px;
}
.product-media img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.product-info h1 { font-size: 27px; margin: 8px 0 12px; }
.product-meta { margin-bottom: 12px; }
.product-price { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 33px; color: var(--blue-night); margin-bottom: 18px; }
.product-info .btn-buy { padding: 14px 48px; font-size: 16.5px; }
.product-note { font-size: 13.5px; color: var(--muted); margin-top: 10px; }
.product-intro { margin-top: 22px; font-size: 17px; }
.swatches { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 4px; }
.swatch { font-family: 'Outfit', sans-serif; font-size: 13.5px; padding: 6px 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink); }
.swatch:hover { border-color: var(--blue); color: var(--blue); }
.swatch.on { background: var(--blue); border-color: var(--blue); color: #fff; }
.swatch-label { font-family: 'Outfit', sans-serif; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 18px; }

/* ---------- авторские блоки товара ---------- */
.product-detail { padding: 0 22px 10px; }
.feats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px 24px; position: relative; }
.feat-n { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: .14em; color: var(--peri); margin-bottom: 8px; }
.feat p { color: var(--body); font-size: 15.5px; }
.specs { padding: 34px 22px 50px; }
.specs-head { font-size: 20px; margin-bottom: 12px; }
.bullets { margin: 0; list-style: none; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 8px 0; box-shadow: var(--shadow); }
.bullets li { padding: 11px 22px; color: var(--body); font-size: 15px; border-bottom: 1px solid var(--line); }
.bullets li:last-child { border-bottom: 0; }

/* ---------- info pages ---------- */
.info-page { padding: 46px 0 64px; }
.info-page .wrap { max-width: 830px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 38px 42px; }
.info-page h2 { font-size: 22px; margin: 24px 0 10px; }
.info-page h2:first-child { margin-top: 0; }
.info-page h3 { font-size: 17.5px; margin: 18px 0 8px; }
.info-page p { margin-bottom: 12px; }
.info-page ul, .info-page ol { margin: 10px 0 14px 22px; }
.info-page li { margin-bottom: 6px; }
.info-page table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 15px; }
.info-page th, .info-page td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.info-page th { background: var(--sky); font-family: 'Outfit', sans-serif; color: var(--ink); }

/* ---------- footer ---------- */
.site-footer { background: var(--blue-night); color: #b6c3da; font-size: 14.5px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 34px; padding: 52px 22px 30px; }
.logo-word { font-size: 25px; font-weight: 700; color: #fff; letter-spacing: .01em; }
.logo-word .dot { color: var(--peri); }
.tagline { color: var(--peri); font-family: 'Outfit', sans-serif; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin: 4px 0 12px; }
.foot-text { margin-bottom: 14px; }
.foot-contact p { margin-bottom: 4px; display: flex; align-items: center; gap: 9px; }
.foot-contact .ic { flex: 0 0 auto; color: var(--peri); }
.foot-col h3 { color: #fff; font-size: 15.5px; margin-bottom: 12px; letter-spacing: .03em; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 8px; }
.foot-col a { color: #b6c3da; }
.foot-col a:hover { color: var(--peri); }
.foot-bottom { padding: 14px 22px 26px; border-top: 1px solid rgba(255, 255, 255, .13); color: #8b99b3; font-size: 13px; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .trust-strip .wrap { grid-template-columns: 1fr 1fr; }
  .cat-more-grid { grid-template-columns: 1fr 1fr; }
  .ratings-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; }
  .assurance-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .product { grid-template-columns: 1fr; }
  .product-media { position: static; }
  .feats { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 34px; padding: 52px 22px 60px; }
  .hero-shot img { height: 250px; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 10px 16px 16px;
    box-shadow: var(--shadow-hover);
  }
  .nav-open .main-nav { display: flex; }
  .main-nav a { padding: 11px 12px; font-size: 16px; }
  /* в мобильном меню дропдаун раскрыт всегда: hover на тач-экране не работает */
  .nav-drop-top { display: none; }
  .nav-drop-menu {
    display: block; position: static; min-width: 0;
    padding: 0 0 0 12px; border: 0; border-left: 2px solid var(--line);
    border-radius: 0; box-shadow: none; margin: 2px 0 2px 12px;
  }
  .nav-drop-menu a { padding: 10px 12px; }
  .cat-intro { grid-template-columns: 1fr; gap: 24px; padding: 32px 22px 4px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid { grid-template-columns: 1fr; }
  .cat-more-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .trust-strip .wrap { grid-template-columns: 1fr; gap: 16px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 17px; }
  .hero-shot img { height: 190px; }
  .hero-shot-tag { font-size: 12.5px; padding: 7px 13px; left: 12px; bottom: 12px; }
  .section-head h2 { font-size: 26px; }
  .page-hero h1 { font-size: 29px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .info-page .wrap { padding: 28px 20px; }
  .info-page table { display: block; overflow-x: auto; white-space: nowrap; }
  .info-page td { white-space: normal; min-width: 150px; }
  .product-price { font-size: 28px; }
  .logo-text { font-size: 19px; }
}
