:root {
  --bg: #f2edeb;
  --ink: #3a3542;
  --muted: #6f6a76;
  --red: #d3222a;
  --red-dark: #b41c23;
  --white: #ffffff;
  /* shared desktop content width - raised from 1200px so wide screens
     don't show dead side margins (Lesha, 03.08.2026) */
  --shell: 1520px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 62px; }
body {
  background: #e7e2df;
  color: var(--ink);
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
.page {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg);
  min-height: 100vh;
  box-shadow: 0 0 40px rgba(0,0,0,.18);
  position: relative;
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 1px 6px rgba(0,0,0,.07);
}
header {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 16px;
}
header > .hbtn { justify-self: start; }
.hright { justify-self: end; }
.dnav { display: none; }
.lang {
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  gap: 5px;
  color: var(--muted);
}
.lang i { font-style: normal; font-weight: 400; color: #cfc9c6; }
/* 4 languages need slack next to the centered logo on narrow phones */
@media (max-width: 480px) {
  .lang { font-size: 11px; gap: 3px; letter-spacing: .03em; }
}
@media (max-width: 374px) {
  .lang { font-size: 10px; gap: 2px; letter-spacing: 0; }
}
.lang .on { color: var(--ink); position: relative; }
.lang .on::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--red);
}
.logo { text-align: center; text-decoration: none; color: var(--ink); }
.logo b { display: block; font-size: 19px; font-weight: 600; letter-spacing: .3em; margin-right: -.3em; }
.logo span { display: block; font-size: 9px; letter-spacing: .28em; margin-right: -.28em; color: var(--muted); margin-top: 1px; }
.hbtn {
  background: none; border: none; cursor: pointer; padding: 6px;
  color: var(--ink); display: inline-flex; align-items: center;
}
.hbtn svg { width: 24px; height: 24px; }
.hright { display: flex; align-items: center; gap: 4px; }

/* Drawer */
.drawer {
  position: fixed; inset: 0; z-index: 100;
  pointer-events: none;
  overflow: hidden;
}
body { overflow-x: clip; }
.drawer .overlay {
  position: absolute; inset: 0;
  background: rgba(20,17,25,.5);
  opacity: 0; transition: opacity .25s;
}
.drawer nav {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 300px; max-width: 86%;
  background: var(--white);
  border-radius: 18px 0 0 18px;
  box-shadow: -10px 0 44px rgba(20,17,25,.22);
  transform: translateX(102%);
  transition: transform .35s cubic-bezier(.22,.9,.3,1);
  padding: 24px 26px;
  display: flex; flex-direction: column;
}
.drawer.open { pointer-events: auto; }
.drawer.open .overlay { opacity: 1; }
.drawer.open nav { transform: translateX(0); }
.d-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 26px;
}
.d-brand b {
  display: block;
  font-size: 17px; font-weight: 600;
  letter-spacing: .3em; margin-right: -.3em;
}
.d-brand span {
  display: block;
  font-size: 8px; letter-spacing: .28em; margin-right: -.28em;
  color: var(--muted); margin-top: 1px;
}
.d-brand::after {
  content: '';
  display: block;
  width: 28px; height: 3px;
  background: var(--red);
  margin-top: 10px;
}
.drawer .close {
  background: none; border: none; font-size: 26px; cursor: pointer; color: var(--muted);
  line-height: 1; padding: 2px 4px; margin: -2px -6px 0 0;
}
.drawer .close:hover { color: var(--ink); }
.drawer nav > a {
  color: var(--ink); text-decoration: none;
  font-weight: 600; font-size: 18px;
  padding: 12px 0;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity .3s, transform .3s, color .15s;
}
.drawer nav > a:hover { color: var(--red); }
.drawer nav > a[aria-current] { color: var(--red); }
.drawer.open nav > a { opacity: 1; transform: none; }
.drawer.open nav > a:nth-of-type(1) { transition-delay: .05s; }
.drawer.open nav > a:nth-of-type(2) { transition-delay: .09s; }
.drawer.open nav > a:nth-of-type(3) { transition-delay: .13s; }
.drawer.open nav > a:nth-of-type(4) { transition-delay: .17s; }
.drawer.open nav > a:nth-of-type(5) { transition-delay: .21s; }
.d-foot { margin-top: auto; }
.d-tel {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink); text-decoration: none;
  font-size: 15px; font-weight: 600;
  padding: 14px 0 12px;
  border-top: 1px solid #eee9e6;
}
.d-tel svg { width: 17px; height: 17px; color: var(--red); }
.d-tel:hover { color: var(--red); }
.drawer .note { font-size: 11.5px; color: var(--muted); }
@media (prefers-reduced-motion: reduce) {
  .drawer nav, .drawer nav > a, .drawer .overlay, .coll img { transition: none; }
}

/* Hero slider */
.hero { position: relative; overflow: hidden; height: 520px; background: #2a2530; }
.hero .slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .5s;
  /* hidden slides stack above the active one in DOM order and would
     swallow clicks meant for its CTA */
  pointer-events: none;
}
.hero .slide.active { opacity: 1; pointer-events: auto; }
.hero .slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero .shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(24,18,20,.78) 100%);
}
.hero .caption {
  position: absolute; left: 18px; bottom: 26px; right: 128px;
  color: #fff; font-size: 22px; font-weight: 700; line-height: 1.3;
}
.hero .cta {
  position: absolute; right: 16px; bottom: 30px;
  /* the generic product-page .cta sets width:100% + margin-top; the hero
     pill must stay content-sized or it overhangs the left screen edge */
  width: auto; margin-top: 0;
  background: var(--red); color: #fff;
  border: none; border-radius: 14px;
  font-family: inherit; font-size: 16px; font-weight: 600;
  padding: 13px 20px; cursor: pointer;
  text-decoration: none;
  transition: background-color .15s;
}
.hero .cta:hover { background-color: var(--red-dark); }
.hero .arr {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px;
  background: #fff; border: none; border-radius: 12px;
  cursor: pointer; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.hero .arr svg { width: 18px; height: 18px; }
.hero .arr.prev { left: 12px; }
.hero .arr.next { right: 12px; }

/* Sections */
section { padding: 44px 16px 8px; }
.sec-title {
  display: inline-block;
  font-size: 26px; font-weight: 500;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--red);
  margin-bottom: 22px;
}
.center { text-align: center; }

/* Bestsellers carousel */
.carousel {
  display: flex; gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin: 0 -16px; padding: 4px 16px 8px;
}
.carousel::-webkit-scrollbar { display: none; }
.pcard {
  flex: 0 0 76%;
  min-width: 0;
  scroll-snap-align: center;
  background: var(--white);
  border-radius: 4px;
  padding: 14px 14px 12px;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(58,53,66,.06);
}
.pcard .ph { height: 250px; min-width: 0; display: flex; align-items: center; justify-content: center; }
.pcard .ph img { max-width: 100%; max-height: 100%; object-fit: contain; }
.pcard .row {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-top: 10px; gap: 10px;
}
.pcard .name { display: block; font-size: 17px; color: #5d5864; min-width: 0; }
.pcard a { text-decoration: none; }
.pcard a.name:hover { color: var(--ink); }
.pcard .info { min-width: 0; }
.pcard a.ph, .pcard a.name { text-decoration: none; color: inherit; }
.pcard a.name { color: #5d5864; transition: color .15s; }
.pcard a.name:hover { color: var(--red); }
.pcard .price { display: block; font-size: 14.5px; font-weight: 700; color: var(--ink); margin-top: 4px; white-space: nowrap; }
.buy {
  background: var(--red); border: none; border-radius: 10px;
  width: 44px; height: 38px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  color: #fff; cursor: pointer;
  transition: background-color .15s;
}
.buy:hover { background-color: var(--red-dark); }
.buy svg { width: 20px; height: 20px; }
.car-arrows { display: flex; gap: 22px; padding: 10px 2px 0; }
.car-arrows button {
  background: none; border: none; cursor: pointer; color: #56515d;
  font-size: 26px; line-height: 1; padding: 4px;
}

/* About */
.about p { text-align: justify; color: #4a4552; margin-bottom: 8px; }
.about .brand { font-style: italic; }
.stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px 12px; margin-top: 30px;
}
.stat { display: flex; flex-direction: column; align-items: center; text-align: center; min-width: 0; }
.stat b { font-size: 30px; font-weight: 800; letter-spacing: -.01em; line-height: 1; }
.stat b::after { content: ""; display: block; width: 18px; height: 2px; background: var(--red); margin: 7px auto 6px; }
.stat span { font-size: 12.5px; line-height: 1.35; color: #4a4552; min-width: 0; }

/* Catalog */
.banner { position: relative; margin: 26px -16px 0; }
.banner img { width: 100%; display: block; height: 190px; object-fit: cover; }
.banner .shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(30,24,30,.72) 100%);
}
.banner .t {
  position: absolute; left: 18px; bottom: 14px;
  color: #fff; font-size: 34px; font-weight: 700;
}
.cats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-top: 16px;
}
.ccard {
  background: var(--white); border-radius: 4px;
  text-decoration: none; color: #5d5864;
  padding: 8px 8px 10px;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 2px 12px rgba(58,53,66,.06);
  transition: transform .15s, box-shadow .15s;
}
.ccard:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(58,53,66,.13); }
.ccard .ph { height: 126px; width: 100%; display: flex; align-items: center; justify-content: center; }
.ccard img { max-width: 100%; max-height: 100%; object-fit: contain; }
.ccard span { margin-top: 6px; font-size: 14.5px; text-align: center; }
.ccard i { font-style: normal; font-size: 11.5px; color: var(--muted); margin-top: 2px; }

/* Collection banner */
.coll { margin: 10px 0 0; padding: 0 16px; }
.coll a { display: block; border-radius: 4px; overflow: hidden; }
.coll img { width: 100%; display: block; border-radius: 4px; transition: transform .4s; }
.coll a:hover img { transform: scale(1.02); }

/* Steps */
/* extra air after the o-nas stats */
.steps { padding-top: 84px; }
.steps .step { margin-top: 30px; }
.steps .num-row { display: flex; align-items: center; gap: 14px; }
.steps .num {
  font-size: 64px; font-weight: 800; line-height: .95;
  letter-spacing: -.02em;
}
.steps h3 { font-size: 22px; font-weight: 600; line-height: 1.25; }
.steps p { margin-top: 10px; text-align: justify; color: #4a4552; font-size: 15px; }

/* Contacts */
.contacts-card {
  background: var(--white); border-radius: 6px;
  padding: 24px 18px; margin-top: 4px;
}
.contacts-card h2 { font-size: 30px; font-weight: 700; margin-bottom: 18px; }
.crow {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 16px; color: #4a4552; text-decoration: none;
}
.crow svg { width: 22px; height: 22px; flex: 0 0 auto; margin-top: 2px; color: var(--ink); }
a.crow:hover { color: var(--red); }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.soc {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: #fff; text-decoration: none;
  transition: background-color .15s;
}
.soc svg { width: 20px; height: 20px; }
.soc span { display: none; }
.soc:hover { background-color: var(--red); }
.map-link { display: block; margin-top: 6px; position: relative; }
/* mobile only: socials share the heading row (right-aligned) instead of
   dangling between the hours and the map; desktop (>=900px) keeps them
   pinned to the map bottom via the column flex there */
@media (max-width: 899px) {
  .cinfo { display: flex; flex-wrap: wrap; align-items: center; row-gap: 16px; }
  .contacts-card h2 { margin-bottom: 0; }
  .crow { order: 1; width: 100%; margin-bottom: 0; }
  .socials { margin: 0 0 0 auto; }
  .map-link { margin-top: 22px; }
}
.map-link img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 6px; border: 1px solid #eee; }
.map-link em {
  position: absolute; right: 8px; bottom: 8px;
  background: rgba(255,255,255,.92); border-radius: 6px;
  font-style: normal; font-size: 12px; color: #333;
  padding: 4px 8px;
}

/* Category page */
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.breadcrumb a { color: var(--muted); }
.cat-count { font-size: 14px; color: var(--muted); margin-top: 3px; }
/* same underlined-text selectors as the product configurator */
.chips {
  position: relative;
  display: flex; gap: 8px 22px;
  overflow-x: auto;
  scrollbar-width: none;
  margin: 16px -16px 0; padding: 2px 16px 0;
}
.chips::-webkit-scrollbar { display: none; }
.chips:empty { display: none; }
.chip {
  flex: 0 0 auto;
  background: none; border: none; padding: 5px 0 9px;
  font-family: inherit; font-size: 14.5px; color: #8a848f;
  cursor: pointer; white-space: nowrap;
  transition: color .15s;
}
.chip:hover { color: var(--ink); }
.chip.on { color: var(--ink); font-weight: 600; }
.chip small { font-size: 12px; font-weight: 400; opacity: .7; margin-left: 5px; }
/* one shared underline per group - it slides to the chosen category */
.chips .ink {
  position: absolute; left: 0; top: 0;
  height: 2px; width: 0; background: var(--red);
  pointer-events: none;
  transition: transform .3s cubic-bezier(.4,0,.2,1), width .3s cubic-bezier(.4,0,.2,1);
}
.cat-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 18px;
}
.cat-grid .pcard { flex: none; }
.cat-grid .pcard .ph { height: 150px; }
.cat-grid .pcard .name { font-size: 13.5px; }
.cat-grid .pcard .price { font-size: 13px; }
.cat-grid .buy { width: 38px; height: 33px; }
.cat-grid .buy svg { width: 17px; height: 17px; }

/* Product page */
.prod-sec { padding-top: 26px; }
.gal-main {
  position: relative;
  background: var(--white); border-radius: 4px;
  height: 340px; padding: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(58,53,66,.06);
  touch-action: pan-y;
}
.gal-main img {
  /* fixed box: small originals upscale, large ones downscale - no size jumps */
  width: 100%; height: 100%; object-fit: contain;
  user-select: none; -webkit-user-drag: none;
}
.g-arr {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px;
  background: #fff; border: none; border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,.14);
  color: var(--ink); font-size: 24px; line-height: 1;
  cursor: pointer;
}
.g-arr.prev { left: 10px; }
.g-arr.next { right: 10px; }
.gal.single .g-arr { display: none; }
.gal-thumbs {
  display: flex; gap: 10px; margin-top: 10px;
  overflow-x: auto; scrollbar-width: none;
}
.gal-thumbs::-webkit-scrollbar { display: none; }
.gal-thumbs:empty { display: none; }
.gth {
  flex: 0 0 auto; width: 72px; height: 72px;
  background: var(--white);
  border: 1.5px solid #e3dcd8; border-radius: 4px;
  padding: 6px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .15s;
}
.gth img { max-width: 100%; max-height: 100%; object-fit: contain; }
.gth:hover { border-color: var(--ink); }
.gth.on { border-color: var(--red); }
.pinfo { margin-top: 22px; }
/* same size as the price right under it, but light - two bold lines of
   nearly equal size read as one block */
.pinfo h1 { font-size: 26px; font-weight: 400; line-height: 1.3; }
.ptitle { font-size: 13.5px; color: var(--muted); margin-top: 4px; }
.ptitle:empty { display: none; }
.pprice { font-size: 26px; font-weight: 800; margin: 14px 0 2px; }
.conf-row { margin-top: 18px; }
.conf-row .lbl { font-size: 13px; color: var(--ink); margin-bottom: 4px; }
.conf-sub { margin-top: 22px; font-size: 15px; font-weight: 700; }
/* configurator options: plain text, chosen one underlined in red - same
   language as the section titles and the desktop nav */
.pills { position: relative; display: flex; gap: 4px 22px; flex-wrap: wrap; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: none; border: none; padding: 5px 0 8px;
  font-family: inherit; font-size: 15px; color: #8a848f;
  cursor: pointer; transition: color .15s;
}
/* one shared underline per group - it slides to the chosen option instead of
   two lines shrinking and growing in opposite directions */
.pills .ink {
  position: absolute; left: 0; top: 0;
  height: 2px; width: 0; background: var(--red);
  pointer-events: none;
  transition: transform .3s cubic-bezier(.4,0,.2,1), width .3s cubic-bezier(.4,0,.2,1);
}
.pill:hover { color: var(--ink); }
.pill.on { color: var(--ink); font-weight: 600; }
@media (prefers-reduced-motion: reduce) {
  .pills .ink, .chips .ink { transition: none; }
}
.dot { width: 12px; height: 12px; border-radius: 50%; border: 1px solid rgba(0,0,0,.14); }
.dot.z { background: #e8c56b; }
.dot.b { background: #eceae8; }
.dot.r { background: #e8b9a4; }

.specs { list-style: none; margin-top: 22px; border-top: 1px solid #e3dcd8; }
.specs li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 9px 0; border-bottom: 1px solid #e3dcd8;
  font-size: 14px;
}
.specs li span { color: var(--muted); flex: 0 0 auto; }
.specs li b { font-weight: 600; text-align: right; }
/* stone rows (catalog diamond) sit in their own visual block; hidden
   while cyrkonia is the chosen stone - app.js drives .nostone */
.specs li.g0 { margin-top: 16px; border-top: 1px solid #e3dcd8; }
.specs.nostone li.grp { display: none; }
.cta {
  width: 100%; margin-top: 20px;
  background: var(--red); color: #fff;
  border: none; border-radius: 12px; cursor: pointer;
  font-family: inherit; font-size: 16px; font-weight: 600;
  padding: 14px;
  transition: background-color .15s;
}
.cta:hover { background-color: var(--red-dark); }
/* made-to-order pitch: sits right under the ask button because it explains
   what the configurator above does - size, metal colour, stones on request */
.order-note {
  margin-top: 14px; padding: 14px 16px;
  background: var(--white); border-radius: 4px;
  font-size: 13.5px; line-height: 1.6;
  color: var(--muted);
}
.order-note:empty { display: none; }
.prod-desc {
  margin: 40px auto 0; color: #5d5864;
  font-size: 16px; line-height: 1.75;
}
.prod-desc h2 {
  font-size: 22px; font-weight: 700; color: var(--ink);
  text-align: center; margin-bottom: 20px;
}
/* justify tore holes between words in a narrow column */
.prod-desc p { margin-bottom: 15px; }
/* metal notes that the specs list and the configurator don't already show */
.d-meta {
  font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 18px; text-align: center;
}
.d-meta span { color: #cdc5c1; margin: 0 9px; }

/* Footer */
footer {
  margin-top: 56px; padding: 34px 0 24px;
  background: #2c2733; color: #b5b0bc;
  font-size: 13px;
}
/* same content box as section{} so footer columns line up with the page */
.f-in {
  max-width: var(--shell); margin: 0 auto; padding: 0 16px;
  display: grid; grid-template-columns: auto 1fr; gap: 26px 26px;
}
/* mobile: brand row on top, nav + kontakt side by side under it */
.f-brand { grid-column: 1 / -1; }
.f-logo { display: inline-block; text-decoration: none; color: #fff; }
.f-logo b { display: block; font-size: 18px; font-weight: 600; letter-spacing: .3em; margin-right: -.3em; }
.f-logo span { display: block; font-size: 8.5px; letter-spacing: .28em; margin-right: -.28em; color: #8f8a99; margin-top: 2px; }
.f-logo::after { content: ''; display: block; width: 28px; height: 3px; background: var(--red); margin-top: 12px; }
.f-brand p { margin-top: 12px; max-width: 320px; line-height: 1.5; color: #a5a0ae; }
.f-soc { display: flex; gap: 10px; margin-top: 16px; }
.f-soc a {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.07); color: #d8d4de;
  transition: background-color .15s, color .15s;
}
.f-soc svg { width: 17px; height: 17px; }
.f-soc a:hover { background: var(--red); color: #fff; }
/* two footer columns stop fitting next to each other - stack them */
@media (max-width: 374px) {
  .f-in { grid-template-columns: 1fr; gap: 22px; }
}
.f-col h3 {
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #fff; margin-bottom: 12px;
}
.f-col a, .f-col p { display: block; line-height: 1.5; margin-bottom: 8px; }
.f-col a { color: #b5b0bc; text-decoration: none; transition: color .15s; }
.f-col a:hover { color: #fff; }
.f-col p { color: #948f9d; }
.f-bot {
  max-width: var(--shell); margin: 26px auto 0; padding: 16px 16px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 4px 20px; justify-content: space-between;
  font-size: 11.5px; color: #837e8c;
}

/* ===== Desktop ===== */
@media (min-width: 900px) {
  .page { max-width: none; box-shadow: none; }
  section[id] { scroll-margin-top: 118px; }

  header { padding: 14px 40px 8px; }
  #burgerBtn { display: none; }
  .logo b { font-size: 22px; }
  .dnav {
    display: flex; justify-content: center; gap: 40px;
    padding: 4px 0 14px; background: var(--white);
  }
  .dnav a {
    color: var(--ink); text-decoration: none;
    font-size: 14px; font-weight: 600; letter-spacing: .05em;
    position: relative; padding-bottom: 5px;
  }
  .dnav a::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 2px; background: var(--red);
    transform: scaleX(0); transform-origin: left;
    transition: transform .2s;
  }
  .dnav a:hover::after, .dnav a[aria-current]::after { transform: scaleX(1); }
  /* desktop has room for two rows - wrapping beats a hidden side-scroll */
  .chips { margin: 20px 0 0; padding: 2px 0 0; overflow: visible; flex-wrap: wrap; }

  .hero { height: 580px; }
  .hero .slide img { object-position: center 45%; }
  .hero .caption {
    left: 6%; bottom: 52px; right: auto; max-width: 560px;
    font-size: 40px;
  }
  .hero .cta {
    right: 6%; bottom: 58px;
    font-size: 17px; padding: 16px 32px;
  }
  .hero .arr { width: 52px; height: 52px; }
  .hero .arr.prev { left: 28px; }
  .hero .arr.next { right: 28px; }

  section { max-width: var(--shell); margin: 0 auto; padding: 64px 40px 8px; }
  .sec-title { font-size: 30px; }

  .carousel { margin: 0 -40px; padding: 4px 40px 8px; }
  .pcard { flex: 0 0 calc(25% - 11px); }
  .pcard .ph { height: 260px; }

  .about p { max-width: 880px; margin: 0 auto 8px; }
  .about h2 { font-size: 32px !important; }
  .stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px; margin-top: 46px;
    max-width: 1000px; margin-left: auto; margin-right: auto;
    align-items: start;
  }
  .stat b { font-size: 38px; }
  .stat b::after { margin: 9px auto 7px; }
  .stat span { font-size: 13px; max-width: 180px; }

  .banner { margin: 26px 0 0; }
  .banner img { height: 280px; }
  .banner .t { font-size: 46px; left: 28px; bottom: 18px; }
  .cats { grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
  .ccard .ph { height: 190px; }
  .ccard span { font-size: 15px; }

  .coll { max-width: var(--shell); margin: 12px auto 0; padding: 0 40px; }
  /* same content width as the .cats tile row above; fixed ratio keeps the
     crop fraction constant at any viewport so the ring stays in frame */
  .coll img { aspect-ratio: 12 / 5; height: auto; object-fit: cover; object-position: center bottom; }

  .steps { padding-top: 128px; }
  .steps h2 { font-size: 32px !important; }
  .steps .grid2 {
    display: grid; grid-template-columns: 1fr 1fr;
    column-gap: 64px;
  }
  .steps .num { font-size: 72px; }

  .contacts-card {
    display: grid; grid-template-columns: 1fr 1.15fr;
    gap: 14px 56px; padding: 44px 48px;
  }
  .contacts-card h2 { font-size: 34px; margin-bottom: 0; }
  /* column matches map height: heading tops it, socials bottom it,
     rows spread evenly - margins zeroed so space-between owns the rhythm */
  .cinfo {
    grid-column: 1;
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .crow { font-size: 17px; gap: 16px; margin-bottom: 0; }
  .crow svg { width: 24px; height: 24px; }
  .socials { gap: 12px; margin-top: 0; }
  .soc { width: auto; height: auto; border-radius: 12px; padding: 12px 20px 12px 16px; }
  .soc svg { width: 18px; height: 18px; }
  .soc span { display: inline; font-size: 14.5px; font-weight: 600; }
  .map-link { grid-column: 2; grid-row: 1; align-self: stretch; height: 400px; margin-top: 0; }
  .map-link img { object-position: left center; }

  .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .cat-grid .pcard .ph { height: 215px; }

  .prod {
    display: grid; grid-template-columns: 1.05fr 1fr;
    gap: 12px 56px; align-items: start;
  }
  .gal-main { height: 520px; padding: 28px; }
  .gth { width: 84px; height: 84px; }
  .pinfo { margin-top: 6px; }
  .pinfo h1 { font-size: 30px; }
  .pprice { font-size: 30px; }
  /* right-aligned: it ends where the specs list and the note card end */
  .cta { display: block; width: auto; padding: 14px 44px; margin-left: auto; }
  /* ~75 characters per line at 16px */
  .prod-desc { max-width: 680px; margin: 52px auto 0; }

  footer { padding: 48px 0 30px; }
  .f-in { grid-template-columns: 1.2fr .9fr 1fr; gap: 48px; padding: 0 40px; }
  .f-brand { grid-column: auto; }
  .f-brand p { max-width: 340px; }
  .f-bot { margin-top: 34px; padding: 18px 40px 0; }
}

/* Inquiry modal */
.modal { position: fixed; inset: 0; z-index: 300; display: none; }
.modal.open { display: block; }
.m-overlay { position: absolute; inset: 0; background: rgba(20,17,25,.55); }
.m-box {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 400px);
  background: var(--white); border-radius: 12px;
  padding: 24px 22px 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.m-close {
  position: absolute; top: 6px; right: 10px;
  background: none; border: none; cursor: pointer;
  font-size: 26px; line-height: 1; color: var(--muted); padding: 6px;
}
.m-box h3 { font-size: 20px; font-weight: 700; }
.m-prod { font-size: 14px; color: var(--muted); margin: 2px 0 14px; }
.m-box input, .m-box textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 11px 12px; margin-bottom: 10px;
  border: 1px solid #ddd6d2; border-radius: 8px;
  background: #faf8f7; resize: none;
}
.m-box input:focus, .m-box textarea:focus { outline: 2px solid var(--ink); outline-offset: -1px; }
.m-send {
  width: 100%; background: var(--red); color: #fff;
  border: none; border-radius: 10px; cursor: pointer;
  font-family: inherit; font-size: 16px; font-weight: 600;
  padding: 13px;
  transition: background-color .15s;
}
.m-send:hover { background-color: var(--red-dark); }
.m-note { margin-top: 10px; font-size: 12px; color: var(--muted); text-align: center; }

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 200;
  transform: translateX(-50%) translateY(20px);
  background: #2c2733; color: #fff;
  font-size: 14px; padding: 11px 18px; border-radius: 22px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Language switcher links (production: PL/RU are real pages) */
.lang { display: inline-flex; align-items: center; }
.lang a { color: var(--muted); text-decoration: none; transition: color .15s; }
.lang a:hover { color: var(--ink); }

/* Chips render as links now (crawlable sub-category URLs) */
a.chip { text-decoration: none; display: inline-block; }

/* Inquiry form: consent + request states */
.m-consent {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12.5px; color: var(--muted);
  margin: 2px 0 12px; cursor: pointer;
}
.m-consent input { width: auto; margin: 2px 0 0; accent-color: var(--red); }
.m-consent a { color: inherit; text-decoration: underline; }
.m-err { margin-top: 10px; font-size: 13px; color: var(--red); text-align: center; }
.m-ok { text-align: center; padding: 18px 0 10px; }
.m-ok p { margin-top: 6px; font-size: 14px; color: var(--muted); }

/* Plain text pages (privacy policy) */
.text-page { max-width: 900px; margin: 10px auto 40px; font-size: 14px; line-height: 1.7; }
.text-page h1 { font-size: 22px; font-weight: 700; margin: 10px 0 16px; }
.text-page h2 { font-size: 17px; font-weight: 600; margin: 18px 0 8px; }
.text-page p, .text-page li { margin-bottom: 8px; color: var(--ink); }
.text-page ol, .text-page ul { padding-left: 22px; }

/* Analytics consent bar */
.cookiebar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 250;
  background: var(--white); border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
  padding: 14px 16px;
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  max-width: 720px; margin: 0 auto;
}
.cookiebar[hidden] { display: none; }
.cookiebar p { font-size: 12.5px; line-height: 1.5; color: var(--muted); flex: 1 1 320px; margin: 0; }
.cookiebar a { color: inherit; }
.cb-btns { display: flex; gap: 8px; }
.cookiebar button {
  font-family: inherit; font-size: 13.5px; font-weight: 600;
  border: none; border-radius: 8px; cursor: pointer;
  padding: 9px 16px; background: var(--red); color: #fff;
}
.cookiebar button.ghost { background: none; color: var(--muted); }
.specs li span:empty { display: none; }
