:root {
  --ink: #0E2233;
  --ink2: #18364D;
  --salmon: #F2603A;
  --salmon-d: #D64A23;
  --salmon-l: #FFE9E1;
  --sun: #FFCE3A;
  --ice: #EEF4F7;
  --line: #DCE6EB;
  --text: #15232D;
  --muted: #5B6D78;
  --bg: #fff;
  --head: "Sofia Sans Extra Condensed", "Arial Narrow", Arial, sans-serif;
  --body: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --gold: #FFD97A;
  --stripes: repeating-linear-gradient(118deg, transparent 0 30px, rgba(255,255,255,.18) 30px 33px);
  color-scheme: light;
}

/* усі кути квадратні */
*, *::before, *::after { box-sizing: border-box; border-radius: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.lock, html.lock body { overflow: hidden; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 16px/1.6 var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; padding: 0; }
button, input, textarea { border-radius: 0; -webkit-appearance: none; appearance: none; }
input, textarea { font: inherit; }
[id] { scroll-margin-top: 84px; }

.wrap { max-width: 1200px; margin-inline: auto; padding-inline: 20px; }

svg.i {
  width: 22px; height: 22px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: square; stroke-linejoin: miter;
}

h1, h2, h3 {
  font-family: var(--head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .005em;
  line-height: 1.06;
  color: var(--ink);
  margin: 0;
}
h2 { font-size: clamp(30px, 4.2vw, 48px); }

/* ---------- бігучий рядок ---------- */
.ticker { background: var(--sun); color: var(--ink); overflow: hidden; white-space: nowrap; }
.ticker__track { display: inline-flex; animation: tick 40s linear infinite; will-change: transform; }
.ticker__group { display: inline-flex; align-items: center; gap: 18px; padding: 9px 18px 9px 0; font: 600 13px/1.2 var(--body); }
.ticker__group svg.i { width: 20px; height: 20px; stroke-width: 1.6; }
@keyframes tick { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* ---------- шапка ---------- */
.hdr { position: sticky; top: 0; z-index: 40; background: var(--ink); color: #fff; }
.hdr__in { position: relative; height: 68px; display: flex; align-items: center; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; }
.logo svg { width: 42px; height: 42px; }
.logo__txt { font: 700 22px/1 var(--body); letter-spacing: -.03em; }
.logo__txt b { color: var(--salmon); font-weight: 700; }
.hdr__nav { display: flex; gap: 28px; margin-left: auto; }
.hdr__nav a { text-decoration: none; font-weight: 500; font-size: 15px; color: rgba(255,255,255,.82); padding-block: 6px; border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
.hdr__nav a:hover { color: var(--sun); }
.hdr__nav a.on { color: #fff; border-color: var(--salmon); }
.hdr__act { display: flex; gap: 4px; margin-left: 8px; }
.icon-btn { width: 44px; height: 44px; display: grid; place-items: center; position: relative; color: #fff; transition: background .2s; }
.icon-btn:hover { background: rgba(255,255,255,.1); }
.cart-count {
  position: absolute; top: 4px; right: 2px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--salmon); color: #fff; font: 700 11px/18px var(--body); text-align: center;
}
.cart-count.bump { animation: bump .45s ease; }
@keyframes bump { 40% { transform: scale(1.45); } }
#menuBtn { display: none; }

/* ---------- мобільне меню ---------- */
.nav {
  position: fixed; inset: 0; z-index: 60;
  background: var(--ink); color: #fff;
  display: flex; flex-direction: column;
  padding: 0 20px calc(24px + env(safe-area-inset-bottom));
  transform: translateY(-100%); visibility: hidden;
  transition: transform .35s ease, visibility 0s .35s;
  overflow-y: auto;
}
.nav.open { transform: none; visibility: visible; transition: transform .35s ease; }
.nav__top { height: 68px; flex: none; display: flex; align-items: center; justify-content: space-between; }
.nav__links { display: flex; flex-direction: column; margin-top: 8px; }
.nav__links a {
  display: flex; justify-content: space-between; align-items: center;
  font: 600 26px/1.1 var(--head); text-transform: uppercase; text-decoration: none;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.12);
}
.nav__links a svg { color: var(--salmon); }
.nav__foot { margin-top: auto; padding-top: 24px; }
.nav__foot p { margin: 0 0 12px; color: rgba(255,255,255,.7); font-size: 15px; }
.nav__foot b { color: var(--sun); font-weight: 600; }

/* ---------- кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 56px; padding: 0 26px;
  font: 700 18px/1 var(--head); text-transform: uppercase; letter-spacing: .04em;
  text-decoration: none; white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s, transform .1s;
}
.btn:active { transform: scale(.98); }
.btn--main { background: var(--salmon); color: #fff; }
.btn--main:hover { background: var(--salmon-d); }
.btn--ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink2); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--sun); }
.btn--line { color: #fff; border: 1.5px solid rgba(255,255,255,.75); }
.btn--line:hover { background: rgba(255,255,255,.12); }
.btn--block { width: 100%; }
.more {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--ink); text-decoration: none;
  padding-bottom: 3px; border-bottom: 2px solid var(--salmon);
}
.more svg.i { width: 18px; height: 18px; color: var(--salmon); transition: transform .2s; }
.more:hover svg.i { transform: translateX(4px); }

/* ---------- заглушки фото ---------- */
.ph {
  margin: 0; position: relative; overflow: hidden;
  display: grid; place-items: center;
  background:
    repeating-linear-gradient(118deg, transparent 0 26px, rgba(255,255,255,.32) 26px 29px),
    linear-gradient(140deg, #FCD8C9, #F5AE95 55%, #EC8B6A);
}
.ph--sea {
  background:
    repeating-linear-gradient(118deg, transparent 0 26px, rgba(255,255,255,.45) 26px 29px),
    linear-gradient(140deg, #E4EEF3, #C9DCE5);
}
.ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph > span {
  position: relative; max-width: 80%; text-align: center;
  font-size: 13px; font-weight: 500; line-height: 1.35; color: var(--ink);
  background: rgba(255,255,255,.8); padding: 6px 10px;
}
.ph:has(img) > span { display: none; }

/* ---------- загальне для сторінок ---------- */
.crumbs { font-size: 13px; color: var(--muted); padding-block: 18px 16px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--ink); }
.crumbs span { color: var(--ink); font-weight: 500; }
.page-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 12px 40px; padding-bottom: 28px; }
.page-head h1 { font-size: clamp(40px, 6vw, 76px); line-height: 1; }
.page-head p { margin: 0; max-width: 460px; color: var(--muted); }

.sec { padding-block: 88px; }
.sec--ice { background: var(--ice); }
.sec--ink { background: var(--ink); color: #C9D8E1; }
.sec--ink h2, .sec--ink h3 { color: #fff; }
.sec__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px 40px; flex-wrap: wrap; margin-bottom: 36px; }
.sec__head h2 { max-width: 640px; }
.sec__head p { max-width: 440px; margin: 0; color: var(--muted); }
.sec--ink .sec__head p { color: #A9BDC9; }
.sq { width: 42px; height: 42px; flex: none; background: var(--salmon); color: #fff; display: grid; place-items: center; }

/* ---------- головна: перший екран ---------- */
.hero { position: relative; overflow: hidden; color: #fff; background: #093150; }
.hero__photo {
  position: absolute; top: 0; right: 0; width: 66%; height: 100%;
  object-fit: cover; object-position: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.3) 28%, #000 62%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.3) 28%, #000 62%);
}
.hero__water { display: none; }
.hero__in { position: relative; z-index: 1; min-height: clamp(520px, 72svh, 720px); padding-block: 80px 88px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.hero h1 { max-width: 700px; text-wrap: balance; color: #fff; font-weight: 800; font-size: clamp(48px, 5.8vw, 86px); line-height: .93; letter-spacing: 0; text-shadow: 0 2px 24px rgba(9,49,80,.55); }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero__box { max-width: 560px; margin-top: 28px; padding: 18px 22px; background: rgba(0,0,0,.2); border: 1px solid rgba(160,200,235,.25); }
.hero__box p { margin: 0; font-size: 17px; line-height: 1.5; color: #E4ECF5; }
.hero__box b { font-weight: 600; color: var(--gold); white-space: nowrap; }
.hero__snow { width: 22px; height: 22px; vertical-align: -4px; margin-left: 2px; color: #9ADAFF; }
.hero__btn {
  display: inline-flex; align-items: center; gap: 24px; height: 66px; margin-top: 34px; padding-left: 30px;
  background: var(--gold); color: #17213F; text-decoration: none;
  font: 600 19px/1 var(--body); text-transform: uppercase; letter-spacing: .03em;
  transition: background .2s, transform .15s;
}
.hero__btn span { width: 66px; height: 66px; display: grid; place-items: center; background: #E2AE3E; color: #fff; }
.hero__btn span svg.i { width: 26px; height: 26px; }
.hero__btn:hover { background: #FFE6A6; transform: translateY(-2px); }

/* ---------- головна: тиждень поставки ---------- */
.week { background: var(--ink); color: #C9D8E1; padding-block: 72px; }
.week__in { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.week h2 { color: #fff; }
.week p { margin: 16px 0 0; }
.days { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.day { min-height: 124px; padding: 14px 4px; display: flex; flex-direction: column; align-items: center; justify-content: space-between; text-align: center; border: 1px solid rgba(255,255,255,.16); }
.day b { font-weight: 500; font-size: 14px; color: rgba(255,255,255,.7); }
.day span { font: 600 34px/1 var(--head); color: #fff; }
.day em { min-height: 2.5em; font-style: normal; font-size: 11.5px; line-height: 1.25; color: rgba(255,255,255,.55); }
.day.is-past { opacity: .4; }
.day.is-today { border-color: var(--sun); }
.day.is-today em { color: var(--sun); }
.day.is-fri { background: var(--salmon); border-color: var(--salmon); }
.day.is-fri b, .day.is-fri em { color: #fff; }
.week .days__legend { margin: 14px 0 0; font-weight: 600; color: var(--sun); }

/* ---------- головна: категорії ---------- */
.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cat { min-height: 220px; padding: 26px; display: flex; flex-direction: column; justify-content: space-between; border: 2px solid var(--ink); color: var(--ink); text-decoration: none; transition: background .2s, color .2s; }
.cat b { font: 600 clamp(32px, 3.6vw, 48px)/1 var(--head); text-transform: uppercase; }
.cat span { display: flex; justify-content: space-between; align-items: center; font-size: 15px; color: var(--muted); }
.cat em { font-style: normal; }
.cat:hover { background: var(--ink); color: #fff; }
.cat:hover span { color: rgba(255,255,255,.75); }
.cat--fish { background: var(--stripes), var(--salmon); border-color: var(--salmon); color: #fff; }
.cat--fish span { color: #fff; }
.cat--fish:hover { background: var(--stripes), var(--salmon-d); border-color: var(--salmon-d); }

.dteaser { display: flex; align-items: flex-start; gap: 18px; padding: 26px; border: 1px solid var(--line); background: #fff; text-decoration: none; transition: border-color .2s; }
.dteaser:hover { border-color: var(--ink); }
.dteaser .sq { width: 50px; height: 50px; background: var(--ink); color: var(--sun); }
.dteaser h3 { font-size: 26px; margin-bottom: 6px; }
.dteaser p { margin: 0; color: var(--muted); }

/* ---------- картки товарів ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }
.card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); padding: 10px 10px 14px; transition: border-color .2s; }
.card:hover { border-color: var(--ink); }
.card__link { display: block; color: inherit; text-decoration: none; }
.card .ph { aspect-ratio: 1 / 1; }
.card__tag { position: absolute; top: 10px; left: 10px; font-style: normal; font-size: 12px; font-weight: 600; background: var(--ink); color: #fff; padding: 5px 9px; }
.card h3 { font-size: 20px; margin: 14px 6px 6px; }
.card__link:hover h3 { color: var(--salmon-d); }
.card p { flex: 1; margin: 0 6px; font-size: 13.5px; line-height: 1.45; color: var(--muted); }
.card__price { margin: 14px 6px 12px; font: 600 26px/1 var(--head); color: var(--ink); }
.card__price small { font: 500 14px var(--body); color: var(--muted); }
.card__foot { margin: 0 6px; }
.card__foot .step { width: 100%; justify-content: space-between; height: 44px; }
.add {
  width: 100%; height: 44px; background: var(--salmon); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; transition: background .2s;
}
.add:hover { background: var(--salmon-d); }
.add svg.i { width: 19px; height: 19px; }

/* ---------- каталог ---------- */
.catalog { padding-bottom: 88px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.chip, .pill {
  height: 44px; padding: 0 18px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1.5px solid var(--line); background: #fff;
  font-weight: 600; font-size: 15px; color: var(--ink); transition: .2s;
}
.chip small { font-weight: 500; color: var(--muted); }
.chip:hover, .pill:hover { border-color: var(--ink); }
.chip.on, .pill.on { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip.on small { color: rgba(255,255,255,.6); }
.pills { display: flex; gap: 8px; flex-wrap: wrap; }
.catalog__note { margin: 28px 0 0; color: var(--muted); }
.catalog__note a { color: var(--ink); font-weight: 600; }

/* ---------- товар ---------- */
.prod { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 56px; align-items: start; padding-bottom: 80px; }
.gal { position: sticky; top: 88px; }
.gal__main { position: relative; overflow: hidden; }
.gal__track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.gal__track::-webkit-scrollbar { display: none; }
.gal__track .ph { flex: 0 0 100%; aspect-ratio: 1 / 1; scroll-snap-align: start; }
.gal__tag { position: absolute; z-index: 2; top: 16px; left: 16px; background: var(--sun); color: var(--ink); font: 600 13px/1 var(--body); padding: 9px 12px; }
.gal__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.gal__thumbs button { aspect-ratio: 1 / 1; overflow: hidden; border: 2px solid transparent; transition: border-color .2s; }
.gal__thumbs button.on { border-color: var(--ink); }
.gal__thumbs .ph { width: 100%; height: 100%; }
.gal__dots { display: none; position: absolute; left: 0; right: 0; bottom: 14px; justify-content: center; gap: 6px; }
.gal__dots button { width: 10px; height: 4px; background: rgba(255,255,255,.65); transition: width .25s, background .25s; }
.gal__dots button.on { width: 26px; background: #fff; }

.info h1 { font-size: clamp(32px, 4.2vw, 50px); }
.fresh { display: flex; align-items: center; gap: 9px; margin: 14px 0 0; font-size: 14.5px; color: var(--muted); }
.fresh i { width: 8px; height: 8px; background: #22A865; box-shadow: 0 0 0 4px rgba(34,168,101,.18); }
.fresh b { color: var(--ink); font-weight: 600; }
.price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 10px; margin: 22px 0 0; }
.price__num { font: 600 56px/1 var(--head); color: var(--ink); }
.price__unit { font-weight: 600; font-size: 18px; color: var(--ink); }
.price__tag { align-self: center; background: var(--salmon-l); color: var(--salmon-d); font-size: 13px; font-weight: 600; padding: 6px 10px; }
.lead { margin: 16px 0 22px; font-size: 16.5px; }
.specs { display: grid; grid-template-columns: auto 1fr; margin: 0 0 24px; border-top: 1px solid var(--line); }
.specs dt, .specs dd { margin: 0; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.specs dt { color: var(--muted); padding-right: 24px; }
.specs dd { font-weight: 600; color: var(--ink); text-align: right; }

.lbl { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.buy { background: var(--ice); padding: 20px; }
.buy__row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.step { display: inline-flex; align-items: center; background: #fff; border: 1px solid var(--line); height: 52px; }
.step button { width: 48px; height: 100%; display: grid; place-items: center; color: var(--salmon-d); }
.step button:hover { background: var(--salmon-l); }
.step output { min-width: 30px; text-align: center; font-weight: 700; font-size: 17px; color: var(--ink); white-space: nowrap; }
.step--sm { height: 40px; }
.step--sm button { width: 38px; }
.step--sm output { font-size: 14.5px; min-width: 50px; }
.est { font-size: 14px; color: var(--muted); line-height: 1.3; }
.est b { display: block; font: 600 28px/1.1 var(--head); color: var(--ink); }
.buy__btns { display: grid; gap: 10px; margin-top: 18px; }
.buy__note { margin: 12px 0 0; font-size: 13px; color: var(--muted); line-height: 1.45; }
.perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.perk { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 500; line-height: 1.3; color: var(--ink); }
.perk svg.i { color: var(--salmon); }
.ship { margin-top: 16px; border: 1px solid var(--line); padding: 18px 20px; }
.ship ul { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 10px; }
.ship li { display: flex; gap: 12px; font-size: 15px; line-height: 1.45; }
.ship li svg.i { color: var(--salmon); }

.quality { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.quality__txt p { margin: 18px 0 0; font-size: 17px; }
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.checks li { display: flex; align-items: center; gap: 16px; background: #fff; padding: 14px 18px; }
.checks b { display: block; font-weight: 600; color: var(--ink); line-height: 1.3; }
.checks div span { font-size: 14px; color: var(--muted); }

.ideas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.idea { aspect-ratio: 4 / 3; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; border: 1.5px solid var(--line); text-decoration: none; transition: border-color .2s, background .2s; }
.idea:hover { border-color: var(--salmon); background: var(--salmon-l); }
.idea h3 { font-size: 30px; }
.idea p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.45; }
.idea--hot { border-color: var(--salmon); color: #fff; background: var(--stripes), var(--salmon); }
.idea--hot:hover { background: var(--stripes), var(--salmon-d); }
.idea--hot h3, .idea--hot p { color: #fff; }

.recipe { display: grid; grid-template-columns: 330px 1fr; gap: 24px; align-items: start; }
.ingr { background: var(--ink2); padding: 24px; }
.ingr h3 { font-size: 24px; margin-bottom: 8px; }
.ingr ul { list-style: none; padding: 0; margin: 0 0 20px; }
.ingr li { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.ingr li b { color: var(--sun); font-weight: 600; white-space: nowrap; }
.steps { list-style: none; counter-reset: s; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.steps li { counter-increment: s; border: 1px solid rgba(255,255,255,.14); padding: 24px; }
.steps li::before { content: counter(s); display: block; font: 600 46px/1 var(--head); color: var(--salmon); margin-bottom: 14px; }
.steps h3 { font-size: 22px; margin-bottom: 8px; }
.steps p { margin: 0; font-size: 15px; line-height: 1.55; }

/* ---------- доставка ---------- */
.deliv { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dcard { background: #fff; border: 1px solid var(--line); padding: 28px; }
.dcard__h { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.dcard__h .sq { width: 50px; height: 50px; background: var(--ink); color: var(--sun); }
.dcard h3 { font-size: 28px; }
.dcard dl { margin: 0; display: grid; grid-template-columns: 1fr auto; }
.dcard dt, .dcard dd { margin: 0; padding: 13px 0; border-bottom: 1px dashed var(--line); }
.dcard dt { color: var(--muted); padding-right: 16px; }
.dcard dd { font-weight: 700; color: var(--ink); text-align: right; }
.pay { display: flex; gap: 12px; margin: 18px 0 0; font-size: 14.5px; line-height: 1.5; color: var(--muted); }
.pay svg.i { color: var(--salmon); }

.faqwrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.faqwrap__head { position: sticky; top: 100px; }
.faqwrap__head p { margin: 16px 0 24px; color: var(--muted); }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-weight: 600; font-size: 18px; line-height: 1.35; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.pm { width: 36px; height: 36px; flex: none; background: var(--ice); display: grid; place-items: center; transition: transform .25s, background .25s, color .25s; }
.faq details[open] .pm { transform: rotate(45deg); background: var(--salmon); color: #fff; }
.faq details p { margin: 0 0 22px; color: var(--muted); max-width: 680px; }

/* ---------- відгуки ---------- */
.revs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.revs .ph { aspect-ratio: 3 / 4; }
.revs__more { margin-top: 24px; }

/* ---------- контакти ---------- */
.contacts-page { padding-bottom: 88px; }
.contacts { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 14px; }
.ccard { display: flex; flex-direction: column; gap: 6px; padding: 26px; border: 1px solid var(--line); color: inherit; text-decoration: none; transition: border-color .2s; }
a.ccard:hover { border-color: var(--ink); }
.ccard small { font-size: 13px; font-weight: 600; color: var(--salmon-d); }
.ccard b { font: 600 28px/1.1 var(--head); text-transform: uppercase; color: var(--ink); }
.ccard > span { color: var(--muted); font-size: 15px; }
.ccard em { font-style: normal; font-weight: 600; color: var(--ink); }
.ccard--main { grid-row: span 2; justify-content: space-between; gap: 28px; background: var(--stripes), var(--ink); border-color: var(--ink); color: #C9D8E1; }
.ccard--main h2 { color: #fff; }
.ccard--main p { margin: 14px 0 0; }
.ccard__btns { display: grid; gap: 10px; }

/* ---------- кошик ---------- */
.cartpage { padding-bottom: 88px; }
.cart__empty { padding: 56px 0 24px; }
.cart__empty p { margin: 0 0 18px; font-size: 18px; color: var(--muted); }
.cartgrid { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 40px; align-items: start; }
.h3 { font-size: 22px; margin: 34px 0 14px; }
.cartside .h3 { margin-top: 0; }
.cartside { position: sticky; top: 92px; border: 1px solid var(--line); padding: 22px; }
.citems { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.citem { display: grid; grid-template-columns: minmax(0, 1fr) auto 120px 36px; grid-template-areas: "info step sum x"; gap: 10px 18px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.citem__info { grid-area: info; text-decoration: none; }
.citem__info b { display: block; color: var(--ink); font-weight: 600; line-height: 1.3; }
.citem__info:hover b { color: var(--salmon-d); }
.citem__info small { display: block; color: var(--muted); font-size: 13px; }
.citem > .step { grid-area: step; }
.citem__sum { grid-area: sum; font-weight: 700; color: var(--ink); text-align: right; white-space: nowrap; }
.citem__x { grid-area: x; width: 36px; height: 36px; display: grid; place-items: center; color: var(--muted); }
.citem__x:hover { background: var(--ice); color: var(--ink); }
.citem__x svg.i { width: 18px; height: 18px; }
.fields { display: grid; grid-template-columns: 1fr 1fr; gap: 0 14px; }
.field { display: grid; gap: 6px; margin-top: 12px; }
.field--wide { grid-column: 1 / -1; }
.field span, .field > label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field input, .field textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1.5px solid var(--line); background: #fff; color: var(--text); font-size: 16px; line-height: 1.4; outline: none; transition: border-color .2s; }
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--ink); }
.field.err input { border-color: var(--salmon); background: var(--salmon-l); }
.sum { background: var(--ice); padding: 14px 16px; display: grid; gap: 6px; font-size: 14.5px; }
.sum > div { display: flex; justify-content: space-between; gap: 12px; }
.sum .total { margin-top: 4px; padding-top: 10px; border-top: 1px solid var(--line); font-weight: 700; font-size: 18px; color: var(--ink); }
.sum small { color: var(--muted); font-size: 12.5px; line-height: 1.4; }
.warn { margin: 10px 0 0; padding: 10px 12px; font-size: 13.5px; line-height: 1.45; background: #FFF4CC; color: #6B5300; }
.warn.is-min { background: var(--salmon-l); color: var(--salmon-d); }
.cartside .btn { margin-top: 14px; }
.cart__hint { margin: 10px 0 0; font-size: 12.5px; line-height: 1.4; text-align: center; color: var(--muted); }
.order { margin-top: 18px; padding: 14px; border: 1.5px dashed var(--line); }
.order p { margin: 0 0 8px; font-size: 13px; color: var(--muted); }
.order textarea { width: 100%; border: 0; background: var(--ice); padding: 10px 12px; font-size: 13.5px; line-height: 1.45; resize: vertical; margin-bottom: 4px; }

/* ---------- заклик унизу ---------- */
.cta { color: #fff; background: repeating-linear-gradient(118deg, transparent 0 34px, rgba(255,255,255,.14) 34px 38px), var(--salmon); }
.cta__in { padding-block: 72px; display: flex; justify-content: space-between; align-items: center; gap: 28px 40px; flex-wrap: wrap; }
.cta h2 { color: #fff; max-width: 680px; }
.cta h2 span { white-space: nowrap; }
.cta p { margin: 14px 0 0; font-size: 17px; max-width: 520px; }
.cta__btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- підвал ---------- */
.foot { background: var(--ink); color: #B4C5D0; padding-block: 56px 120px; font-size: 14.5px; }
.foot__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.foot__grid p { margin: 16px 0 0; max-width: 360px; }
.foot h4 { font: 500 16px/1 var(--head); text-transform: uppercase; letter-spacing: .06em; color: #fff; margin: 8px 0 16px; }
.foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot ul a { text-decoration: none; }
.foot ul a:hover { color: var(--sun); }
.foot__bottom { display: flex; justify-content: space-between; gap: 8px 24px; flex-wrap: wrap; margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; }

/* ---------- липка панель товару ---------- */
.bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 35; background: #fff; box-shadow: 0 -10px 30px rgba(14,34,51,.12); padding: 10px 0 calc(10px + env(safe-area-inset-bottom)); transform: translateY(110%); transition: transform .3s ease; }
.bar.show { transform: none; }
.bar__in { display: flex; align-items: center; gap: 14px; }
.bar__name { margin-right: auto; font-weight: 600; color: var(--ink); line-height: 1.25; }
.bar__name small { display: block; font-weight: 500; font-size: 13.5px; color: var(--muted); }
.bar .step { height: 48px; }
.bar .btn { height: 50px; }

.toast {
  position: fixed; z-index: 80; left: 50%; bottom: 96px;
  transform: translate(-50%, 16px); opacity: 0; pointer-events: none;
  display: flex; align-items: center; gap: 12px; max-width: calc(100% - 32px);
  background: var(--ink); color: #fff; padding: 13px 18px; text-decoration: none;
  font-weight: 500; font-size: 14.5px; line-height: 1.35;
  box-shadow: 0 12px 30px rgba(14,34,51,.25); transition: opacity .3s, transform .3s;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast.show.is-link { pointer-events: auto; }
.toast u { color: var(--sun); text-decoration: none; font-weight: 600; white-space: nowrap; }

/* ---------- підзаголовки й темна вітрина ---------- */
.eyebrow { display: block; margin-bottom: 10px; font: 600 16px/1.3 var(--body); color: var(--salmon-d); }
.sec--navy { background: var(--ink); }
.sec--navy h2 { color: #fff; }
.sec--navy .eyebrow, .week .eyebrow { color: var(--gold); }
.sec--navy .card { border-color: transparent; }
.btn--gold { background: var(--gold); color: #17213F; }
.btn--gold:hover { background: #FFE6A6; }
.perks4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.perk4 { background: #fff; padding: 26px 22px; }
.perk4 .sq { width: 50px; height: 50px; margin-bottom: 18px; }
.perk4 h3 { font-size: 26px; margin-bottom: 8px; }
.perk4 p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.5; }

/* ---------- Telegram «ми онлайн» ---------- */
.tg { position: fixed; z-index: 45; right: 18px; bottom: 22px; display: flex; align-items: center; gap: 10px; text-decoration: none; transition: bottom .3s ease; animation: tgFloat 3.2s ease-in-out infinite; }
.tg__label { display: inline-flex; align-items: center; gap: 8px; padding: 10px 12px; background: #fff; color: var(--ink); font: 600 14px/1 var(--body); box-shadow: 0 8px 24px rgba(14,34,51,.18); }
.tg__label i { width: 8px; height: 8px; background: #22C55E; animation: tgPulse 1.8s infinite; }
.tg__icon { position: relative; display: block; width: 58px; height: 58px; filter: drop-shadow(0 8px 18px rgba(34,158,217,.45)); }
.tg__icon svg { display: block; width: 100%; height: 100%; }
.tg__icon::after { content: ""; position: absolute; top: 1px; right: 1px; width: 14px; height: 14px; border-radius: 50%; background: #22C55E; border: 2.5px solid #fff; }
@keyframes tgFloat { 50% { transform: translateY(-6px); } }
@keyframes tgPulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,.6); } 70%, 100% { box-shadow: 0 0 0 7px rgba(34,197,94,0); } }
body.bar-on .tg { bottom: 92px; }
@media (prefers-reduced-motion: reduce) { .tg, .tg__label i { animation: none; } }

/* ---------- плаваючий кошик ---------- */
.cartf {
  position: fixed; z-index: 45; left: 18px; bottom: 22px;
  width: 58px; height: 58px; display: grid; place-items: center;
  border-radius: 50%; background: #fff; color: var(--ink); text-decoration: none;
  box-shadow: 0 8px 22px rgba(14,34,51,.22);
  transition: bottom .3s ease, color .2s;
  animation: tgFloat 3.2s ease-in-out -1.6s infinite;
}
.cartf svg.i { width: 28px; height: 28px; }
.cartf:hover { color: var(--salmon-d); }
.cartf__count {
  position: absolute; top: -4px; right: -4px; min-width: 24px; height: 24px; padding: 0 6px;
  border-radius: 12px; border: 2px solid #fff; background: var(--salmon); color: #fff;
  font: 700 12px/20px var(--body); text-align: center;
}
.cartf__count.bump { animation: bump .45s ease; }
body[data-page="cart"] .cartf { display: none; }
body.bar-on .cartf { bottom: 92px; }
@media (prefers-reduced-motion: reduce) { .cartf { animation: none; } }

/* ---------- оформлення замовлення ---------- */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.done { max-width: 640px; padding: 32px 0 24px; }
.done__ico { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 20px; background: #22A865; color: #fff; }
.done__ico svg.i { width: 34px; height: 34px; stroke-width: 2.2; }
.done h2 { font-size: clamp(30px, 4vw, 44px); }
.done p { margin: 14px 0 24px; color: var(--muted); font-size: 17px; }
.btn:disabled { opacity: .7; cursor: progress; }
.order .btn { margin-top: 8px; }

/* ---------- Нова Пошта: підказки ---------- */
.field--ac { position: relative; }
.field input:disabled { background: var(--ice); color: var(--muted); cursor: not-allowed; }
.ac {
  position: absolute; z-index: 20; left: 0; right: 0; top: 100%;
  max-height: 290px; overflow-y: auto; margin: 4px 0 0; padding: 0; list-style: none;
  background: #fff; border: 1.5px solid var(--ink); box-shadow: 0 14px 30px rgba(14,34,51,.16);
  overscroll-behavior: contain;
}
.ac__item { padding: 10px 14px; border-bottom: 1px solid var(--line); line-height: 1.35; cursor: pointer; }
.ac__item:last-child { border-bottom: 0; }
.ac__item b { display: block; font-weight: 600; font-size: 15px; color: var(--ink); }
.ac__item small { display: block; margin-top: 2px; font-size: 12.5px; color: var(--muted); }
.ac__item:hover, .ac__item.on { background: var(--ice); }
.ac__msg { padding: 12px 14px; font-size: 14px; color: var(--muted); }

/* ---------- оформлення: кроки ---------- */
.cogrid { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 28px; align-items: start; }
.comain { display: grid; gap: 14px; }
.costep { padding: 24px; border: 1px solid var(--line); background: #fff; }
.costep > h2, .costep__head h2 { display: flex; align-items: center; gap: 12px; margin: 0 0 16px; font-size: 28px; }
.costep > h2 span { width: 34px; height: 34px; flex: none; display: grid; place-items: center; background: var(--salmon); color: #fff; font-size: 19px; }
.costep__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 6px; }
.costep__head h2 { margin: 0; }
.costep .citems { border-top: 0; }
.costep .citem:last-child { border-bottom: 0; }
.costep .opts + .fields { margin-top: 6px; }
.opts { display: grid; gap: 8px; }
.opt { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1.5px solid var(--line); background: #fff; cursor: pointer; transition: border-color .2s, background .2s; }
.opt:hover { border-color: var(--ink); }
.opt input { appearance: none; -webkit-appearance: none; flex: none; width: 20px; height: 20px; margin: 0; border: 2px solid #B9C7CF; background: #fff; transition: border-color .15s, background .15s; }
.opt input:checked { border-color: var(--ink); background: var(--salmon); box-shadow: inset 0 0 0 3px #fff; }
.opt input:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.opt:has(input:checked) { border-color: var(--ink); background: var(--ice); }
.opt__txt { flex: 1; min-width: 0; line-height: 1.35; }
.opt__txt b { display: block; font-weight: 600; color: var(--ink); }
.opt__txt small { display: block; margin-top: 2px; font-size: 13px; color: var(--muted); }
.opt__price { flex: none; font-style: normal; font-weight: 700; font-size: 14.5px; color: var(--ink); white-space: nowrap; }
.coside { position: sticky; top: 92px; padding: 22px; border: 1px solid var(--line); background: #fff; }
.coside .h3 { margin-top: 0; }

/* ---------- оформлення: помилки, отримувач, панель ---------- */
.req { font-style: normal; color: var(--salmon-d); }
.field__msg { font-size: 12.5px; line-height: 1.35; color: var(--salmon-d); }
.field.err textarea { border-color: var(--salmon); background: var(--salmon-l); }
.field__hint { margin: 10px 0 0; font-size: 13px; line-height: 1.45; color: var(--muted); }
.check { display: flex; align-items: center; gap: 10px; margin-top: 16px; cursor: pointer; font-weight: 500; color: var(--ink); }
.check input {
  appearance: none; -webkit-appearance: none; flex: none; width: 20px; height: 20px; margin: 0;
  border: 2px solid #B9C7CF; background: #fff; transition: border-color .15s, background-color .15s;
}
.check input:checked {
  border-color: var(--ink);
  background: var(--ink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.check input:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
#otherFields { margin-top: 4px; }
.cart__hint a { color: var(--ink); }
.cart__hint--food { margin-top: 6px; }
.cobar {
  position: fixed; z-index: 50; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: #fff; box-shadow: 0 -10px 30px rgba(14,34,51,.14);
}
.cobar__sum { flex: 1; min-width: 0; line-height: 1.2; }
.cobar__sum small { display: block; font-size: 12.5px; color: var(--muted); }
.cobar__sum b { font: 800 24px/1.1 var(--head); color: var(--ink); white-space: nowrap; }
.cobar .btn { height: 50px; padding: 0 22px; font-size: 17px; }
body.cobar-on .tg { bottom: 84px; }
body.cobar-on .toast { bottom: 90px; }

/* ---------- контакти: хто отримує, телефон з прапорцем ---------- */
.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 6px; background: var(--ice); }
.seg__btn { min-height: 48px; padding: 8px 12px; font-weight: 600; font-size: 15.5px; line-height: 1.25; color: var(--ink); background: transparent; transition: background .2s, color .2s; }
.seg__btn:hover { background: #fff; }
.seg__btn.on { background: var(--ink); color: #fff; }
.costep__sub { margin: 22px 0 2px; font: 700 20px/1.2 var(--body); text-transform: none; letter-spacing: 0; color: var(--ink); }
.tel { display: flex; }
.field .tel__cc {
  flex: none; display: flex; align-items: center; gap: 8px; padding: 0 12px;
  border: 1.5px solid var(--line); border-right: 0; background: var(--ice);
  font-size: 16px; font-weight: 500; color: var(--ink);
}
.tel input { min-width: 0; }
.field.err .tel__cc { border-color: var(--salmon); }
.flag { flex: none; width: 22px; height: 15px; background: linear-gradient(#0057B7 50%, #FFD700 50%); }
.costep > .check { margin-top: 18px; }

/* ---------- юридичні сторінки ---------- */
.legal { max-width: 820px; padding-bottom: 88px; }
.legal h2 { font-size: 26px; margin: 34px 0 10px; }
.legal p, .legal li { line-height: 1.7; }
.legal p { margin: 0 0 10px; }
.legal ul { margin: 0 0 10px; padding-left: 20px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--salmon-d); }
.stub { font-style: normal; white-space: nowrap; padding: 0 4px; background: #FFF4CC; color: #6B5300; }
.foot__legal { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.foot__legal a { text-decoration: none; }
.foot__legal a:hover { color: var(--sun); }

/* ---------- адаптив ---------- */
@media (max-width: 960px) {
  .hdr__nav { display: none; }
  #menuBtn { display: grid; margin-left: -10px; }
  .hdr__in { justify-content: space-between; gap: 8px; }
  .hdr__in > .logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .hdr__act { margin: 0 -10px 0 0; }

  .week__in { grid-template-columns: 1fr; gap: 28px; }
  .prod { grid-template-columns: 1fr; gap: 28px; padding-bottom: 64px; }
  .gal { position: static; }
  .quality, .recipe, .deliv, .faqwrap, .cartgrid { grid-template-columns: 1fr; gap: 28px; }
  .faqwrap__head, .cartside, .coside { position: static; }
  .cogrid { grid-template-columns: 1fr; gap: 14px; }
  .ideas { grid-template-columns: repeat(2, 1fr); }
  .perks4 { grid-template-columns: repeat(2, 1fr); }
  .contacts { grid-template-columns: 1fr 1fr; }
  .ccard--main { grid-column: 1 / -1; grid-row: auto; }
  .foot__grid { grid-template-columns: 1fr 1fr 1fr; }
  .foot__grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .wrap { padding-inline: 16px; }
  .hdr__act .ig-link { display: none; }
  .logo svg { width: 38px; height: 38px; }
  .logo__txt { font-size: 20px; }
  .crumbs { padding-block: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .page-head { padding-bottom: 20px; }

  .hero { background: linear-gradient(180deg, #0D4F92 0, #0D4F92 120vw, #093150 100%); }
  .hero__in { z-index: 2; min-height: 0; padding-block: 76vw 44px; align-items: center; text-align: center; }
  .hero__photo {
    top: 0; bottom: auto; width: 100%; height: 72vw; z-index: 1;
    -webkit-mask-image: linear-gradient(180deg, #000 72%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 72%, transparent 100%);
  }
  .hero__water {
    display: block; position: absolute; left: 0; right: 0; top: 36vw; height: 56.25vw;
    background: linear-gradient(180deg, transparent 62%, #0D4F92 100%), url(img/water-hd.jpg) center / 100% 100% no-repeat;
  }
  .hero h1 { max-width: 360px; font-size: clamp(38px, 11.4vw, 50px); }
  .hero__box { margin-top: 18px; padding: 12px 14px; }
  .hero__box p { font-size: 15px; }
  .hero__btn { margin-top: 24px; height: 56px; padding-left: 22px; gap: 18px; font-size: 16px; }
  .hero__btn span { width: 56px; height: 56px; }
  .week { padding-block: 52px; }
  .days { gap: 4px; }
  .day { min-height: 76px; padding: 10px 2px; }
  .day span { font-size: 24px; }
  .day em { display: none; }
  .cats { grid-template-columns: 1fr; gap: 10px; }
  .cat { min-height: 120px; padding: 20px; }

  .sec { padding-block: 60px; }
  .sec__head { margin-bottom: 26px; }
  .grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .card { padding: 6px 6px 10px; }
  .card h3 { font-size: 16px; margin: 10px 4px 4px; }
  .card p { margin: 0 4px; font-size: 12.5px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .card__price { margin: 10px 4px; font-size: 21px; }
  .card__price small { font-size: 12px; }
  .card__foot { margin: 0 4px; }
  .add { height: 40px; font-size: 14px; gap: 6px; }
  .card__foot .step { height: 40px; }
  .card__foot .step button { width: 34px; }
  .card__foot .step output { font-size: 13px; min-width: 0; }
  .chips { flex-wrap: nowrap; overflow-x: auto; margin-inline: -16px; padding-inline: 16px; scrollbar-width: none; }
  .chips::-webkit-scrollbar { display: none; }
  .chip { flex: none; }

  .gal { margin-inline: -16px; }
  .gal__thumbs { display: none; }
  .gal__dots { display: flex; }
  .price__num { font-size: 50px; }
  .specs dt, .specs dd { font-size: 14.5px; }
  .buy { padding: 16px; }
  .buy__btns .btn { height: 58px; }
  .perks { gap: 8px; }
  .perk { flex-direction: column; align-items: center; text-align: center; gap: 6px; font-size: 12.5px; }
  .ship { padding: 16px; }
  .pill { flex: 1; }
  .quality__txt p { font-size: 16px; }
  .checks li { padding: 12px 14px; gap: 14px; }
  .ideas { gap: 10px; }
  .idea { aspect-ratio: 1 / 1; padding: 16px; }
  .idea h3 { font-size: 22px; }
  .idea p { font-size: 13px; }
  .ingr { padding: 20px; }
  .steps { grid-template-columns: 1fr; gap: 10px; }
  .steps li { padding: 20px; display: grid; grid-template-columns: auto 1fr; column-gap: 16px; }
  .steps li::before { grid-row: span 2; margin: 0; font-size: 40px; }

  .dcard { padding: 20px; }
  .dcard h3 { font-size: 24px; }
  .dcard dt, .dcard dd { font-size: 14.5px; }
  .dteaser { padding: 20px; gap: 14px; }
  .dteaser h3 { font-size: 22px; }
  .faq summary { font-size: 16.5px; padding: 18px 0; }
  .revs { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 66%; overflow-x: auto; scroll-snap-type: x mandatory; margin-inline: -16px; padding-inline: 16px; scrollbar-width: none; }
  .revs::-webkit-scrollbar { display: none; }
  .revs .ph { scroll-snap-align: center; }
  .revs__more { width: 100%; }
  .contacts { grid-template-columns: 1fr; gap: 10px; }
  .ccard { padding: 20px; }
  .ccard b { font-size: 24px; }

  .citem { grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: "info x" "step sum"; gap: 10px 12px; }
  .citem > .step { justify-self: start; }
  .fields { grid-template-columns: 1fr; }
  .cartside { padding: 16px; }
  .costep, .coside { padding: 16px; }
  .costep > h2, .costep__head h2 { font-size: 23px; }
  .costep > h2 span { width: 30px; height: 30px; font-size: 17px; }
  .opt { padding: 12px; gap: 12px; }
  .seg__btn { font-size: 14px; padding: 6px 8px; }
  .costep__sub { font-size: 18px; margin-top: 18px; }

  .cta__in { padding-block: 52px; }
  .cta__btns, .cta__btns .btn { width: 100%; }
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .foot { padding-block: 44px 110px; }

  .perks4 { gap: 10px; }
  .perk4 { padding: 18px 16px; }
  .perk4 .sq { width: 42px; height: 42px; margin-bottom: 12px; }
  .perk4 h3 { font-size: 21px; }
  .perk4 p { font-size: 13.5px; }
  .tg { right: 12px; bottom: 14px; gap: 8px; }
  .cartf { left: 12px; bottom: 14px; width: 52px; height: 52px; }
  .cartf svg.i { width: 25px; height: 25px; }
  body.bar-on .cartf { bottom: 84px; }
  .tg__label { padding: 8px 10px; font-size: 12.5px; }
  .tg__icon { width: 52px; height: 52px; }
  body.bar-on .tg { bottom: 84px; }
  .bar__name { display: none; }
  .bar__in { gap: 10px; }
  .bar .btn { flex: 1; padding: 0 12px; font-size: 16px; }
  .toast { bottom: 88px; }
}
