/* Mloong — детская мебель и манежи. Палитра снята с баннера бренда: пыльно-розовый
   словесный знак и боди малыша, молочное постельное бельё, тёплая сливовая тень.
   Логотип у бренда ЕСТЬ (assets/lifestyle.jpg — тёмный знак на белом), но он квадратный
   с большими полями и в строку шапки не садится. Поэтому шапка набирает слово
   средствами CSS в Quicksand: гарнитура геометрическая с круглыми окончаниями и по
   рисунку почти совпадает с настоящим знаком. Файл лого идёт в блок brand-band и в
   Organization.logo. */

/* Шрифты свои: latin-подмножества с fonts.gstatic.com лежат в assets/fonts/.
   Обе гарнитуры вариативные — один файл закрывает все начертания. */
@font-face { font-family: 'Quicksand'; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url(../fonts/quicksand-latin.woff2) format('woff2'); }
@font-face { font-family: 'Nunito Sans'; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url(../fonts/nunito-latin.woff2) format('woff2'); }

:root {
  --rose: #c06b76;          /* словесный знак и боди с баннера */
  --rose-deep: #a34f5c;     /* CTA: на белом даёт 5.4:1, сам розовый только 3.7:1 */
  --rose-dark: #8b3f4c;
  --plum: #3a2a2d;          /* заголовки */
  --plum-deep: #2b1f22;     /* подвал */
  --ink: #322a2a;
  --blush: #f8efee;         /* мягкая подложка секций */
  --milk: #fdfaf9;          /* фон страницы, молочное бельё с баннера */
  --card: #ffffff;
  --line: #ebdcd9;
  --muted: #857472;
  --star: #d09a4e;
  --radius: 22px;
  --shadow: 0 2px 12px rgba(58, 42, 45, .07);
  --shadow-hover: 0 14px 30px rgba(58, 42, 45, .14);
}

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

body {
  font-family: 'Nunito Sans', 'Segoe UI', Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.64;
  color: var(--ink);
  background: var(--milk);
}

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

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

.btn {
  display: inline-block;
  background: var(--rose-deep);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: .02em;
  padding: 13px 32px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: background .18s, transform .18s;
}
.btn:hover { background: var(--rose-dark); transform: translateY(-1px); }

/* ---------- header ---------- */
.site-header {
  background: #fff;
  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: 70px; }
.logo { display: flex; align-items: baseline; gap: 4px; }
/* Строчные буквы и плотный трекинг — как в настоящем знаке. Прописные и разрядка,
   которыми набраны шапки соседних сайтов, здесь ломают узнаваемость. */
.logo .logo-word {
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--rose);
  text-transform: lowercase;
}
.logo .reg { font-size: 10px; color: var(--muted); letter-spacing: 0; }
.main-nav { display: flex; gap: 4px; flex-wrap: wrap; justify-content: flex-end; }
.main-nav a {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  padding: 8px 11px;
  border-radius: 10px;
}
.main-nav a:hover { background: var(--blush); color: var(--rose-deep); }
.main-nav a.active { color: var(--rose-deep); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 3px; background: var(--rose); margin: 5px 0; border-radius: 2px; }

/* ---------- brand strip + hero ----------
   Баннер бренда 3000x600 со своим словесным знаком и подписью «Always by your side».
   Затемняющей плашки поверх него нет намеренно: снимок светлый, надпись на нём
   розовая по белому, и любой оверлей убивает и то и другое. Поэтому картинка идёт
   отдельной полосой в своих пропорциях, а текст живёт под ней на молочном фоне. */
.brand-strip { background: #fff; border-bottom: 1px solid var(--line); }
.brand-strip img { width: 100%; height: auto; }

.hero { background: var(--milk); }
.hero-inner { padding: 54px 22px 46px; max-width: 1180px; margin: 0 auto; }
.hero-inner h1, .hero-inner .eyebrow { max-width: 800px; }
.eyebrow {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose);
}
.hero h1 { font-size: 46px; font-weight: 700; margin: 12px 0 16px; color: var(--plum); letter-spacing: -.015em; }
.hero-sub { font-size: 18.5px; color: var(--muted); max-width: 620px; margin-bottom: 28px; }

/* ---------- category grid ---------- */
.categories { padding: 44px 22px 8px; }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  transition: box-shadow .18s, transform .18s;
}
.cat-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
/* Снимок абсолютом, а не в потоке: у портретных кадров (зоо-стеллаж 54 дюйма)
   height:100% не разрешался от auto-высоты обёртки, картинка бралась своей
   натуральной высотой и растягивала плитку до 679px вместо 203. */
.cat-img { position: relative; aspect-ratio: 4 / 3; background: #fff; overflow: hidden; }
.cat-img img { position: absolute; inset: 18px; width: calc(100% - 36px); height: calc(100% - 36px); object-fit: contain; }
/* Подпись отдельной плашкой под снимком, а не градиентом поверх: товары сняты на белом,
   поверх них светлый текст пропадает. */
.cat-overlay {
  margin-top: auto;
  background: var(--blush);
  border-top: 1px solid var(--line);
  color: var(--plum);
  padding: 13px 16px 15px;
}
.cat-overlay h3 { font-size: 16px; font-weight: 700; line-height: 1.25; }
.cat-overlay p { font-size: 13px; color: var(--muted); margin-top: 3px; }

/* ---------- catalog / cards ---------- */
.catalog { padding: 50px 22px; }
.section-head { text-align: center; margin-bottom: 30px; }
.section-head h2 { font-size: 32px; font-weight: 700; color: var(--plum); }
.section-head p { color: var(--muted); margin-top: 6px; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stars .star { color: #ded2cf; font-size: 14px; }
.stars .star.on { color: var(--star); }
.rcount { color: var(--muted); font-size: 13px; margin-left: 4px; }
/* Метка коллекции живёт теперь только на странице товара: в плитке её место заняла
   полоса фактов, а категорию человек и так видит в шапке раздела. */
.card-cat {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--rose);
}

/* Плитка товара: снимок, название с одной своей фразой, полоса фактов, полка покупки.
   Факты вынесены в сетку 1:1 с рамками, чтобы рейтинг и габарит стояли на одной линии
   во всём ряду. В прежней карточке цена и звёзды делили одну строку и у товаров без
   рейтинга строка съезжала, из-за чего ряд читался как набор разных карточек. */
.tile {
  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;
}
.tile:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); border-color: #e6cfcc; }
/* flex:1 обязателен: без него ссылка не тянется, и у плиток с коротким текстом полоса
   фактов вместе с ценой висела на 20px выше дна карточки, а ряд читался неровным. */
.tile-link { display: flex; flex-direction: column; flex: 1; }
/* Снимок абсолютом: иначе портретный кадр рвёт ряд сетки, см. .cat-img. */
.tile-shot { position: relative; aspect-ratio: 1; background: #fff; overflow: hidden; }
.tile-shot img { position: absolute; inset: 16px; width: calc(100% - 32px); height: calc(100% - 32px); object-fit: contain; }
.tile-flag {
  position: absolute; left: 12px; top: 12px;
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 10.5px;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  background: #fdf3e6; color: #8a6a2f; border: 1px solid #ecd9bd;
}
.tile-flag.scarce { background: #fdeae4; color: #a8492c; border-color: #f1c9bd; }
.tile-text { padding: 15px 17px 13px; flex: 1; }
.tile-name { font-family: 'Quicksand', sans-serif; font-size: 16px; font-weight: 700; color: var(--plum); line-height: 1.3; }
.tile-note { font-size: 13.5px; line-height: 1.5; color: var(--muted); margin-top: 7px; }
.tile-facts { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.tile-facts > div { padding: 10px 14px 12px; }
.tile-facts > div + div { border-left: 1px solid var(--line); }
.tile-facts dt {
  font-family: 'Quicksand', sans-serif; font-size: 10.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--rose);
}
/* Число ратингов уводится на вторую строку принудительно, а ячейке задан минимум:
   иначе у одной плитки из восьми строка переносилась сама и полоса фактов вырастала
   на 21px, ломая линию цены в ряду. */
.tile-facts dd { font-size: 13.5px; color: var(--plum); margin-top: 4px; line-height: 1.35; min-height: 38px; }
.tile-facts dd b { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 15px; }
.tile-facts dd span { display: block; color: var(--muted); font-size: 12.5px; }
.tile-buy {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 13px 15px 15px; background: var(--blush); border-top: 1px solid var(--line);
}
.tile-price { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 20px; color: var(--plum); }
.tile-buy .btn-buy { padding: 10px 18px; font-size: 14px; }

/* ---------- главная: подборка, рамы, ценовая лестница ---------- */
.picks { background: var(--blush); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 54px 0 58px; }
.picks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pick { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; }
.pick-shot { display: block; position: relative; aspect-ratio: 3 / 2; background: #fff; border-bottom: 1px solid var(--line); }
.pick-shot img { position: absolute; inset: 14px; width: calc(100% - 28px); height: calc(100% - 28px); object-fit: contain; }
.pick-body { padding: 20px 23px 22px; display: flex; flex-direction: column; flex: 1; }
.pick-body h3 { font-size: 19px; font-weight: 700; color: var(--plum); line-height: 1.25; }
.pick-why { color: #4a3d3e; font-size: 15px; margin-top: 9px; }
.pick-item { margin-top: 14px; font-size: 14px; }
.pick-item a { color: var(--rose-deep); font-weight: 700; border-bottom: 1px solid rgba(163, 79, 92, .35); }
.pick-line { margin-top: auto; padding-top: 14px; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.pick-price { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 22px; color: var(--plum); }
.pick-rate { color: var(--muted); font-size: 13px; }

.frames { padding: 56px 0; }
.frame-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.frame-col { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px 28px 24px; }
.frame-col.is-big { background: linear-gradient(165deg, #fff 40%, var(--blush)); }
.frame-size { align-self: flex-start; font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 15px; color: #fff; background: var(--rose-deep); border-radius: 999px; padding: 5px 15px; }
.frame-col h3 { font-size: 21px; font-weight: 700; color: var(--plum); margin: 13px 0 8px; }
.frame-col > p { color: #4a3d3e; font-size: 15.5px; }
.frame-list { list-style: none; margin-top: 16px; border-top: 1px solid var(--line); }
.frame-list li { display: flex; justify-content: space-between; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.frame-list a { color: var(--plum); }
.frame-list a:hover { color: var(--rose-deep); }
.frame-list b { font-family: 'Quicksand', sans-serif; color: var(--plum); white-space: nowrap; }
.frame-foot { margin-top: auto; padding-top: 14px; color: var(--muted); font-size: 13.5px; }
.frame-note { margin-top: 20px; text-align: center; color: var(--muted); font-size: 14.5px; }

.ladder { padding: 54px 0 60px; background: #fff; border-top: 1px solid var(--line); }
.ladder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rung {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 16px;
  background: var(--milk); border: 1px solid var(--line); border-left: 4px solid var(--rose);
  border-radius: 14px; padding: 17px 20px;
  transition: border-color .18s, box-shadow .18s;
}
.rung:hover { border-left-color: var(--rose-deep); box-shadow: var(--shadow); }
.rung-name { flex: 1 1 55%; font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 17px; color: var(--plum); }
.rung-range { font-family: 'Quicksand', sans-serif; font-size: 14px; color: var(--muted); }
.rung-range b { font-size: 19px; color: var(--rose-deep); }
.rung-count { order: 3; color: var(--muted); font-size: 13px; }
.rung-entry { order: 4; flex: 1 1 auto; color: var(--muted); font-size: 13px; }
.rung-entry::before { content: '\00b7'; margin-right: 8px; color: var(--rose); }

/* ---------- value / brand bands ---------- */
.value-band { background: var(--blush); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 54px 0; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value-item { text-align: center; }
.value-icon {
  width: 54px; height: 54px; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--rose);
  color: var(--rose-deep);
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 21px;
}
.value-item h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; color: var(--plum); }
.value-item p { color: var(--muted); font-size: 15px; }

.mission-band { padding: 58px 0; }
.mission-grid { display: grid; grid-template-columns: 320px 1fr; gap: 46px; align-items: center; }
/* Второй снимок стора — это настоящий логотип бренда на белом, а не фотография.
   contain и белая карточка: cover обрезал бы знак по краям. */
.mission-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.mission-band h2 { font-size: 28px; font-weight: 700; color: var(--plum); margin-bottom: 14px; }
.mission-band p { color: var(--muted); }
.mission-band p + p { margin-top: 13px; }

/* ---------- seo content ---------- */
.seo-content { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 56px 0; }
.seo-content h2 { font-size: 27px; font-weight: 700; color: var(--plum); margin-bottom: 16px; }
.seo-content h3 { font-size: 20px; font-weight: 700; color: var(--plum); margin: 26px 0 10px; }
.seo-content p { margin-bottom: 12px; color: #4a3d3e; }
.seo-content ul { margin: 10px 0 14px 22px; color: #4a3d3e; }
.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(--blush); font-family: 'Quicksand', sans-serif; font-weight: 700; color: var(--plum); }

/* ---------- ratings band ---------- */
.testimonials { padding: 56px 0 68px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 26px 25px; }
.testi-stars { color: var(--star); font-size: 16px; letter-spacing: 2px; margin-bottom: 10px; }
.testi-figure { font-family: 'Quicksand', sans-serif; font-weight: 700; color: var(--rose-deep); font-size: 15px; margin-bottom: 8px; }
.testi-card p { font-size: 15.5px; color: #4a3d3e; }
.testi-name { margin-top: 12px; font-weight: 700; color: var(--plum); }
.testi-name a { color: var(--plum); border-bottom: 1px solid rgba(192, 107, 118, .4); }
.testi-name a:hover { color: var(--rose-deep); border-bottom-color: var(--rose-deep); }

/* ---------- page hero (category / info) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--blush), #fdf6f4 60%, #f4e6e4);
  border-bottom: 1px solid var(--line);
  padding: 48px 0 44px;
}
.page-hero .eyebrow { color: var(--rose-deep); }
.page-hero h1 { font-size: 37px; font-weight: 700; margin: 8px 0 10px; color: var(--plum); }
.page-hero-sub { color: var(--muted); max-width: 680px; }

/* ---------- product page ---------- */
.breadcrumb { padding: 16px 22px 0; font-size: 14px; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--rose-deep); }
.product { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 44px; padding: 28px 22px 48px; }
.product-media {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  align-self: start;
  position: sticky;
  top: 94px;
}
.product-media img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.product-info h1 { font-size: 27px; font-weight: 700; margin: 8px 0 12px; color: var(--plum); }
.product-meta { margin-bottom: 12px; }
.product-price { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 32px; color: var(--plum); margin-bottom: 18px; }
.product-info .btn-buy { padding: 14px 46px; font-size: 16.5px; }
/* Три состояния наличия, а не два: у одного мата Amazon отдаёт дату отгрузки. */
.stock-note { margin-top: 10px; font-size: 14px; color: #2f7a4e; font-weight: 700; }
.stock-note.scarce { color: #a8492c; }
.stock-note.later { color: #8a6a2f; }
.affiliate-note { margin-top: 14px; font-size: 12.5px; color: var(--muted); max-width: 520px; }
.product-intro { margin-top: 22px; color: #4a3d3e; font-size: 17px; }
.unavail { color: #a8492c; font-size: 18px; }

/* ---------- авторские блоки товара + спеки производителя ---------- */
.product-detail { padding: 0 22px 10px; }
.feats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.feat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px 25px; }
.feat h2 { font-size: 17px; font-weight: 700; color: var(--rose-deep); margin-bottom: 8px; }
.feat p { color: #4a3d3e; font-size: 15.5px; }
/* Панель фактов вместо списка буллетов продавца. Сетка на просвет (gap 1px по цвету
   линии) читается как таблица, но не выпрямляет длину значений в столбик. */
.glance { padding: 34px 22px 50px; }
.glance-head { max-width: 720px; margin-bottom: 18px; }
.glance-head h2 { font-size: 23px; font-weight: 700; color: var(--plum); }
.glance-head p { color: var(--muted); font-size: 14.5px; margin-top: 7px; }
.glance-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.glance-row { background: #fff; padding: 16px 20px 17px; }
.glance-row dt {
  font-family: 'Quicksand', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: var(--rose);
}
.glance-row dd { font-family: 'Quicksand', sans-serif; font-size: 16px; font-weight: 600; color: var(--plum); margin-top: 5px; }

/* ---------- info pages ---------- */
.info-page { padding: 44px 0 62px; }
.info-page .wrap { max-width: 820px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 38px 42px; }
.info-page h2 { color: var(--plum); font-size: 22px; font-weight: 700; margin: 24px 0 10px; }
.info-page h2:first-child { margin-top: 0; }
.info-page h3 { color: var(--rose-deep); font-size: 17.5px; font-weight: 700; margin: 18px 0 8px; }
.info-page p { margin-bottom: 12px; color: #4a3d3e; }
.info-page ul, .info-page ol { margin: 10px 0 14px 22px; color: #4a3d3e; }
.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(--blush); font-family: 'Quicksand', sans-serif; font-weight: 700; color: var(--plum); }
.info-page a { color: var(--rose-deep); }

/* ---------- footer ----------
   Не четыре колонки ссылок: сверху обращение и контакты, ниже коллекции плитками с
   ценой входа, служебные ссылки одной строкой каждая. Иконок платёжных систем нет
   намеренно - оплату сайт не принимает. */
.site-footer { background: var(--plum-deep); color: #c2b0af; font-size: 14.5px; }
.site-footer a { color: #e6d8d7; }
.site-footer a:hover { color: var(--rose); }
.foot-mast { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 46px; padding: 52px 22px 34px; }
.site-footer .logo-word { font-family: 'Quicksand', sans-serif; font-size: 30px; font-weight: 700; color: #fff; letter-spacing: -.02em; text-transform: lowercase; }
.foot-tagline { color: var(--rose); font-family: 'Quicksand', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin: 6px 0 14px; }
.foot-text { max-width: 580px; }
.foot-reach { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; align-content: start; }
.foot-reach li { display: flex; flex-direction: column; gap: 4px; }
.foot-reach span { font-family: 'Quicksand', sans-serif; font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #8f7d7c; }
.foot-reach b { color: #fff; font-weight: 600; }
.foot-reach a { color: #fff; }
.foot-shelf { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 0 22px 30px; }
.foot-chip {
  display: flex; flex-direction: column; gap: 5px;
  padding: 14px 16px; border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14); background: rgba(255, 255, 255, .04);
  transition: background .18s, border-color .18s;
}
.foot-chip:hover { background: rgba(192, 107, 118, .16); border-color: var(--rose); }
.foot-chip-name { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 15px; color: #fff; }
.foot-chip-meta { color: #a39292; font-size: 13px; }
.foot-thin { padding: 0 22px; }
.foot-thin-row { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px; padding: 11px 0; border-top: 1px solid rgba(255, 255, 255, .12); }
.foot-thin-label { min-width: 52px; font-family: 'Quicksand', sans-serif; font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #8f7d7c; }
.foot-thin-links { font-size: 14px; }
.foot-thin-links i { font-style: normal; margin: 0 9px; color: #6d5b5a; }
.foot-base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 28px;
  margin-top: 8px; padding: 16px 22px 28px;
  border-top: 1px solid rgba(255, 255, 255, .12); color: #a39292; font-size: 13px;
}
.foot-disc { max-width: 620px; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .glance-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-shelf { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid, .testi-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; gap: 26px; }
  .mission-photo img { max-width: 300px; margin: 0 auto; }
  .product { grid-template-columns: 1fr; }
  .product-media { position: static; }
  .feats { grid-template-columns: 1fr; gap: 16px; }
  .picks-grid, .frame-grid, .ladder-grid { grid-template-columns: 1fr; }
  .foot-mast { grid-template-columns: 1fr; gap: 28px; }
  .hero h1 { font-size: 36px; }
  .hero-inner { padding: 40px 22px 36px; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    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 10px; font-size: 16px; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .grid { grid-template-columns: 1fr; }
  /* Категории оставляем в две колонки и на телефоне: в одну карточка 4:3 съедает
     пол-экрана, и до «Most reviewed» приходится крутить лишние экраны. */
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-overlay { padding: 10px 12px 12px; }
  .cat-overlay h3 { font-size: 14px; }
  .cat-overlay p { font-size: 12px; }
  .hero h1 { font-size: 29px; }
  .hero-sub { font-size: 17px; }
  .section-head h2 { font-size: 25px; }
  .page-hero h1 { font-size: 28px; }
  .glance-grid { grid-template-columns: 1fr; }
  .foot-shelf { grid-template-columns: 1fr; }
  .foot-reach { grid-template-columns: 1fr; gap: 14px; }
  /* Плитка в одну колонку широкая, факты остаются в две ячейки и не тянутся в столбик. */
  .tile-note { font-size: 14.5px; }
  .info-page .wrap { padding: 26px 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: 27px; }
  .logo .logo-word { font-size: 24px; }
}
