/* ==========================================================
   STOPACK — основні стилі
   Макет 1440px. Розміри масштабуються через clamp().
   ========================================================== */
:root {
  --black: #000;
  --white: #fff;
  --grey-bg: #d9d9d9;
  --grey-input: #ececec;
  --grey-shade: #e8e8e8;
  --text: #111;
  --muted: #6b6b6b;
  --radius: 30px;
  --radius-sm: 18px;
  --container: 1300px;
  --gutter: clamp(16px, 5.7vw, 83px);
  --fs-body: clamp(17px, 2.08vw, 30px);
  --fs-h2: clamp(22px, 2.08vw, 30px);
  --fs-nav: clamp(15px, 1.4vw, 20px);
  --font: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.3;
  display: flex; flex-direction: column; min-height: 100vh;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }
.main { flex: 1; position: relative; }
.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding-top: clamp(28px, 5vw, 60px); padding-bottom: clamp(28px, 5vw, 60px); }
.section--top { padding-top: clamp(24px, 3vw, 40px); padding-bottom: 0; }
.section--tight { padding-top: clamp(20px, 3vw, 40px); }
.mt-40, .h2.mt-40 { margin-top: clamp(24px, 3vw, 40px); }
.mt-60, .h2.mt-60 { margin-top: clamp(36px, 4.5vw, 60px); }
.muted { color: var(--muted); }
.h2 { font-size: var(--fs-h2); font-weight: 700; letter-spacing: .04em; margin: 0 0 clamp(14px, 2vw, 26px); line-height: 1.3; }
.lead-text { font-size: var(--fs-body); margin: 0 0 .3em; }

/* ---------- Текстові блоки з адмінки ---------- */
.rich { font-size: clamp(16px, 1.4vw, 20px); line-height: 1.45; }
.rich--lg { font-size: var(--fs-body); line-height: 1.3; letter-spacing: .01em; }
.rich p { margin: 0 0 1.3em; }
.rich p:last-child { margin-bottom: 0; }
.rich strong, .rich b { font-weight: 700; }
.rich a { text-decoration: underline; text-underline-offset: 3px; }
.rich ul, .rich ol { padding-left: 1.2em; }
.notice { font-weight: 700; margin-bottom: 1.4em; }
.notice p { margin: 0; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; text-align: center;
  border: 0; border-radius: var(--radius); cursor: pointer; text-decoration: none;
  font-weight: 700; text-transform: uppercase; letter-spacing: .03em;
  padding: .7em 1.6em; font-size: clamp(15px, 1.5vw, 20px); line-height: 1.2;
  transition: transform .15s ease, background .2s, color .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.btn:active { transform: translateY(0); }
.btn--dark { background: var(--black); color: var(--white); }
.btn--dark:hover { background: #1c1c1c; }
.btn--light { background: var(--white); color: var(--black); }
.btn--sm { font-size: 14px; padding: .75em 1.3em; border-radius: 22px; }
.btn--wide { width: min(725px, 100%); min-height: clamp(56px, 6.3vw, 91px); font-size: clamp(18px, 2.1vw, 30px); }
.btn--xl { width: min(464px, 100%); min-height: clamp(64px, 11.8vw, 170px); font-size: clamp(20px, 2.9vw, 42px); border-radius: clamp(24px, 2.4vw, 34px); padding: .5em 1em; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; pointer-events: none; }

/* ---------- Шапка ---------- */
.header { background: var(--white); position: sticky; top: 0; z-index: 50; }
.header__inner { display: flex; align-items: center; gap: 24px; min-height: clamp(72px, 9.9vw, 142px); }
.logo { flex-shrink: 0; display: block; text-decoration: none; }
.logo img { height: clamp(40px, 4.6vw, 66px); width: auto; }
.logo--text { font-weight: 800; font-size: 28px; letter-spacing: -.02em; }
.nav { flex: 1; display: flex; justify-content: space-between; margin-left: clamp(24px, 6vw, 88px); }
.nav__link { font-size: var(--fs-nav); font-weight: 600; text-decoration: none; position: relative; padding: 6px 0; white-space: nowrap; }
.nav__link::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: currentColor; transform: scaleX(0); transition: transform .25s; }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__mobile-extra { display: none; }
.header__phone { display: none; font-weight: 600; text-decoration: none; white-space: nowrap; font-size: 15px; }
.header-shade { height: clamp(40px, 10vw, 150px); background: linear-gradient(to bottom, var(--grey-shade), rgba(255,255,255,0)); margin-bottom: clamp(-150px, -10vw, -40px); position: relative; z-index: 0; pointer-events: none; }
.main > * { position: relative; z-index: 1; }

.burger { display: none; margin-left: auto; width: 44px; height: 44px; border: 0; background: none; cursor: pointer; padding: 10px; }
.burger span { display: block; height: 2.5px; background: var(--black); border-radius: 2px; margin: 5px 0; transition: transform .25s, opacity .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Слайдер ---------- */
.hero { position: relative; max-width: 1380px; margin: clamp(20px, 5vw, 74px) auto 0; width: calc(100% - clamp(0px, 4vw, 60px)); aspect-ratio: 1380 / 592; min-height: 320px; overflow: hidden; background: #eee; }
.hero__track, .hero__slide { position: absolute; inset: 0; }
.hero__slide { opacity: 0; visibility: hidden; transition: opacity .8s ease, visibility .8s; }
.hero__slide.is-active { opacity: 1; visibility: visible; }
.hero__slide picture, .hero__img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__img { object-fit: cover; object-position: right center; }
.hero__slide::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.92) 22%, rgba(255,255,255,.55) 40%, rgba(255,255,255,0) 58%); }
.hero__content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 0 clamp(20px, 4.7vw, 67px) clamp(40px, 5vw, 60px); max-width: 640px; }
.hero__title { font-size: clamp(30px, 4.9vw, 70px); font-weight: 800; line-height: 1.12; margin: 0; letter-spacing: -.005em; }
.hero__sub { font-size: clamp(16px, 1.5vw, 22px); margin: 1em 0 0; }
.hero__btn { margin-top: 1.2em; align-self: flex-start; }
.hero__dots { position: absolute; z-index: 3; left: 50%; bottom: clamp(18px, 2.2vw, 32px); transform: translateX(-50%); display: flex; gap: clamp(10px, 2vw, 29px); }
.hero__dot { width: clamp(60px, 14.6vw, 210px); height: 24px; padding: 0; border: 0; background: none; cursor: pointer; display: flex; align-items: center; }
.hero__dot i { display: block; width: 100%; height: clamp(6px, .85vw, 12px); border-radius: 12px; background: rgba(230,230,230,.9); overflow: hidden; position: relative; }
.hero__dot.is-active i { background: rgba(0,0,0,.25); }
.hero__dot.is-active i::after { content: ''; position: absolute; inset: 0; background: var(--black); transform-origin: left; animation: dotfill var(--interval, 6s) linear forwards; }
.hero.is-paused .hero__dot.is-active i::after { animation-play-state: paused; }
@keyframes dotfill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hero-after { text-align: center; padding-top: clamp(14px, 2vw, 30px); padding-bottom: clamp(30px, 6vw, 90px); }
.hero-after__text { text-align: left; font-size: clamp(15px, 1.55vw, 22px); margin: 0 0 clamp(30px, 5vw, 72px); padding-left: clamp(0px, 2.5vw, 36px); }

/* ---------- Двоколонковий блок (текст + фото) ---------- */
.split { display: grid; grid-template-columns: minmax(0, 470px) minmax(0, 757px); justify-content: space-between; column-gap: 40px; align-items: start; }
.split__title { grid-column: 1 / -1; padding-left: clamp(0px, 1vw, 14px); }
.split__text { display: flex; flex-direction: column; gap: clamp(24px, 2.6vw, 38px); padding-top: clamp(0px, 5vw, 70px); }
.split__text .rich--lg { font-size: clamp(17px, 2.08vw, 30px); }
.split__media img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: clamp(20px, 2.4vw, 34px); }
.split--delivery .split__title { margin-bottom: 0; }
.split--delivery .split__text { padding-top: clamp(0px, 2vw, 30px); }
.split--delivery .rich--lg { font-size: clamp(17px, 1.95vw, 28px); }
.split--delivery .split__media { margin-top: -10px; }

/* ---------- Банери ---------- */
.banner { position: relative; overflow: hidden; border-radius: clamp(20px, 2.4vw, 34px); }
.banner img { width: 100%; aspect-ratio: 1300 / 556; object-fit: cover; }
.banner--cta img { aspect-ratio: 1302 / 410; }
.banner__btn { position: absolute; left: 50%; bottom: clamp(16px, 1.3vw, 18px); transform: translateX(-50%); }
.banner__btn:hover { transform: translate(-50%, -2px); }

/* ---------- Картки категорій ---------- */
.cards-scroll { position: relative; }
.cards { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 var(--gutter) 10px clamp(16px, 5.1vw, 74px); scrollbar-width: none; }
.cards::-webkit-scrollbar { display: none; }
.card { flex: 0 0 clamp(220px, 25.8vw, 371px); aspect-ratio: 371 / 786; max-height: 80vh; position: relative; border-radius: var(--radius-sm); overflow: hidden; text-decoration: none; color: var(--white); scroll-snap-align: start; background: #222; }
.card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover img { transform: scale(1.05); }
.card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.6) 18%, rgba(0,0,0,0) 38%); }
.card__title { position: absolute; z-index: 1; left: 12px; right: 12px; bottom: clamp(24px, 3vw, 40px); text-align: center; font-weight: 700; font-size: clamp(20px, 2.6vw, 38px); letter-spacing: .04em; line-height: 1.25; }
.cards-scroll__btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(255,255,255,.92); box-shadow: 0 4px 20px rgba(0,0,0,.2); font-size: 30px; line-height: 1; cursor: pointer; display: none; }
.cards-scroll__btn--prev { left: 16px; } .cards-scroll__btn--next { right: 16px; }
.cards-scroll.has-overflow .cards-scroll__btn { display: block; }
.cards-scroll__btn[disabled] { opacity: 0; pointer-events: none; }

/* ---------- Каталог ---------- */
.breadcrumbs { font-size: 14px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.breadcrumbs a { text-decoration: none; } .breadcrumbs a:hover { color: var(--black); }
.catalog__head { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 10px; }
.catalog__head .h2 { margin: 0; }
.search { display: flex; background: var(--grey-input); border-radius: var(--radius); overflow: hidden; width: min(420px, 100%); }
.search input { flex: 1; border: 0; background: none; padding: 14px 20px; font: inherit; font-size: 15px; outline: none; min-width: 0; }
.search button { border: 0; background: none; padding: 0 18px; cursor: pointer; }
.chips { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0 30px; }
.chip { padding: 10px 20px; border-radius: 30px; background: var(--grey-input); text-decoration: none; font-weight: 600; font-size: 15px; transition: background .2s, color .2s; }
.chip:hover { background: #dcdcdc; }
.chip.is-active { background: var(--black); color: var(--white); }
.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.product-card { border-radius: var(--radius-sm); background: #f6f6f6; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .25s, transform .25s; }
.product-card:hover { box-shadow: 0 14px 36px rgba(0,0,0,.12); transform: translateY(-3px); }
.product-card__img { position: relative; display: block; aspect-ratio: 1; overflow: hidden; background: #e9e9e9; }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; }
.product-card__body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card__sku { font-size: 13px; color: var(--muted); }
.product-card__title { font-size: 17px; font-weight: 700; margin: 0; line-height: 1.3; }
.product-card__title a { text-decoration: none; }
.product-card__text { font-size: 14px; color: #444; margin: 0; }
.product-card__foot { margin-top: auto; padding-top: 10px; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.price b { font-size: 19px; } .price small { color: var(--muted); margin-left: 2px; } .price s { color: var(--muted); margin-left: 8px; font-size: 14px; }
.badge { position: absolute; top: 12px; left: 12px; background: var(--black); color: var(--white); font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: .04em; }
.badge--inline { position: static; display: inline-block; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a { min-width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--grey-input); text-decoration: none; font-weight: 600; }
.pagination a.is-active { background: var(--black); color: var(--white); }
.empty { text-align: center; padding: 60px 20px; background: #f6f6f6; border-radius: var(--radius-sm); }
.empty p { font-size: 18px; margin: 0 0 20px; }

.product { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 60px); align-items: start; }
.product__main { border-radius: clamp(20px, 2.4vw, 34px); overflow: hidden; background: #eee; }
.product__main img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product__thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.product__thumbs button { width: 80px; height: 80px; padding: 0; border: 2px solid transparent; border-radius: 12px; overflow: hidden; cursor: pointer; background: none; }
.product__thumbs button.is-active { border-color: var(--black); }
.product__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.product__info .btn--xl { min-height: 80px; font-size: clamp(18px, 1.8vw, 26px); }
.product__price { font-size: clamp(22px, 2.4vw, 34px); margin: 18px 0; }
.product__price small { font-size: .55em; color: var(--muted); } .product__price s { font-size: .55em; color: var(--muted); margin-left: 10px; }
.product__meta { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 10px; font-size: 16px; }
.product__meta a { color: var(--muted); }
.dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: #c9a227; margin-right: 6px; } .dot--ok { background: #2ea44f; }
.specs { width: 100%; border-collapse: collapse; margin-top: 30px; font-size: 15px; }
.specs th, .specs td { text-align: left; padding: 12px 0; border-bottom: 1px solid #e3e3e3; vertical-align: top; }
.specs th { font-weight: 600; width: 45%; color: #444; padding-right: 20px; }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 80px var(--gutter); }
.notfound__code { font-size: clamp(90px, 16vw, 200px); font-weight: 800; line-height: 1; letter-spacing: -.04em; }
.notfound__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.notfound .btn--light { background: var(--grey-input); }

/* ---------- Підвал ---------- */
.footer { background: var(--grey-bg); position: relative; overflow: hidden; margin-top: clamp(20px, 2.5vw, 34px); }
.footer__inner { display: grid; grid-template-columns: 1.05fr .95fr 1.4fr 1.45fr; gap: 24px; padding-top: clamp(40px, 5vw, 70px); padding-bottom: clamp(30px, 4vw, 50px); position: relative; z-index: 1; align-items: start; padding-left: clamp(16px, 4.5vw, 66px); }
.footer__logo { padding-top: clamp(0px, 3.4vw, 50px); }
.footer .logo img { height: clamp(52px, 5.6vw, 81px); }
.footer__col { display: flex; flex-direction: column; gap: 22px; padding-top: 18px; }
.footer__col--2 { padding-top: 40px; }
.footer__col a, .footer__contacts { font-size: clamp(15px, 1.53vw, 22px); font-weight: 600; text-decoration: none; }
.footer__col a:hover { text-decoration: underline; }
.footer__contacts { display: flex; flex-direction: column; gap: 6px; line-height: 1.3; }
.footer__company { margin-bottom: 24px; }
.footer__addr { margin-bottom: 30px; }
.footer__addr a, .footer__contacts a { text-decoration: none; }
.footer__mail a { text-decoration: underline; text-underline-offset: 3px; }
.footer__hours { font-weight: 500; font-size: .85em; margin-top: 8px; }
.footer__social { display: flex; gap: 14px; margin-top: 14px; }
.footer__social a { width: 42px; height: 42px; border-radius: 50%; background: var(--black); color: var(--white); display: grid; place-items: center; }
.footer__bottom { position: relative; z-index: 1; font-size: 13px; color: #555; padding-bottom: 20px; padding-left: clamp(16px, 4.5vw, 66px); }
.footer__watermark { position: absolute; right: -40px; bottom: -80px; width: 460px; height: 250px; background: url('../img/watermark.png') no-repeat center / contain; opacity: .7; pointer-events: none; }

/* ---------- Модальне вікно заявки ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; transition: opacity .3s, visibility .3s; }
.modal.is-open { visibility: visible; opacity: 1; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(255,255,255,.35); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.modal__box { position: relative; width: min(618px, 100%); max-height: calc(100vh - 40px); overflow-y: auto; background: var(--white); border-radius: clamp(24px, 2.4vw, 34px); padding: clamp(24px, 3vw, 44px) clamp(18px, 2vw, 28px) clamp(24px, 3vw, 44px); box-shadow: 0 30px 80px rgba(0,0,0,.25); transform: translateY(20px) scale(.97); transition: transform .3s; }
.modal.is-open .modal__box { transform: none; }
.modal__close { position: absolute; top: 12px; right: 16px; width: 40px; height: 40px; border: 0; background: none; font-size: 30px; cursor: pointer; line-height: 1; color: #777; }
.modal__close:hover { color: #000; }
.modal__title { font-size: 20px; margin: 0 0 16px; padding-left: 28px; font-weight: 700; }
.modal__product { margin: -6px 0 14px 28px; font-size: 15px; color: var(--muted); }
.modal__product b { color: var(--black); }
.lead-form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field span { font-size: clamp(16px, 1.53vw, 22px); padding-left: 28px; }
.field input, .field textarea { border: 2px solid transparent; background: var(--grey-input); border-radius: 34px; height: clamp(54px, 4.6vw, 66px); padding: 0 28px; font: inherit; font-size: 17px; outline: none; transition: border-color .2s, background .2s; }
.field textarea { height: auto; padding: 16px 28px; border-radius: 24px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: #bbb; background: #f4f4f4; }
.field.has-error input { border-color: #e04848; }
.field .field__err { color: #d02c2c; font-size: 13px; padding-left: 28px; margin-top: -4px; }
.lead-form .btn--block { min-height: clamp(64px, 7.8vw, 113px); font-size: clamp(18px, 2.3vw, 33px); border-radius: 40px; margin-top: 8px; }
.lead-form__consent { font-size: 12px; color: var(--muted); margin: 0; padding: 0 28px; }
.lead-form__error { background: #fde8e8; color: #9b1c1c; padding: 12px 20px; border-radius: 16px; font-size: 15px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lead-success { text-align: center; padding: 20px 10px; }
.lead-success__icon { width: 80px; height: 80px; margin: 0 auto 20px; border-radius: 50%; background: var(--black); color: var(--white); font-size: 40px; display: grid; place-items: center; }
.lead-success p { font-size: 20px; margin: 0 0 24px; }

/* ---------- Адаптив ---------- */
@media (max-width: 1100px) {
  .nav { margin-left: 30px; gap: 16px; }
}
@media (max-width: 960px) {
  .burger { display: block; }
  .header__phone { display: block; margin-left: auto; }
  .header__phone + .burger { margin-left: 0; }
  .nav {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0; margin: 0; background: var(--white);
    flex-direction: column; justify-content: flex-start; gap: 4px; padding: 20px var(--gutter) 40px;
    transform: translateX(100%); transition: transform .3s ease; overflow-y: auto; z-index: 49;
  }
  .nav.is-open { transform: none; }
  .nav__link { font-size: 22px; padding: 14px 0; border-bottom: 1px solid #eee; }
  .nav__link::after { display: none; }
  .nav__mobile-extra { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; align-items: flex-start; }
  .nav__phone { font-weight: 700; font-size: 18px; text-decoration: none; }
  .split { grid-template-columns: 1fr; }
  .split__text { padding-top: 0; }
  .split__media { order: -1; grid-row: 2; }
  .split__title { grid-row: 1; }
  .split--delivery .split__media { margin-top: 0; }
  .product { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__logo { grid-column: 1 / -1; padding-top: 0; }
  .footer__contacts { grid-column: 1 / -1; }
  .footer__col--2 { padding-top: 18px; }
}
@media (max-width: 640px) {
  .header__phone { display: none; }
  .header__phone + .burger { margin-left: auto; }
  .split__media { margin-bottom: 8px; }
  .hero { aspect-ratio: auto; height: 460px; width: 100%; margin-top: 16px; }
  .hero__slide::before { background: linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.75) 45%, rgba(255,255,255,0) 75%); }
  .hero__content { justify-content: flex-start; padding-top: 36px; }
  .hero__img { object-position: 70% center; }
  .hero-after__text { padding-left: 0; }
  .card { flex-basis: 70vw; aspect-ratio: 3 / 5; }
  .cards-scroll__btn { display: none !important; }
  .btn--xl { min-height: 68px; }
  .products { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-card__body { padding: 12px; }
  .product-card__title { font-size: 15px; }
  .product-card__text { display: none; }
  .product-card__foot { flex-direction: column; align-items: stretch; }
  .footer__watermark { width: 280px; height: 160px; }
  .field span, .modal__title, .modal__product { padding-left: 16px; margin-left: 0; }
  .field input { padding: 0 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
