/* ============================================================
   LASER ZONA — laserzona.bg
   Premium laser & cosmetology clinic, Varna (BG)
   Cream / ivory · deep sage #5d6e5a · graphite
   Montserrat (base · like laserzona.bg) — switchable via Tweaks
   ============================================================ */

/* ----------  TOKENS  ---------- */
:root {
  --cream:      #faf8f4;
  --cream-2:    #efeae2;
  --blush:      #faf1ec; /* warm rosy cream — alt section background */
  --ivory:      #ffffff;
  --paper:      #ffffff;

  --sage:       #a48d78;
  --sage-deep:  #6f5d4b;
  --sage-mid:   #bfaa92;
  --sage-soft:  #cbb9a4;
  --sage-tint:  #f1ebe2;

  --graphite:   #36302a;
  --ink-soft:   #6b6055;
  --ink-faint:  #9c9183;

  --line:       rgba(58, 51, 44, 0.13);
  --line-soft:  rgba(58, 51, 44, 0.07);

  /* Sticky top bars (.lz-header / .lz-subhead). --bar-solid is the mobile bg and
     MUST equal the <meta name="theme-color"> in head.php so the iOS notch blends
     into the bar seamlessly. --bar-frost is the desktop translucent variant. */
  --bar-solid:  var(--paper);
  --bar-frost:  color-mix(in srgb, var(--paper) 82%, transparent);

  /* Footer bg — also painted on <html> so the iOS bottom overscroll (rubber-band
     past the footer) stays seamless. Single pages override <html> to --cream. */
  --footer-bg:  color-mix(in srgb, var(--sage-deep) 66%, var(--sage) 34%);

  --gold:       #b08d57;
  --star:       #fbbc04; /* Google review yellow — rating stars */
  --red:        #d63a36; /* promo accent — prices, discount highlight, PROMO badge */
  --btn:        #cdb9a3; /* solid CTA / active tab + chip background */
  --btn-hover:  #b09f8c; /* solid CTA hover */
  --gold-soft:  #ecd2a6;

  /* Shared corner radius for pill-style controls (tabs, chips, badges, hours,
     toggles, progress bars). Was 999px (fully rounded); now 8px. */
  --radius-pill: 8px;

  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Montserrat', system-ui, sans-serif;

  /* heading weights — tunable via Tweaks (thin & airy by default) */
  --w-display: 400;
  --w-title:   500;

  /* max content width — content centers on wide screens (backgrounds stay
     full-bleed); content column is capped at 1440px */
  --content-max: 1440px;

  --shadow-sm: 0 1px 2px rgba(42,43,39,.05), 0 4px 14px rgba(42,43,39,.05);
  --shadow-md: 0 8px 30px rgba(42,43,39,.10);
  --shadow-lg: 0 24px 70px rgba(42,43,39,.16);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ----------  RESET  ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; }
/* iOS overscroll color (rubber-band past the page edges). Match the sticky header
   bar so the top overscroll blends into it seamlessly. */
html { background-color: var(--bar-solid); }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

body {
  font-family: var(--sans);
  background:
    radial-gradient(1200px 700px at 20% -10%, #efeae1, transparent 60%),
    radial-gradient(1100px 800px at 100% 0%, #e9e7e1, transparent 55%),
    #e7e5df;
  color: var(--graphite);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ============================================================
   THE PAGE  (container-query driven; mobile-first base)
   container = .lz-page  →  narrow styles are the default
   ============================================================ */
.lz-page {
  container: lzpage / inline-size;
  background: var(--paper);
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.55;
  position: relative;
}

/* reveal-on-scroll: only hide when JS is active */
.js-anim .reveal {
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js-anim .reveal:not(.is-in) {
  opacity: 0;
  transform: translateY(22px);
}
.js-anim .reveal.is-in[data-d="1"]{ transition-delay:.08s; }
.js-anim .reveal.is-in[data-d="2"]{ transition-delay:.16s; }
.js-anim .reveal.is-in[data-d="3"]{ transition-delay:.24s; }
.js-anim .reveal.is-in[data-d="4"]{ transition-delay:.32s; }
/* failsafe: guarantees content shows even if the animation clock is paused */
.lz-page.reveals-done .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
@media (prefers-reduced-motion: reduce) {
  .js-anim .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ----------  shared type  ---------- */
.lz-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}
.lz-eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--sage-soft);
}
.lz-h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px; /* mobile; desktop bumps to 52px in the container query */
  line-height: 1.04;
  letter-spacing: -.01em;
  margin: 0 0 16px;
}
.lz-h2 em { font-style: italic; color: var(--sage); }
.lz-quiz__intro .lz-h2 em { font-family: var(--sans); color: var(--red); } /* highlight "50% отстъпка" in Montserrat */
.lz-lede {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0;
  text-wrap: pretty;
}

/* ----------  buttons  ---------- */
.lz-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 15px 26px;
  border-radius: 0;
  transition: transform .35s var(--ease), background .3s, color .3s, box-shadow .3s;
  white-space: nowrap;
}
.lz-btn--solid { background: var(--btn); color: #fbfaf6; box-shadow: 0 10px 24px rgba(176,159,140,.30); }
.lz-btn--solid:hover { background: var(--btn-hover); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(176,159,140,.36); }
.lz-btn--red { background: var(--red); color: #fbfaf6; box-shadow: 0 10px 24px rgba(214,58,54,.30); }
.lz-btn--red:hover { background: #bd2f2c; transform: translateY(-2px); box-shadow: 0 16px 30px rgba(214,58,54,.36); }
.lz-btn--ghost { border: 1px solid rgba(42,43,39,.25); color: var(--graphite); }
.lz-btn--ghost:hover { border-color: var(--sage); color: var(--sage); transform: translateY(-2px); }
.lz-btn svg { width: 17px; height: 17px; }

/* ----------  placeholders  ---------- */
.lz-ph {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(150deg, var(--sage-mid), var(--sage-deep));
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.lz-ph::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(255,255,255,.18), transparent 55%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 2px, transparent 2px 16px);
  z-index: -1;
}
.lz-ph__tag {
  margin: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(20,21,15,.34);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18);
  color: #f3f1e9;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 8px 13px;
  border-radius: var(--radius-pill);
}
.lz-ph__tag svg { width: 14px; height: 14px; opacity: .9; }
.lz-ph__glyph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: -1;
}
.lz-ph__glyph svg { width: 90px; height: 90px; color: rgba(255,255,255,.16); }

/* ============================================================
   HEADER  (sticky)
   ============================================================ */
.lz-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bar-solid); /* mobile: solid, matches the notch */
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.lz-header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 20px rgba(42,43,39,.05); }

.lz-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  padding: 13px 16px;
}
.lz-logo { display: flex; align-items: center; gap: 11px; }
.lz-logo__img { height: 42px; width: auto; display: block; }
/* header logo: full wordmark by default, compact LZ monogram on very narrow screens.
   Viewport @media (not @container) so the swap happens at exactly ≤410px regardless of scrollbar width. */
.lz-logo__img--mark { display: none; }
@media (max-width: 410px) {
  .lz-header .lz-logo__img--full { display: none; }
  .lz-header .lz-logo__img--mark { display: block; }
}
.lz-logo__wordmark { font-family: var(--serif); font-weight: 600; font-size: 23px; letter-spacing: .16em; text-transform: uppercase; color: var(--graphite); white-space: nowrap; }
.lz-footer .lz-logo__wordmark { color: #fbfaf6; }
.lz-footer .lz-logo__img { height: 46px; }
.lz-logo__mark {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--sage);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 600; font-size: 19px;
  color: var(--sage); letter-spacing: .02em;
}
.lz-logo__text { display: flex; flex-direction: column; line-height: 1; }
.lz-logo__text b {
  font-family: var(--serif); font-weight: 600; font-size: 20px; letter-spacing: .14em;
}
.lz-logo__text small {
  font-size: 9.5px; font-weight: 700; letter-spacing: .42em; color: var(--sage);
  margin-top: 4px;
}
.lz-nav { display: none; }
.lz-nav__item { position: relative; }
.lz-nav__top {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  padding: 6px 0; position: relative; transition: color .25s;
}
.lz-nav__top::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--sage); transition: width .3s var(--ease);
}
.lz-nav__item:hover .lz-nav__top { color: var(--graphite); }
.lz-nav__item:hover .lz-nav__top::after { width: 100%; }
.lz-nav__chev { width: 13px; height: 13px; color: var(--ink-faint); transition: transform .25s var(--ease); }
.lz-nav__item--has:hover .lz-nav__chev { transform: rotate(180deg); }

.lz-nav__sub {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(-6px);
  min-width: 230px; background: var(--paper); border: 1px solid var(--line);
  border-radius: 16px; box-shadow: var(--shadow-lg); padding: 8px;
  display: flex; flex-direction: column; gap: 1px; z-index: 70;
  opacity: 0; visibility: hidden; transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.lz-nav__sub::before {
  content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px;
}
.lz-nav__item--has:hover .lz-nav__sub { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.lz-nav__sub a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  padding: 10px 14px; border-radius: 10px; transition: background .2s, color .2s, padding-left .2s;
}
.lz-nav__sub a:hover { background: var(--cream); color: var(--graphite); padding-left: 18px; }
.lz-nav__sub-promo { color: var(--sage-deep) !important; font-weight: 700 !important; }
.lz-nav__sub-promo:hover { background: var(--sage-tint) !important; }

/* mega submenu — two columns (laser epilation) */
.lz-nav__sub--mega { display: flex; flex-direction: row; gap: 10px; min-width: 380px; }
.lz-nav__col { flex: 1; display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.lz-nav__col + .lz-nav__col { border-left: 1px solid var(--line-soft); padding-left: 10px; }
.lz-nav__colhead {
  font-family: var(--sans); font-weight: 600; font-size: 16px; color: var(--graphite) !important;
  padding: 8px 14px 9px !important; margin-bottom: 2px; border-bottom: 1px solid var(--line-soft); border-radius: 0 !important;
}
.lz-nav__colhead:hover { background: none !important; color: var(--sage-deep) !important; padding-left: 14px !important; }

.lz-header__actions { display: flex; align-items: center; gap: 12px; }

/* language switcher — globe dropdown (BG / EN / RU) */
.lz-lang { position: relative; }
.lz-lang__btn {
  display: inline-flex; align-items: center; gap: 8px; height: 36px; box-sizing: border-box;
  border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 0 13px;
  background: rgba(255,255,255,.5); color: var(--graphite);
  font-size: 12.5px; font-weight: 500; letter-spacing: .06em;
  transition: border-color .25s, background .25s;
}
.lz-lang__btn:hover { border-color: var(--sage-soft); background: var(--paper); }
.lz-lang__globe { width: 16px; height: 16px; color: var(--sage); }
.lz-lang__chev { width: 12px; height: 12px; color: var(--ink-faint); transition: transform .25s var(--ease); }
.lz-lang.is-open .lz-lang__chev { transform: rotate(180deg); }
.lz-lang__menu {
  position: absolute; top: calc(100% + 9px); right: 0; min-width: 188px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 20px 46px rgba(42,43,39,.16); padding: 7px; z-index: 80;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.lz-lang.is-open .lz-lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lz-lang__opt {
  display: flex; align-items: center; gap: 11px; width: 100%; padding: 9px 11px;
  border-radius: 9px; font-size: 13.5px; font-weight: 500; color: var(--graphite); transition: background .18s;
}
.lz-lang__opt:hover { background: rgba(164,141,120,.13); }
.lz-lang__code {
  display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 22px;
  border-radius: 6px; background: #f1ebe2; color: var(--sage-deep);
  font-size: 10.5px; font-weight: 700; letter-spacing: .04em; flex: none;
}
.lz-lang__name { flex: 1; text-align: left; }
.lz-lang__ck { width: 16px; height: 16px; color: var(--sage); opacity: 0; flex: none; }
.lz-lang__opt.is-active { font-weight: 700; }
.lz-lang__opt.is-active .lz-lang__code { background: var(--sage); color: #fbfaf6; }
.lz-lang__opt.is-active .lz-lang__ck { opacity: 1; }

/* city selector */
.lz-city { position: relative; }
.lz-city__cur, .lz-city__chev { display: none; }
.lz-city__cur-mini { display: none; }
.lz-city__btn {
  display: inline-flex; align-items: center; gap: 7px; height: 36px; box-sizing: border-box;
  border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 0 15px;
  font-size: 12px; font-weight: 600; color: var(--graphite); background: rgba(255,255,255,.45);
  transition: border-color .25s, background .25s;
}
.lz-city__btn:hover { border-color: var(--sage-soft); background: var(--paper); }
.lz-city__btn > svg:first-child { width: 15px; height: 15px; color: var(--sage); }
.lz-city__chev { width: 13px; height: 13px; color: var(--ink-faint); transition: transform .25s var(--ease); }
.lz-city.is-open .lz-city__chev { transform: rotate(180deg); }
.lz-city__menu {
  position: absolute; top: calc(100% + 10px); right: 0; width: 366px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-lg); padding: 8px; z-index: 70;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.lz-city.is-open .lz-city__menu { opacity: 1; visibility: visible; transform: none; }

.lz-city__tabs { display: flex; gap: 4px; background: var(--cream); padding: 4px; border-radius: 12px; margin-bottom: 8px; }
.lz-city__tabs button {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-soft);
  padding: 8px 4px; border-radius: 9px; transition: background .2s, color .2s, box-shadow .2s;
}
.lz-city__tabs button i {
  font-style: normal; display: inline-grid; place-items: center; min-width: 16px; height: 16px; padding: 0 4px;
  background: rgba(164,141,120,.16); color: var(--sage-deep); border-radius: var(--radius-pill); font-size: 10.5px; font-weight: 700;
}
.lz-city__tabs button.is-active { background: var(--paper); color: var(--graphite); box-shadow: var(--shadow-sm); }
.lz-city__tabs button.is-active i { background: var(--sage); color: #fff; }

.lz-city__panel { display: none; flex-direction: column; gap: 2px; }
.lz-city__panel.is-active { display: flex; }
.lz-city__salon {
  display: flex; align-items: center; gap: 14px; text-align: left;
  padding: 11px 10px; border-radius: 12px; transition: background .2s;
  border-bottom: 1px solid var(--line-soft);
}
.lz-city__salon:last-of-type { border-bottom: none; }
.lz-city__salon:hover { background: var(--cream); }
.lz-city__salon-pin { flex: none; width: 16px; color: var(--sage-soft); display: flex; justify-content: center; margin-top: 3px; transition: color .2s; }
.lz-city__salon:hover .lz-city__salon-pin { color: var(--sage); }
.lz-city__salon-pin svg { width: 15px; height: 15px; }
.lz-city__salon-body { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.lz-city__salon-body b { font-family: var(--sans); font-weight: 600; font-size: 16px; letter-spacing: -.01em; color: var(--graphite); line-height: 1.15; }
.lz-city__salon-body span { font-size: 12.5px; color: var(--ink-soft); margin-top: 1px; }
.lz-city__salon-body em { font-style: normal; font-size: 13px; font-weight: 600; color: var(--sage-deep); margin-top: 3px; }
.lz-city__salon-row { display: flex; align-items: center; margin-top: 6px; }
.lz-city__salon-phone { font-size: 13px; font-weight: 600; color: var(--sage-deep); transition: color .2s; }
.lz-city__salon-phone:hover { color: var(--sage); }
/* vertical column of action badges on the right of each salon */
.lz-city__salon-actions { flex: none; display: flex; flex-direction: column; gap: 12px; }
.lz-city__salon-ig { display: inline-flex; align-items: center; }
.lz-city__salon-ig .lz-ig-badge { width: 24px; height: 24px; }
.lz-city__salon-ig .lz-ig-badge svg { width: 14px; height: 14px; }
.lz-city__salon-fb { display: inline-flex; align-items: center; }
.lz-city__salon-fb .lz-fb-badge { width: 24px; height: 24px; }
.lz-city__salon-fb .lz-fb-badge svg { width: 16px; height: 16px; }
.lz-city__salon-map { display: inline-flex; align-items: center; }
.lz-city__salon-map .lz-map-badge { width: 24px; height: 24px; }
.lz-city__salon-map .lz-map-badge svg { width: 15px; height: 15px; }

.lz-city__foot {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 4px; padding: 6px 10px 2px;
}
.lz-city__hours { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--ink-faint); font-weight: 500; }
.lz-city__hours svg { width: 13px; height: 13px; color: var(--sage); }
.lz-burger { display: inline-flex; flex-direction: column; gap: 5px; padding: 8px; }
.lz-burger i { width: 20px; height: 2px; background: var(--graphite); border-radius: 2px; transition: transform .28s var(--ease), opacity .2s; }
.lz-header.menu-open .lz-burger i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lz-header.menu-open .lz-burger i:nth-child(2) { opacity: 0; }
.lz-header.menu-open .lz-burger i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile dropdown menu */
.lz-mobile-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  max-height: calc(100dvh - 100%); overflow-y: auto;
  background: var(--cream); border-top: 1px solid var(--line);
  box-shadow: 0 24px 44px rgba(42,43,39,.14);
  padding: 10px 22px 24px;
  opacity: 0; visibility: hidden; transform: translateY(-10px); pointer-events: none;
  transition: opacity .26s var(--ease), transform .26s var(--ease), visibility .26s;
  z-index: 45;
}
/* While the mobile menu is open, lift the whole header (and its dropdown child)
   above the sticky bottom CTA bar (.lz-mcta, z-index 55) so an expanded accordion
   isn't overlapped from below. */
.lz-header.menu-open { z-index: 60; }
.lz-header.menu-open .lz-mobile-menu { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.lz-mm-nav { display: flex; flex-direction: column; }
.lz-mm-link {
  font-family: var(--sans); font-size: 22px; font-weight: 500; color: var(--graphite);
  padding: 14px 2px; border-bottom: 1px solid var(--line-soft); transition: color .2s, padding-left .2s;
}
.lz-mm-link:hover { color: var(--sage); padding-left: 8px; }
.lz-mm-group { border-bottom: 1px solid var(--line-soft); }
.lz-mm-acc {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-family: var(--sans); font-size: 22px; font-weight: 500; color: var(--graphite);
  padding: 14px 2px; text-align: left; transition: color .2s;
}
.lz-mm-acc svg { width: 20px; height: 20px; color: var(--ink-faint); transition: transform .3s var(--ease); flex: none; }
.lz-mm-group.is-open .lz-mm-acc { color: var(--sage-deep); }
.lz-mm-group.is-open .lz-mm-acc svg { transform: rotate(180deg); color: var(--sage); }
.lz-mm-panel {
  overflow: hidden; height: 0; transition: height .32s var(--ease);
  display: flex; flex-direction: column;
}
.lz-mm-panel a {
  font-family: var(--sans); font-size: 16px; font-weight: 500; color: var(--ink-soft);
  padding: 11px 2px 11px 16px; transition: color .2s, padding-left .2s;
}
.lz-mm-panel a:first-child { padding-top: 4px; }
.lz-mm-panel a:last-child { padding-bottom: 16px; }
.lz-mm-panel a:hover { color: var(--graphite); padding-left: 22px; }
.lz-mm-promo { color: var(--sage-deep) !important; font-weight: 700 !important; }
.lz-mm-sublabel {
  display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--sage); padding: 14px 2px 4px;
}
.lz-mm-sublabel:first-child { padding-top: 4px; }
.lz-mm-foot { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.lz-mm-langrow { display: flex; align-items: center; justify-content: space-between; }
.lz-mm-label { font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--ink-soft); }
.lz-mm-phone { display: inline-flex; align-items: center; gap: 9px; font-size: 16px; font-weight: 600; color: var(--graphite); }
.lz-mm-phone svg { width: 17px; height: 17px; color: var(--sage); }
.lz-mobile-menu .lz-btn--solid { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.lz-hero { padding: 30px 22px 44px; }
.lz-hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--ivory); border: 1px solid var(--line);
  border-radius: var(--radius-pill); padding: 8px 15px 8px 9px;
  font-size: 12.5px; font-weight: 600; color: var(--sage-deep);
  box-shadow: var(--shadow-sm); margin-bottom: 26px;
}
.lz-hero__badge b {
  display: inline-grid; place-items: center; width: 22px; height: 22px;
  background: var(--sage); color: #fff; border-radius: 50%; font-size: 12px;
}
.lz-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -.015em;
  margin: 0 0 14px;
  text-wrap: balance;
  overflow-wrap: break-word;
}
.lz-hero h1 em { font-style: italic; color: var(--red); }
.lz-hero__tagline {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
/* Hero feature list (HydraFacial slide) — thin-line icon + label rows */
.lz-hero__feats { list-style: none; margin: 4px 0 24px; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.lz-hero__feats li { display: flex; align-items: center; gap: 13px; font-size: 15.5px; font-weight: 500; color: var(--graphite); }
.lz-hero__feats svg { width: 24px; height: 24px; flex: none; color: var(--sage); }
.lz-hero__sub {
  font-size: 18px; color: var(--ink-soft); max-width: 40ch; margin: 0 0 30px;
  text-wrap: pretty;
}
.lz-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 30px; }
.lz-hero__cta .lz-btn { height: 48px; } /* desktop & mobile (mobile also zeroes padding below) */
.lz-hero__phone { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 16px; }
.lz-hero__phone svg { width: 18px; height: 18px; color: var(--sage); }
.lz-hero__phone small { display: block; font-size: 11px; font-weight: 500; color: #36302a; letter-spacing: .04em; }

/* keep the CTA button + phone on one row on mobile */
@container lzpage (max-width: 759.98px) {
  .lz-hero__cta { flex-direction: column; align-items: flex-start; gap: 14px; }
  .lz-hero__cta .lz-btn { height: 48px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; }
  .lz-hero__phone { font-size: 15px; }
}

.lz-hero__trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; padding-top: 6px; }
.lz-trust-item { display: flex; flex-direction: column; gap: 3px; }
.lz-trust-item b { font-family: var(--serif); font-size: 26px; font-weight: 500; line-height: 1; }
.lz-trust-item span { font-size: 12px; color: var(--ink-faint); letter-spacing: .03em; }
.lz-stars { display: inline-flex; gap: 2px; color: var(--star); }
.lz-trust-item .lz-stars { color: var(--star); } /* beat .lz-trust-item span (ink-faint) */
.lz-stars svg { width: 15px; height: 15px; }
.lz-hero__media { margin-top: 34px; }
.lz-hero__ph { height: 380px; }
.lz-hero__media .lz-ph { justify-content: flex-end; }
.lz-hero__imgwrap { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); background: var(--sage-tint); }
.lz-hero__imgwrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Slide-1 mobile video background — hidden by default so desktop keeps the photo;
   the mobile container query below flips img↔video. */
.lz-hero__video { width: 100%; height: 100%; object-fit: cover; display: none; }
/* Mobile promo discount circle — hidden by default; shown on slide 1 ≤759px. */
.lz-hero__promo { display: none; }
.lz-hero__promo b { font-family: var(--serif); font-weight: 600; font-size: 30px; line-height: 1; }
.lz-hero__promo small { font-size: 11px; letter-spacing: .03em; opacity: .95; }
.lz-hero__floater {
  display: none;
}

/* ---------- HERO SLIDER ----------
   Wraps the hero in a swipeable carousel. Each .lz-heroslide also carries the
   .lz-hero class, so every existing .lz-hero / .lz-hero__* rule renders each
   slide exactly like the standalone hero (desktop 2-col, mobile full-bleed). */
.lz-heroslider { position: relative; overflow: hidden; }
.lz-heroslider__track {
  display: flex;
  transition: transform .6s var(--ease);
  will-change: transform;
}
.lz-heroslide { flex: 0 0 100%; min-width: 100%; }

.lz-heroslider__nav {
  position: absolute; left: 0; right: 0; bottom: 26px; z-index: 5;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  pointer-events: none; /* let clicks fall through the gaps to hero content */
}
.lz-heroslider__nav > * { pointer-events: auto; }
.lz-heroslider__arrow {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  color: var(--graphite); background: rgba(251,250,246,.92);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: background .2s, color .2s, border-color .2s;
}
.lz-heroslider__arrow:hover { background: var(--sage); color: #fff; border-color: var(--sage); }
.lz-heroslider__arrow svg { width: 18px; height: 18px; }
.lz-heroslider__dots { display: flex; gap: 8px; align-items: center; }
.lz-heroslider__dots i {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(54,48,42,.28); transition: width .3s, background .3s; cursor: pointer;
}
.lz-heroslider__dots i.is-active { width: 24px; border-radius: var(--radius-pill); background: var(--sage-deep); }

/* Mobile: hero is a full-bleed photo with text at the bottom, so move the dots
   up over the empty top of the photo and drop the arrows (swipe takes over). */
@container lzpage (max-width: 759.98px) {
  /* Mobile: a single "smart" edge arrow, vertically centred. It lives on the
     right on the first slide; tap it and it slides/fades out as the left arrow
     fades in on the last slide — only ever ONE arrow on screen. Dots are dropped
     (the directional arrow is the affordance for a 2-slide deck). The nav becomes
     a full-bleed, click-through overlay so the arrows can sit at the photo edges. */
  .lz-heroslider__nav { top: 0; bottom: 0; transform: none; }
  .lz-heroslider__dots { display: none; }
  .lz-heroslider__arrow {
    position: absolute; top: 50%; width: 32px; height: 32px;
    transform: translateY(-50%);
    transition: opacity .4s var(--ease), transform .4s var(--ease);
  }
  .lz-heroslider__arrow svg { width: 15px; height: 15px; }
  .lz-heroslider__arrow--prev { left: 14px; right: auto; }
  .lz-heroslider__arrow--next { right: 14px; left: auto; }
  /* hide the prev arrow on the first slide and the next arrow on the last,
     each sliding a touch toward its edge as it goes */
  .lz-heroslider.is-first .lz-heroslider__arrow--prev {
    opacity: 0; pointer-events: none; transform: translateY(-50%) translateX(-12px);
  }
  .lz-heroslider.is-last .lz-heroslider__arrow--next {
    opacity: 0; pointer-events: none; transform: translateY(-50%) translateX(12px);
  }
}

/* Header uses the compact burger layout at/below 1160px (not just below 760px), so
   the full nav only appears once there's room for it. Body sections keep their
   own 760px breakpoint. */
@container lzpage (max-width: 1160.98px) {
  /* compact 56px header bar */
  .lz-header__inner { height: 56px; padding-top: 0; padding-bottom: 0; }
  /* show the city name next to the pin */
  .lz-city__cur, .lz-city__chev { display: block; }
  .lz-city__cur-full { display: none; }
  .lz-city__cur-mini { display: inline; }
  .lz-city__btn { padding: 0 8px; }
  /* dropdown spans the full width */
  .lz-city { position: static; }
  .lz-city__menu { left: 12px; right: 12px; width: auto; top: 100%; margin-top: 8px; }
}

/* ---------- MOBILE: full-bleed photo hero. The photos vary wildly (light/busy
   vs dark), and on several the text crosses a dark subject (hair), so plain
   colour can't stay legible. Unified treatment = light text on every slide +
   a soft top/bottom gradient veil that FADES TO TRANSPARENT (no plate/box, the
   photo stays fully visible in the middle). Same look the men's slide already
   nailed. ---------- */
@container lzpage (max-width: 759px) {
  .lz-hero {
    position: relative; overflow: hidden; min-height: 100dvh; padding: 44px 0 0;
    display: flex; flex-direction: column; justify-content: flex-start;
  }
  .lz-hero__sub { display: none; }
  .lz-hero__media { position: absolute; inset: 0; margin: 0; z-index: 0; }
  .lz-hero__imgwrap { height: 100%; border-radius: 0; box-shadow: none; }
  /* On mobile slide 1 is an autoplaying muted video instead of the photo, and the
     hero is a single static frame (no carousel), so hide the slider nav. The JS
     also stops autoplay/swipe below 760px (see main.js hero slider). */
  .lz-heroslide:first-child .lz-hero__video { display: block; }
  .lz-heroslide:first-child .lz-hero__imgwrap img { display: none; }
  .lz-heroslider__nav { display: none; }
  /* Red discount circle, bottom-right (above the sticky booking bar). */
  .lz-heroslide:first-child .lz-hero__promo {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: absolute; right: 14px; bottom: 104px; z-index: 3; gap: 1px;
    width: 112px; height: 112px; border-radius: 50%;
    background: var(--red); color: #fff; text-align: center;
    box-shadow: 0 10px 26px rgba(0,0,0,.30);
  }
  /* Gradient veil: darkens top (heading + feats) and bottom (badge/CTA), clear
     through the middle so the subject is untouched. Taет в прозрачность — not a card. */
  .lz-hero__media::after {
    content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(to bottom,
      rgba(18,15,12,.64) 0%, rgba(18,15,12,.40) 22%, rgba(18,15,12,.25) 42%,
      rgba(18,15,12,.11) 60%, rgba(18,15,12,0) 72%, rgba(18,15,12,.48) 100%);
  }
  /* extra bottom padding so the bottom group (rating + consultation chip) clears
     the sticky booking bar (.lz-mcta, z-index 55) that overlays the hero foot. */
  .lz-hero__col { position: relative; z-index: 2; padding: 0 16px calc(48px + env(safe-area-inset-bottom)); flex: 1; display: flex; flex-direction: column; }
  .lz-hero__badge {
    order: 3; align-self: flex-start; margin-top: auto; margin-bottom: 12px;
    background: none; border: none; box-shadow: none;
    -webkit-backdrop-filter: none; backdrop-filter: none;
    padding: 0; color: #fbf6ee; font-size: 13px; font-weight: 600; letter-spacing: .04em;
  }
  .lz-hero__badge b { background: var(--gold); width: 20px; height: 20px; font-size: 11px; }
  .lz-hero h1 { color: #fbf6ee; }
  .lz-hero h1 em { color: #e8b04b; }
  .lz-hero__tagline { color: #f1e9dc; margin-top: 0; font-size: 14px; max-width: 80%; }
  .lz-hero__feats li { color: #f1e9dc; }
  .lz-hero__feats svg { color: #e8b04b; }
  .lz-hero__phone { color: #fbf6ee; }
  .lz-hero__phone svg { color: #e8b04b; }
  .lz-hero__phone small { color: #fbf6ee; }
  /* Rating/stats: pinned to the bottom of the slide, just above the consultation
     chip — sits in the darker bottom veil and clears the slider arrows. */
  .lz-hero__trust { display: flex; gap: 10px 16px; order: 4; margin-top: 0; margin-bottom: 0; padding-top: 0; }
  .lz-trust-item b { color: #fbf6ee; font-size: 19px; }
  .lz-trust-item span { color: #f1e9dc; }

  /* Faint dark halo on the glyphs reinforces the veil where the photo is light. */
  .lz-hero h1,
  .lz-hero__badge,
  .lz-hero__tagline,
  .lz-hero__feats li,
  .lz-trust-item b,
  .lz-trust-item span {
    text-shadow: 0 1px 14px rgba(0,0,0,.55);
  }
}

/* ============================================================
   SERVICES
   ============================================================ */
/* mobile-first base; 90px at ≥760, 100px at ≥1100 */
.lz-section { padding: 36px 16px; }
.lz-section--alt { background: var(--blush); }
.lz-sec-head { margin-bottom: 32px; }
.lz-sec-head__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

/* mobile: tighter, uniform rhythm — smaller header gap + tab spacing */
@container lzpage (max-width: 759px) {
  .lz-sec-head { margin-bottom: 20px; }
  .lz-svc-tabs { margin-bottom: 18px; }
  .lz-gtabs { margin-bottom: 16px; }
  .lz-mapcountry { margin: 6px 0 16px; }
  .lz-eyebrow { margin-bottom: 12px; }
  /* fixed pill heights for the procedures filter */
  .lz-cat { height: 40px; padding-top: 0; padding-bottom: 0; display: inline-flex; align-items: center; }
  .lz-gtabs button { height: 32px; padding-top: 0; padding-bottom: 0; display: inline-flex; align-items: center; }
}

.lz-svc-tabs { display: inline-flex; gap: 6px; background: var(--cream-2); padding: 5px; border-radius: var(--radius-pill); margin-bottom: 28px; }
.lz-svc-tabs button {
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  padding: 10px 18px; border-radius: var(--radius-pill); transition: background .25s, color .25s, box-shadow .25s;
}
.lz-svc-tabs button.is-active { background: var(--paper); color: var(--graphite); box-shadow: var(--shadow-sm); }

.lz-svc-panel { display: none; }
.lz-svc-panel.is-active { display: block; }

/* mobile: horizontal swipe; desktop: 3-col grid */
.lz-svc-track {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 16px 16px; margin: 0 -16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.lz-svc-track::-webkit-scrollbar { display: none; }
.lz-svc-track > .lz-card { scroll-snap-align: start; flex: 0 0 252px; }

.lz-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 24px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  display: flex; flex-direction: column;
}
.lz-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sage-soft); }
.lz-card__icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: var(--sage-tint); color: var(--sage-deep);
  display: grid; place-items: center; margin-bottom: 18px;
}
.lz-card__icon svg { width: 24px; height: 24px; }
.lz-card h4 { font-family: var(--sans); font-weight: 600; font-size: 23px; margin: 0 0 6px; letter-spacing: -.01em; }
.lz-card p { font-size: 14px; color: var(--ink-soft); margin: 0 0 18px; flex: 1; }
.lz-card__foot { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; padding-top: 16px; border-top: 1px solid var(--line-soft); }
.lz-card__price { font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--red); white-space: nowrap; }
.lz-card__price span { font-family: var(--sans); font-size: 12px; font-weight: 600; color: var(--ink-faint); margin-right: 4px; letter-spacing: .04em; }
.lz-card__link { font-size: 13px; font-weight: 600; color: var(--sage); display: inline-flex; align-items: center; gap: 5px; transition: gap .25s; }
.lz-card:hover .lz-card__link { gap: 9px; }
.lz-card__link svg { width: 14px; height: 14px; }

/* ----------  gender tabs ---------- */
.lz-gtabs { display: inline-flex; gap: 6px; background: var(--cream-2); padding: 5px; border-radius: var(--radius-pill); margin-bottom: 20px; }
.lz-gtabs button {
  font-size: 12.5px; font-weight: 700; letter-spacing: .12em; color: var(--ink-soft);
  padding: 10px 22px; border-radius: var(--radius-pill); transition: background .25s, color .25s, box-shadow .25s;
}
.lz-gtabs button.is-active { background: var(--btn); color: #fbfaf6; box-shadow: 0 6px 16px rgba(176,159,140,.26); }

/* ----------  category chips ---------- */
.lz-cats {
  display: flex; gap: 10px; overflow-x: auto; padding: 4px 16px 10px; margin: 0 0 2px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.lz-cats::-webkit-scrollbar { display: none; }
.lz-cat {
  flex: none; font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  padding: 10px 18px; border: 1px solid var(--line); border-radius: var(--radius-pill);
  background: var(--paper); white-space: nowrap; cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}
.lz-cat:hover { border-color: var(--sage-soft); color: var(--graphite); }
.lz-cat.is-active { background: var(--btn); color: #fbfaf6; border-color: var(--btn); }
/* "Акции" promo tab — red highlight to stand out from the regular categories */
.lz-cat--promo { color: var(--red); border-color: color-mix(in srgb, var(--red) 40%, transparent); }
.lz-cat--promo:hover { color: var(--red); border-color: var(--red); }
.lz-cat--promo.is-active { background: var(--red); color: #fff; border-color: var(--red); }

/* scroll affordance: edge fade + progress bar */
.lz-cats-shell { position: relative; margin: 0 -16px 4px; }
.lz-cats-shell::before,
.lz-cats-shell::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 40px; pointer-events: none; z-index: 2;
  opacity: 0; transition: opacity .25s var(--ease);
}
.lz-cats-shell::before { left: 0; background: linear-gradient(90deg, var(--cream), transparent); }
.lz-cats-shell::after { right: 0; background: linear-gradient(270deg, var(--cream), transparent); }
.lz-cats-shell.is-scroll-l::before { opacity: 1; }
.lz-cats-shell.is-scroll-r::after { opacity: 1; }
.lz-cats-prog { height: 4px; margin: 2px 16px 6px; background: var(--cream-2); border-radius: var(--radius-pill); overflow: hidden; opacity: 0; transition: opacity .25s var(--ease); }
.lz-cats-shell.is-scrollable .lz-cats-prog { opacity: 1; }
.lz-cats-prog__bar { display: block; height: 100%; width: 30%; background: var(--sage); border-radius: var(--radius-pill); will-change: margin-left, width; }

/* obvious scroll arrows (mobile) — right shows when more is to the right,
   left appears once you've scrolled away from the start. */
.lz-cats-arrow {
  position: absolute; top: calc(50% - 7px); transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--paper); color: var(--ink-soft); display: grid; place-items: center; cursor: pointer; z-index: 4;
  box-shadow: 0 3px 9px rgba(58,51,44,.12);
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease), transform .2s var(--ease), background .2s, color .2s, border-color .2s;
}
.lz-cats-arrow--right { right: 16px; }
.lz-cats-arrow--left  { left: 16px; }
.lz-cats-arrow svg { width: 18px; height: 18px; }
.lz-cats-shell.is-scroll-r .lz-cats-arrow--right { opacity: 1; pointer-events: auto; }
.lz-cats-shell.is-scroll-l .lz-cats-arrow--left  { opacity: 1; pointer-events: auto; }
.lz-cats-arrow:hover { background: var(--cream); color: var(--sage-deep); border-color: var(--sage-soft); }
.lz-cats-arrow:active { transform: translateY(-50%) scale(.9); }

/* ----------  product slider ---------- */
.lz-pslider-wrap { position: relative; }
.lz-pslider {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 16px 8px; margin: 0 -16px;
  scrollbar-width: none; -webkit-overflow-scrolling: touch; scroll-behavior: smooth;
}
.lz-pslider::-webkit-scrollbar { display: none; }

.lz-pcard {
  flex: 0 0 260px; scroll-snap-align: start;
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 18px;
  overflow: hidden; display: flex; flex-direction: column;
}
.lz-pcard.is-hidden { display: none; }
.lz-pcard__media { position: relative; aspect-ratio: 3 / 2.4; overflow: hidden; background: var(--sage-tint); }
.lz-pcard__media img { width: 100%; height: 100%; object-fit: cover; }
.lz-pcard__promo {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .1em;
  padding: 2px 6px; border-radius: 6px;
}
.lz-pcard__body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.lz-pcard__title { font-family: var(--sans); font-weight: 600; font-size: 20px; line-height: 1.1; margin: 0 0 4px; letter-spacing: -.01em; }
.lz-pcard__zones { list-style: none; margin: 0 0 4px; padding: 0; display: flex; flex-direction: column; gap: 3px; }
.lz-pcard__zones li {
  font-family: var(--sans); font-weight: 600; font-size: 18px; line-height: 1.2; color: var(--graphite);
  padding-left: 0;
}
.lz-pcard__foot { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.lz-pcard__price { font-family: var(--sans); font-weight: 500; font-size: 24px; color: var(--red); display: flex; align-items: baseline; gap: 7px; white-space: nowrap; }
.lz-pcard__price s { font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--ink-faint); }
.lz-pcard__btn { padding: 11px 16px; font-size: 13px; }
/* flat CTAs inside cards — no lz-btn--solid drop shadow */
.lz-pcard .lz-btn { box-shadow: none; }
/* Face-zone cards: cut-out illustration resting on a soft on-brand gradient.
   Images are pre-normalised to a uniform 4:5 canvas (centred, bottom-anchored),
   so the media box matches and cover gives consistent, pixel-perfect framing. */
.lz-pcard--face .lz-pcard__media {
  aspect-ratio: 900 / 651;
  background:
    radial-gradient(70% 64% at 50% 34%, color-mix(in srgb, var(--gold-soft) 38%, var(--cream)) 0%, transparent 62%),
    linear-gradient(165deg, var(--cream) 0%, var(--sage-tint) 78%, var(--sage-soft) 100%);
}
.lz-pcard--face .lz-pcard__media img {
  object-fit: cover;
  object-position: center top;
}
/* Body-zone cards: taller 3:4 portrait, cut-out figure on the same gradient */
.lz-pcard--body .lz-pcard__media {
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(70% 56% at 50% 34%, color-mix(in srgb, var(--gold-soft) 15%, var(--paper)) 0%, transparent 62%),
    linear-gradient(168deg, var(--paper) 0%, var(--paper) 58%, var(--cream) 100%);
}
.lz-pcard--body .lz-pcard__media img {
  object-fit: cover;
  object-position: center bottom;
}
/* Promo banner cards (Акции) — a self-contained 4:5 banner shown in full (the
   media ratio matches the artwork, so nothing is cropped off the baked-in text). */
.lz-pcard--promo .lz-pcard__media { aspect-ratio: 1122 / 1402; background: var(--sage-tint); }
.lz-pcard--promo .lz-pcard__media img { object-fit: cover; object-position: center; }

.lz-pnav { display: none; gap: 10px; }
.lz-pnav button {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--graphite); background: var(--paper);
  transition: background .25s, color .25s, border-color .25s;
}
.lz-pnav button:hover { background: var(--sage); color: #fff; border-color: var(--sage); }
.lz-pnav svg { width: 18px; height: 18px; }
.lz-pslider-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 14px; }
.lz-pslider-note { font-size: 12.5px; color: var(--ink-faint); }
.lz-pricelink { font-weight: 700; color: var(--sage-deep); transition: color .2s; }
.lz-pricelink:hover { color: var(--sage); }

/* Promo price LIST — shown on the "Промоции" tab in place of the card slider
   (toggled by JS). Dotted-leader rows: name ···· old-price(struck) new-price(red). */
.lz-plist[hidden] { display: none; }
.lz-plist { display: block; max-width: 940px; margin: 24px auto 0; }
.lz-prow { display: flex; align-items: baseline; gap: 12px; padding: 16px 2px; }
/* Divider BETWEEN visible rows only — no border above the first visible row,
   correct for both genders (hidden rows don't count as a preceding sibling). */
.lz-prow:not(.is-hidden) ~ .lz-prow:not(.is-hidden) { border-top: 1px solid #e6d5cb; }
.lz-prow.is-hidden { display: none; }
.lz-prow__name { font-size: 17px; font-weight: 500; color: var(--graphite); }
.lz-prow__lead { flex: 1 1 0; min-width: 20px; border-bottom: 1px dotted var(--sage-soft); transform: translateY(-4px); }
.lz-prow__old { font-size: 14px; color: var(--sage); text-decoration: line-through; white-space: nowrap; }
.lz-prow__new { font-family: var(--sans); font-size: 22px; font-weight: 700; color: var(--red); white-space: nowrap; }
.lz-plist__foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 26px; }
.lz-plist__note { font-size: 12.5px; color: var(--ink-faint); }
.lz-plist__foot .lz-btn { height: 48px; }
@container lzpage (max-width: 759px) {
  .lz-prow { gap: 8px; padding: 13px 0; }
  .lz-prow__name { flex: 1 1 auto; min-width: 0; font-size: 15px; }
  .lz-prow__lead { display: none; }
  .lz-prow__old { font-size: 12.5px; }
  .lz-prow__new { font-size: 18px; }
  .lz-plist__foot { margin-top: 20px; }
  .lz-plist__foot .lz-btn { width: 100%; }
}

/* ---------- "Представи си…" benefit cards + "Колко можеш да спестиш?" savings.
   Imported from the Laser Zona design blocks (desktop + mobile). ---------- */
.lz-imagine { margin-bottom: 72px; }
.lz-imagine__title { font-family: var(--serif); font-size: 40px; font-weight: 500; letter-spacing: -.01em; line-height: 1.05; color: #2e2320; margin: 0 0 32px; }
.lz-imagine__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.lz-imagine__card { background: #fff; border-radius: 14px; padding: 30px 26px; display: flex; flex-direction: column; gap: 26px; min-height: 190px; }
.lz-imagine__ic { color: #2e2320; }
.lz-imagine__ic svg { width: 46px; height: 46px; display: block; }
.lz-imagine__card p { font-size: 16px; font-weight: 600; color: #2e2320; line-height: 1.5; margin: 0; text-wrap: pretty; }

.lz-save {
  display: grid; grid-template-columns: 1fr 1.15fr; column-gap: 56px; row-gap: 16px;
  grid-template-areas: "title card" "lead card" "label card" "total card" "note card" "btn card";
  align-items: start;
}
.lz-save__title { grid-area: title; font-family: var(--serif); font-size: 40px; font-weight: 500; letter-spacing: -.01em; color: #2e2320; line-height: 1.1; margin: 0; }
.lz-save__lead { grid-area: lead; font-size: 16px; color: #8a7166; line-height: 1.6; margin: 0; }
.lz-save__label { grid-area: label; margin: 8px 0 0; font-size: 15px; font-weight: 500; color: #5c463d; }
.lz-save__total { grid-area: total; font-size: 62px; font-weight: 700; color: var(--red); line-height: 1; }
.lz-save__note { grid-area: note; font-size: 17px; font-weight: 600; color: #2e2320; line-height: 1.5; margin: 0; text-wrap: pretty; }
.lz-save__btn { grid-area: btn; justify-self: start; margin-top: 10px; height: 48px; }
.lz-save__card {
  grid-area: card; align-self: center;
  background: #fff; border-radius: 14px; padding: 36px 12px;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
}
.lz-save__col { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 0 10px; text-align: center; }
.lz-save__col--mid { border-left: 1px solid #eee0d8; border-right: 1px solid #eee0d8; }
.lz-save__collbl { font-size: 14px; font-weight: 500; color: #5c463d; white-space: nowrap; }
.lz-save__ic { color: #2e2320; }
.lz-save__ic svg { width: 46px; height: 46px; display: block; }
.lz-save__val { font-size: 28px; font-weight: 700; color: #2e2320; white-space: nowrap; }
.lz-save__per { font-size: 13px; color: #8a7166; white-space: nowrap; }

@container lzpage (max-width: 759px) {
  .lz-imagine { margin-bottom: 44px; }
  .lz-imagine__title { font-size: 30px; margin-bottom: 20px; }
  .lz-imagine__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .lz-imagine__card { padding: 20px 18px; gap: 18px; min-height: 158px; border-radius: 12px; }
  .lz-imagine__ic svg { width: 36px; height: 36px; }
  .lz-imagine__card p { font-size: 14px; line-height: 1.45; }

  .lz-save {
    grid-template-columns: 1fr; column-gap: 0; row-gap: 0;
    grid-template-areas: "title" "lead" "cardm" "label" "total" "note" "btn";
  }
  .lz-save__title { font-size: 30px; line-height: 1.15; }
  .lz-save__lead { margin: 10px 0 20px; font-size: 14px; line-height: 1.55; }
  .lz-save__card { grid-area: cardm; padding: 22px 4px; }
  .lz-save__col { gap: 10px; padding: 0 8px; }
  .lz-save__ic svg { width: 36px; height: 36px; }
  .lz-save__collbl { font-size: 12px; }
  .lz-save__val { font-size: 19px; }
  .lz-save__per { font-size: 11px; }
  .lz-save__label { margin: 22px 0 0; font-size: 14px; }
  .lz-save__total { font-size: 40px; line-height: 1.1; margin: 2px 0 10px; }
  .lz-save__note { font-size: 15px; }
  .lz-save__btn { justify-self: stretch; width: 100%; text-align: center; margin-top: 20px; }
}

.lz-pempty {
  display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center;
  padding: 48px 22px; border: 1px dashed var(--sage-soft); border-radius: 18px; background: var(--ivory);
}
.lz-pempty p { margin: 0; font-family: var(--serif); font-size: 21px; color: var(--ink-soft); }
.lz-pempty[hidden] { display: none; }

.lz-pslider-cta { display: none; }

/* mobile: tidy 2-up grid instead of a horizontal swipe row */
@container lzpage (max-width: 759px) {
  .lz-pslider {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    overflow: visible; margin: 0; padding: 2px 0 0;
    scroll-snap-type: none;
  }
  .lz-pcard { flex: initial; min-width: 0; border-radius: 16px; }
  .lz-pcard__body { padding: 13px 13px 15px; }
  .lz-pcard__title { font-size: 17px; }
  .lz-pcard__zones li { font-size: 15px; }
  .lz-pcard__foot { padding-top: 11px; }
  .lz-pcard__price { font-size: 20px; }
  .lz-pcard__price s { font-size: 12px; }
  /* per-card CTA inside each cell (replaces the inline foot button) */
  .lz-pcard__btn { display: none; }
  .lz-pslider-cta { display: flex; width: 100%; height: 36px; margin-top: 10px; padding: 0 16px; font-size: 13px; }
  .lz-pslider-foot { margin-top: 16px; justify-content: center; text-align: center; }
}

/* ============================================================
   USP  (why choose us)
   ============================================================ */
.lz-usp-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 8px; }
.lz-usp {
  background: var(--blush); border: 1px solid var(--line-soft);
  border-radius: 18px; padding: 26px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.lz-usp:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.lz-usp__n { font-family: var(--serif); font-size: 15px; color: var(--sage); font-weight: 600; letter-spacing: .06em; }
.lz-usp__ic { width: 46px; height: 46px; border-radius: 8px; background: var(--sage); color: #fff; display: grid; place-items: center; margin: 14px 0 18px; }
.lz-usp__ic svg { width: 18px; height: 18px; }
/* Google rating tile — white chip so the multicolour "G" logo reads correctly. */
.lz-usp__ic--google { background: #fff; box-shadow: inset 0 0 0 1px var(--line); }
.lz-usp__ic--google svg { width: 27px; height: 27px; }

/* USP cards: number on the left, icon on the right, in one row */
.lz-usp__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 18px; }
.lz-usp__top .lz-usp__ic { width: 30px; height: 30px; margin: 0; }
.lz-usp__top .lz-usp__ic--google svg { width: 18px; height: 18px; }
@container lzpage (max-width: 759px) { .lz-usp__top { margin-bottom: 16px; } }
.lz-usp h4 { font-family: var(--sans); font-weight: 600; font-size: 22px; margin: 0 0 8px; }
.lz-usp p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* mobile: compact 2-up grid so the cards don't dominate the screen */
@container lzpage (max-width: 759px) {
  .lz-usp-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .lz-usp { padding: 16px 15px 17px; border-radius: 15px; }
  .lz-usp__n { font-size: 13px; }
  .lz-usp__ic { width: 36px; height: 36px; border-radius: 8px; margin: 10px 0 12px; }
  .lz-usp__ic svg { width: 18px; height: 18px; }
  .lz-usp h4 { font-size: 17px; line-height: 1.12; margin: 0 0 5px; }
  .lz-usp p { font-size: 12.5px; line-height: 1.4; }
}

/* ============================================================
   PREPARATION TIMELINE
   ============================================================ */
.lz-steps { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 8px; }
.lz-step {
  display: grid; grid-template-columns: auto 1fr; gap: 20px;
  padding: 26px 0; border-top: 1px solid var(--line);
  position: relative;
}
.lz-step:last-child { border-bottom: 1px solid var(--line); }
.lz-step__n {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 34px; color: var(--sage); line-height: 1;
}
.lz-step h4 { font-family: var(--sans); font-weight: 600; font-size: 22px; margin: 0 0 7px; }
.lz-step p { font-size: 14px; color: var(--ink-soft); margin: 0; max-width: 52ch; }

/* ============================================================
   REVIEWS  (carousel)
   ============================================================ */
.lz-reviews { overflow: hidden; }
.lz-rev-track-wrap { overflow: hidden; }
.lz-rev-track { display: flex; transition: transform .55s var(--ease); }
.lz-rev-slide { min-width: 100%; padding: 4px; box-sizing: border-box; display: flex; }
.lz-rev-card {
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: 20px; padding: 32px;
  flex: 1; display: flex; flex-direction: column;
}
.lz-rev-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.lz-rev-quote { font-family: var(--sans); font-size: 23px; line-height: 1.32; font-weight: 500; margin: 0 0 24px; text-wrap: pretty; }
.lz-rev-quote::before { content: "“"; color: var(--sage-soft); }
.lz-rev-quote::after { content: "”"; color: var(--sage-soft); }
.lz-rev-author { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.lz-rev-author b { font-size: 15px; font-weight: 700; }
.lz-rev-author span { font-size: 12.5px; color: var(--ink-faint); white-space: nowrap; }
.lz-rev-g { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--ink-faint); font-weight: 600; }
.lz-rev-g svg { width: 24px; height: 24px; }
@container lzpage (max-width: 759px) {
  .lz-rev-card { padding: 16px; }
  .lz-rev-quote { font-size: 20px; line-height: 1.35; margin-bottom: 20px; }
}
.lz-rev-ctrl { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.lz-rev-arrows { display: flex; gap: 10px; }
.lz-rev-arrows button {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--graphite); transition: background .25s, color .25s, border-color .25s;
}
.lz-rev-arrows button:hover { background: var(--sage); color: #fff; border-color: var(--sage); }
.lz-rev-arrows svg { width: 18px; height: 18px; }
.lz-rev-dots { display: flex; gap: 8px; margin-left: auto; }
.lz-rev-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--line); transition: width .3s, background .3s; }
.lz-rev-dots i.is-active { width: 26px; border-radius: var(--radius-pill); background: var(--sage); }
.lz-rev-all { text-align: center; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line-soft); }
.lz-rev-all a { font-weight: 500; }

/* ============================================================
   FAQ
   ============================================================ */
.lz-faq { margin-top: 8px; }
.lz-faq__item { border-bottom: 1px solid var(--line); }
.lz-faq__q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 24px 0; font-family: var(--sans); font-weight: 600; font-size: 21px; color: var(--graphite);
  transition: color .25s;
}
.lz-faq__q:hover { color: var(--sage); }
.lz-faq__ic { flex: none; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; transition: transform .35s var(--ease), background .3s, border-color .3s, color .3s; }
.lz-faq__ic svg { width: 15px; height: 15px; }
.lz-faq__item.is-open .lz-faq__ic { transform: rotate(45deg); background: var(--sage); color: #fff; border-color: var(--sage); }
.lz-faq__a { overflow: hidden; height: 0; transition: height .4s var(--ease); }
.lz-faq__a-inner { padding: 0 0 26px; font-size: 15px; color: var(--ink-soft); max-width: 64ch; }

/* ============================================================
   SAFETY · contraindications + under-18 note
   ============================================================ */
.lz-contra-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 8px; align-items: start; }
.lz-contra { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 18px; padding: 26px; }
.lz-contra:has(.lz-contra__ic--main) { background: var(--cream); }
.lz-contra__head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.lz-contra__ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; flex: none; }
.lz-contra__ic svg { width: 23px; height: 23px; }
.lz-contra__ic--main { background: var(--sage); color: #fff; }
.lz-contra__ic--temp { background: var(--sage-tint); color: var(--sage-deep); }
.lz-contra h4 { font-family: var(--sans); font-weight: 600; font-size: 22px; margin: 0; letter-spacing: -.01em; }
.lz-contra__list { list-style: none; margin: 0; padding: 0; }
.lz-contra__list li {
  font-size: 14.5px; color: var(--ink-soft); line-height: 1.4;
  padding: 11px 0 11px 24px; border-top: 1px solid var(--line-soft); position: relative;
}
.lz-contra__list li:first-child { border-top: none; }
.lz-contra__list li b { color: var(--graphite); font-weight: 600; }
.lz-contra__list li::before { content: ""; position: absolute; left: 2px; top: 18px; width: 7px; height: 7px; border-radius: 50%; background: var(--sage-soft); }
.lz-contra__ic--main ~ * .lz-contra__list li::before { background: #cf9a8d; }

.lz-agenote {
  position: relative; overflow: hidden; margin-top: 18px; display: flex; gap: 15px;
  background: linear-gradient(135deg, #ffffff, #f1ebe2);
  border: 1px solid var(--line-soft); border-radius: 16px; padding: 20px;
  box-shadow: 0 14px 44px rgba(42,43,39,.10);
}
.lz-agenote::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background:
    radial-gradient(70% 130% at 100% 0%, rgba(164,141,120,.12), transparent 56%),
    repeating-linear-gradient(45deg, rgba(58,51,44,.02) 0 2px, transparent 2px 18px);
}
.lz-agenote > * { position: relative; z-index: 1; }
.lz-agenote h5 { font-family: var(--sans); font-size: 19px; font-weight: 600; margin: 0 0 6px; }
.lz-agenote p { font-size: 13.5px; color: var(--ink-soft); margin: 0; line-height: 1.5; }

/* promo / complexes CTA banner */
.lz-cta-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 100%);
  color: #f3f1e9; border-radius: 24px; padding: 24px;
  display: flex; flex-direction: column; gap: 24px; align-items: flex-start;
}
.lz-cta-banner::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(255,255,255,.14), transparent 55%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 2px, transparent 2px 18px);
  pointer-events: none;
}
.lz-cta-banner > * { position: relative; z-index: 1; }
.lz-cta-banner .lz-eyebrow { color: var(--sage-soft); }
.lz-cta-banner .lz-eyebrow::before { background: rgba(255,255,255,.4); }
.lz-cta-banner h3 { font-family: var(--sans); font-weight: 500; font-size: 36px; line-height: 1.04; letter-spacing: -.01em; margin: 0 0 14px; }
.lz-cta-banner h3 em { font-style: italic; color: var(--gold-soft); }
.lz-cta-banner p:not(.lz-eyebrow) { font-size: 15px; color: rgba(247,245,233,.82); max-width: 50ch; margin: 0; text-wrap: pretty; }
.lz-cta-banner__txt .lz-btn { height: 48px; margin-top: 22px; }
.lz-cta-banner__media { width: 100%; border-radius: 18px; overflow: hidden; box-shadow: 0 16px 34px rgba(0,0,0,.24); }
.lz-cta-banner__media img { width: 100%; height: 220px; object-fit: cover; object-position: center; display: block; }
.lz-btn--light { background: #fbfaf6; color: var(--sage-deep); box-shadow: 0 12px 26px rgba(0,0,0,.18); }
.lz-btn--light:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 18px 32px rgba(0,0,0,.22); }

/* gallery / spaces — masonry */
.lz-gtile { break-inside: avoid; margin: 0 0 12px; position: relative; overflow: hidden; border-radius: 16px; background: var(--sage-tint); display: block; }
.lz-gtile img { width: 100%; height: auto; display: block; transition: transform .6s var(--ease); }
.lz-gtile:hover img { transform: scale(1.05); }
.lz-gtile figcaption {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(20,21,15,.42); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.16); color: #f3f1e9;
  font-size: 11.5px; font-weight: 600; letter-spacing: .04em; padding: 6px 11px; border-radius: var(--radius-pill);
}

/* ----------  Нашите пространства — per-salon interior (reuses .lz-gtile) ---------- */
.lz-spaces { margin-top: 4px; }
.lz-spaces-salon { padding: 30px 0; border-top: 1px solid var(--line); }
.lz-spaces-salon:first-child { border-top: none; padding-top: 0; }
.lz-spaces-head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
.lz-spaces-id { display: flex; flex-direction: column; gap: 7px; }
.lz-spaces-num { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--sage); }
.lz-spaces-name { font-family: var(--sans); font-weight: 600; font-size: 25px; line-height: 1.06; margin: 0; color: var(--graphite); letter-spacing: -.005em; }
.lz-spaces-name .city { color: var(--sage); font-weight: 700; }
.lz-spaces-contact { display: flex; flex-direction: column; gap: 8px; }
.lz-spaces-line { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: var(--ink-soft); }
.lz-spaces-line svg { width: 16px; height: 16px; flex: none; color: var(--sage); }
.lz-spaces-phone { font-weight: 600; color: var(--sage-deep); white-space: nowrap; }
.lz-spaces-phone:hover { color: var(--graphite); }
.lz-spaces-route { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--sage-deep); border: 1px solid var(--sage-soft); padding: 9px 16px; border-radius: 8px; align-self: flex-start; transition: background .25s, color .25s, border-color .25s; white-space: nowrap; }
.lz-spaces-route svg { width: 15px; height: 15px; }
.lz-spaces-route:hover { background: var(--sage); color: #fff; border-color: var(--sage); }
/* mobile (base): horizontal swipe slider + dots (bleeds to the 16px gutter) */
.lz-spaces-grid {
  display: flex; gap: 10px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none;
  margin: 0 -16px; padding: 0 16px 2px;
}
.lz-spaces-grid::-webkit-scrollbar { display: none; }
.lz-spaces-grid .lz-gtile { flex: 0 0 82%; height: 280px; margin: 0; scroll-snap-align: center; }
.lz-spaces-grid .lz-gtile img { height: 100%; object-fit: cover; }
.lz-spaces-dots { display: flex; justify-content: center; gap: 6px; margin-top: 14px; }
.lz-spaces-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--sage-soft); transition: background .2s, transform .2s; }
.lz-spaces-dots span.on { background: var(--sage-deep); transform: scale(1.3); }
/* desktop: contact row + masonry columns, slider off */
@container lzpage (min-width: 760px) {
  .lz-spaces-salon { padding: 36px 0; }
  .lz-spaces-head { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 26px; margin-bottom: 22px; }
  .lz-spaces-name { font-size: 30px; }
  .lz-spaces-contact { flex-direction: row; align-items: center; gap: 22px; flex-wrap: wrap; }
  .lz-spaces-route { align-self: auto; }
  .lz-spaces-grid { display: block; column-count: 3; column-gap: 12px; overflow: visible; margin: 0; padding: 0; scroll-snap-type: none; }
  .lz-spaces-grid .lz-gtile { flex: none; height: auto; margin: 0 0 12px; break-inside: avoid; }
  .lz-spaces-grid .lz-gtile img { height: auto; }
  .lz-spaces-dots { display: none; }
}
@container lzpage (min-width: 1100px) {
  .lz-spaces-grid { column-count: 4; }
}
.lz-spaces-citylink { display: inline-block; margin-top: 6px; font-size: 13px; font-weight: 600; color: var(--sage-deep); }
.lz-spaces-citylink:hover { color: var(--graphite); }

/* ============================================================
   ABOUT
   ============================================================ */
.lz-about__grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
.lz-about__media { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); background: var(--sage-tint); }
.lz-about__media img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 3 / 2.2; }
.lz-about__badge {
  position: absolute; left: 18px; bottom: 18px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(251,250,246,.92); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-radius: 14px; padding: 12px 18px; box-shadow: var(--shadow-md);
}
.lz-about__badge b { font-family: var(--serif); font-weight: 600; font-size: 34px; color: var(--sage-deep); line-height: 1; }
.lz-about__badge span { font-size: 12.5px; color: var(--ink-soft); line-height: 1.25; }
.lz-about__txt .lz-lede { margin-bottom: 16px; }
.lz-about__p { font-size: 15px; color: var(--ink-soft); margin: 0 0 24px; max-width: 52ch; text-wrap: pretty; }
.lz-about__values { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.lz-about__value { display: flex; align-items: flex-start; gap: 14px; }
.lz-about__vic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--sage-tint); color: var(--sage-deep); display: grid; place-items: center; }
.lz-about__vic svg { width: 23px; height: 23px; }
.lz-about__value b { display: block; font-family: var(--sans); font-weight: 600; font-size: 19px; margin-bottom: 2px; }
.lz-about__value span { font-size: 14px; color: var(--ink-soft); }

@container lzpage (min-width: 760px) {
  .lz-about__grid { grid-template-columns: 1fr 1fr; gap: 56px; }
  .lz-about__media img { aspect-ratio: 4 / 4.4; }
  .lz-about__values { flex-direction: row; gap: 24px; }
  .lz-about__value { flex-direction: column; gap: 10px; }
}

/* ============================================================
   LOCATIONS MAP
   ============================================================ */
.lz-mapcountry { display: inline-flex; gap: 6px; background: var(--cream-2); padding: 5px; border-radius: var(--radius-pill); margin: 8px 0 22px; }
.lz-mapcountry button {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  padding: 10px 18px; border-radius: var(--radius-pill); transition: background .25s, color .25s, box-shadow .25s;
}
.lz-mapcountry button span {
  display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 6px;
  background: var(--sage-tint); color: var(--sage-deep); border-radius: var(--radius-pill); font-size: 11.5px; font-weight: 700;
}
.lz-mapcountry button.is-active { background: var(--paper); color: var(--graphite); box-shadow: var(--shadow-sm); }
.lz-mapcountry button.is-active span { background: var(--sage); color: #fff; }

.lz-mapgrid { display: grid; grid-template-columns: 1fr; gap: 18px; }

.lz-mapcanvas {
  /* isolate: keep the inner z-indexes (map + .lz-map-hint z:1000) local so the
     hint can't paint over the sticky header when the map scrolls under it. */
  position: relative; isolation: isolate; border-radius: 22px; overflow: hidden;
  height: 360px;
  background:
    radial-gradient(120% 120% at 15% 10%, var(--ivory), transparent 55%),
    linear-gradient(150deg, var(--cream-2), var(--sage-tint));
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm);
}
.lz-map { position: absolute; inset: 0; width: 100%; height: 100%; background: #e8eaed; z-index: 1; }
/* persistent "use two fingers" hint pill at the map's bottom (mobile, injected by
   main.js). Visible by default, low-key; hidden only while panning (.is-off). */
.lz-map-hint {
  position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%);
  z-index: 1000; pointer-events: none;
  display: inline-flex; align-items: center; gap: 7px; max-width: calc(100% - 24px);
  padding: 7px 13px; border-radius: var(--radius-pill);
  background: rgba(40,33,26,.42); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  color: #fff; font-size: 12px; font-weight: 600; letter-spacing: .01em; white-space: nowrap;
  opacity: .9; transition: opacity .3s var(--ease);
}
.lz-map-hint svg { width: 15px; height: 15px; flex: none; }
.lz-map-hint.is-off { opacity: 0; }
/* safety net: never show the two-finger hint on mouse (fine pointer) devices */
@media (pointer: fine) { .lz-map-hint { display: none !important; } }
.lz-map .leaflet-container { background: #e8eaed; font-family: var(--sans); }
.lz-map .leaflet-control-attribution {
  background: rgba(251,250,246,.78); color: var(--ink-faint); font-size: 10px;
  padding: 2px 7px; border-radius: 8px 0 0 0;
}
.lz-map .leaflet-control-attribution a { color: var(--sage-deep); }
.lz-map .leaflet-bar { border: none; box-shadow: var(--shadow-sm); border-radius: 12px; overflow: hidden; }
.lz-map .leaflet-bar a {
  background: var(--paper); color: var(--graphite); border-bottom: 1px solid var(--line-soft);
  width: 34px; height: 34px; line-height: 34px; font-size: 18px; font-weight: 600;
}
.lz-map .leaflet-bar a:hover { background: var(--cream); color: var(--sage-deep); }
.lz-map .leaflet-bar a:first-child { border-radius: 12px 12px 0 0; }
.lz-map .leaflet-bar a:last-child { border-radius: 0 0 12px 12px; border-bottom: none; }

/* classic Google Maps red teardrop pins */
.lz-map .leaflet-div-icon { background: transparent; border: none; }
.lz-mpin-wrap { transition: transform .18s var(--ease); }
.lz-mpin {
  display: block; position: absolute; left: 50%; top: 0; margin-left: -13px;
  width: 26px; height: 26px; z-index: 0;
  background: #ea4335; border: 2.5px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
  box-shadow: 0 3px 7px rgba(0,0,0,.35);
  transition: background .18s, transform .18s var(--ease);
}
.lz-mpin::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 9px; height: 9px; margin: -4.5px 0 0 -4.5px;
  background: #fff; border-radius: 50%;
}
.lz-mpin-wrap.is-active .lz-mpin,
.lz-mpin-wrap:hover .lz-mpin { background: #c5221f; transform: rotate(45deg) scale(1.18); }
.lz-mpin-wrap.is-active { z-index: 1000 !important; }
.lz-map .leaflet-tooltip.lz-mtip {
  background: var(--graphite); color: #fbfaf6; border: none; border-radius: 8px;
  font-family: var(--serif); font-weight: 600; font-size: 13px; padding: 5px 10px;
  box-shadow: var(--shadow-md);
}
.lz-map .leaflet-tooltip.lz-mtip::before { border-top-color: var(--graphite); }

/* salon cards */
.lz-saloncol { position: relative; }
.lz-salonset { display: none; flex-direction: column; gap: 12px; }
.lz-salonset.is-active { display: flex; }
.lz-loc {
  display: flex; gap: 14px; align-items: center;
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 16px; padding: 16px 18px;
  transition: border-color .25s, box-shadow .25s, transform .25s, background .25s;
}
.lz-loc:hover, .lz-loc.is-active { border-color: var(--sage-soft); box-shadow: var(--shadow-sm); transform: translateX(3px); }
.lz-loc.is-active { background: var(--ivory); border-color: var(--sage); }
.lz-loc__pin { flex: none; width: 42px; height: 42px; border-radius: 11px; background: var(--sage-tint); color: var(--sage-deep); display: grid; place-items: center; transition: background .25s, color .25s; }
.lz-loc__pin svg { width: 21px; height: 21px; }
.lz-loc.is-active .lz-loc__pin { background: var(--sage); color: #fff; }
.lz-loc__body { min-width: 0; }
.lz-loc__body h4 { font-family: var(--sans); font-weight: 600; font-size: 19px; margin: 0 0 3px; letter-spacing: -.01em; }
.lz-loc__body p { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 4px; }
.lz-loc__phone { font-size: 14px; font-weight: 600; color: var(--sage-deep); transition: color .2s; }
.lz-loc__phone:hover { color: var(--sage); }

/* ============================================================
   CONTACTS
   ============================================================ */
.lz-contact-grid { display: grid; grid-template-columns: 1fr; gap: 26px; margin-top: 8px; }
.lz-contact-grid > div { display: contents; }
/* mobile: show the booking form first, info panel below (desktop restores order via grid areas) */
.lz-contact-grid .lz-form { order: -1; }

/* booking info panel (left of the form) */
.lz-book-panel {
  background: transparent; border: 1px solid var(--line-soft); border-radius: 22px;
  padding: 34px; display: flex; flex-direction: column; gap: 20px;
}
@container lzpage (max-width: 759.98px) { .lz-book-panel { padding: 24px; } }
.lz-book-panel__lead { font-family: var(--sans); font-size: 21px; line-height: 1.32; color: var(--graphite); margin: 0; text-wrap: pretty; }
.lz-book-benefits { display: flex; flex-direction: column; gap: 13px; }
.lz-book-benefit { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; line-height: 1.4; color: var(--ink-soft); }
.lz-book-benefit svg { width: 18px; height: 18px; flex: none; color: #fff; background: var(--sage); border-radius: 50%; padding: 3px; }
.lz-book-contact { margin-top: auto; display: flex; flex-direction: column; gap: 11px; padding-top: 20px; border-top: 1px solid var(--line); }
.lz-book-contact__a { display: inline-flex; align-items: center; gap: 11px; font-size: 15px; font-weight: 600; color: var(--sage-deep); transition: color .2s; }
.lz-book-contact__a:hover { color: var(--graphite); }
.lz-book-contact__a svg { width: 17px; height: 17px; color: var(--sage); }
.lz-salons { display: grid; gap: 16px; }
.lz-salon {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 18px; padding: 18px;
  display: block; transition: border-color .3s, box-shadow .3s;
}
.lz-salon:hover { border-color: var(--sage-soft); box-shadow: var(--shadow-sm); }
.lz-salon__pin { flex: none; width: 34px; height: 34px; border-radius: 10px; background: var(--sage-tint); color: var(--sage-deep); display: grid; place-items: center; margin-top: 2px; }
.lz-salon__pin svg { width: 18px; height: 18px; }
.lz-salon h4 { font-family: var(--sans); font-size: 19px; font-weight: 600; margin: 0 0 3px; }
.lz-salon p { margin: 0 0 7px; font-size: 13.5px; color: var(--ink-soft); }
.lz-salon .lz-hours { font-size: 13px; color: var(--ink-faint); display: flex; align-items: center; gap: 7px; }
.lz-salon .lz-hours svg { width: 14px; height: 14px; color: var(--sage); }
.lz-salon__phone { display: block; font-size: 14px; font-weight: 600; color: var(--sage-deep); margin: 0 0 10px; transition: color .2s; }
.lz-salon__phone:hover { color: var(--sage); }
.lz-salon__ig { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 9px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); transition: color .2s; }
.lz-salon__ig:hover { color: var(--graphite); }
.lz-ig-badge { flex: none; width: 24px; height: 24px; border-radius: 7px; background: radial-gradient(circle at 28% 100%, #ffd75e 0%, #fa7e1e 22%, #d62976 47%, #962fbf 71%, #4f5bd5 100%); display: grid; place-items: center; box-shadow: 0 2px 7px rgba(150,47,191,.34); }
.lz-ig-badge svg { width: 14px; height: 14px; color: #fff; }
.lz-map-badge { flex: none; width: 24px; height: 24px; border-radius: 7px; background: linear-gradient(135deg, #eaf3e3 0%, #e4efe0 42%, #cde5f6 100%); display: grid; place-items: center; box-shadow: 0 2px 7px rgba(60,64,67,.26); border: 1px solid rgba(60,64,67,.12); }
.lz-map-badge svg { width: 15px; height: 15px; filter: drop-shadow(0 1px 1px rgba(0,0,0,.18)); }
.lz-fb-badge { flex: none; width: 24px; height: 24px; border-radius: 7px; background: #1877f2; display: grid; place-items: center; box-shadow: 0 2px 7px rgba(24,119,242,.34); }
.lz-fb-badge svg { width: 14px; height: 14px; color: #fff; }
.lz-salon.is-hidden { display: none; }

.lz-city-tabs { display: inline-flex; gap: 6px; background: var(--cream-2); padding: 5px; border-radius: var(--radius-pill); margin: 24px 0 6px; }
.lz-city-tabs button { font-size: 13.5px; font-weight: 600; color: var(--ink-soft); padding: 10px 20px; border-radius: var(--radius-pill); transition: background .25s, color .25s, box-shadow .25s; }
.lz-city-tabs button.is-active { background: var(--sage); color: #fbfaf6; box-shadow: 0 6px 16px rgba(93,110,90,.22); }

.lz-conslider { position: relative; aspect-ratio: 4 / 5; border-radius: 18px; overflow: hidden; background: var(--sage-tint); }
.lz-conset { position: absolute; inset: 0; display: none; }
.lz-conset.is-active { display: block; }
.lz-conset__track { display: flex; height: 100%; transition: transform .55s var(--ease); }
.lz-conset__track img { min-width: 100%; width: 100%; height: 100%; object-fit: cover; display: block; }
.lz-conslider__tag { position: absolute; left: 16px; top: 16px; }
.lz-conslider__tag b { font-weight: 700; }
.lz-conslider__nav { position: absolute; left: 16px; right: 16px; bottom: 16px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.lz-conslider__arrow { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: var(--graphite); background: rgba(251,250,246,.92); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); box-shadow: var(--shadow-sm); transition: background .2s, color .2s; }
.lz-conslider__arrow:hover { background: var(--sage); color: #fff; }
.lz-conslider__arrow svg { width: 18px; height: 18px; }
.lz-conslider__dots { display: flex; gap: 7px; align-items: center; }
.lz-conslider__dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(251,250,246,.6); transition: width .3s, background .3s; cursor: pointer; }
.lz-conslider__dots i.is-active { width: 22px; border-radius: var(--radius-pill); background: #fbfaf6; }

/* booking form */
.lz-form {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 20px;
  padding: 28px;
}
@container lzpage (max-width: 759.98px) { .lz-form { padding: 24px; } }
.lz-form h3 { font-family: var(--sans); font-weight: 600; font-size: 26px; margin: 0 0 12px; }
.lz-form > p { font-size: 14px; color: var(--ink-soft); margin: 0 0 22px; }
.lz-field { margin-bottom: 16px; }
.lz-field label { display: block; font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: var(--ink-soft); margin-bottom: 7px; }
.lz-field__opt { font-weight: 500; color: var(--ink-faint); letter-spacing: .02em; }
.lz-field input, .lz-field select {
  /* 16px min so iOS Safari doesn't auto-zoom the page when the field is focused */
  width: 100%; height: 42px; font-family: var(--sans); font-size: 16px; color: var(--graphite);
  padding: 0 15px; border: 1px solid var(--line); border-radius: 12px; background: var(--ivory);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.lz-field input:focus, .lz-field select:focus {
  outline: none; border-color: var(--sage); background: #fff;
  box-shadow: 0 0 0 4px rgba(93,110,90,.12);
}
.lz-field.has-error input, .lz-field.has-error select { border-color: #c0584c; background: #fdf3f1; }
.lz-field__err { display: none; font-size: 12px; color: #c0584c; margin-top: 6px; font-weight: 600; }
.lz-field.has-error .lz-field__err { display: block; }
.lz-form .lz-btn--solid { width: 100%; height: 48px; margin-top: 6px; }
.lz-form__note { font-size: 12px; color: var(--ink-faint); text-align: center; margin: 14px 0 0; }
.lz-form__success {
  display: none; text-align: center; padding: 20px 0;
}
.lz-form.is-sent .lz-form__success { display: block; animation: lzSuccessIn .5s var(--ease) both; }
.lz-form.is-sent .lz-form__body { display: none; }
.lz-form__success-ic { width: 66px; height: 66px; margin: 0 auto 18px; border-radius: 50%; background: var(--sage); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px rgba(42,33,26,.16), 0 0 0 8px color-mix(in srgb, var(--sage) 13%, transparent); }
.lz-form.is-sent .lz-form__success-ic { animation: lzSuccessPop .6s var(--ease) both; }
.lz-form__success-ic svg { width: 32px; height: 32px; }
.lz-form__success h3 { margin-bottom: 8px; }
.lz-form__again { margin-top: 20px; }

@keyframes lzSuccessIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes lzSuccessPop { 0% { opacity: 0; transform: scale(.4); } 60% { transform: scale(1.09); } 100% { opacity: 1; transform: scale(1); } }

/* ============================================================
   BOOKING MODAL
   ============================================================ */
.lz-modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; }
.lz-modal[hidden] { display: none; }
.lz-modal__overlay { position: absolute; inset: 0; background: rgba(40,32,24,.55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); animation: lzModalFade .25s ease both; }
.lz-modal__card {
  position: relative; width: 100%; max-width: 480px; max-height: calc(100dvh - 40px); overflow-y: auto; overflow-x: hidden;
  background: var(--paper); border-radius: 22px; box-shadow: var(--shadow-lg);
  padding: 30px 26px 26px; animation: lzModalPop .3s var(--ease) both;
}
/* booking modal is short — let the styled salon dropdown float out instead of
   forcing an inner scrollbar on the card */
.lz-modal[data-modal] .lz-modal__card { overflow: visible; max-height: none; }
@keyframes lzModalFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lzModalPop { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }

/* ============ CITY SELECT MODAL (first visit) ============ */
.lz-csm {
  position: fixed; inset: 0; z-index: 240; display: grid; place-items: center; padding: 30px;
  background: radial-gradient(120% 120% at 50% 35%, rgba(48,38,28,.40) 0%, rgba(40,32,24,.62) 100%);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  animation: lzModalFade .25s ease both;
}
.lz-csm[hidden] { display: none; }
.lz-csm__card {
  position: relative; width: 460px; max-width: 100%; background: var(--paper); border-radius: 26px;
  box-shadow: var(--shadow-lg); padding: 38px 32px 26px; text-align: center; font-family: var(--sans);
  animation: lzModalPop .3s var(--ease) both;
}
.lz-csm__close {
  position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; color: var(--ink-faint); background: rgba(58,51,44,.05);
  transition: background .18s, color .18s; cursor: pointer;
}
.lz-csm__close:hover { background: rgba(58,51,44,.1); color: var(--graphite); }
.lz-csm__close svg { width: 15px; height: 15px; }
.lz-csm__monogram {
  width: 54px; height: 54px; border-radius: 50%; border: 1.5px solid var(--sage); margin: 0 auto;
  display: grid; place-items: center; font-family: var(--serif); font-weight: 600; font-size: 22px;
  color: var(--sage-deep); background: #fff;
}
.lz-csm__eyebrow {
  display: block; margin-top: 18px; font-family: var(--sans); font-weight: 600; font-size: 11.5px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--sage);
}
.lz-csm__title { font-family: var(--serif); font-weight: 500; font-size: 30px; letter-spacing: -.01em; color: var(--graphite); margin: 10px 0 0; }
.lz-csm__sub { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 10px auto 0; max-width: 34ch; }
.lz-csm__list { display: flex; flex-direction: column; gap: 8px; margin: 26px 0 18px; text-align: left; }
.lz-csm__row {
  display: flex; align-items: center; gap: 14px; width: 100%; padding: 14px 16px; cursor: pointer;
  border: 1px solid var(--line); border-radius: 15px; background: #fff; text-align: left;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.lz-csm__row:hover { border-color: var(--sage); background: var(--cream); box-shadow: 0 10px 26px rgba(111,93,75,.12); transform: translateY(-1px); }
.lz-csm__pin {
  flex: none; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--sage-tint); color: var(--sage); transition: background .2s, color .2s;
}
.lz-csm__row:hover .lz-csm__pin { background: var(--sage); color: #fff; }
.lz-csm__pin svg { width: 19px; height: 19px; }
.lz-csm__rowmain { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.lz-csm__rowmain b { font-family: var(--sans); font-weight: 600; font-size: 16px; letter-spacing: -.005em; color: var(--graphite); line-height: 1.1; }
.lz-csm__rowmain span { font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; }
.lz-csm__count {
  flex: none; font-family: var(--sans); font-size: 11px; font-weight: 700; color: var(--sage-deep);
  background: rgba(164,141,120,.16); border-radius: 999px; padding: 4px 10px; white-space: nowrap;
}
.lz-csm__go { flex: none; width: 22px; color: var(--sage-soft); transition: color .2s var(--ease), transform .2s var(--ease); }
.lz-csm__row:hover .lz-csm__go { color: var(--sage); transform: translateX(3px); }
.lz-csm__go svg { width: 18px; height: 18px; }
.lz-csm__foot { display: flex; align-items: center; gap: 8px; justify-content: center; font-size: 12px; color: var(--ink-faint); }
.lz-csm__foot svg { width: 13px; height: 13px; flex: none; color: var(--sage-soft); }
/* Mobile: bottom-sheet */
@media (max-width: 759px) {
  .lz-csm {
    place-items: end center; padding: 0;
    background: radial-gradient(120% 80% at 50% 100%, rgba(40,32,24,.66) 0%, rgba(46,36,26,.46) 100%);
  }
  .lz-csm__card {
    width: 100%; border-radius: 26px 26px 0 0; padding: 36px 22px 24px;
    box-shadow: 0 -22px 60px rgba(38,30,22,.32); animation: lzCsmSheet .34s var(--ease) both;
  }
  .lz-csm__card::before {
    content: ""; position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
    width: 42px; height: 4px; border-radius: 2px; background: var(--line);
  }
}
@keyframes lzCsmSheet { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }

.lz-modal__x {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; color: var(--ink-soft); background: var(--cream); transition: background .2s, color .2s;
}
.lz-modal__x:hover { background: var(--cream-2); color: var(--graphite); }
.lz-modal__x svg { width: 18px; height: 18px; }
.lz-modal__head { text-align: center; margin-bottom: 20px; }
.lz-modal__head .lz-eyebrow { justify-content: center; margin-bottom: 0; }
.lz-modal__head h3 { font-family: var(--sans); font-weight: 500; font-size: 30px; margin: 0 0 8px; letter-spacing: -.01em; }
.lz-modal__head h3 em { font-style: italic; color: var(--sage); }
.lz-modal__sub { font-size: 13.5px; color: var(--ink-soft); margin: 0; }

.lz-gender { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lz-gender__opt { cursor: pointer; }
.lz-gender__opt input { position: absolute; opacity: 0; pointer-events: none; }
.lz-gender__opt span {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--ivory);
  font-size: 14.5px; font-weight: 600; color: var(--graphite); transition: border-color .2s, background .2s, box-shadow .2s;
}
.lz-gender__opt span svg { width: 18px; height: 18px; color: var(--sage); }
.lz-gender__opt:hover span { border-color: var(--sage-soft); }
.lz-gender__opt input:checked + span { border-color: var(--sage); background: var(--sage-tint); box-shadow: 0 0 0 3px rgba(164,141,120,.16); }

.lz-select { position: relative; }
.lz-select select { appearance: none; -webkit-appearance: none; padding-right: 40px; }
.lz-select__chev { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--ink-faint); pointer-events: none; }
/* once JS upgrades the native <select> to a custom .lz-csel, drop the leftover native chevron */
.lz-csel ~ .lz-select__chev { display: none; }

/* ---------- custom styled salon dropdown ---------- */
.lz-csel { position: relative; }
.lz-csel__native { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; left: 12px; bottom: 8px; }
.lz-csel__trigger {
  width: 100%; height: 42px; display: flex; align-items: center; gap: 11px; text-align: left; cursor: pointer;
  font-family: var(--sans); font-size: 15px; color: var(--graphite);
  padding: 0 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--ivory);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.lz-csel__trigger:hover { border-color: var(--sage-soft); }
.lz-csel.is-open .lz-csel__trigger { border-color: var(--sage); background: #fff; box-shadow: 0 0 0 4px rgba(164,141,120,.14); }
.lz-csel__tpin { flex: none; width: 20px; height: 20px; color: var(--ink-soft); display: flex; }
.lz-csel__tpin svg { width: 100%; height: 100%; }
.lz-csel__val { flex: 1 1 auto; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 500; }
.lz-csel__val.is-placeholder { color: var(--ink-soft); font-weight: 400; }
.lz-csel__chev { flex: none; width: 18px; height: 18px; color: var(--ink-faint); display: flex; transition: transform .28s var(--ease), color .2s; }
.lz-csel__chev svg { width: 100%; height: 100%; }
.lz-csel.is-open .lz-csel__chev { transform: rotate(180deg); color: var(--sage); }

.lz-field.has-error .lz-csel__trigger { border-color: #c0584c; background: #fdf3f1; }

.lz-csel__panel {
  position: absolute; left: 0; right: 0; top: calc(100% + 7px); z-index: 60;
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 16px;
  box-shadow: 0 18px 44px rgba(42,33,24,.18), 0 2px 8px rgba(42,33,24,.08);
  padding: 7px; max-height: 400px; overflow-y: auto;
  opacity: 0; transform: translateY(-8px) scale(.985); transform-origin: top center;
  pointer-events: none; visibility: hidden;
  transition: opacity .2s var(--ease), transform .22s var(--ease), visibility .22s;
}
.lz-csel.is-open .lz-csel__panel { opacity: 1; transform: none; pointer-events: auto; visibility: visible; }
.lz-csel__grouphead {
  font-size: 10.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--sage); padding: 11px 12px 6px;
}
.lz-csel__grouphead:first-child { padding-top: 5px; }
.lz-csel__opt {
  width: 100%; display: flex; align-items: center; gap: 12px; cursor: pointer; text-align: left;
  padding: 10px 12px; border: none; border-radius: 11px; background: transparent;
  transition: background .16s var(--ease);
}
.lz-csel__opt:hover { background: var(--cream); }
.lz-csel__opt.is-sel { background: var(--sage-tint); }
.lz-csel__opt-pin { flex: none; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--cream-2); color: var(--sage); transition: background .16s, color .16s; }
.lz-csel__opt-pin svg { width: 16px; height: 16px; }
.lz-csel__opt.is-sel .lz-csel__opt-pin { background: var(--sage); color: #fff; }
.lz-csel__opt-body { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.lz-csel__opt-body b { font-size: 14.5px; font-weight: 600; color: var(--graphite); line-height: 1.25; }
.lz-csel__opt-body span { font-size: 12px; color: var(--ink-soft); line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lz-csel__opt-check { flex: none; width: 18px; height: 18px; color: var(--gold); opacity: 0; transform: scale(.6); transition: opacity .16s, transform .2s var(--ease); }
.lz-csel__opt-check svg { width: 100%; height: 100%; }
.lz-csel__opt.is-sel .lz-csel__opt-check { opacity: 1; transform: none; }

.lz-modal__submit { width: 100%; height: 48px; margin-top: 4px; }

/* mobile: compact modal title + dropdown option rows */
@container lzpage (max-width: 759px) {
  .lz-modal__head h3 { font-size: 24px; }
  .lz-csel__opt { padding-top: 8px; padding-bottom: 8px; }
}
.lz-modal__note { font-size: 11.5px; color: var(--ink-faint); text-align: center; margin: 12px 0 0; }

.lz-modal__success { display: none; text-align: center; padding: 14px 0 6px; }
.lz-modal.is-sent .lz-modal__form { display: none; }
.lz-modal.is-sent .lz-modal__success { display: block; animation: lzSuccessIn .5s var(--ease) both; }
.lz-modal__success-ic { width: 66px; height: 66px; margin: 6px auto 18px; border-radius: 50%; background: var(--sage); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px rgba(42,33,26,.16), 0 0 0 8px color-mix(in srgb, var(--sage) 13%, transparent); }
.lz-modal.is-sent .lz-modal__success-ic { animation: lzSuccessPop .6s var(--ease) both; }
.lz-modal__success-ic svg { width: 32px; height: 32px; }
.lz-modal__success h3 { font-family: var(--sans); font-weight: 600; font-size: 26px; margin: 0 0 8px; }
.lz-modal__success p { font-size: 14px; color: var(--ink-soft); margin: 0 auto 20px; max-width: 36ch; }
.lz-modal__success .lz-btn { height: 48px; }

/* ============================================================
   FOOTER
   ============================================================ */
.lz-footer { background: var(--blush); color: var(--ink-soft); padding: 48px 16px 36px; }
.lz-footer__top { display: grid; grid-template-columns: 1fr; gap: 30px; margin-bottom: 34px; }
.lz-footer .lz-logo__mark { border-color: rgba(255,255,255,.5); color: #fff; }
.lz-footer .lz-logo__text b { color: #fff; }
.lz-footer .lz-logo__text small { color: #efe7d8; }
.lz-footer__col h5 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--graphite); margin: 0 0 14px; font-weight: 700; }
.lz-footer__col a, .lz-footer__col p { display: block; font-size: 14px; color: var(--ink-soft); margin: 0 0 9px; transition: color .25s; }
.lz-footer__col a:hover { color: var(--sage-deep); }
.lz-footer__social { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.lz-footer__ig,
.lz-footer__fb { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--graphite); transition: color .2s; }
.lz-footer__ig:hover { color: var(--sage-deep); }
.lz-footer__fb:hover { color: var(--sage-deep); }
.lz-footer__bottom { border-top: 1px solid var(--line); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 12.5px; color: var(--ink-soft); }

/* ============================================================
   STICKY MOBILE CTA  (only narrow containers)
   ============================================================ */
.lz-mcta {
  position: sticky; bottom: 0; z-index: 55;
  display: flex; gap: 12px; align-items: center;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.lz-mcta .lz-btn--solid { flex: 1; height: 48px; display: inline-flex; align-items: center; justify-content: center; background: var(--red); box-shadow: 0 10px 24px rgba(214,58,54,.30); }
.lz-mcta .lz-btn--solid:hover { background: #bd2f2c; box-shadow: 0 16px 30px rgba(214,58,54,.36); }
.lz-mcta__call {
  flex: none; width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--red); color: var(--red); display: grid; place-items: center;
  background: var(--paper);
}
.lz-mcta__call svg { width: 20px; height: 20px; }

/* hide desktop-only bits in mobile by default; shown via container query */
.only-desktop { display: none; }

/* ============================================================
   CONTAINER QUERIES  →  DESKTOP / WIDE LAYOUT
   ============================================================ */
/* Desktop header (full nav, frosted, 70px bar) only from 1161px up; below that the
   burger layout from the max-width:1160.98 block applies. */
@container lzpage (min-width: 1161px) {
  .lz-header {
    background: var(--bar-frost);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }
  .lz-header__inner { height: 70px; padding: 0 48px; }
  .lz-nav { display: flex; gap: 30px; }
  .lz-burger { display: none; }
  .lz-city__cur, .lz-city__chev { display: block; }
  .lz-mobile-menu { display: none; }
}

@container lzpage (min-width: 760px) {
  .lz-hero { padding: 56px 48px 70px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
  .lz-hero__col { max-width: 580px; }
  .lz-hero h1 { font-size: 56px; text-wrap: pretty; }
  .lz-hero__media { margin-top: 0; }
  .lz-hero__ph { height: 560px; }
  .lz-hero__floater {
    display: flex; position: absolute; left: -28px; bottom: 40px;
    background: var(--paper); border-radius: 16px; padding: 16px 20px; box-shadow: var(--shadow-md);
    align-items: center; gap: 14px; max-width: 250px;
  }
  .lz-hero__media { position: relative; }
  .lz-hero__floater b { font-family: var(--serif); font-size: 30px; color: var(--sage); line-height: 1; }
  .lz-hero__floater span { font-size: 12.5px; color: var(--ink-soft); }

  .lz-section { padding: 90px 48px; }
  .lz-h2 { font-size: 52px; }
  .lz-lede { font-size: 17px; }

  .lz-svc-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; overflow: visible; margin: 0; padding: 0; }
  .lz-svc-track > .lz-card { flex: initial; min-width: 0; }

  .lz-cats { padding-left: 0; padding-right: 0; margin-left: 0; margin-right: 0; }
  .lz-cats-shell { margin-left: 0; margin-right: 0; }
  .lz-pslider { padding-left: 0; padding-right: 0; margin-left: 0; margin-right: 0; }
  .lz-pcard { flex-basis: 296px; }
  .lz-pnav { display: flex; }

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

  .lz-contra-grid { grid-template-columns: 1.35fr 1fr; gap: 22px; }
  .lz-cta-banner { flex-direction: row; align-items: center; justify-content: space-between; padding: 48px 52px; gap: 48px; }
  .lz-cta-banner h3 { font-size: 44px; }
  .lz-cta-banner__txt { flex: 1; }
  .lz-cta-banner__media { flex: none; width: 320px; }
  .lz-cta-banner__media img { height: 270px; }

  .lz-gtile { margin-bottom: 14px; }

  .lz-mapgrid { grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: stretch; }
  .lz-mapcanvas { height: auto; min-height: 480px; }
  .lz-saloncol { display: flex; flex-direction: column; justify-content: space-between; gap: 12px; }
  .lz-cta-banner h3 { font-size: 44px; }
  .lz-cta-banner .lz-btn { flex: none; }
  .lz-steps { grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .lz-step { display: block; padding: 0; border: none; }
  .lz-step::before { content: ""; display: block; height: 2px; background: var(--line); margin-bottom: 22px; position: relative; }
  .lz-step::after { content: ""; position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--sage); top: -4px; left: 0; }
  .lz-step__n { font-size: 40px; margin-bottom: 12px; display: block; }

  .lz-rev-slide { min-width: 50%; }

  .lz-contact-grid {
    grid-template-columns: 1fr 1fr; gap: 30px 42px; align-items: stretch;
    grid-template-areas: "panel form";
  }
  .lz-book-panel { grid-area: panel; }
  .lz-form { grid-area: form; order: 0; }

  .lz-faq__q { font-size: 24px; }
  .lz-h2 { font-size: 52px; }

  .lz-footer { padding: 70px 48px 40px; }
  .lz-footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }

  .lz-mcta { display: none; }
  .only-desktop { display: revert; }
}

@container lzpage (min-width: 1100px) {
  .lz-hero { padding: 70px 80px 90px; }
  .lz-section { padding: 100px 80px; }
  .lz-header__inner { padding: 0 80px; }
  .lz-footer { padding: 80px 80px 44px; }
  .lz-hero h1 { font-size: 56px; }
  .lz-contact-grid { grid-template-columns: 1fr 1fr; gap: 32px 56px; }
  /* center the content column at --content-max on wide screens — the side
     gutter grows past 36px only once the viewport exceeds ~1512px */
  .lz-hero,
  .lz-section,
  .lz-header__inner,
  .lz-footer {
    padding-left: max(36px, (100% - var(--content-max)) / 2);
    padding-right: max(36px, (100% - var(--content-max)) / 2);
  }
}

/* ============================================================
   FORTUNE WHEEL
   ============================================================ */
/* teaser banner — opens the spinning wheel in a pop-up */
.lz-wheel-teaser {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px;
  background: radial-gradient(120% 100% at 50% 0%, var(--sage-tint), var(--paper) 72%);
  border: 1.5px solid var(--sage-soft);
  border-radius: 24px;
  padding: 34px 24px 32px;
  box-shadow: var(--shadow-md);
}
.lz-wheel-teaser .lz-eyebrow { justify-content: center; }
.lz-wheel-teaser__txt { display: flex; flex-direction: column; align-items: center; }
.lz-wheel-teaser__btn { margin-top: 24px; }

.lz-wheel-teaser__visual { position: relative; width: 148px; height: 148px; flex: none; }
.lz-wheel-mini {
  display: block; width: 100%; height: 100%; border-radius: 50%;
  border: 7px solid #fbfaf6;
  box-shadow: 0 0 0 2px var(--gold), 0 14px 30px rgba(42,43,39,.20);
  background: conic-gradient(
    var(--sage-deep) 0deg 30deg, var(--sage-tint) 30deg 60deg,
    var(--sage-deep) 60deg 90deg, var(--sage-tint) 90deg 120deg,
    var(--sage-deep) 120deg 150deg, var(--sage-tint) 150deg 180deg,
    var(--sage-deep) 180deg 210deg, var(--sage-tint) 210deg 240deg,
    var(--sage-deep) 240deg 270deg, var(--sage-tint) 270deg 300deg,
    var(--sage-deep) 300deg 330deg, var(--sage-tint) 330deg 360deg
  );
  animation: lzWheelIdle 18s linear infinite;
}
@keyframes lzWheelIdle { to { transform: rotate(360deg); } }
.lz-wheel-mini__pointer {
  position: absolute; top: -3px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0; border-left: 9px solid transparent; border-right: 9px solid transparent;
  border-top: 15px solid var(--gold); z-index: 3; filter: drop-shadow(0 2px 3px rgba(0,0,0,.25));
}
.lz-wheel-mini__hub {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 46px; height: 46px; border-radius: 50%; background: #fbfaf6; border: 3px solid var(--gold);
  color: var(--sage-deep); display: grid; place-items: center; z-index: 3;
  font-family: var(--serif); font-weight: 600; font-size: 22px;
}
@media (prefers-reduced-motion: reduce) { .lz-wheel-mini { animation: none; } }

/* pop-up wheel card */
.lz-wheel-modal__card { max-width: 500px; padding: 32px 30px 28px; text-align: center; }
.lz-wheel-modal__head { margin-bottom: 14px; }
.lz-wheel-modal__head .lz-eyebrow { justify-content: center; margin-bottom: 12px; }
.lz-wheel-modal__head h3 { font-family: var(--sans); font-weight: 500; font-size: 27px; margin: 0; letter-spacing: -.01em; }
.lz-wheel-modal__head h3 em { font-style: italic; color: var(--sage); }
.lz-wheel-modal .lz-wheel-stage { margin: 6px auto 0; }
.lz-wheel-modal .lz-wheel-result { width: 100%; }

.lz-wheel-stage { position: relative; width: min(400px, 74vw, calc(100vh - 270px)); width: min(400px, 74vw, calc(100svh - 270px)); aspect-ratio: 1 / 1; height: auto; flex: none; margin-inline: auto; }
.lz-wheel {
  width: 100%; height: 100%; border-radius: 50%; position: relative; overflow: hidden;
  will-change: transform; backface-visibility: hidden;
  border: 10px solid #fbfaf6; box-shadow: 0 0 0 2px var(--gold), 0 20px 50px rgba(42,43,39,.24), inset 0 0 0 1px rgba(0,0,0,.05);
  transition: transform 5.6s cubic-bezier(.07,.6,.12,1);
  background: conic-gradient(
    var(--sage-deep) 0deg 30deg, var(--sage-tint) 30deg 60deg,
    var(--sage-deep) 60deg 90deg, var(--sage-tint) 90deg 120deg,
    var(--sage-deep) 120deg 150deg, var(--sage-tint) 150deg 180deg,
    var(--sage-deep) 180deg 210deg, var(--sage-tint) 210deg 240deg,
    var(--sage-deep) 240deg 270deg, var(--sage-tint) 270deg 300deg,
    var(--sage-deep) 300deg 330deg, var(--sage-tint) 330deg 360deg
  );
}
.lz-wheel-label {
  position: absolute; top: 0; left: 50%; width: 0; height: 50%;
  transform-origin: bottom center; transform: rotate(var(--a));
  display: flex; align-items: center; justify-content: center;
}
.lz-wheel-label span {
  /* translateY(-) shifts the label outward along the radius so long words
     ("Подарък") clear the central spin hub */
  transform: translateY(-24px) rotate(-90deg); white-space: nowrap;
  font-size: 12px; font-weight: 700; letter-spacing: 0;
}
.lz-wheel-label--light span { color: #f3f1e9; }
.lz-wheel-label--dark span { color: var(--sage-deep); }
.lz-wheel-pointer {
  position: absolute; top: -4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0; border-left: 13px solid transparent; border-right: 13px solid transparent;
  border-top: 22px solid var(--gold); z-index: 20; filter: drop-shadow(0 3px 4px rgba(0,0,0,.25));
}
.lz-wheel-hub {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 96px; height: 96px; border-radius: 50%; background: #fbfaf6; color: var(--sage-deep);
  font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: 0; line-height: 1.15; padding: 0 6px;
  box-shadow: 0 6px 18px rgba(42,43,39,.28); z-index: 15; border: 4px solid var(--gold);
  cursor: pointer; transition: background .25s, transform .25s;
}
.lz-wheel-hub:hover { background: var(--ivory); transform: translate(-50%, -50%) scale(1.05); }
.lz-wheel-hub:disabled { cursor: default; opacity: .8; }
.lz-wheel-info { text-align: center; }
.lz-wheel-info .lz-eyebrow { justify-content: center; }
.lz-wheel-result {
  margin-top: 16px; display: flex; flex-direction: column; gap: 10px; align-items: center;
  padding: 16px; background: var(--ivory); border: 1px solid var(--line); border-radius: 16px;
  animation: lzPop .4s var(--ease) both;
}
.lz-wheel-result[hidden] { display: none; }
.lz-wheel-result__label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; }
.lz-wheel-result__prize { font-family: var(--sans); font-weight: 600; font-size: 28px; color: var(--sage-deep); line-height: 1.1; text-align: center; }
.lz-wheel-result .lz-btn { height: 48px; }
@keyframes lzPop { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: none; } }

@container lzpage (max-width: 759px) {
  .lz-wheel-modal__head h3 { font-size: 23px; }
}

@container lzpage (min-width: 760px) {
  .lz-wheel-teaser {
    flex-direction: row; text-align: left; gap: 48px; padding: 44px 52px;
    align-items: center; justify-content: center;
  }
  .lz-wheel-teaser .lz-eyebrow { justify-content: flex-start; }
  .lz-wheel-teaser__txt { align-items: flex-start; flex: 1; max-width: 560px; }
  .lz-wheel-teaser__visual { width: 188px; height: 188px; }
  .lz-wheel-mini__hub { width: 58px; height: 58px; font-size: 27px; }
  .lz-wheel-teaser .lz-h2 { font-size: 50px; }
  .lz-wheel-teaser .lz-lede { font-size: 17px; max-width: none; }

  .lz-wheel-label span { font-size: 13.5px; }
  .lz-wheel-hub { width: 108px; height: 108px; font-size: 13.5px; }
  .lz-wheel-modal__card { max-width: 560px; }
  .lz-wheel-modal__head h3 { font-size: 30px; }
}

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.lz-ba-wrap { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
.lz-ba-intro .lz-lede { margin-bottom: 22px; }
.lz-ba-points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.lz-ba-points li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--ink-soft); }
.lz-ba-points li span {
  flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--sage-tint); position: relative;
}
.lz-ba-points li span::after {
  content: ""; position: absolute; left: 7px; top: 6px; width: 5px; height: 9px;
  border: solid var(--sage-deep); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
/* Before / after: slider of before/after photo pairs */
.lz-ba { position: relative; width: 100%; max-width: 480px; margin: 0 auto; }
.lz-ba__viewport { overflow: hidden; }
.lz-ba__track { display: flex; transition: transform .55s var(--ease); }
.lz-ba__pair {
  flex: 0 0 100%; min-width: 0;
  /* grid (not flex) so the aspect-ratio cards size correctly — a flex item with
     flex-basis:0 + aspect-ratio is mis-sized by Chromium and collapses */
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start;
}
.lz-ba__nav { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 14px; }
.lz-ba__arr {
  width: 38px; height: 38px; flex: none; border-radius: 50%;
  border: 1px solid var(--line-soft); background: var(--paper); color: var(--sage-deep);
  display: grid; place-items: center; cursor: pointer; transition: background .2s, color .2s, border-color .2s;
}
.lz-ba__arr:hover { background: var(--sage-tint); border-color: var(--sage-soft); }
.lz-ba__arr svg { width: 18px; height: 18px; }
.lz-ba__dots { display: flex; gap: 8px; }
.lz-ba__dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--sage-soft); cursor: pointer; transition: width .25s, background .25s, border-radius .25s; }
.lz-ba__dots i.is-active { width: 22px; border-radius: 4px; background: var(--sage-deep); }
.lz-ba__card {
  position: relative; min-width: 0; width: 100%; margin: 0;
  border-radius: 20px; overflow: hidden;
  isolation: isolate;
}
/* aspect-ratio lives on the image (not the grid-item figure) so the figure
   stretches to the full column and the photo drives the height */
.lz-ba__card img { width: 100%; height: auto; aspect-ratio: 826 / 890; object-fit: cover; display: block; -webkit-user-drag: none; }
/* hairline inner ring keeps the rounded cards crisp on light backgrounds */
.lz-ba__card::after {
  content: ""; position: absolute; inset: 0; border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(40,33,26,.06); pointer-events: none;
}
.lz-ba__tag {
  position: absolute; top: 14px; z-index: 4;
  background: rgba(40,33,26,.5); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: #f4efe7; font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--radius-pill); border: 1px solid rgba(255,255,255,.18);
}
.lz-ba__tag--before { left: 14px; }
.lz-ba__tag--after { right: 14px; }

/* mobile: two even full-width columns, taller crop so the photos read larger */
@container lzpage (max-width: 759px) {
  .lz-ba { max-width: none; margin-inline: 0; }
  .lz-ba__pair { gap: 12px; }
  .lz-ba__card { border-radius: 16px; }
  .lz-ba__card img { aspect-ratio: 3 / 4; }
  .lz-ba__card::after { border-radius: 16px; }
}

@container lzpage (min-width: 760px) {
  /* give the photo pair the larger share so the two cards read big, not tiny */
  .lz-ba-wrap { grid-template-columns: 1fr 1.45fr; gap: 48px; }
  .lz-ba-intro .lz-eyebrow { justify-content: flex-start; }
  .lz-ba { max-width: none; margin: 0; }
}

/* ============================================================
   QUIZ
   ============================================================ */
.lz-quiz {
  position: relative;
  max-width: 820px; margin: 0 auto;
  background:
    radial-gradient(130% 100% at 100% 0%, rgba(176,141,87,.12), transparent 52%),
    var(--paper);
  border: 1.5px solid var(--sage-soft);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  padding: 22px 18px 20px;
  overflow: hidden;
}
.lz-quiz::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
}
.lz-quiz__intro { padding: 0 4px 4px; text-align: center; }
.lz-quiz__intro .lz-eyebrow { justify-content: center; }
.lz-quiz__intro .lz-lede { margin: 0 auto; }
.lz-quiz__panel { padding: 24px 0 28px; }
.lz-quiz__step { display: none; }
.lz-quiz__step.is-active { display: block; animation: lzFade .35s var(--ease) both; }
@keyframes lzFade { from { transform: translateY(8px); } to { transform: none; } }
.lz-quiz__q { display: flex; align-items: center; gap: 12px; font-family: var(--sans); font-weight: 600; font-size: 21px; color: var(--graphite); margin: 0 0 18px; }
.lz-quiz__q b { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--sage); color: #fff; display: grid; place-items: center; font-family: var(--sans); font-size: 14px; font-weight: 700; }
.lz-quiz__opts { display: grid; grid-template-columns: 1fr; gap: 12px; }
.lz-qopt {
  display: flex; align-items: center; gap: 13px; padding: 15px 16px; text-align: left;
  border: 1.5px solid var(--line); border-radius: 14px; background: var(--paper);
  font-weight: 600; font-size: 15px; color: var(--graphite); cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s, transform .2s;
}
.lz-qopt:hover { border-color: var(--sage-soft); transform: translateY(-2px); }
.lz-qopt__ic { flex: none; width: 42px; height: 42px; border-radius: 11px; background: var(--sage-tint); color: var(--sage-deep); display: grid; place-items: center; transition: background .2s, color .2s; }
.lz-qopt__ic svg { width: 21px; height: 21px; }
.lz-qopt.is-sel { border-color: var(--sage); background: var(--sage-tint); box-shadow: 0 0 0 3px rgba(164,141,120,.16); }
.lz-qopt.is-sel .lz-qopt__ic { background: var(--sage); color: #fff; }
.lz-quiz__done { text-align: center; padding: 14px 0; }
.lz-quiz__done-ic { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; background: var(--sage); color: #fff; display: grid; place-items: center; }
.lz-quiz__done-ic svg { width: 32px; height: 32px; }
.lz-quiz__done h3 { font-family: var(--sans); font-weight: 600; font-size: 26px; margin: 0 0 8px; }
.lz-quiz__done p { font-size: 14.5px; color: var(--ink-soft); margin: 0 auto; max-width: 42ch; }
.lz-quiz__bar {
  display: flex; align-items: center; gap: 14px 20px; flex-wrap: wrap; border-radius: 18px;
  background: var(--cream); border: 1px solid var(--line); color: var(--graphite);
  padding: 16px 20px;
}
.lz-quiz__pct { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.lz-quiz__pct span { font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); max-width: 90px; line-height: 1.2; }
.lz-quiz__pct strong { font-family: var(--serif); font-weight: 600; font-size: 36px; line-height: 1; color: var(--sage-deep); }
.lz-quiz__back { font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.lz-quiz__back[hidden] { display: none; }
.lz-quiz__back:hover { color: var(--graphite); }
.lz-quiz__next { flex: 1 1 100%; }
.lz-quiz__next[aria-disabled="true"] { opacity: .5; pointer-events: none; }

@container lzpage (min-width: 620px) {
  .lz-quiz { padding: 40px 38px 32px; border-radius: 26px; }
  .lz-quiz__opts { grid-template-columns: 1fr 1fr; gap: 14px; }
  .lz-quiz__panel { padding: 28px 0 30px; }
  .lz-quiz__bar { padding: 18px 24px; }
  .lz-quiz__next { flex: 0 0 auto; }
}

/* ============================================================
   CONVICTION  (editorial statement)
   ============================================================ */
/* The section above shares the same (white) background, so its bottom padding
   already provides the gap above the card — drop our top padding so the visible
   space above the card matches the space below (down to the cream next section). */
.lz-conviction-sec { padding-top: 0; }
.lz-conviction { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.lz-conviction__card {
  position: relative; width: 100%; text-align: center;
  background: linear-gradient(135deg, #ffffff, #f1ebe2);
  border: 1px solid var(--line-soft); border-radius: 28px;
  padding: 32px 24px; box-shadow: 0 14px 44px rgba(42,43,39,.10);
}
.lz-conviction__card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  background:
    radial-gradient(70% 130% at 100% 0%, rgba(164,141,120,.12), transparent 56%),
    repeating-linear-gradient(45deg, rgba(58,51,44,.02) 0 2px, transparent 2px 18px);
}
.lz-conviction__card > * { position: relative; z-index: 1; }
.lz-conviction__head { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 20px; }
.lz-conviction__ic {
  width: 44px; height: 44px; border-radius: 13px; flex: none;
  background: var(--sage-tint); color: var(--sage-deep); display: grid; place-items: center;
}
.lz-conviction__ic svg { width: 27px; height: 27px; }
.lz-conviction__card .lz-eyebrow { justify-content: center; margin-bottom: 0; }
.lz-conviction__card .lz-eyebrow::before { display: none; }
.lz-conviction__lead {
  font-family: var(--sans); font-weight: 500; font-size: 24px; line-height: 1.28;
  letter-spacing: -.01em; color: var(--graphite); margin: 0 auto;
  text-wrap: balance;
}
.lz-conviction__lead em { font-style: italic; color: var(--sage); }
.lz-conviction__btn { margin-top: 26px; height: 48px; }

@container lzpage (max-width: 759px) {
  .lz-conviction__lead { font-size: 20px; }
  .lz-conviction__card .lz-eyebrow { font-size: 10px; }
  .lz-conviction__ic { width: 40px; height: 40px; }
}

@container lzpage (min-width: 760px) {
  .lz-conviction__card { padding: 32px 24px; border-radius: 32px; }
  .lz-conviction__lead { font-size: 30px; line-height: 1.22; }
}

/* ============================================================
   ADVANTAGES  (numbered list + photo)
   ============================================================ */
.lz-adv { display: grid; grid-template-columns: 1fr; gap: 26px; align-items: center; margin-top: 8px; }
.lz-adv__list { list-style: none; margin: 0; padding: 0; }
.lz-adv__item {
  display: flex; align-items: baseline; gap: 18px;
  padding: 17px 6px; border-top: 1px solid var(--line);
  transition: padding-left .25s var(--ease);
}
.lz-adv__item:last-child { border-bottom: 1px solid var(--line); }
.lz-adv__item:hover { padding-left: 14px; }
.lz-adv__n { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 23px; color: var(--sage); flex: none; min-width: 32px; }
.lz-adv__t { font-family: var(--sans); font-weight: 600; font-size: 21px; line-height: 1.18; letter-spacing: -.01em; color: var(--graphite); text-wrap: pretty; }
.lz-adv__media { position: relative; border-radius: 0; overflow: hidden; box-shadow: var(--shadow-lg); background: var(--sage-tint); }
.lz-adv__media img { width: 100%; height: auto; display: block; }
.lz-adv__badge {
  position: absolute; left: 18px; bottom: 18px; display: flex; align-items: center; gap: 12px;
  background: rgba(251,250,246,.92); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow-md);
}
.lz-adv__badge b { font-family: var(--serif); font-weight: 600; font-size: 32px; color: var(--sage-deep); line-height: 1; }
.lz-adv__badge span { font-size: 12px; color: var(--ink-soft); line-height: 1.25; }

@container lzpage (min-width: 760px) {
  .lz-adv { grid-template-columns: 1.05fr .95fr; gap: 56px; }
  .lz-adv__item { padding: 21px 6px; gap: 24px; }
  .lz-adv__n { font-size: 27px; min-width: 42px; }
  .lz-adv__t { font-size: 25px; }
  .lz-adv__media img { height: 100%; object-fit: cover; aspect-ratio: 3 / 3.5; }
}

/* ============================================================
   METHOD  (modern solution + equipment panel)
   ============================================================ */
.lz-method { display: flex; flex-direction: column; gap: 28px; }
.lz-method__intro { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: center; }
.lz-method__txt .lz-h2 { margin-bottom: 20px; }
.lz-method__p { font-size: 15px; color: var(--ink-soft); margin: 0 0 14px; max-width: 58ch; text-wrap: pretty; }
.lz-method__p b { color: var(--graphite); font-weight: 600; }
.lz-method__note { display: flex; gap: 13px; align-items: center; margin-top: 6px; background: var(--sage-tint); border-radius: 14px; padding: 14px 18px; }
.lz-method__note-ic { flex: none; width: 34px; height: 34px; border-radius: 10px; background: var(--sage); color: #fff; display: grid; place-items: center; }
.lz-method__note-ic svg { width: 19px; height: 19px; }
.lz-method__note p { margin: 0; font-size: 14px; color: var(--sage-deep); line-height: 1.4; text-wrap: pretty; }
.lz-method__note b { color: var(--graphite); font-weight: 700; }

.lz-method__media { position: relative; }
.lz-method__media-vp { position: relative; overflow: hidden; box-shadow: var(--shadow-lg); background: var(--sage-tint); }
.lz-method__media-track { display: flex; transition: transform .5s var(--ease); }
.lz-method__slide { position: relative; flex: 0 0 100%; min-width: 0; }
.lz-method__media img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 4 / 3.4; }
.lz-method__media-nav { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 14px; }
.lz-method__media-nav[hidden] { display: none; }
/* Mobile: show the method photo at full natural height (no crop). */
@container lzpage (max-width: 759px) {
  .lz-method__media img { height: auto; aspect-ratio: auto; object-fit: contain; }
}
.lz-method__chip {
  position: absolute; left: 16px; bottom: 16px; display: inline-flex; align-items: center; gap: 7px;
  background: rgba(20,21,15,.42); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18); color: #f3f1e9; font-size: 12.5px; font-weight: 600;
  padding: 8px 13px; border-radius: var(--radius-pill);
}
.lz-method__chip b { color: var(--gold-soft); font-weight: 700; }
/* Mobile: move the 808 nm chip to the top-right corner. */
@container lzpage (max-width: 759px) {
  .lz-method__chip { left: auto; right: 16px; bottom: auto; top: 16px; }
}

.lz-method__equip {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr; gap: 24px;
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-deep) 100%); color: #f3f1e9;
  border-radius: 24px; padding: 30px 26px;
}
.lz-method__equip::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(255,255,255,.12), transparent 55%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0 2px, transparent 2px 18px);
}
.lz-method__equip > * { position: relative; z-index: 1; }
.lz-method__equip-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.lz-method__equip-ic { flex: none; width: 46px; height: 46px; border-radius: 13px; background: rgba(255,255,255,.16); color: #fff; display: grid; place-items: center; }
.lz-method__equip-ic svg { width: 24px; height: 24px; }
.lz-method__equip-head h3 { font-family: var(--sans); font-weight: 500; font-size: 27px; margin: 0; letter-spacing: -.01em; line-height: 1.1; }
.lz-method__feats { list-style: none; margin: 0 0 16px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.lz-method__feats li { position: relative; padding-left: 30px; font-size: 15px; color: rgba(247,245,233,.92); }
.lz-method__feats li::before { content: ""; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,.16); }
.lz-method__feats li::after { content: ""; position: absolute; left: 7px; top: 5px; width: 5px; height: 9px; border: solid var(--gold-soft); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.lz-method__equip-p { font-size: 14.5px; color: rgba(247,245,233,.82); margin: 0; line-height: 1.5; }
.lz-method__equip-p b { color: #fff; font-weight: 700; }
.lz-method__zona { border-top: 1px solid rgba(255,255,255,.18); padding-top: 22px; }
.lz-method__zona-label { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 14px; }
.lz-method__zona-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.lz-method__zona-list li { position: relative; padding-left: 32px; font-size: 15px; font-weight: 600; color: #fbfaf6; }
.lz-method__zona-list li::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.18); }
.lz-method__zona-list li::after { content: ""; position: absolute; left: 8px; top: 50%; transform: translate(0, -65%) rotate(45deg); width: 5px; height: 9px; border: solid var(--gold-soft); border-width: 0 2px 2px 0; }

@container lzpage (min-width: 760px) {
  .lz-method { gap: 36px; }
  .lz-method__intro { grid-template-columns: 1.15fr .85fr; gap: 52px; }
  .lz-method__media img { aspect-ratio: 3 / 3.7; }
  .lz-method__equip { grid-template-columns: 1.45fr 1fr; gap: 0; padding: 44px 0; }
  .lz-method__equip-main { padding: 0 48px; }
  .lz-method__equip-head h3 { font-size: 31px; }
  .lz-method__zona { border-top: none; border-left: 1px solid rgba(255,255,255,.18); padding-top: 0; padding-left: 48px; padding-right: 48px; }
}

/* ============================================================
   HEADING WEIGHTS  (tunable via Tweaks → "Толщина")
   Appended last so these win over the per-component weights.
   --w-display = big serif display headings
   --w-title   = smaller serif titles / labels
   ============================================================ */
.lz-h2,
.lz-hero h1,
.lz-cta-banner h3,
.lz-conviction__lead,
.lz-rev-quote,
.lz-quiz__intro .lz-h2,
.lz-wheel-modal__head h3,
.lz-method__equip-head h3,
.lz-quiz__done h3,
.pl-hero h1 { font-weight: var(--w-display); }

.lz-pcard__title,
.lz-card h4,
.lz-usp h4,
.lz-step h4,
.lz-contra h4,
.lz-faq__q,
.lz-about__value b,
.lz-adv__t,
.lz-quiz__q,
.lz-agenote h5,
.lz-salon h4,
.lz-form h3,
.lz-modal__success h3,
.lz-about__badge b,
.lz-city__salon-body b { font-weight: var(--w-title); }

/* ============================================================
   LIGHT SURFACE MODE  ([data-surface="light"], palette "Белый")
   Replaces the heavy solid colour blocks (promo banner, equipment
   panel) and the solid icon chips with airy, tinted versions for a
   clean white aesthetic. Other palettes keep the saturated style.
   ============================================================ */

/* --- promo CTA banner --- */
[data-surface="light"] .lz-cta-banner {
  background: transparent;
  color: var(--graphite);
  border: none;
}
[data-surface="light"] .lz-cta-banner::before { display: none; }
[data-surface="light"] .lz-cta-banner .lz-eyebrow { color: var(--sage); }
[data-surface="light"] .lz-cta-banner .lz-eyebrow::before { background: var(--sage-soft); }
[data-surface="light"] .lz-cta-banner h3 { color: var(--graphite); }
[data-surface="light"] .lz-cta-banner h3 em { color: var(--sage); }
[data-surface="light"] .lz-cta-banner p:not(.lz-eyebrow) { color: var(--ink-soft); }
[data-surface="light"] .lz-cta-banner .lz-btn--light { background: var(--btn); color: #fbfaf6; }
[data-surface="light"] .lz-cta-banner .lz-btn--light:hover { background: var(--btn-hover); }

/* --- equipment showcase panel --- */
[data-surface="light"] .lz-method__equip {
  background: var(--ivory);
  color: var(--graphite);
  border: 1px solid var(--line);
}
[data-surface="light"] .lz-method__equip::before { display: none; }
[data-surface="light"] .lz-method__equip-ic { background: var(--sage-tint); color: var(--sage-deep); }
[data-surface="light"] .lz-method__feats li { color: var(--ink-soft); }
[data-surface="light"] .lz-method__feats li::before { background: var(--sage-tint); }
[data-surface="light"] .lz-method__feats li::after { border-color: var(--sage); }
[data-surface="light"] .lz-method__equip-p { color: var(--ink-soft); }
[data-surface="light"] .lz-method__equip-p b { color: var(--graphite); }
[data-surface="light"] .lz-method__zona { border-color: var(--line); }
[data-surface="light"] .lz-method__zona-label { color: var(--sage); }
[data-surface="light"] .lz-method__zona-list li { color: var(--graphite); }
[data-surface="light"] .lz-method__zona-list li::before { background: var(--sage-tint); }
[data-surface="light"] .lz-method__zona-list li::after { border-color: var(--sage); }
@container lzpage (min-width: 760px) {
  [data-surface="light"] .lz-method__zona { border-color: var(--line); }
}

/* --- solid icon chips → soft tinted --- */
[data-surface="light"] .lz-usp__ic,
[data-surface="light"] .lz-agenote__badge,
[data-surface="light"] .lz-method__note-ic,
[data-surface="light"] .lz-contra__ic--main,
[data-surface="light"] .lz-quiz__q b,
[data-surface="light"] .lz-hero__badge b {
  background: var(--sage-tint);
  color: var(--sage-deep);
}

/* ===== Cookie consent (site-wide) ===== */
.cc {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  margin: 0 14px; pointer-events: none;
  display: flex; justify-content: center;
}
.cc__card {
  pointer-events: auto; width: 100%; max-width: 760px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 15px; box-shadow: 0 18px 44px rgba(58,51,44,.2), 0 3px 12px rgba(58,51,44,.1);
  padding: 13px 15px; margin-bottom: 14px;
  transform-origin: bottom center;
  animation: ccIn .5s cubic-bezier(.2,.8,.3,1) both;
}
@keyframes ccIn { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: none; } }
.cc.is-hidden { display: none; }

.cc__top { display: flex; gap: 11px; align-items: center; }
.cc__ic { flex: none; width: 34px; height: 34px; border-radius: 9px; background: var(--sage-tint); color: var(--sage-deep); display: grid; place-items: center; }
.cc__ic svg { width: 18px; height: 18px; }
.cc__body { flex: 1; min-width: 0; }
.cc__title { font-family: var(--sans); font-weight: 600; font-size: 14.5px; margin: 0 0 1px; line-height: 1.25; }
.cc__text { font-size: 12px; font-weight: 300; line-height: 1.5; color: var(--ink-soft); margin: 0; }
.cc__text a { color: var(--sage-deep); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--sage-soft); cursor: pointer; }

.cc__actions { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 11px; }
.cc__actions .lz-btn { flex: 1 1 auto; justify-content: center; min-width: 120px; padding: 9px 14px; font-size: 13px; border-radius: 0; }
.cc__settings-btn {
  flex: 0 0 auto; min-width: 0; background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 12.5px; font-weight: 600; color: var(--ink-soft);
  padding: 9px 12px; border-radius: 10px; transition: color .2s, background .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.cc__settings-btn:hover { color: var(--sage-deep); background: var(--cream); }
.cc__settings-btn svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.cc.is-open .cc__settings-btn svg { transform: rotate(180deg); }

/* categories panel */
.cc__panel { display: none; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line-soft); }
.cc.is-open .cc__panel { display: block; animation: ccPanel .3s var(--ease) both; }
@keyframes ccPanel { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.cc__cat { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line-soft); }
.cc__cat:last-of-type { border-bottom: none; }
.cc__cat-body { flex: 1; min-width: 0; }
.cc__cat-body b { display: block; font-size: 13px; font-weight: 600; margin-bottom: 1px; }
.cc__cat-body span { font-size: 11.5px; font-weight: 300; line-height: 1.45; color: var(--ink-soft); }

/* toggle switch */
.cc__sw { flex: none; position: relative; width: 44px; height: 25px; margin-top: 2px; }
.cc__sw input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.cc__sw-track { position: absolute; inset: 0; background: var(--cream-2); border-radius: var(--radius-pill); transition: background .25s var(--ease); }
.cc__sw-track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 19px; height: 19px; border-radius: 50%; background: #fff; box-shadow: 0 2px 5px rgba(58,51,44,.28); transition: transform .25s var(--ease); }
.cc__sw input:checked + .cc__sw-track { background: var(--sage); }
.cc__sw input:checked + .cc__sw-track::after { transform: translateX(19px); }
.cc__sw input:disabled { cursor: not-allowed; }
.cc__sw input:disabled + .cc__sw-track { background: var(--sage-soft); opacity: .7; }
.cc__sw--locked::before { content: "Винаги"; position: absolute; right: 52px; top: 50%; transform: translateY(-50%); font-size: 10.5px; font-weight: 600; color: var(--ink-faint); white-space: nowrap; }

.cc__panel-actions { display: flex; gap: 7px; margin-top: 12px; flex-wrap: wrap; }
.cc__panel-actions .lz-btn { flex: 1 1 auto; justify-content: center; min-width: 120px; padding: 9px 14px; font-size: 13px; border-radius: 0; }

@container pppage (max-width: 560px) {
  .cc__actions .lz-btn, .cc__panel-actions .lz-btn { flex-basis: 100%; }
  .cc__settings-btn { flex-basis: 100%; justify-content: center; }
}
/* compact single-row bar on wider screens */
@container pppage (min-width: 680px) {
  .cc__card { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; padding: 12px 16px; }
  .cc__top { flex: 1 1 300px; }
  .cc__actions { margin-top: 0; flex: 0 0 auto; flex-wrap: nowrap; }
  .cc__actions .lz-btn { flex: 0 0 auto; min-width: 0; }
  .cc__panel { flex-basis: 100%; margin-top: 4px; }
  .cc__panel-actions .lz-btn { flex: 0 0 auto; }
}

/* ===== Shared minimal header/footer for inner pages (ceni, politika) ===== */
.lz-subhead {
  position: sticky; top: 0; z-index: 50;
  background: var(--bar-solid); /* mobile: solid, matches the notch */
  border-bottom: 1px solid var(--line-soft);
}
/* 3-col grid: middle column is truly centred in the viewport regardless of how
   much wider the right side (lang + CTA) is than the left "back" link. */
.lz-subhead__in { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; padding: 14px 22px; }
.lz-subhead__logo { justify-self: center; }
.lz-subhead__right { justify-self: end; }
.lz-subhead__back { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink-soft); transition: color .2s, gap .2s; }
.lz-subhead__back:hover { color: var(--sage-deep); gap: 11px; }
.lz-subhead__back svg { width: 16px; height: 16px; }
.lz-subhead__logo img { height: 45px; width: auto; display: block; }
.lz-subhead__logo img.lz-subhead__logo-mark { display: none; } /* mobile: swapped in below */
.lz-subhead__right { display: flex; align-items: center; gap: 12px; }
.lz-subhead__cta { display: none; }
/* Mobile: show the compact LZ mark instead of the full wordmark. */
@media (max-width: 759px) {
  .lz-subhead__logo img.lz-subhead__logo-full { display: none; }
  .lz-subhead__logo img.lz-subhead__logo-mark { display: block; }
}
.lz-subfoot { border-top: 1px solid var(--line-soft); padding: 24px; text-align: center; }
.lz-subfoot__links { display: flex; gap: 8px 22px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
.lz-subfoot__links a { font-size: 13.5px; font-weight: 500; color: var(--ink-soft); transition: color .2s; }
.lz-subfoot__links a:hover { color: var(--sage-deep); }
.lz-subfoot__copy { font-size: 12px; color: var(--ink-faint); margin-bottom: 0; }
@media (min-width: 760px) {
  /* Desktop: translucent frosted subheader over content. */
  .lz-subhead {
    background: var(--bar-frost);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  }
  .lz-subhead__in { padding: 16px 48px; }
  .lz-subhead__cta { display: inline-flex; align-items: center; height: 36px; padding: 0 20px; font-size: 14px; box-sizing: border-box; }
}

/* City-page link at the bottom of each city dropdown panel — styled as a solid button,
   with a divider line above it (separating it from the salon list). */
.lz-city__page.lz-btn { position: relative; display: flex; width: 100%; height: 42px; padding: 0 16px; margin-top: 16px; font-size: 13px; box-shadow: none; }
.lz-city__page.lz-btn:hover { transform: none; }

/* ============================================================
   CITY LANDING PAGE (/varna /burgas /pomorie)
   Hero reuses .lz-hero (2-col desktop, full-bleed image on mobile).
   ============================================================ */
/* hero mini salon chips (replace the homepage hero's trust row) */
.lz-chero__mini { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.lz-chero__minicard {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 14px 8px 0; border: 0; border-radius: 13px;
  background: transparent; transition: opacity .2s;
}
.lz-chero__minicard:hover { opacity: .85; }
.lz-chero__minipin { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--sage-tint); color: var(--sage-deep); display: grid; place-items: center; }
.lz-chero__minipin svg { width: 15px; height: 15px; }
.lz-chero__minibody { display: flex; flex-direction: column; line-height: 1.2; }
.lz-chero__minibody b { font-size: 13.5px; font-weight: 600; color: var(--graphite); }
.lz-chero__minibody small { font-size: 11.5px; color: #36302a; margin-top: 1px; }
/* overlay caption is desktop-only; on mobile the hero is full-bleed (homepage treatment) */
.lz-chero__cap { display: none; }
.lz-chero__cap b { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--graphite); }
.lz-chero__cap span { font-size: 11.5px; color: var(--ink-soft); margin-top: 2px; }
/* City hero (mobile, full-bleed): a soft light scrim behind the dark hero text so it
   stays legible over the salon photo. Homepage hero is intentionally left untouched. */
@container lzpage (max-width: 759px) {
  .lz-chero .lz-hero__media::after {
    content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(180deg, rgba(250,248,244,.62) 0%, rgba(250,248,244,.34) 34%, rgba(250,248,244,0) 60%);
  }
  .lz-chero .lz-hero__col { z-index: 2; }
  /* hide salon mini-chips in the city hero on mobile (kept on desktop) */
  .lz-chero__mini { display: none; }
}

/* ----------  "Два салона — изберете удобния"  ---------- */
.lz-salonpick { display: grid; gap: 16px; margin-top: 26px; }
.lz-salonpick__card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 24px;
  padding: 22px; display: flex; flex-direction: column; gap: 15px;
}
.lz-salonpick__head { display: flex; align-items: flex-start; gap: 13px 16px; flex-wrap: wrap; }
.lz-salonpick__pin { flex: none; width: 42px; height: 42px; border-radius: 11px; background: var(--sage-tint); color: var(--sage-deep); display: grid; place-items: center; }
.lz-salonpick__pin svg { width: 21px; height: 21px; }
.lz-salonpick__id h3 { font-family: var(--sans); font-weight: 600; font-size: 19px; margin: 0; color: var(--graphite); line-height: 1.2; }
.lz-salonpick__id p { font-size: 13.5px; color: var(--ink-soft); margin: 3px 0 0; }
.lz-salonpick__hours { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; margin-left: auto; font-size: 13px; color: var(--ink-soft); border: 1px solid var(--line); padding: 6px 13px; border-radius: var(--radius-pill); white-space: nowrap; }
.lz-salonpick__hours svg { width: 15px; height: 15px; }
.lz-salonpick__foot { display: flex; align-items: center; gap: 13px; flex-wrap: wrap; border-top: 1px solid var(--line-soft); padding-top: 15px; margin-top: auto; }
.lz-salonpick__foot .lz-btn { height: 42px; padding: 0 18px; }
.lz-salonpick__phone { font-weight: 600; font-size: 14.5px; color: var(--graphite); white-space: nowrap; }
.lz-salonpick__ig { color: var(--graphite); display: inline-flex; }
.lz-salonpick__ig:hover { color: var(--sage-deep); }
.lz-salonpick__fb { display: inline-flex; }
.lz-salonpick__fb:hover { opacity: .88; }
.lz-salonpick__map { margin-left: auto; font-size: 13.5px; font-weight: 600; color: var(--sage-deep); white-space: nowrap; }
.lz-salonpick__map:hover { color: var(--graphite); }

/* MOBILE salonpick card: hours full-width row; then a row with phone (left) and
   social icons (right); then a full-width "Виж на картата" row; then a full-width
   booking button. */
@container lzpage (max-width: 759px) {
  .lz-salonpick__hours { width: 100%; margin-left: 0; justify-content: flex-start; }
  .lz-salonpick__foot { flex-wrap: wrap; column-gap: 10px; row-gap: 14px; }
  .lz-salonpick__phone { order: 1; margin-right: auto; }
  .lz-salonpick__ig,
  .lz-salonpick__fb { order: 1; }
  .lz-salonpick__map { order: 2; width: 100%; margin-left: 0; text-align: center; }
  .lz-salonpick__foot .lz-btn { order: 3; width: 100%; }
}

@container lzpage (min-width: 760px) {
  /* city hero: 2-col with image panel + overlay caption (mobile stays full-bleed) */
  .lz-chero__imgwrap { aspect-ratio: 4 / 3.6; }
  .lz-chero .lz-hero__media { position: relative; }
  .lz-chero__cap { display: flex; position: absolute; left: 16px; bottom: 16px; z-index: 3; max-width: 72%; flex-direction: column; background: var(--paper); border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow-md); }
  .lz-salonpick { grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 32px; }
  .lz-salonpick--one { grid-template-columns: minmax(0, 600px); justify-content: center; }
  .lz-salonpick__card { padding: 30px; }
  .lz-salonpick__foot { flex-wrap: nowrap; gap: 16px; }
  .lz-chero__mini { gap: 12px; }
}

/* ============================================================
   PROMO MODAL (homepage) — image-led offer. Desktop = overlay
   card; mobile (≤560px) = bottom-sheet. Triggered by main.js.
   Scoped .lz-pm* so it never collides with the .lz-modal (city
   selector) styles. Mirrors the approved "Вариант 3" design.
   ============================================================ */
.lz-pm{position:fixed;inset:0;z-index:210;display:grid;place-items:center;padding:34px;
  background:radial-gradient(120% 120% at 50% 35%,rgba(48,38,28,.42) 0%,rgba(38,30,22,.66) 100%);
  -webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);
  opacity:1;transition:opacity .3s var(--ease);}
.lz-pm[hidden]{display:none;}
.lz-pm.is-closing{opacity:0;}

.lz-pm__card{position:relative;width:min(840px,92vw);height:min(540px,78vh);border-radius:26px;overflow:hidden;
  background-image:var(--lz-pm-img);background-size:cover;background-position:center 42%;
  display:flex;align-items:flex-end;box-shadow:0 30px 90px rgba(38,30,22,.34);
  animation:lz-pm-pop .4s var(--ease) both;}
@keyframes lz-pm-pop{from{opacity:0;transform:translateY(16px) scale(.98);}to{opacity:1;transform:none;}}
.lz-pm__card::after{content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(180deg,rgba(36,28,20,0) 30%,rgba(34,26,18,.18) 55%,rgba(30,22,15,.82) 100%);}

.lz-pm__close{position:absolute;top:16px;right:16px;z-index:6;width:36px;height:36px;border-radius:50%;
  display:grid;place-items:center;color:#fff;background:rgba(40,32,24,.32);border:none;cursor:pointer;
  -webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);transition:.18s;}
.lz-pm__close:hover{background:rgba(40,32,24,.55);transform:rotate(90deg);}
.lz-pm__close svg{width:16px;height:16px;}

.lz-pm__img{display:none;}
.lz-pm__cap{position:relative;z-index:3;padding:38px 42px 40px;max-width:62%;color:#fdfbf7;}

.lz-pm__eyebrow{display:inline-flex;align-items:center;gap:9px;font-family:var(--sans);font-weight:700;font-size:11px;
  letter-spacing:.2em;text-transform:uppercase;color:var(--gold-soft);}
.lz-pm__eyebrow b{width:26px;height:1.5px;background:currentColor;display:inline-block;border-radius:2px;opacity:.7;}

.lz-pm__title{font-family:var(--serif);font-weight:500;letter-spacing:-.01em;line-height:1.04;margin:12px 0 0;
  font-size:clamp(30px,4vw,42px);color:#fdfbf7;}
.lz-pm__title em{font-style:italic;color:var(--gold-soft);font-weight:500;}

.lz-pm__offer{display:flex;align-items:center;gap:26px;margin-top:24px;}
.lz-pm__price{display:flex;flex-direction:column;gap:3px;line-height:1;}
.lz-pm__price-lbl{font-family:var(--sans);font-weight:700;font-size:10.5px;letter-spacing:.22em;text-transform:uppercase;color:var(--gold-soft);}
.lz-pm__price-amt{font-family:var(--serif);font-weight:600;font-size:46px;line-height:1;color:#fdfbf7;letter-spacing:-.01em;}
.lz-pm__price-amt i{font-style:normal;font-weight:500;font-size:.52em;color:var(--gold-soft);margin-left:3px;vertical-align:.08em;}

.lz-pm__btn{display:inline-flex;align-items:center;justify-content:center;height:54px;padding:0 30px;
  background:var(--red);color:#fff;font-family:var(--sans);font-weight:600;font-size:14.5px;letter-spacing:.01em;
  box-shadow:0 14px 30px rgba(214,58,54,.34);transition:.22s var(--ease);text-decoration:none;}
.lz-pm__btn:hover{background:#bd302c;transform:translateY(-2px);box-shadow:0 18px 36px rgba(214,58,54,.42);}

@media (max-width:560px){
  .lz-pm{place-items:end center;padding:0;
    background:radial-gradient(120% 80% at 50% 100%,rgba(38,30,22,.7) 0%,rgba(46,36,26,.48) 100%);}
  .lz-pm__card{width:100%;height:auto;background-image:none;display:block;border-radius:26px 26px 0 0;
    box-shadow:0 -22px 60px rgba(38,30,22,.34);animation:lz-pm-sheet .42s var(--ease) both;}
  @keyframes lz-pm-sheet{from{transform:translateY(100%);}to{transform:none;}}
  .lz-pm__card::after{display:none;}
  .lz-pm__card::before{content:"";position:absolute;top:10px;left:50%;transform:translateX(-50%);
    width:42px;height:4px;border-radius:2px;background:rgba(255,255,255,.55);z-index:6;}
  .lz-pm__img{display:block;height:240px;background-image:var(--lz-pm-img);background-size:cover;background-position:center 36%;}
  .lz-pm__cap{position:static;max-width:none;background:var(--paper);color:var(--graphite);padding:26px 24px 30px;}
  .lz-pm__eyebrow{color:var(--sage);}
  .lz-pm__eyebrow b{display:none;}
  .lz-pm__title{color:var(--graphite);font-size:32px;}
  .lz-pm__title em{color:var(--sage);}
  .lz-pm__offer{margin-top:22px;gap:14px;}
  .lz-pm__price-lbl,.lz-pm__price-amt,.lz-pm__price-amt i{color:var(--red);}
  .lz-pm__price-lbl{font-size:9px;}
  .lz-pm__price-amt{font-size:34px;}
  .lz-pm__btn{flex:1;height:48px;}
}

/* ============================================================
   CTA BANNER + TRUST STRIP (homepage, right after the USP cards).
   Cream variant from the approved export; scoped .lz-ctab* and
   mapped onto the site's design tokens (sans = Montserrat).
   ============================================================ */
.lz-ctab{
  position:relative; overflow:hidden; border-radius:26px; margin-top:32px;
  padding:34px 40px; display:flex; align-items:center; gap:28px;
  background:linear-gradient(135deg,#ffffff,#f1ebe2);
  border:1px solid var(--line-soft);
  box-shadow:0 14px 44px rgba(42,43,39,.10);
}
.lz-ctab::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(70% 130% at 100% 0%,rgba(164,141,120,.12),transparent 56%),
    repeating-linear-gradient(45deg,rgba(58,51,44,.02) 0 2px,transparent 2px 18px);
}
.lz-ctab>*{position:relative;z-index:1;}
.lz-ctab__ic{
  width:66px; height:66px; border-radius:50%;
  border:1px solid var(--sage-soft); background:rgba(255,255,255,.5);
  display:grid; place-items:center; flex:none; color:var(--sage);
}
.lz-ctab__ic svg{width:28px;height:28px;display:block;}
.lz-ctab__txt{flex:1;min-width:0;}
.lz-ctab__txt h3{font-family:var(--serif);font-weight:500;font-size:28px;margin:0 0 5px;letter-spacing:.005em;line-height:1.12;color:var(--graphite);}
.lz-ctab__txt p{margin:0;font-size:14.5px;color:var(--ink-soft);}
.lz-ctab__btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px; flex:none;
  font-family:var(--sans); font-weight:600; font-size:15px; letter-spacing:.01em;
  padding:16px 28px; border-radius:0; white-space:nowrap;
  background:#cdb9a3; color:#fff;
  box-shadow:0 12px 26px rgba(111,93,75,.26);
  transition:transform .3s var(--ease),box-shadow .3s var(--ease),background .3s var(--ease);
}
.lz-ctab__btn svg{width:17px;height:17px;transition:transform .3s var(--ease);}
.lz-ctab__btn:hover{transform:translateY(-2px);background:#bda88f;box-shadow:0 18px 34px rgba(111,93,75,.34);}
.lz-ctab__btn:hover svg{transform:translateX(3px);}

/* ---------- procedure timeline — "Как протича процедурата?" ---------- */
.lz-proc{margin-top:72px;}
.lz-proc__head{text-align:center;margin-bottom:38px;}
.lz-proc__head .lz-eyebrow{display:inline-flex;margin-bottom:14px;}
.lz-proc__head .lz-eyebrow::before{display:none;}
.lz-proc__head h3{font-family:var(--serif);font-weight:500;font-size:32px;line-height:1.06;letter-spacing:-.01em;color:var(--graphite);margin:0;}
.lz-proc__head h3 em{font-style:italic;color:var(--sage);}
.lz-proc__list{list-style:none;max-width:720px;margin:0 auto;padding:0;}
.lz-proc__step{position:relative;display:grid;grid-template-columns:48px 1fr;column-gap:22px;padding-bottom:34px;}
.lz-proc__step:last-child{padding-bottom:0;}
/* connecting line running through the badge centres */
.lz-proc__step:not(:last-child)::before{
  content:"";position:absolute;left:23px;top:50px;bottom:-6px;width:2px;
  background:linear-gradient(var(--sage-soft),rgba(203,185,164,.35));
}
.lz-proc__num{
  position:relative;z-index:1;width:48px;height:48px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;flex:none;
  font-family:var(--serif);font-size:20px;font-weight:900;line-height:1;color:#fff;
  background:#cdb9a3;
  box-shadow:0 8px 20px rgba(111,93,75,.28);
}
.lz-proc__body{padding-top:4px;min-width:0;}
.lz-proc__body h4{font-family:var(--sans);font-weight:600;font-size:16px;letter-spacing:.005em;color:var(--graphite);margin:0 0 7px;line-height:1.28;}
.lz-proc__body p{font-size:14.5px;line-height:1.6;color:var(--ink-soft);margin:0;text-wrap:pretty;}

@media (max-width:560px){
  .lz-ctab{flex-direction:column;text-align:center;gap:20px;padding:32px 24px;border-radius:22px;}
  .lz-ctab__txt h3{font-size:24px;}
  .lz-ctab__btn{width:100%;padding:16px 24px;}
  .lz-proc{margin-top:40px;}
  .lz-proc__head{margin-bottom:28px;}
  .lz-proc__head h3{font-size:25px;}
  .lz-proc__step{grid-template-columns:42px 1fr;column-gap:16px;padding-bottom:26px;}
  .lz-proc__step:not(:last-child)::before{left:20px;top:44px;}
  .lz-proc__num{width:42px;height:42px;font-size:20px;}
  .lz-proc__body h4{font-size:15.5px;}
}

/* ============================================================
   VIDEO TESTIMONIALS — reel-style cards, poster + tap-to-play
   ============================================================ */
.lz-vt-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  /* no snap: with several cards visible, snapping rests before the true end and
     the last dot never lights. Free scroll rests exactly where released. */
  scroll-snap-type: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* bleed to the section's left/right padding on mobile so cards run edge-to-edge */
  margin: 0 -16px;
  padding: 4px 16px 6px;
}
.lz-vt-track::-webkit-scrollbar { display: none; }
.lz-vt {
  position: relative;
  flex: 0 0 auto;
  /* ~2.8 cards visible on mobile */
  width: 33vw;
  max-width: 155px;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  scroll-snap-align: start;
}
.lz-vt__v {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}
/* in fullscreen the 9:16 video must letterbox, not zoom-crop to fill the screen */
.lz-vt__v:fullscreen { object-fit: contain; width: 100%; height: 100%; aspect-ratio: auto; }
.lz-vt__v:-webkit-full-screen { object-fit: contain; width: 100%; height: 100%; aspect-ratio: auto; }
.lz-vt__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .06) 55%, rgba(0, 0, 0, .32) 100%);
  cursor: pointer;
  transition: opacity .3s ease, background .3s ease;
}
.lz-vt__play::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 6px 22px rgba(0, 0, 0, .28);
  transition: transform .2s ease;
}
.lz-vt__play svg {
  position: relative;
  width: 16px;
  height: 16px;
  fill: var(--graphite);
  margin-left: 2px;
}
.lz-vt__play:hover::before { transform: scale(1.06); }
.lz-vt.is-playing .lz-vt__play { opacity: 0; pointer-events: none; }

/* nav (arrows + dots) reuses .lz-ba__nav / .lz-ba__arr / .lz-ba__dots styling */
.lz-ba__nav[data-vt-nav] { margin-top: 20px; }

/* prep-steps photo — mobile only, under the 4 steps */
.lz-prep-photo { margin-top: 22px; }
.lz-prep-photo img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-lg);
}
@container lzpage (min-width: 760px) { .lz-prep-photo { display: none; } }

@container lzpage (min-width: 760px) {
  .lz-vt-track { margin: 0; padding: 6px 2px 8px; gap: 18px; scroll-behavior: smooth; }
  .lz-vt { width: 244px; max-width: none; }
}
