/* ==========================================================================
   Gyliziex — static showcase stylesheet
   设计语言参照原站 Shopify Horizon 主题：Inter 字体、近黑文字、黑色主按钮、
   大圆角卡片、750px 断点。全部资源本地化，不依赖任何外网 CDN。
   ========================================================================== */

@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --bg-2: #f5f5f5;
  --bg-3: #eef1ea;
  --bg-4: #e1edf5;
  --bg-dark: #333333;
  --fg: rgba(0, 0, 0, .81);
  --fg-muted: rgba(0, 0, 0, .55);
  --heading: #000000;
  --border: rgba(0, 0, 0, .08);
  --border-strong: #e6e6e6;
  --btn: #000000;
  --btn-fg: #ffffff;
  --btn-hover: #333333;
  --radius: 12px;
  --radius-sm: 8px;
  --page: 1280px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  /* 品牌色由每个页面的内联 <style> 注入，这里只做兜底 */
  --brand: #185fa5;
  --brand-soft: #e1edf5;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--heading);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.02em;
}
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: #000; color: #fff; padding: 10px 18px; border-radius: 999px;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: var(--page); margin: 0 auto; padding: 0 24px; }
.section { padding: 76px 0; }
.section--tight { padding: 52px 0; }
.section--gray { background: var(--bg-2); }
.section--sage { background: var(--bg-3); }
.section--blue { background: var(--brand-soft, #e1edf5); }
.section__head { max-width: 62ch; margin-bottom: 36px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: block; font-size: 12px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--fg-muted); margin-bottom: 14px;
}
.h1 { font-size: clamp(32px, 5.2vw, 58px); letter-spacing: -0.03em; }
.h2 { font-size: clamp(26px, 3.6vw, 40px); }
.h3 { font-size: 20px; }
.lede { font-size: 16.5px; color: var(--fg-muted); max-width: 60ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 28px; border-radius: 999px;
  border: 1px solid transparent; background: var(--btn); color: var(--btn-fg);
  font-size: 15px; font-weight: 500; cursor: pointer; white-space: nowrap;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { background: var(--btn-hover); }
.btn--outline { background: transparent; color: var(--heading); border-color: rgba(0, 0, 0, .35); }
.btn--outline:hover { background: rgba(0, 0, 0, .04); border-color: #000; }
.btn--light { background: #fff; color: #000; border-color: #fff; }
.btn--light:hover { background: rgba(255, 255, 255, .85); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .65); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .14); }
.btn--sm { min-height: 40px; padding: 0 20px; font-size: 14px; }
.btn--block { width: 100%; }

/* ---------- announcement + header ---------- */
.announce {
  background: #fff; border-bottom: 1px solid var(--border);
  font-size: 13px; text-align: center; padding: 10px 16px; color: var(--fg);
  letter-spacing: .01em;
}
.announce span { color: var(--fg-muted); }

.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; gap: 34px; min-height: 74px; }
.logo { display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto; }
.logo svg { width: 23px; height: 23px; flex: 0 0 auto; }
.logo__text { font-size: 19px; font-weight: 700; letter-spacing: .04em; color: #1b1b1b; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-size: 15px; color: var(--fg); padding: 6px 0; border-bottom: 1px solid transparent; }
.nav a:hover { color: #000; border-bottom-color: #000; }
.nav a[aria-current="page"] { color: #000; font-weight: 500; border-bottom-color: #000; }
.header__cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.burger {
  display: none; margin-left: auto; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border-strong); border-radius: 999px; cursor: pointer;
}
.burger span, .burger span::before, .burger span::after {
  display: block; width: 16px; height: 1.5px; background: #000; position: relative;
}
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; }
.burger span::before { top: -5px; }
.burger span::after { top: 5px; }

/* ---------- drawer ---------- */
.drawer {
  position: fixed; inset: 0; z-index: 120;
  opacity: 0; pointer-events: none; transition: opacity .22s ease;
}
.drawer.is-open { opacity: 1; pointer-events: auto; }
.drawer__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .45); border: 0; width: 100%; cursor: pointer; }
.drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(88vw, 380px);
  background: #fff; padding: 22px 24px 40px; overflow-y: auto;
  transform: translateX(100%); transition: transform .28s ease;
  display: flex; flex-direction: column;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.drawer__close {
  width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--border-strong);
  background: #fff; cursor: pointer; font-size: 18px; line-height: 1;
}
.drawer nav { display: flex; flex-direction: column; margin-bottom: 22px; }
.drawer nav a { padding: 15px 0; border-bottom: 1px solid var(--border); font-size: 17px; font-weight: 500; color: var(--heading); }
.drawer__links { display: flex; flex-direction: column; gap: 12px; font-size: 14.5px; color: var(--fg-muted); }

/* ---------- hero ---------- */
.hero { position: relative; display: flex; align-items: flex-end; min-height: min(80svh, 700px); background: #1a1a1a; overflow: hidden; }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18, 18, 18, .18) 0%, rgba(18, 18, 18, .48) 55%, rgba(18, 18, 18, .78) 100%);
}
.hero__content { position: relative; z-index: 2; padding: 110px 0 70px; color: #fff; max-width: 780px; }
.hero__eyebrow {
  font-size: 12px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255, 255, 255, .82); margin-bottom: 18px;
}
.hero h1 { color: #fff; font-size: clamp(34px, 5.6vw, 64px); letter-spacing: -0.035em; }
.hero p { font-size: clamp(16px, 1.5vw, 19px); color: rgba(255, 255, 255, .9); margin: 20px 0 32px; max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- trust strip ---------- */
.trust { background: var(--bg-3); padding: 22px 0; }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust__item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 500; color: #1b1b1b; }
.trust__item svg { width: 20px; height: 20px; flex: 0 0 auto; }

/* ---------- category cards ---------- */
.cats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.cat {
  display: flex; flex-direction: column; background: var(--bg-2);
  border-radius: var(--radius); overflow: hidden; transition: transform .25s ease;
}
.cat:hover { transform: translateY(-3px); }
.cat__media { aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; padding: 14px; }
.cat__media img { width: 100%; height: 100%; object-fit: contain; }
.cat__body { padding: 0 18px 20px; }
.cat__name { font-size: 15.5px; font-weight: 500; color: var(--heading); }
.cat__meta { font-size: 13px; color: var(--fg-muted); margin-top: 4px; }

/* ---------- product grid ---------- */
.grid-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px 20px; }

.grid-products--3 { grid-template-columns: repeat(3, 1fr); }

.grid-products--2 { grid-template-columns: repeat(2, 1fr); }

.grid-products--1 { grid-template-columns: minmax(0, 360px); justify-content: center; }
.card { display: flex; flex-direction: column; gap: 12px; }
.card__media {
  position: relative; aspect-ratio: 1 / 1; background: var(--bg-2);
  border-radius: var(--radius); overflow: hidden;
}
.card__media img {
  width: 100%; height: 100%; object-fit: contain; padding: 20px;
  transition: transform .45s cubic-bezier(.2, .7, .3, 1);
}
.card:hover .card__media img { transform: scale(1.045); }
.card__badge {
  position: absolute; top: 12px; left: 12px; background: #000; color: #fff;
  font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.card__cat { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-muted); }
.card__title { font-size: 15px; font-weight: 500; color: var(--heading); line-height: 1.4; }
.card__price { font-size: 15px; font-weight: 500; color: var(--heading); }
.card__price s { color: var(--fg-muted); font-weight: 400; margin-left: 8px; }

/* ---------- feature / why blocks ---------- */
.why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.why__item { display: flex; flex-direction: column; gap: 14px; }
.why__icon {
  width: 46px; height: 46px; border-radius: 999px; background: var(--bg-3);
  display: flex; align-items: center; justify-content: center; flex: 0 0 auto;
}
.why__icon svg { width: 22px; height: 22px; }
.why__title { font-size: 16px; font-weight: 500; color: var(--heading); }
.why__text { font-size: 14.5px; color: var(--fg-muted); }

/* ---------- split (brand story) ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.split__media { border-radius: var(--radius); overflow: hidden; background: var(--bg-2); }
.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split h2 { margin-bottom: 18px; }
.split ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.split li { display: flex; gap: 12px; font-size: 14.5px; }
.split li::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px; background: #000;
  margin-top: 9px; flex: 0 0 auto;
}

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step { background: #fff; border-radius: var(--radius); padding: 28px; }
.step__num {
  counter-increment: step; font-size: 13px; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--fg-muted); margin-bottom: 14px;
}
.step__num::before { content: "Step " counter(step); }
.step h3 { font-size: 17px; font-weight: 500; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--fg-muted); }

/* ---------- accordion ---------- */
.acc { border-top: 1px solid var(--border); }
.acc details { border-bottom: 1px solid var(--border); }
.acc summary {
  list-style: none; cursor: pointer; display: flex; align-items: flex-start;
  justify-content: space-between; gap: 20px; padding: 20px 0;
  font-size: 16px; font-weight: 500; color: var(--heading);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: ""; flex: 0 0 auto; width: 9px; height: 9px; margin-top: 6px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); transition: transform .22s ease;
}
.acc details[open] summary::after { transform: rotate(-135deg); }
.acc__body { padding: 0 0 22px; max-width: 74ch; font-size: 15px; color: var(--fg); }

/* ---------- page header ---------- */
.page-head { padding: 52px 0 8px; }
.page-head h1 { font-size: clamp(30px, 4.2vw, 48px); }
.page-head p { color: var(--fg-muted); margin-top: 14px; max-width: 62ch; }
.crumbs { font-size: 13px; color: var(--fg-muted); margin-bottom: 18px; }
.crumbs a:hover { color: #000; text-decoration: underline; }
.crumbs span { padding: 0 6px; }

/* ---------- filter chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 36px; }
.chip {
  border: 1px solid var(--border-strong); background: #fff; border-radius: 999px;
  padding: 9px 18px; font-size: 14px; cursor: pointer; transition: all .18s ease;
}
.chip:hover { border-color: rgba(0, 0, 0, .45); }
.chip.is-active { background: #000; border-color: #000; color: #fff; }

/* ---------- product detail ---------- */
.pdp { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr); gap: 56px; padding: 8px 0 74px; }
.gallery__main {
  background: var(--bg-2); border-radius: var(--radius); aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center; padding: 26px; overflow: hidden;
}
.gallery__main img { width: 100%; height: 100%; object-fit: contain; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-top: 12px; }
.thumb {
  background: #fff; border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  aspect-ratio: 1 / 1; padding: 6px; cursor: pointer; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.thumb img { width: 100%; height: 100%; object-fit: contain; }
.thumb.is-active { border-color: #000; }
.pdp__info { padding-top: 6px; }
.pdp__info h1 { font-size: clamp(26px, 3vw, 36px); }
.pdp__sub { font-size: 14.5px; color: var(--fg-muted); margin: 16px 0 0; }
.pdp__price { margin: 22px 0 6px; font-size: 27px; font-weight: 700; color: var(--heading); letter-spacing: -0.02em; }
.pdp__price s { font-size: 17px; font-weight: 400; color: var(--fg-muted); margin-left: 10px; }
.pdp__stock { font-size: 13.5px; color: var(--fg-muted); }
.pdp__actions { display: flex; flex-direction: column; gap: 12px; margin: 26px 0 16px; }
.pdp__note {
  font-size: 13.5px; color: var(--fg); background: var(--bg-3);
  border-radius: var(--radius-sm); padding: 14px 16px; margin-top: 14px;
}
.pdp__note[hidden] { display: none; }
.pdp__points { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 11px; }
.pdp__points li { display: flex; gap: 11px; font-size: 14.5px; }
.pdp__points li::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px; background: #000;
  margin-top: 9px; flex: 0 0 auto;
}
.pdp__meta { display: grid; gap: 6px; margin-top: 26px; font-size: 13.5px; color: var(--fg-muted); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature {
  background: var(--bg-2); border-radius: var(--radius); padding: 26px;
}
.feature h3 { font-size: 16px; font-weight: 500; margin-bottom: 10px; }
.feature p { font-size: 14.5px; color: var(--fg-muted); }

.specs { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.specs th, .specs td { padding: 14px 16px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.specs th { width: 38%; font-weight: 500; color: var(--heading); background: var(--bg-2); }
.specs tr:first-child th, .specs tr:first-child td { border-top: 1px solid var(--border); }

.inbox { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.inbox li { display: flex; gap: 12px; font-size: 14.5px; }
.inbox li::before {
  content: ""; width: 16px; height: 16px; flex: 0 0 auto; margin-top: 3px;
  border: 1.5px solid #000; border-radius: 4px;
}
.link-list li::before { display: none; }
.link-list a:hover { text-decoration: underline; }

/* ---------- forms ---------- */
.form { display: grid; gap: 18px; max-width: 640px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 14px; font-weight: 500; color: var(--heading); }
.field .req { color: #a32d2d; }
.field input, .field textarea {
  width: 100%; border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  background: #fff; padding: 13px 15px; font-size: 15px; outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: #000; box-shadow: 0 0 0 3px rgba(0, 0, 0, .06); }
.field__hint { font-size: 13px; color: var(--fg-muted); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__notice {
  border-radius: var(--radius-sm); padding: 16px 18px; font-size: 14.5px;
  background: var(--bg-3); border: 1px solid rgba(0, 0, 0, .08);
}
.form__notice[hidden] { display: none; }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.info-card { border: 1px solid var(--border-strong); border-radius: var(--radius); padding: 26px; }
.info-card h3 { font-size: 16px; font-weight: 500; margin-bottom: 10px; }
.info-card p, .info-card a { font-size: 14.5px; color: var(--fg-muted); }
.info-card a:hover { color: #000; text-decoration: underline; }

/* ---------- cta band ---------- */
.cta-band { background: var(--bg-3); }
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-band h2 { font-size: clamp(24px, 3.2vw, 34px); }
.cta-band p { color: var(--fg-muted); margin-top: 10px; }

/* ---------- footer ---------- */
.footer { background: var(--bg-dark); color: rgba(255, 255, 255, .84); padding: 60px 0 30px; }
.footer a { color: rgba(255, 255, 255, .84); }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 42px; }
.footer h3 {
  color: #fff; font-size: 12px; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; margin-bottom: 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; font-size: 14px; }
.footer__brand { max-width: 340px; }
.footer__logo {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--brand-soft, #e1edf5); border-radius: var(--radius-sm);
  padding: 10px 14px; margin-bottom: 18px;
}
.footer__logo svg { width: 24px; height: 24px; flex: 0 0 auto; }
.footer__wordmark { font-size: 18px; font-weight: 700; letter-spacing: .05em; color: var(--brand, #14508f); }
.footer__tagline { font-size: 14px; color: rgba(255, 255, 255, .6); }
.newsletter-form { margin-top: 14px; }
.newsletter { display: flex; gap: 10px; }
.newsletter input {
  flex: 1; min-height: 46px; border-radius: 999px; padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .32); background: transparent; color: #fff;
}
.newsletter input::placeholder { color: rgba(255, 255, 255, .5); }
.newsletter input:focus { outline: none; border-color: #fff; }
.newsletter .btn { background: #fff; color: #000; border-color: #fff; }
.newsletter .btn:hover { background: rgba(255, 255, 255, .85); }
.footer__note { font-size: 13px; color: rgba(255, 255, 255, .58); margin-top: 12px; }
.footer .form__notice {
  background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .22);
  color: #fff; margin-top: 12px;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .14); margin-top: 46px; padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255, 255, 255, .58);
}
.footer__bottom a { color: rgba(255, 255, 255, .58); }

.note-inline {
  font-size: 13.5px; color: var(--fg-muted); background: var(--bg-2);
  border-radius: var(--radius-sm); padding: 14px 16px;
}
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* ---------- legal page ---------- */
.legal { max-width: 78ch; }
.legal h2 { font-size: 21px; margin: 40px 0 12px; }
.legal p, .legal li { font-size: 14.5px; color: var(--fg); }
.legal ul { padding-left: 22px; display: grid; gap: 8px; margin: 0 0 1em; }

/* ---------- responsive ---------- */
@media (max-width: 1120px) {
  .cats { grid-template-columns: repeat(3, 1fr); }
  .why { grid-template-columns: repeat(2, 1fr); }
  .grid-products { grid-template-columns: repeat(3, 1fr); }
  .grid-products--1 { grid-template-columns: minmax(0, 360px); justify-content: center; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .pdp { grid-template-columns: 1fr; gap: 34px; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .steps { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

@media (max-width: 820px) {
  .nav, .header__cta { display: none; }
  .burger { display: inline-flex; }
  .header__inner { min-height: 66px; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .grid-products { grid-template-columns: repeat(2, 1fr); gap: 28px 14px; }
  .grid-products--1 { grid-template-columns: minmax(0, 1fr); justify-content: stretch; }
  .why { grid-template-columns: 1fr; gap: 26px; }
  .feature-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .gallery__thumbs { grid-template-columns: repeat(5, 1fr); }
  .hero { min-height: 68svh; }
  .hero__content { padding: 84px 0 54px; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .section { padding: 52px 0; }
  .container { padding: 0 18px; }
}
