/* ═══════════════════════════════════════════════════════════════════
   HOLZCOM facades-final.css — v4.0 CLEAN REWRITE
   Только компоненты которых нет в premium.css:
     1. Exit-intent modal (hzei-*)
     2. Social proof widget (hzsw-*)
     3. Dock v3 (#dock)
   Порядок загрузки: bundle.css → premium.css → final.css
   ═══════════════════════════════════════════════════════════════════ */


/* ══════════════════════════════════════════════════════════
   1. EXIT-INTENT MODAL
   ══════════════════════════════════════════════════════════ */

.hzei-wrap {
  position: fixed; inset: 0; z-index: 99000;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; transition: opacity .28s ease;
  pointer-events: none;
}
.hzei-wrap.hzei-visible { opacity: 1; pointer-events: auto; }

.hzei-backdrop {
  position: absolute; inset: 0;
  background: rgba(3,7,18,.55);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.hzei-panel {
  position: relative; z-index: 1;
  width: min(480px, 100%);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(72px) saturate(220%) brightness(1.08);
  -webkit-backdrop-filter: blur(72px) saturate(220%) brightness(1.08);
  border: 1px solid rgba(255,255,255,.92);
  border-radius: 26px;
  padding: 36px 32px 28px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.35) inset,
    0 48px 100px rgba(2,6,20,.24),
    0 16px 40px rgba(2,6,20,.12);
  transform: translateY(20px) scale(.97);
  transition: transform .32s cubic-bezier(.2,.8,.2,1);
}
.hzei-wrap.hzei-visible .hzei-panel { transform: translateY(0) scale(1); }

.hzei-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 10px;
  background: rgba(11,18,32,.07); border: 1px solid rgba(11,18,32,.09);
  color: rgba(11,18,32,.55); font-size: 18px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .14s, transform .14s;
}
.hzei-close:hover { background: rgba(11,18,32,.13); transform: scale(1.08); }

.hzei-icon  { font-size: 36px; line-height: 1; margin-bottom: 14px; }
.hzei-title { font-size: 20px; font-weight: 900; letter-spacing: -.03em; color: #0b1220; margin: 0 0 8px; line-height: 1.25; }
.hzei-sub   { font-size: 14px; color: rgba(11,18,32,.55); line-height: 1.55; margin: 0 0 18px; }

.hzei-config {
  background: rgba(11,18,32,.04); border: 1px solid rgba(11,18,32,.08);
  border-radius: 14px; padding: 14px 16px;
  margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px;
}
.hzei-param       { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.hzei-param-label { font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: rgba(11,18,32,.40); flex-shrink: 0; }
.hzei-param-val   { font-size: 14px; font-weight: 700; color: #0b1220; text-align: right; }
.hzei-price       { font-size: 18px; font-weight: 900; letter-spacing: -.025em; color: #8b7355; }

.hzei-form  { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.hzei-field { position: relative; }
.hzei-input {
  width: 100%; padding: 12px 14px; border-radius: 13px;
  border: 1.5px solid rgba(11,18,32,.11);
  background: rgba(255,255,255,.85);
  font-size: 14px; font-weight: 600; color: #0b1220;
  font-family: inherit; outline: none; box-sizing: border-box;
  transition: border-color .15s, box-shadow .15s;
}
.hzei-input::placeholder { color: rgba(11,18,32,.35); }
.hzei-input:focus { border-color: rgba(139,115,85,.45); box-shadow: 0 0 0 3px rgba(139,115,85,.08); }

.hzei-submit {
  width: 100%; height: 48px; border-radius: 14px;
  background: #0b1220; color: #fff; border: none;
  font-size: 14px; font-weight: 800; font-family: inherit;
  cursor: pointer; box-shadow: 0 6px 18px rgba(11,18,32,.20);
  transition: transform .15s, box-shadow .15s;
}
.hzei-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(11,18,32,.28); }
.hzei-hint { font-size: 11.5px; color: rgba(11,18,32,.38); text-align: center; margin-bottom: 16px; line-height: 1.5; }

.hzei-scenarios      { border-top: 1px solid rgba(11,18,32,.07); padding-top: 14px; }
.hzei-scenario-label { font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: rgba(11,18,32,.38); margin-bottom: 10px; }
.hzei-scenario-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.hzei-scenario {
  padding: 9px 12px; border-radius: 11px;
  background: rgba(11,18,32,.04); border: 1px solid rgba(11,18,32,.09);
  font-size: 12.5px; font-weight: 700; color: #0b1220;
  font-family: inherit; cursor: pointer; text-align: left;
  transition: background .13s, border-color .13s, transform .13s; line-height: 1.3;
}
.hzei-scenario:hover { background: rgba(139,115,85,.06); border-color: rgba(139,115,85,.18); transform: translateY(-1px); }

.hzei-success       { text-align: center; padding: 24px 0 8px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hzei-success-icon  { width: 52px; height: 52px; border-radius: 50%; background: rgba(139,115,85,.10); border: 2px solid rgba(139,115,85,.22); display: flex; align-items: center; justify-content: center; font-size: 24px; color: #8b7355; }
.hzei-success-title { font-size: 20px; font-weight: 900; letter-spacing: -.025em; color: #0b1220; }
.hzei-success-sub   { font-size: 14px; color: rgba(11,18,32,.55); line-height: 1.5; }
.hzei-close-ok {
  margin-top: 6px; padding: 10px 24px; border-radius: 12px;
  background: rgba(11,18,32,.07); border: 1px solid rgba(11,18,32,.10);
  font-size: 13px; font-weight: 700; color: #0b1220; font-family: inherit; cursor: pointer;
  transition: background .14s;
}
.hzei-close-ok:hover { background: rgba(11,18,32,.12); }

@media (max-width: 480px) {
  .hzei-panel { padding: 28px 20px 22px; border-radius: 22px; }
  .hzei-title { font-size: 18px; }
  .hzei-scenario-row { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════════════════
   2. SOCIAL PROOF
   ══════════════════════════════════════════════════════════ */

.hzsw-wrap {
  position: fixed; bottom: 84px; left: 16px; z-index: 900;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,.90);
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(11,18,32,.06), 0 8px 28px rgba(11,18,32,.12);
  padding: 10px 12px;
  min-width: 210px; max-width: 240px;
  animation: hzsw-in .4s cubic-bezier(.2,.8,.2,1) both;
  animation-delay: 3s;
}
@keyframes hzsw-in {
  from { opacity: 0; transform: translateY(8px) scale(.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1);   }
}

.hzsw-header { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }

.hzsw-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #8b7355; flex-shrink: 0;
  animation: hzsw-pulse 2.2s ease-in-out infinite;
}
@keyframes hzsw-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(139,115,85,.35); }
  60%  { box-shadow: 0 0 0 7px rgba(139,115,85,.00); }
  100% { box-shadow: 0 0 0 0   rgba(139,115,85,.00); }
}

.hzsw-total     { font-size: 12.5px; font-weight: 700; color: #0b1220; flex: 1; line-height: 1.3; }
.hzsw-num       { font-size: 15px; font-weight: 900; letter-spacing: -.02em; color: #0b1220; transition: color .2s; }
.hzsw-bump      { color: #8b7355; }
.hzsw-toggle {
  padding: 0;
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(11,18,32,.06); border: 1px solid rgba(11,18,32,.09);
  color: rgba(11,18,32,.45); font-size: 13px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .13s; flex-shrink: 0;
}
.hzsw-toggle:hover { background: rgba(11,18,32,.10); }

.hzsw-close {
  padding: 0;
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(11,18,32,.05); border: 1px solid rgba(11,18,32,.09);
  color: rgba(11,18,32,.38); font-size: 14px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .13s, color .13s; flex-shrink: 0;
}
.hzsw-close:hover { background: rgba(239,68,68,.10); color: #ef4444; border-color: rgba(239,68,68,.25); }

.hzsw-body      { display: flex; flex-direction: column; gap: 5px; padding-top: 8px; border-top: 1px solid rgba(11,18,32,.07); }
.hzsw-row       { display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: rgba(11,18,32,.55); font-weight: 600; }
.hzsw-dot       { width: 5px; height: 5px; border-radius: 50%; background: rgba(139,115,85,.4); flex-shrink: 0; }
.hzsw-row-count { font-weight: 800; color: #0b1220; font-size: 12px; }
.hzsw-row-label { flex: 1; }
.hzsw-note      { margin-top: 7px; padding-top: 7px; border-top: 1px solid rgba(11,18,32,.06); font-size: 11px; color: rgba(11,18,32,.40); font-weight: 600; line-height: 1.4; }

@media (max-width: 480px) {
  .hzsw-wrap, #hz-watching-widget { display: none; }
}


/* ══════════════════════════════════════════════════════════
   3. DOCK v3
   ══════════════════════════════════════════════════════════ */

#dock {
  position: fixed;
  left: 50%; bottom: 16px;
  transform: translateX(-50%);
  z-index: 9200;
  display: flex; align-items: center; gap: 6px;
  padding: 8px 10px; border-radius: 20px;
  background: rgba(10,14,26,.62);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 8px 32px rgba(0,0,0,.32), 0 1px 0 rgba(255,255,255,.06) inset;
  will-change: transform, opacity;
  transition: transform .32s cubic-bezier(.2,.8,.2,1), opacity .32s cubic-bezier(.2,.8,.2,1);
}

#dock.hz-dock--hidden,
body.modal-open #dock,
body.hz-modal-open #dock,
body.hz-scrolllock #dock,
body.no-scroll #dock {
  transform: translateX(-50%) translateY(calc(100% + 24px));
  opacity: 0;
  pointer-events: none;
}

#dock .hz-dock__btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; padding: 8px 10px; border-radius: 13px;
  border: none; background: transparent; color: rgba(255,255,255,.82);
  text-decoration: none; cursor: pointer;
  transition: background .18s, color .18s, transform .18s;
  -webkit-tap-highlight-color: transparent;
}
#dock .hz-dock__btn:hover  { background: rgba(255,255,255,.10); color: #fff; transform: translateY(-2px); }
#dock .hz-dock__btn:active { transform: translateY(0) scale(.96); }

#dock .hz-dock__ico     { display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; }
#dock .hz-dock__ico svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
#dock .hz-dock__txt     { font-size: 9px; font-weight: 500; letter-spacing: .02em; line-height: 1; white-space: nowrap; opacity: .75; }

#dock.hz-dock--collapsed .hz-dock__btn:not(.hz-dock__toggle) { display: none; }

/* override bundle display:none on body.modal-open */
body.modal-open #dock, body.hz-modal-open #dock { display: flex; z-index: calc(var(--zi-modal, 10000) + 1); }

@media (max-width: 480px) {
  #dock { bottom: 10px; gap: 2px; padding: 6px; }
  #dock .hz-dock__btn { padding: 7px 8px; }
}


/* ══════════════════════════════════════════════════════════
   4. EXIT-INTENT MODAL v2 (hz-exitModal / hz-exitWrap)
   Статичный HTML в index.html, управляется hz-exit.js
   ══════════════════════════════════════════════════════════ */

.hz-exitWrap {
  display: none;
  position: fixed; inset: 0;
  z-index: 99000;
  align-items: center; justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(4,8,20,.52);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}
.hz-exitWrap[aria-hidden="false"] { display: flex; }

.hz-exitModal {
  position: relative;
  width: min(460px, calc(100vw - 28px));
  max-height: min(92dvh, 640px);
  overflow-y: auto;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(255,255,255,.80);
  border-radius: 24px;
  padding: 36px 32px 28px;
  box-shadow: 0 2px 0 rgba(255,255,255,.70) inset,
    0 48px 100px rgba(2,6,20,.28), 0 12px 36px rgba(2,6,20,.14);
}

.hz-exitModal__close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 10px;
  border: 1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.90);
  color: rgba(11,18,32,.55); font-size: 20px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .14s, transform .14s;
}
.hz-exitModal__close:hover { background: #fff; transform: scale(1.08); }

.hz-exitModal__icon {
  width: 52px; height: 52px; border-radius: 16px;
  background: rgba(139,115,85,.06); border: 1.5px solid rgba(139,115,85,.18);
  display: flex; align-items: center; justify-content: center;
  color: #8b7355; margin-bottom: 16px;
}
.hz-exitModal__icon svg { width: 28px; height: 28px; }

.hz-exitModal__title { font-size: 20px; font-weight: 900; letter-spacing: -.025em; color: #0b1220; margin: 0 0 8px; }
.hz-exitModal__sub   { font-size: 14px; color: rgba(11,18,32,.55); line-height: 1.55; margin: 0 0 16px; }

.hz-exitConfig {
  background: rgba(11,18,32,.04); border: 1px solid rgba(11,18,32,.08);
  border-radius: 12px; padding: 12px 14px; margin-bottom: 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.hz-exitConfig__row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.hz-exitConfig__label { font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: rgba(11,18,32,.40); }
.hz-exitConfig__val   { font-size: 14px; font-weight: 700; color: #0b1220; }
.hz-exitConfig__val--price { font-size: 16px; font-weight: 900; color: #8b7355; }

.hz-exitForm { display: flex; flex-direction: column; gap: 8px; }
.hz-exitForm__field  { display: flex; flex-direction: column; }
.hz-exitForm__input  {
  height: 46px; border: 1.5px solid rgba(11,18,32,.12); border-radius: 12px;
  padding: 0 14px; font-size: 14px; font-family: inherit;
  background: #fff; color: #0b1220; outline: none; box-sizing: border-box;
  transition: border-color .15s, box-shadow .15s;
}
.hz-exitForm__input:focus { border-color: rgba(139,115,85,.40); box-shadow: 0 0 0 3px rgba(139,115,85,.08); }
.hz-exitForm__btn {
  width: 100%; height: 48px; border-radius: 13px;
  background: #0b1220; color: #fff; border: none;
  font-size: 14px; font-weight: 800; font-family: inherit;
  cursor: pointer; box-shadow: 0 8px 22px rgba(11,18,32,.22);
  transition: transform .15s, box-shadow .15s;
}
.hz-exitForm__btn:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(11,18,32,.30); }

/* Живой виджет — «Сейчас смотрят» (hz-exit.js) */
#hz-live-widget {
  position: fixed; bottom: 84px; left: 16px; z-index: 900;
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,.80);
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(11,18,32,.06), 0 8px 28px rgba(11,18,32,.12);
  padding: 10px 14px;
  min-width: 180px; max-width: 240px;
  font-size: 13px; font-weight: 700; color: #0b1220;
}

@media (max-width: 480px) {
  .hz-exitModal { padding: 28px 20px 22px; }
  .hz-exitModal__title { font-size: 18px; }
}

/* dock live — не занимает место пока скрыт (v2.8.90) */
.hz-dock__live {
  display: none;
  align-items: center; gap: 6px;
  padding: 6px 10px; border-radius: 10px;
  background: rgba(255,255,255,.08);
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,.75);
  white-space: nowrap; min-width: 0;
}
.hz-dock__live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; flex-shrink: 0;
  box-shadow: 0 0 6px rgba(74,222,128,.6);
  animation: dockLivePulse 2s ease-in-out infinite;
}
@keyframes dockLivePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}

/* Dock — скрыть подписи на очень маленьких экранах */
@media (max-width: 420px) {
  #dock .hz-dock__txt { display: none; }
  #dock { gap: 4px; padding: 7px 8px; }
}

/* ── hdr__btn v3.0.19: colored buttons with animations ── */
.hdr__btn,.hdr__a{
  display:inline-flex;align-items:center;justify-content:center;gap:7px;
  height:38px;padding:0 16px;border-radius:999px;
  background:linear-gradient(135deg,#8b7355,#7a6548);
  border:none;
  color:#fff;text-decoration:none;font-weight:800;font-size:13px;
  cursor:pointer;white-space:nowrap;
  box-shadow:0 8px 20px rgba(14,139,82,.28),0 3px 8px rgba(14,139,82,.16);
  transition:transform .18s cubic-bezier(.2,.8,.2,1),box-shadow .18s cubic-bezier(.2,.8,.2,1),filter .18s ease;
  position:relative;overflow:hidden;
}
.hdr__btn::after,.hdr__a::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(120deg,transparent 30%,rgba(255,255,255,.18) 50%,transparent 70%);
  transform:translateX(-100%);
  transition:transform .42s ease;
}
.hdr__btn:hover,.hdr__a:hover{
  transform:translateY(-2px) scale(1.02);
  box-shadow:0 14px 32px rgba(14,139,82,.36),0 6px 14px rgba(14,139,82,.20);
  filter:brightness(1.06);
}
.hdr__btn:hover::after,.hdr__a:hover::after{transform:translateX(100%)}
.hdr__btn:active,.hdr__a:active{
  transform:translateY(0) scale(.98);
  box-shadow:0 6px 14px rgba(14,139,82,.22);
  filter:brightness(.98);
}
.hdr__btn svg,.hdr__a svg{opacity:.92;flex:0 0 auto;transition:transform .18s ease}
.hdr__btn:hover svg,.hdr__a:hover svg{transform:scale(1.1)}

/* ── Logo fix v3.0.19 ── */
.brand__logo{background:transparent !important;border:none !important;border-radius:0 !important;width:auto !important;height:auto !important;min-width:0 !important;padding:2px !important;box-shadow:none !important;overflow:visible !important;display:flex !important;align-items:center !important;justify-content:center !important;flex-shrink:0 !important}
.brand__logoImg{width:64px !important;height:28px !important;border-radius:0 !important;box-shadow:none !important;object-fit:contain !important;display:block !important;flex-shrink:0 !important}
@media(max-width:768px){.brand__logoImg{width:64px !important;height:28px !important}}
@media(max-width:520px){.brand__logoImg{width:64px !important;height:28px !important}}

/* ── Header polish v3.0.53r1 ── */
.hdr__in{
  max-width:1240px;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
  flex:0 0 auto;
}
.brand__logo{
  padding:0 !important;
  margin:0 !important;
  width:auto !important;
  height:auto !important;
  min-width:0 !important;
  line-height:0;
  overflow:visible !important;
}
.brand__logoImg{
  display:block !important;
  width:auto !important;
  height:48px !important;
  max-width:118px !important;
  max-height:none !important;
  object-fit:contain !important;
  object-position:center center !important;
}
.brand__txt{
  font-size:clamp(18px,1.35vw,21px);
  font-weight:900;
  letter-spacing:-.025em;
  line-height:1;
  color:#111827;
  white-space:nowrap;
}
.hdr__nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  flex-wrap:wrap;
  margin-left:auto;
}
.hdr__btn,.hdr__a{
  min-height:46px;
  padding:0 20px;
  gap:9px;
  border-radius:999px;
  font-size:15px;
  font-weight:800;
  letter-spacing:-.01em;
}
.hdr__btn svg,.hdr__a svg{
  width:16px;
  height:16px;
}
.hz-hdr__back,
.hz-hdr__catalog,
.hz-hdr__showroom,
.hz-hdr__price,
.hz-hdr__calc{
  min-width:168px;
  justify-content:center;
}
.hz-hdr__phone{
  min-width:226px;
  justify-content:center;
  font-variant-numeric:tabular-nums;
}
@media (max-width:1200px){
  .brand__logoImg{height:42px !important;max-width:102px !important}
  .brand__txt{font-size:18px}
  .hdr__btn,.hdr__a{min-height:44px;padding:0 18px;font-size:14px}
  .hz-hdr__back,.hz-hdr__catalog,.hz-hdr__showroom,.hz-hdr__price,.hz-hdr__calc{min-width:156px}
  .hz-hdr__phone{min-width:208px}
}
@media (max-width:980px){
  .hdr__in{flex-wrap:wrap;justify-content:flex-start;gap:14px}
  .hdr__nav{width:100%;margin-left:0;justify-content:flex-start}
}
@media (max-width:640px){
  .brand__logoImg{height:36px !important;max-width:88px !important}
  .brand__txt{font-size:16px}
  .hdr__btn,.hdr__a{min-height:42px;padding:0 16px;font-size:13px}
  .hz-hdr__back,.hz-hdr__catalog,.hz-hdr__showroom,.hz-hdr__price,.hz-hdr__calc,.hz-hdr__phone{min-width:0}
}
@media (max-width:520px){
  .brand__txt{display:none}
  .hdr__nav{gap:10px}
}



/* FIX v3.0.76r2: logo balance + sharper header branding */
.brand{
  gap:18px !important;
}
.brand__logo{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:0 !important;
  margin:0 !important;
  line-height:0 !important;
  flex:0 0 auto !important;
}
.brand__logoImg{
  display:block !important;
  width:auto !important;
  height:56px !important;
  max-width:138px !important;
  max-height:none !important;
  object-fit:contain !important;
  object-position:center center !important;
  transform:translateY(1px) !important;
}
.brand__txt{
  display:inline-flex !important;
  align-items:center !important;
  min-height:56px !important;
  font-size:clamp(18px,1.5vw,22px) !important;
  font-weight:900 !important;
  letter-spacing:-.03em !important;
  line-height:1 !important;
  color:#0f172a !important;
}
@media (max-width:1200px){
  .brand{gap:16px !important}
  .brand__logoImg{height:50px !important;max-width:124px !important}
  .brand__txt{min-height:50px !important;font-size:18px !important}
}
@media (max-width:640px){
  .brand{gap:12px !important}
  .brand__logoImg{height:42px !important;max-width:104px !important}
  .brand__txt{min-height:42px !important;font-size:16px !important}
}

/* FIX v3.0.57: header buttons in one row */
.hz-hdr__in{flex-wrap:nowrap !important;gap:12px !important}
.hz-hdr__nav{flex-wrap:nowrap !important;gap:8px !important}
.hz-hdr__right{flex-wrap:nowrap !important;gap:8px !important}
.hdr__btn,.hz-hdr__phone{white-space:nowrap !important}
@media(max-width:980px){
  .hz-hdr__right{gap:6px !important}
  .hdr__btn,.hz-hdr__phone{font-size:12px !important;padding:8px 12px !important}
}

/* FIX v3.0.70: mobile modal scrollable */
.hz-modal {
  max-height: calc(100dvh - 32px) !important;
  max-height: calc(100vh - 32px) !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 520px) {
  .hz-modal {
    max-height: 100dvh !important;
    max-height: 100vh !important;
    border-radius: 22px 22px 0 0 !important;
    margin-top: auto !important;
  }
}


/* FIX v3.0.79: square brand mark + tighter wordmark balance */
.brand{
  gap:14px !important;
}
.brand__logo{
  width:72px !important;
  height:72px !important;
  min-width:72px !important;
  border-radius:18px !important;
  background:transparent !important;
  padding:0 !important;
  margin:0 !important;
  box-shadow:none !important;
  overflow:hidden !important;
}
.brand__logoImg{
  width:72px !important;
  height:72px !important;
  max-width:none !important;
  max-height:none !important;
  object-fit:cover !important;
  object-position:center center !important;
  transform:none !important;
  border-radius:18px !important;
}
.brand__txt{
  min-height:72px !important;
  font-size:clamp(18px,1.3vw,20px) !important;
  letter-spacing:-.04em !important;
}
@media (max-width:1200px){
  .brand{gap:12px !important}
  .brand__logo,
  .brand__logoImg{width:64px !important;height:64px !important;min-width:64px !important;border-radius:16px !important}
  .brand__txt{min-height:64px !important;font-size:18px !important}
}
@media (max-width:640px){
  .brand__logo,
  .brand__logoImg{width:52px !important;height:52px !important;min-width:52px !important;border-radius:14px !important}
  .brand__txt{min-height:52px !important;font-size:15px !important}
}


/* FIX v3.0.80: real horizontal wordmark in header */
.brand--wordmark{
  display:flex !important;
  align-items:center !important;
  gap:0 !important;
  min-width:0 !important;
}
.brand__logo--wordmark{
  width:auto !important;
  height:auto !important;
  min-width:0 !important;
  border-radius:0 !important;
  padding:0 !important;
  margin:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  overflow:visible !important;
}
.brand__logoImg--wordmark,
.brand__logoImg[data-hz-brand-wordmark="1"]{
  display:block !important;
  width:306px !important;
  max-width:min(28vw,306px) !important;
  height:auto !important;
  max-height:none !important;
  object-fit:contain !important;
  object-position:left center !important;
  border-radius:0 !important;
  transform:none !important;
  box-shadow:none !important;
}
.brand--wordmark .brand__txt{display:none !important}
@media (max-width:1200px){
  .brand__logoImg--wordmark,
  .brand__logoImg[data-hz-brand-wordmark="1"]{width:278px !important;max-width:278px !important}
}
@media (max-width:860px){
  .brand__logoImg--wordmark,
  .brand__logoImg[data-hz-brand-wordmark="1"]{width:240px !important;max-width:240px !important}
}
@media (max-width:640px){
  .brand__logoImg--wordmark,
  .brand__logoImg[data-hz-brand-wordmark="1"]{width:196px !important;max-width:196px !important}
}
@media (max-width:420px){
  .brand__logoImg--wordmark,
  .brand__logoImg[data-hz-brand-wordmark="1"]{width:168px !important;max-width:168px !important}
}

/* FIX v3.0.82: hard-lock header wordmark size so nav cannot visually collapse it */
.brand--wordmark{flex:0 0 auto !important;min-width:320px !important;max-width:320px !important}
.brand__logo--wordmark{flex:0 0 auto !important;width:320px !important;min-width:320px !important;max-width:320px !important}
.brand__logoImg--wordmark,
.brand__logoImg[data-hz-brand-wordmark="1"]{width:320px !important;min-width:320px !important;max-width:320px !important;height:auto !important}
@media (max-width:980px){
  .brand--wordmark{min-width:280px !important;max-width:280px !important}
  .brand__logo--wordmark,
  .brand__logoImg--wordmark,
  .brand__logoImg[data-hz-brand-wordmark="1"]{width:280px !important;min-width:280px !important;max-width:280px !important}
}
@media (max-width:640px){
  .brand--wordmark{min-width:220px !important;max-width:220px !important}
  .brand__logo--wordmark,
  .brand__logoImg--wordmark,
  .brand__logoImg[data-hz-brand-wordmark="1"]{width:220px !important;min-width:220px !important;max-width:220px !important}
}


/* FIX v3.0.84: uncropped header wordmark + green-only nav hover */
.brand--wordmark{
  flex:0 0 auto !important;
  min-width:320px !important;
  max-width:320px !important;
}
.brand__logo--wordmark{
  width:320px !important;
  min-width:320px !important;
  max-width:320px !important;
  padding:0 !important;
  overflow:visible !important;
}
.brand__logoImg--wordmark,
.brand__logoImg[data-hz-brand-wordmark="1"]{
  display:block !important;
  width:320px !important;
  min-width:320px !important;
  max-width:320px !important;
  height:auto !important;
  object-fit:contain !important;
  object-position:left center !important;
  transform:none !important;
  filter:none !important;
}
@media (max-width:980px){
  .brand--wordmark{min-width:280px !important;max-width:280px !important;}
  .brand__logo--wordmark,
  .brand__logoImg--wordmark,
  .brand__logoImg[data-hz-brand-wordmark="1"]{width:280px !important;min-width:280px !important;max-width:280px !important;}
}
@media (max-width:640px){
  .brand--wordmark{min-width:220px !important;max-width:220px !important;}
  .brand__logo--wordmark,
  .brand__logoImg--wordmark,
  .brand__logoImg[data-hz-brand-wordmark="1"]{width:220px !important;min-width:220px !important;max-width:220px !important;}
}

.hdr__btn,.hdr__a,
.hz-hdr__catalog,.hz-hdr__showroom,.hz-hdr__price,.hz-hdr__calc,.hz-hdr__back{
  color:#fff !important;
  border:none !important;
  background:linear-gradient(135deg,#18a85f 0%,#159b58 48%,#10874c 100%) !important;
  box-shadow:0 12px 28px rgba(16,135,76,.22),0 8px 18px rgba(15,23,42,.08) !important;
  filter:none !important;
}
.hdr__btn::after,.hdr__a::after{
  background:linear-gradient(120deg,transparent 22%,rgba(255,255,255,.20) 50%,transparent 78%) !important;
}
.hdr__btn:hover,.hdr__a:hover,
.hz-hdr__catalog:hover,.hz-hdr__showroom:hover,.hz-hdr__price:hover,.hz-hdr__calc:hover,.hz-hdr__back:hover{
  color:#fff !important;
  background:linear-gradient(135deg,#1db46a 0%,#19a461 48%,#129355 100%) !important;
  border:none !important;
  box-shadow:0 18px 38px rgba(16,135,76,.28),0 10px 22px rgba(15,23,42,.10) !important;
  filter:none !important;
  transform:translateY(-2px) scale(1.01) !important;
}
.hdr__btn:active,.hdr__a:active,
.hz-hdr__catalog:active,.hz-hdr__showroom:active,.hz-hdr__price:active,.hz-hdr__calc:active,.hz-hdr__back:active{
  background:linear-gradient(135deg,#139055 0%,#0f7f4a 100%) !important;
  box-shadow:0 10px 20px rgba(16,135,76,.18),0 6px 12px rgba(15,23,42,.06) !important;
  filter:none !important;
  transform:translateY(0) scale(.985) !important;
}
.hdr__btn svg,.hdr__a svg,
.hz-hdr__catalog svg,.hz-hdr__showroom svg,.hz-hdr__price svg,.hz-hdr__calc svg,.hz-hdr__back svg{
  opacity:1 !important;
}

/* FIX v3.0.84: original source logo proportions + nav hover lock */
.brand--wordmark{flex:0 0 auto !important;min-width:360px !important;max-width:360px !important}
.brand__logo--wordmark{flex:0 0 auto !important;width:360px !important;min-width:360px !important;max-width:360px !important}
.brand__logoImg--wordmark,.brand__logoImg[data-hz-brand-wordmark="1"]{
  width:360px !important;min-width:360px !important;max-width:360px !important;
  height:auto !important;object-fit:contain !important;object-position:left center !important
}
@media (max-width:980px){
  .brand--wordmark{min-width:300px !important;max-width:300px !important}
  .brand__logo--wordmark,.brand__logoImg--wordmark,.brand__logoImg[data-hz-brand-wordmark="1"]{
    width:300px !important;min-width:300px !important;max-width:300px !important
  }
}
@media (max-width:640px){
  .brand--wordmark{min-width:236px !important;max-width:236px !important}
  .brand__logo--wordmark,.brand__logoImg--wordmark,.brand__logoImg[data-hz-brand-wordmark="1"]{
    width:236px !important;min-width:236px !important;max-width:236px !important
  }
}
.hdr__btn:hover,.hdr__a:hover,
.hdr__btn:focus-visible,.hdr__a:focus-visible,
.hz-hdr__catalog:hover,.hz-hdr__showroom:hover,.hz-hdr__price:hover,.hz-hdr__calc:hover,.hz-hdr__back:hover,
.hz-hdr__catalog:focus-visible,.hz-hdr__showroom:focus-visible,.hz-hdr__price:focus-visible,.hz-hdr__calc:focus-visible,.hz-hdr__back:focus-visible{
  color:#fff !important;
  background:linear-gradient(135deg,#1db46a 0%,#19a461 48%,#129355 100%) !important;
  border:none !important;
  box-shadow:0 18px 38px rgba(16,135,76,.28),0 10px 22px rgba(15,23,42,.10) !important;
  filter:none !important;
}
