/* =========================================================================
   КАРЬЕР «ЗАРЕЧНЫЙ» — стили
   3 направления дизайна переключаются через [data-theme] на <html>:
     granite — индустриальное (Oswald, оранжевый акцент, строгие формы)
     earth   — природное (Lora, тёплые песочные тона)
     clean   — корпоративное (Golos Text, светлое, зелёный акцент)
   ========================================================================= */

/* ---------- базовые переменные (granite по умолчанию) ---------- */
:root,
[data-theme='granite'] {
  --font-head: 'Oswald', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --head-transform: uppercase;
  --head-weight: 600;
  --head-spacing: 0.01em;
  --head-line: 1.05;

  --ink: #16181b;
  --ink-soft: #5b6066;
  --line: #e4e1dc;
  --surface: #ffffff;
  --surface-2: #f4f3f1;
  --bg-dark: #14171a;
  --on-dark: #f3f1ee;
  --on-dark-soft: #a7adb4;

  --accent: #e8661a;
  --accent-2: #f5a623;
  --on-accent: #ffffff;

  --radius: 4px;
  --radius-lg: 6px;
  --shadow: 0 1px 0 rgba(0,0,0,.04), 0 10px 30px -18px rgba(0,0,0,.4);
}

[data-theme='earth'] {
  --font-head: 'Lora', Georgia, serif;
  --font-body: 'PT Sans', system-ui, sans-serif;
  --head-transform: none;
  --head-weight: 600;
  --head-spacing: 0;
  --head-line: 1.12;

  --ink: #2b2118;
  --ink-soft: #6f6354;
  --line: #e7ddcd;
  --surface: #fbf7f0;
  --surface-2: #f2e9da;
  --bg-dark: #2b2018;
  --on-dark: #f6efe3;
  --on-dark-soft: #c9bba6;

  --accent: #b5651d;
  --accent-2: #c9a875;
  --on-accent: #fff7ee;

  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 2px 4px rgba(76,55,30,.06), 0 18px 40px -22px rgba(76,55,30,.35);
}

[data-theme='clean'] {
  --font-head: 'Golos Text', system-ui, sans-serif;
  --font-body: 'Golos Text', system-ui, sans-serif;
  --head-transform: none;
  --head-weight: 600;
  --head-spacing: -0.01em;
  --head-line: 1.1;

  --ink: #0f172a;
  --ink-soft: #64748b;
  --line: #e6ebf1;
  --surface: #ffffff;
  --surface-2: #f6f8fb;
  --bg-dark: #0f172a;
  --on-dark: #f1f5f9;
  --on-dark-soft: #93a2b6;

  --accent: #18794e;
  --accent-2: #0ea5e9;
  --on-accent: #ffffff;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 2px rgba(15,23,42,.05), 0 24px 48px -28px rgba(15,23,42,.3);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface-2);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition: background .35s ease, color .35s ease;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: var(--head-weight);
  text-transform: var(--head-transform);
  letter-spacing: var(--head-spacing);
  line-height: var(--head-line);
  color: var(--ink);
  text-wrap: balance;
}

a { color: inherit; text-decoration: none; }

.wrap { width: min(1180px, 92vw); margin: 0 auto; }

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 2px; background: var(--accent);
}

/* ---------- кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: var(--head-transform);
  letter-spacing: var(--head-spacing);
  font-size: 15px;
  padding: 14px 22px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .2s ease, border-color .2s ease, color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn-dark { background: var(--bg-dark); color: var(--on-dark); }
.btn-dark:hover { transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 17px 28px; font-size: 16px; }

/* =========================================================================
   ВЕРХНЯЯ ПАНЕЛЬ + ПЕРЕКЛЮЧАТЕЛЬ НАПРАВЛЕНИЙ
   ========================================================================= */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; align-items: center; gap: 20px;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--bg-dark); color: var(--on-dark);
  display: grid; place-items: center; flex: none;
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 18px;
  text-transform: var(--head-transform); letter-spacing: var(--head-spacing); line-height: 1; }
.brand-sub { font-size: 12px; color: var(--ink-soft); }

.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a { font-size: 15px; color: var(--ink-soft); transition: color .15s; }
.nav a:hover { color: var(--accent); }

.topbar-cta { display: flex; align-items: center; gap: 14px; }
.topbar-phone { font-family: var(--font-head); font-weight: 600; font-size: 16px; }

/* плавающий переключатель дизайна */
.theme-switch {
  position: fixed; right: 18px; bottom: 18px; z-index: 80;
  display: flex; align-items: center; gap: 6px;
  background: var(--bg-dark); color: var(--on-dark);
  padding: 7px; border-radius: 999px;
  box-shadow: 0 14px 40px -12px rgba(0,0,0,.5);
}
.theme-switch .ts-label {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--on-dark-soft); padding: 0 8px 0 10px;
}
.theme-switch button {
  border: 0; cursor: pointer; font-family: var(--font-body);
  font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px;
  background: transparent; color: var(--on-dark-soft);
  transition: background .2s, color .2s;
}
.theme-switch button[aria-pressed='true'] { background: var(--accent); color: var(--on-accent); }
.theme-switch button:hover { color: var(--on-dark); }

/* =========================================================================
   ГЕРОЙ
   ========================================================================= */
.hero { position: relative; overflow: hidden; background: var(--bg-dark); }
.hero-media { position: absolute; inset: 0; }
.hero-media image-slot { width: 100%; height: 100%; display: block; }
.hero-media .hero-bg-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(8,9,11,.9) 0%, rgba(8,9,11,.72) 42%, rgba(8,9,11,.25) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 92px 0 84px; }
.hero h1 {
  color: var(--on-dark);
  font-size: clamp(40px, 6vw, 78px);
  max-width: 16ch;
  margin: 18px 0 0;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-subtitle { color: var(--on-dark-soft); font-family: var(--font-head); font-weight: 600; font-size: clamp(18px, 2.2vw, 26px); margin: 12px 0 0; max-width: 40ch; }
.hero-lead {
  color: var(--on-dark-soft); font-size: clamp(17px, 2vw, 21px);
  max-width: 46ch; margin-top: 20px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero .eyebrow { color: var(--accent-2); }
.hero .eyebrow::before { background: var(--accent-2); }

/* факты */
.facts {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 64px;
}
.fact { padding: 26px 0; }
.fact + .fact { border-left: 1px solid rgba(255,255,255,.14); padding-left: 26px; }
.fact-n { font-family: var(--font-head); font-weight: 700; font-size: clamp(30px, 4vw, 46px);
  color: var(--on-dark); line-height: 1; }
.fact-l { color: var(--on-dark-soft); font-size: 14px; margin-top: 8px; }

/* =========================================================================
   СЕКЦИИ
   ========================================================================= */
section { scroll-margin-top: 84px; }
.section { padding: 84px 0; }
.section-head { max-width: 60ch; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); margin-top: 14px; }
.section-head p { color: var(--ink-soft); font-size: 18px; margin-top: 14px; }
.section--alt { background: var(--surface); }

/* =========================================================================
   ПРАЙС-ЛИСТ
   ========================================================================= */
.price-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  padding: 9px 16px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid var(--line); background: var(--surface); color: var(--ink-soft);
  transition: all .15s;
}
.filter:hover { border-color: var(--accent); color: var(--accent); }
.filter[aria-pressed='true'] { background: var(--ink); color: var(--surface); border-color: var(--ink); }

.dl-actions { display: flex; gap: 10px; margin-left: auto; }
.price-updated { font-size: 13px; color: var(--ink-soft); margin-left: auto; }

.price-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}
table.price { width: 100%; border-collapse: collapse; }
table.price thead th {
  text-align: left; font-family: var(--font-head); font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em; font-size: 12.5px;
  color: var(--ink-soft); padding: 16px 20px;
  background: var(--surface-2); border-bottom: 1px solid var(--line);
}
table.price th.num, table.price td.num { text-align: right; }
table.price tbody td { padding: 16px 20px; border-bottom: 1px solid var(--line); font-size: 15.5px; }
table.price tbody tr:last-child td { border-bottom: 0; }
table.price tbody tr:hover { background: var(--surface-2); }
.cat-row td {
  background: color-mix(in srgb, var(--accent) 9%, var(--surface));
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase;
  letter-spacing: .05em; font-size: 13px; color: var(--accent);
  padding: 12px 20px !important;
}
.m-name { font-weight: 600; color: var(--ink); }
.m-bulk { font-size: 12.5px; color: var(--ink-soft); }
.price-val { font-family: var(--font-head); font-weight: 600; font-size: 17px; white-space: nowrap; }
.price-val small { font-weight: 400; color: var(--ink-soft); font-family: var(--font-body); font-size: 13px; }
.stock { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; }
.stock i { width: 8px; height: 8px; border-radius: 50%; background: #22a06b; }
.stock.out { color: var(--ink-soft); }
.stock.out i { background: #c4923a; }
.price-note { font-size: 13px; color: var(--ink-soft); margin-top: 16px; }

/* =========================================================================
   ДЕТАЛИ КАРЬЕРА
   ========================================================================= */
.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.detail-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow);
}
.detail-card .ico {
  width: 46px; height: 46px; border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent) 14%, var(--surface));
  color: var(--accent); display: grid; place-items: center; margin-bottom: 18px;
}
.detail-card .ico svg { width: 24px; height: 24px; }
.detail-card h3 { font-size: 20px; margin-bottom: 14px; }
.kv { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px dashed var(--line); }
.kv:last-child { border-bottom: 0; }
.kv .k { color: var(--ink-soft); font-size: 14.5px; }
.kv .v { font-weight: 600; text-align: right; font-size: 14.5px; }
.transport-item { padding: 12px 0; border-bottom: 1px dashed var(--line); }
.transport-item:last-child { border-bottom: 0; }
.transport-item b { display: block; font-size: 15.5px; }
.transport-item span { font-size: 13.5px; color: var(--ink-soft); }

/* =========================================================================
   КАРТА
   ========================================================================= */
.map-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 0;
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.map-canvas {
  position: relative; min-height: 380px; background: var(--surface);
  background-image:
    linear-gradient(0deg, color-mix(in srgb, var(--accent) 5%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--accent) 5%, transparent) 1px, transparent 1px),
    radial-gradient(circle at 30% 70%, color-mix(in srgb, var(--accent-2) 16%, var(--surface)), var(--surface) 60%);
  background-size: 38px 38px, 38px 38px, 100% 100%;
}
.map-road { position: absolute; background: color-mix(in srgb, var(--ink) 12%, transparent); }
.map-road.r1 { top: 0; bottom: 0; left: 38%; width: 14px; transform: rotate(8deg); }
.map-road.r2 { left: 0; right: 0; top: 55%; height: 11px; }
.map-road.r3 { left: 10%; right: 30%; top: 30%; height: 7px; transform: rotate(-6deg); }
.map-pin {
  position: absolute; left: 38%; top: 55%; transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center; z-index: 3;
}
.map-pin .dot {
  width: 26px; height: 26px; border-radius: 50% 50% 50% 0;
  background: var(--accent); transform: rotate(-45deg);
  box-shadow: 0 8px 20px -6px color-mix(in srgb, var(--accent) 70%, black);
  border: 3px solid var(--on-accent);
}
.map-pin .tag {
  margin-top: 12px; background: var(--bg-dark); color: var(--on-dark);
  font-family: var(--font-head); font-weight: 600; font-size: 12.5px;
  padding: 6px 12px; border-radius: var(--radius); white-space: nowrap;
}
.map-side { background: var(--bg-dark); color: var(--on-dark); padding: 36px; display: flex; flex-direction: column; }
.map-side h3 { color: var(--on-dark); font-size: 24px; margin-bottom: 10px; }
.map-side .addr { color: var(--on-dark-soft); font-size: 16px; line-height: 1.6; margin-bottom: 22px; }
.map-side .map-kv { color: var(--on-dark-soft); font-size: 14.5px; padding: 8px 0; border-top: 1px solid rgba(255,255,255,.12); }
.map-side .map-kv b { color: var(--on-dark); }
.map-kv .copy-coords-btn {
  display: inline-flex; align-items: center; gap: 5px;
  margin-left: 8px; padding: 2px 7px;
  border: 1px solid currentColor; border-radius: 6px;
  background: transparent; color: inherit; opacity: .65;
  font: inherit; font-size: 12px; line-height: 1.2;
  vertical-align: middle; cursor: pointer;
  transition: opacity .15s ease, color .15s ease;
}
.map-kv .copy-coords-btn:hover { opacity: 1; }
.map-kv .copy-coords-btn:focus-visible { opacity: 1; outline: 2px solid currentColor; outline-offset: 1px; }
.map-kv .copy-coords-btn__icon { display: block; }
.map-kv .copy-coords-btn__done { display: none; }
.map-kv .copy-coords-btn.is-copied { opacity: 1; color: #4caf50; }
.map-kv .copy-coords-btn.is-copied .copy-coords-btn__icon { display: none; }
.map-kv .copy-coords-btn.is-copied .copy-coords-btn__done { display: inline; }
.map-side .btn-row { margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding-top: 24px; }
.map-side .btn-ghost { color: var(--on-dark); border-color: rgba(255,255,255,.28); }
.map-side .btn-ghost:hover { border-color: var(--accent-2); color: var(--accent-2); }

/* =========================================================================
   ДОКУМЕНТЫ
   ========================================================================= */
.docs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.doc {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 18px 20px; box-shadow: var(--shadow);
  transition: transform .12s, border-color .2s;
}
.doc:hover { transform: translateY(-2px); border-color: var(--accent); }
.doc .ft {
  width: 46px; height: 54px; border-radius: 5px; flex: none; position: relative;
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
  color: var(--accent); display: grid; place-items: end center; padding-bottom: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 12px;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--surface));
}
.doc .ft::before { content: ''; position: absolute; top: 6px; left: 8px; right: 8px; height: 3px;
  background: color-mix(in srgb, var(--accent) 35%, transparent); box-shadow: 0 6px 0 color-mix(in srgb, var(--accent) 35%, transparent); }
.doc .ft--img { padding: 0; border: 0; background: none; overflow: hidden; }
.doc .ft--img::before { display: none; }
.doc .ft--img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.doc .meta { flex: 1; min-width: 0; }
.doc .meta b { display: block; font-size: 15.5px; }
.doc .meta span { font-size: 13px; color: var(--ink-soft); }
.doc .dl { color: var(--ink-soft); }
.doc:hover .dl { color: var(--accent); }
.doc .dl svg { width: 22px; height: 22px; }
/* документ-картинка: крупное превью на всю ширину карточки, имя под ним */
.doc.is-image { flex-direction: column; align-items: stretch; gap: 0; padding: 0; overflow: hidden; position: relative; }
.doc.is-image .ft--img { width: 100%; height: 200px; border-radius: 0; }
.doc.is-image .meta { padding: 14px 18px; }
.doc.is-image .dl { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.92); box-shadow: 0 4px 12px rgba(0,0,0,.18); }
.doc.is-image .dl svg { width: 18px; height: 18px; }

/* =========================================================================
   ГАЛЕРЕЯ
   ========================================================================= */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 14px; }
.tile { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.tile.big { grid-column: span 2; grid-row: span 2; }
.tile image-slot { width: 100%; height: 100%; display: block; }
.tile .cap {
  position: absolute; left: 14px; bottom: 12px; z-index: 4; pointer-events: none;
  background: rgba(8,9,11,.66); color: #fff; backdrop-filter: blur(4px);
  font-family: var(--font-head); font-weight: 600; font-size: 13px;
  padding: 6px 12px; border-radius: var(--radius);
}

/* фактурные подложки материалов (видны, пока слот пустой) */
image-slot.tone-sand    { background: linear-gradient(135deg,#e7c79a,#cfa86d); }
image-slot.tone-granite { background: linear-gradient(135deg,#8e9298,#5c6066); }
image-slot.tone-gravel  { background: linear-gradient(135deg,#b3a288,#7d6f5a); }
image-slot.tone-steel   { background: linear-gradient(135deg,#7c8a99,#4a5663); }
image-slot.tone-stone   { background: linear-gradient(135deg,#c9c2b4,#938b7c); }

/* =========================================================================
   ЗАЯВКА + ПОДВАЛ
   ========================================================================= */
.cta-band { background: var(--bg-dark); color: var(--on-dark); }
.cta-band .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; padding: 56px 0; }
.cta-band h2 { color: var(--on-dark); font-size: clamp(26px, 3.4vw, 40px); flex: 1; min-width: 280px; }
.cta-band p { color: var(--on-dark-soft); margin-top: 8px; font-size: 17px; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; }

footer { background: var(--surface); border-top: 1px solid var(--line); padding: 44px 0; }
.foot { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.foot .muted { color: var(--ink-soft); font-size: 14px; }
.foot .brand-name { font-size: 16px; }

/* =========================================================================
   ПЕЧАТНЫЙ ПРАЙС-ЛИСТ (для «Скачать PDF» через печать браузера)
   ========================================================================= */
.print-sheet { display: none; }

@media print {
  body > *:not(.print-sheet) { display: none !important; }
  .print-sheet {
    display: block !important; padding: 0; color: #111; background: #fff;
    font-family: 'PT Sans', Arial, sans-serif;
  }
  .print-sheet h1 { font-family: 'PT Sans', Arial, sans-serif; font-size: 22px; text-transform: none; }
  .print-sheet .ps-head { display: flex; justify-content: space-between; align-items: flex-end;
    border-bottom: 3px solid #111; padding-bottom: 12px; margin-bottom: 6px; }
  .print-sheet .ps-sub { color: #555; font-size: 12px; margin: 4px 0 18px; }
  .print-sheet table { width: 100%; border-collapse: collapse; font-size: 12px; }
  .print-sheet th { text-align: left; background: #f0f0f0; padding: 7px 10px; border: 1px solid #ccc; }
  .print-sheet td { padding: 6px 10px; border: 1px solid #ddd; }
  .print-sheet td.num, .print-sheet th.num { text-align: right; }
  .print-sheet .ps-cat td { background: #fbe9dd; font-weight: 700; }
  .print-sheet .ps-foot { margin-top: 18px; font-size: 11px; color: #555; display: flex; justify-content: space-between; }
  @page { margin: 14mm; }
}

/* =========================================================================
   АДАПТИВ
   ========================================================================= */
@media (max-width: 920px) {
  .nav { display: none; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .fact + .fact { border-left: 0; padding-left: 0; }
  .fact:nth-child(even) { border-left: 1px solid rgba(255,255,255,.14); padding-left: 26px; }
  .detail-grid { grid-template-columns: 1fr; }
  .map-grid { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .tile.big { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 560px) {
  .topbar-cta { display: none; }
  .dl-actions { width: 100%; }
  .dl-actions .btn { flex: 1; justify-content: center; }
  .price-updated { display: none; }
  table.price thead { display: none; }
  table.price, table.price tbody, table.price tr, table.price td { display: block; width: 100%; }
  table.price tbody td { border-bottom: 0; padding: 4px 18px; }
  table.price tbody tr { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .cat-row td { padding: 12px 18px !important; }
  .gallery { grid-template-columns: 1fr; }
  .tile.big { grid-column: span 1; }
}
