/* ============================================================
   NEWGOLD — прототип шапки
   Все классы и переменные с префиксом .luxh2- / --luxh2-,
   ничто не пересекается с C:\Архив\10\Стили (.hdr-* / .lux-*).
   Никаких глобальных селекторов (html, body, *) — всё внутри .luxh2-demo.
   ============================================================ */

.luxh2-demo {
  /* ── палитра ── */
  --luxh2-bg:           var(--bg-card, #ffffff);
  --luxh2-bg-card:      var(--bg-card, #fffdfa);
  --luxh2-bg-soft:      var(--bg-muted, #f0ebe3);
  --luxh2-bg-tint:      var(--bg-tint, #f5efe7);
  --luxh2-bg-header-solid: var(--bg-card, #fffcf8);
  --luxh2-bg-header:    color-mix(in srgb, var(--bg-card, #fffcf8) 94%, transparent);

  --luxh2-ink:          var(--ink, #1a1613);
  --luxh2-ink-2:        var(--ink-2, #2f2923);
  --luxh2-ink-3:        var(--ink-3, #5f5449);
  --luxh2-ink-4:        var(--ink-4, #8e8174);
  --luxh2-ink-5:        var(--ink-5, #aa9a88);

  --luxh2-rule:         var(--rule, rgba(228, 221, 209, 0.95));
  --luxh2-rule-soft:    var(--rule-soft, rgba(239, 233, 221, 0.96));
  --luxh2-rule-strong:  var(--rule-strong, rgba(214, 204, 189, 0.95));

  --luxh2-accent:       var(--accent, #b33a2e);
  --luxh2-accent-soft:  var(--accent-soft, rgba(179, 58, 46, 0.08));

  --luxh2-shadow-sm:    0 6px 16px -10px rgba(26, 22, 19, .25);
  --luxh2-shadow-md:    0 10px 24px rgba(67, 50, 31, 0.08);
  --luxh2-shadow-lg:    0 16px 34px rgba(67, 50, 31, 0.10);

  --luxh2-serif:        "Cormorant Garamond", Georgia, serif;
  --luxh2-sans:         "Inter", "Segoe UI", Arial, sans-serif;

  --luxh2-t:            0.22s ease;

  /* собственно стили обёртки */
  display: block;
  box-sizing: border-box;
  min-height: 100vh;
  font-family: var(--luxh2-sans);
  font-size: 14px;
  line-height: 1.45;
  color: var(--luxh2-ink-2);
  background: var(--luxh2-bg);
  -webkit-font-smoothing: antialiased;
}

.luxh2-demo *,
.luxh2-demo *::before,
.luxh2-demo *::after {
  box-sizing: border-box;
}

/* локальный сброс — только внутри прототипа */
.luxh2-demo p,
.luxh2-demo h1,
.luxh2-demo h2,
.luxh2-demo h3,
.luxh2-demo h4 { margin: 0; }
.luxh2-demo ul,
.luxh2-demo ol { margin: 0; padding: 0; list-style: none; }
.luxh2-demo img,
.luxh2-demo svg { display: block; max-width: 100%; }

.luxh2-demo a,
.luxh2-demo button,
.luxh2-demo input {
  font: inherit;
}

.luxh2-demo button {
  cursor: pointer;
}

.luxh2-stage {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Пустой блок-распорка, чтобы можно было проверить
   sticky-поведение шапки и появление compact-bar при скролле.
   Никакого контента — просто высота. */
.luxh2-scroll-space {
  display: block;
  width: 100%;
  height: 200vh;
}

.luxh2-header {
  position: relative;
  overflow: visible;
  border: 0;
  /* Первая шапка (ПК) — полностью непрозрачный фон, никакого просвечивания.
     Мобильная шапка в @media ниже переопределяется на --luxh2-bg-header (0.9). */
  background: var(--luxh2-bg-header-solid, #fffcf8);
  box-shadow:
    0 30px 70px rgba(103, 79, 54, 0.08),
    0 8px 24px rgba(103, 79, 54, 0.04),
    inset 0 1px 0 color-mix(in srgb, var(--luxh2-bg-card) 90%, #fff 10%);
  transition: box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.luxh2-header.is-under-compact {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.luxh2-header__topline {
  display: none;
}

.luxh2-bar__inner,
.luxh2-nav-wrap__inner {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding-inline: 32px;
}

.luxh2-bar__inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(360px, 1fr);
  align-items: center;
  gap: 20px;
  max-height: 96px;
  opacity: 1;
  transform: translateY(0);
  transform-origin: top center;
  overflow: visible;
  transition: max-height 0.34s ease, opacity 0.24s ease, transform 0.34s ease, padding 0.34s ease;
}

.luxh2-topmeta {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

/* Блок телефона в .luxh2-topmeta — текстовый, на ПК виден слева.
   На мобиле скрыт через !important в @media (max-width: 976px). */
.luxh2-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.luxh2-phone__icon {
  width: 22px;
  height: 22px;
  color: var(--luxh2-ink-4);
  flex: 0 0 auto;
}

.luxh2-phone__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.luxh2-phone__copy {
  display: grid;
  gap: 2px;
  line-height: 1.15;
}

.luxh2-phone__number {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--luxh2-ink-2);
  text-decoration: none;
  transition: color 0.2s ease;
}

.luxh2-phone__number:hover,
.luxh2-phone__number:focus-visible {
  color: var(--luxh2-accent);
  outline: 0;
}

.luxh2-phone__note {
  font-size: 11px;
  color: var(--luxh2-ink-4);
}

.luxh2-phone__note-icon {
  display: inline-block;
  margin-right: 2px;
  font-size: 11px;
  line-height: 1;
  vertical-align: -1px;
}

.luxh2-search__submit svg,
.luxh2-action__icon svg,
.luxh2-mobile__close svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.luxh2-logo,
.luxh2-service-nav a,
.luxh2-action,
.luxh2-main-nav__link,
.luxh2-mobile a {
  color: inherit;
  text-decoration: none;
}

.luxh2-logo {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 0;
}

.luxh2-logo__mark {
  width: 210px;
  height: 56px;
  color: var(--luxh2-ink-2);
  flex: 0 0 auto;
}

.luxh2-logo__mark svg {
  width: 100%;
  height: 100%;
}

.luxh2-tools {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.luxh2-search-trigger {
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--luxh2-rule-strong);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--luxh2-bg-card) 0%, var(--luxh2-bg-tint) 100%);
  color: var(--luxh2-ink-5);
  transition: color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.luxh2-search-trigger svg {
  width: 18px;
  height: 18px;
  margin: 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.luxh2-search-trigger:hover,
.luxh2-search-trigger[aria-expanded="true"] {
  color: var(--luxh2-accent);
  border-color: rgba(179, 58, 46, 0.35);
  box-shadow: 0 0 0 2px rgba(179, 58, 46, 0.06);
}

.luxh2-search {
  flex: 1 1 430px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--luxh2-rule-strong);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--luxh2-bg-card) 0%, var(--luxh2-bg-tint) 100%);
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--luxh2-bg-card) 94%, #fff 6%);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.luxh2-search:focus-within {
  border-color: rgba(179, 58, 46, 0.7);
  box-shadow:
    0 0 0 2px rgba(179, 58, 46, 0.08),
    0 6px 14px rgba(179, 58, 46, 0.04);
  background: var(--luxh2-bg-card);
}

.luxh2-search__submit {
  order: 2;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--luxh2-ink-5);
  flex: 0 0 auto;
}

.luxh2-search input {
  order: 1;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  outline: 0;
  font: inherit;
  font-size: 13px;
  color: var(--luxh2-ink-3);
}

.luxh2-search input::placeholder {
  color: var(--luxh2-ink-5);
}

/* Крестик очистки (Chrome/Safari/Edge) — красим в акцент #b33a2e.
   Перебиваем системный серый, подменяя нативную иконку SVG-крестиком. */
.luxh2-search input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  margin-left: 6px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b33a2e' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='5' x2='19' y2='19'/><line x1='19' y1='5' x2='5' y2='19'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.luxh2-search-flyout {
  display: none;
}

.luxh2-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.luxh2-action {
  display: grid;
  justify-items: center;
  gap: 3px;
  min-width: 56px;
  padding: 2px 3px;
  background: transparent;   /* сбрасываем дефолт <button> */
  border: 0;
  color: var(--luxh2-ink-3);
  transition: color 0.22s ease, transform 0.22s ease;
  border-radius: 8px;
  outline: 0;
}

.luxh2-action:focus-visible {
  outline: 2px solid var(--luxh2-accent);
  outline-offset: 2px;
}

.luxh2-action__icon {
  width: 23px;
  height: 23px;
  position: relative;
}

/* Бейдж количества на корзине — маленький красный кружок поверх иконки.
   Появляется через JS, но дефолтная цифра «2» уже зашита в HTML для демо. */
.luxh2-action__badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 17px;
  height: 17px;
  padding: 0 5px;
  background: var(--luxh2-accent);
  color: #fff;
  border-radius: 999px;
  font-family: var(--luxh2-sans);
  font-size: 10.5px;
  font-weight: 600;
  line-height: 17px;
  text-align: center;
  letter-spacing: 0;
  pointer-events: none;
  box-shadow: 0 0 0 2px var(--luxh2-bg-card);
}

.luxh2-action__label {
  font-size: 10px;
}

.luxh2-burger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(214, 204, 189, 0.95);
  border-radius: 50%;
  background: var(--luxh2-bg-soft);
  color: var(--luxh2-ink-3);
  box-shadow: 0 6px 16px -10px rgba(26,22,19,.25);
}

.luxh2-burger span {
  display: block;
  width: 16px;
  height: 1.6px;
  margin: 3px auto;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.luxh2-nav-wrap {
  border-top: 1px solid var(--luxh2-rule-strong);
  transition: border-color 0.28s ease, background 0.28s ease;
}

.luxh2-nav-wrap__inner {
  min-height: 46px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 16px;
  transition: min-height 0.32s ease, gap 0.28s ease, padding 0.28s ease;
}

.luxh2-nav-center {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.luxh2-service-nav {
  display: grid;
  gap: 2px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.28s ease, max-height 0.28s ease;
}

.luxh2-service-nav--top {
  position: relative;
  padding-left: 14px;
}

.luxh2-service-nav--top::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 28px;
  background: rgba(218, 206, 192, 0.95);
  transform: translateY(-50%);
}

.luxh2-service-nav a {
  font-size: 13px;
  color: var(--luxh2-ink-3);
}

.luxh2-main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}

.luxh2-search--compact {
  display: none;
}

.luxh2-main-nav__item {
  position: relative;
}

.luxh2-main-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 2px 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  color: var(--luxh2-ink-3);
  white-space: nowrap;
}

/* Прижимаем шевроны вплотную к словам, не трогая расстояние между пунктами:
   gap внутри ссылки уже 1px, плюс лёгкий отрицательный margin-left на самой
   галочке убирает остаточный визуальный отступ. */
.luxh2-main-nav__link .luxh2-main-nav__chevron {
  margin-left: -1px;
}

.luxh2-main-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: transparent;
  transition: background 0.22s ease;
}

.luxh2-main-nav__chevron {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.82;
  flex-shrink: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.luxh2-main-nav__item--sale .luxh2-main-nav__link {
  color: var(--luxh2-accent);
}

/* (chevron-стейты теперь объявлены ниже — отдельно для is-open и для @media hover) */

.luxh2-drop {
  position: absolute;
  top: calc(100% + 8px);
  left: -4px;
  min-width: 210px;
  padding: 8px 0;
  background: color-mix(in srgb, var(--luxh2-bg-card) 98%, transparent);
  border: 1px solid var(--luxh2-rule);
  box-shadow: 0 14px 40px -10px color-mix(in srgb, var(--luxh2-ink) 12%, transparent);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 25;
}

.luxh2-drop::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 18px;
}

.luxh2-drop a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  color: var(--luxh2-ink-3);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: background 0.22s ease, color 0.22s ease, padding-left 0.22s ease;
}

.luxh2-drop a:hover {
  background: var(--luxh2-bg-soft);
  color: var(--luxh2-ink);
  padding-left: 22px;
}

/* Открытие через is-open (по клику / по фокусу) — работает везде */
.luxh2-main-nav__item.is-open .luxh2-drop {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.luxh2-main-nav__item.is-open .luxh2-main-nav__chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.luxh2-main-nav__item.is-open > .luxh2-main-nav__link::after,
.luxh2-main-nav__item--sale.is-open > .luxh2-main-nav__link::after {
  background: var(--luxh2-accent);
}

/* :hover-эффекты — только на устройствах с реальным курсором */
@media (hover: hover) and (pointer: fine) {
  .luxh2-main-nav__item:hover .luxh2-drop {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .luxh2-main-nav__item:hover .luxh2-main-nav__chevron {
    transform: rotate(180deg);
    opacity: 1;
  }

  .luxh2-main-nav__link:hover::after,
  .luxh2-main-nav__item--sale .luxh2-main-nav__link:hover::after {
    background: var(--luxh2-accent);
  }

  .luxh2-phone__number:hover,
  .luxh2-service-nav a:hover,
  .luxh2-action:hover,
  .luxh2-main-nav__link:hover,
  .luxh2-mobile a:hover {
    color: var(--luxh2-ink);
  }

  .luxh2-action:hover {
    transform: translateY(-1px);
  }
}

.luxh2-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 22, 19, 0.52);
  z-index: 20;
}

.luxh2-compact-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 10px 18px 14px;
  background: var(--luxh2-bg-header);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(222, 214, 205, 0.7);
  box-shadow: 0 10px 24px rgba(67, 50, 31, 0.08);
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.28s ease, background 0.28s ease;
}

.luxh2-compact-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Внутренний контейнер compact-bar повторяет контентную рейку первой шапки
   (.luxh2-bar__inner): max 1600px + симметричные padding-inline 32px,
   чтобы иконки в обеих шапках стояли по одному и тому же правому краю. */
.luxh2-compact-bar__inner {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding-inline: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* Строка под меню: 3-колоночная сетка 1fr | auto | 1fr.
   Поиск садится в центральную auto-колонку (визуально по центру страницы),
   иконки — в правую 1fr с justify-self: end, ровно по правому краю рейки. */
.luxh2-compact-bar__row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.luxh2-compact-bar__row .luxh2-compact-bar__search {
  grid-column: 2;
  justify-self: center;
  flex: 0 0 400px;
  width: 400px;
  max-width: 100%;
}

.luxh2-compact-bar__row .luxh2-actions--compact {
  grid-column: 3;
  justify-self: end;
}

/* Иконки в compact-bar по размеру совпадают с первой шапкой:
   используем базовые .luxh2-action (min-width 56px) и .luxh2-action__icon (23×23),
   override-ов больше нет. Здесь только gap между иконками. */
.luxh2-actions--compact {
  gap: 6px;
}

.luxh2-main-nav--compact {
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.luxh2-main-nav--compact .luxh2-main-nav__link {
  font-size: 14px;
}

.luxh2-main-nav--compact .luxh2-main-nav__link::after {
  bottom: -6px;
}

.luxh2-main-nav--compact .luxh2-drop {
  z-index: 65;
}

.luxh2-compact-bar__search {
  flex: 0 0 auto;
  width: min(100%, 560px);
  min-height: 42px;
  padding: 0 14px;
}

.luxh2-mobile {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 90vw;
  max-width: 390px;
  height: 100vh;
  /* dvh учитывает динамическую панель адресной строки на iOS/Android.
     Fallback на 100vh уже выставлен выше — переопределяем там, где поддерживается. */
  height: 100dvh;
  padding: 12px 14px calc(28px + env(safe-area-inset-bottom, 0px));
  /* Скролл внутри меню при переполнении контентом, инерция на iOS,
     overscroll-behavior отключает «протекание» прокрутки на body. */
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background:
    radial-gradient(circle at 90% 10%, rgba(197,142,110,0.10), transparent 40%),
    linear-gradient(180deg, var(--luxh2-bg-card) 0%, var(--luxh2-bg-soft) 100%);
  border-right: 1px solid rgba(214, 204, 189, 0.95);
  border-radius: 0;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 16px 0 70px rgba(26,22,19,.22);
}

.luxh2-header[data-menu-open="true"] .luxh2-mobile {
  transform: translateX(0);
}

.luxh2-mobile__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.luxh2-mobile__head span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--luxh2-ink-4);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-weight: 500;
}

.luxh2-mobile__close {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(214, 204, 189, 0.95);
  border-radius: 50%;
  background: var(--luxh2-bg-soft);
  color: var(--luxh2-ink-3);
  box-shadow: 0 6px 16px -10px rgba(26,22,19,.25);
}

/* Блок «Телефон» в drawer — заменил собой бывшее поле поиска.
   Грид: инфо слева, иконка-CTA справа. Иконка пульсирует, чтобы
   подсказать, что по клику будет вызов. */
.luxh2-mobile__phone {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  margin: 14px 4px 10px;
  padding: 14px 14px 14px 18px;
  border: 1px solid var(--luxh2-rule-strong);
  border-radius: 18px;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(179, 58, 46, 0.07) 0%, transparent 55%),
    linear-gradient(180deg, var(--luxh2-bg-card) 0%, var(--luxh2-bg-tint) 100%);
  box-shadow:
    0 8px 22px -14px rgba(67, 50, 31, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.luxh2-mobile__phone-icon {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--luxh2-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  text-decoration: none;
  isolation: isolate;
  transition: transform 0.18s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow:
    0 8px 18px -6px rgba(179, 58, 46, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  animation: luxh2-phone-wiggle 3.4s ease-in-out infinite;
}

.luxh2-mobile__phone-icon:hover,
.luxh2-mobile__phone-icon:focus-visible {
  outline: 0;
  transform: scale(1.04);
  background: #c2402f;
  box-shadow:
    0 12px 22px -6px rgba(179, 58, 46, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.luxh2-mobile__phone-icon:active {
  transform: scale(0.96);
}

.luxh2-mobile__phone-icon svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 2;
}

/* Пульсирующие кольца вокруг иконки телефона. Два слоя со сдвигом
   фазы — создаёт ощущение «исходящего» сигнала. */
.luxh2-mobile__phone-icon-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--luxh2-accent);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: luxh2-phone-pulse 2.2s ease-out infinite;
}
.luxh2-mobile__phone-icon-pulse--late {
  animation-delay: 1.1s;
}

@keyframes luxh2-phone-pulse {
  0%   { transform: scale(0.95); opacity: 0.55; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* Лёгкое покачивание самой иконки — добавляет «звонящий» характер */
@keyframes luxh2-phone-wiggle {
  0%, 60%, 100% { transform: rotate(0deg); }
  65% { transform: rotate(-8deg); }
  70% { transform: rotate(8deg); }
  75% { transform: rotate(-6deg); }
  80% { transform: rotate(6deg); }
  85% { transform: rotate(-3deg); }
  90% { transform: rotate(0deg); }
}

@media (prefers-reduced-motion: reduce) {
  .luxh2-mobile__phone-icon,
  .luxh2-mobile__phone-icon-pulse { animation: none; }
}

.luxh2-mobile__phone-info {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.luxh2-mobile__phone-label {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--luxh2-ink-4);
}

.luxh2-mobile__phone-number {
  font-family: var(--luxh2-serif);
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--luxh2-ink);
  text-decoration: none;
  margin-top: 2px;
}

.luxh2-mobile__phone-number:hover,
.luxh2-mobile__phone-number:focus-visible {
  color: var(--luxh2-accent);
  outline: 0;
}

.luxh2-mobile__phone-hours {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 11.5px;
  color: var(--luxh2-ink-4);
  margin-top: 3px;
}

.luxh2-mobile__block,
.luxh2-mobile__panel {
  display: grid;
}

.luxh2-mobile__block a,
.luxh2-mobile__toggle,
.luxh2-mobile__panel a {
  padding: 14px 12px;
  border-bottom: 1px solid var(--luxh2-rule-soft);
  text-decoration: none;
}

.luxh2-mobile__toggle {
  width: 100%;
  text-align: left;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  background: transparent;
  color: var(--luxh2-ink-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.18s ease, background 0.18s ease;
  border-radius: 8px;
  margin: 0 -4px;
  padding: 14px 10px 14px 14px;
}

.luxh2-mobile__toggle:hover {
  background: rgba(179, 58, 46, 0.04);
  color: var(--luxh2-ink);
}

.luxh2-mobile__toggle::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(-45deg);
  opacity: 0.5;
  flex-shrink: 0;
  margin-right: 4px;
  transition: transform 0.26s cubic-bezier(.2,.7,.2,1), opacity 0.18s ease;
}

.luxh2-mobile__toggle:hover::after {
  opacity: 0.85;
}

.luxh2-mobile__accordion.is-open .luxh2-mobile__toggle {
  color: var(--luxh2-ink);
}
.luxh2-mobile__accordion.is-open .luxh2-mobile__toggle::after {
  transform: rotate(45deg);
  opacity: 1;
  color: var(--luxh2-accent);
}

.luxh2-mobile__panel {
  display: none;
  padding: 2px 0 10px 4px;
}

.luxh2-mobile__accordion.is-open > .luxh2-mobile__panel {
  display: grid;
}

.luxh2-mobile__panel a {
  padding: 9px 12px 9px 18px;
  border-bottom: none;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  color: var(--luxh2-ink-3);
  transition: color 0.18s ease, padding-left 0.18s ease;
}

.luxh2-mobile__panel a:hover {
  color: var(--luxh2-accent);
  padding-left: 22px;
}

.luxh2-mobile__block a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--luxh2-ink-2);
  letter-spacing: 0.01em;
  padding: 14px 14px;
  border-radius: 8px;
  margin: 0 -4px;
  transition: color 0.18s ease, background 0.18s ease;
}

.luxh2-mobile__block a:hover {
  background: rgba(179, 58, 46, 0.04);
  color: var(--luxh2-ink);
}

/*.luxh2-mobile__block--service {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--luxh2-rule);
}*/

/* MAX / VK — две карточки под телефоном */
.luxh2-mobile__messengers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 4px 14px;
}

.luxh2-mobile__messenger {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding: 8px 8px 8px 12px;
  border: 1px solid var(--luxh2-rule-strong);
  border-radius: 14px;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(179, 58, 46, 0.05) 0%, transparent 55%),
    linear-gradient(180deg, var(--luxh2-bg-card) 0%, var(--luxh2-bg-tint) 100%);
  box-shadow:
    0 8px 22px -14px rgba(67, 50, 31, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.luxh2-mobile__messenger:hover,
.luxh2-mobile__messenger:focus-visible {
  outline: 0;
  border-color: rgba(179, 58, 46, 0.35);
  box-shadow:
    0 10px 24px -12px rgba(67, 50, 31, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}

.luxh2-mobile__messenger-label {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 10.5px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--luxh2-ink-3);
  min-width: 0;
}

.luxh2-mobile__messenger:hover .luxh2-mobile__messenger-label,
.luxh2-mobile__messenger:focus-visible .luxh2-mobile__messenger-label {
  color: var(--luxh2-ink);
}

.luxh2-mobile__messenger-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid var(--luxh2-rule);
  background: var(--luxh2-bg-card);
  color: var(--luxh2-ink-3);
  box-shadow: 0 6px 14px -10px rgba(26, 22, 19, 0.22);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.luxh2-mobile__messenger-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.luxh2-mobile__messenger--vk .luxh2-mobile__messenger-icon {
  color: #0077ff;
}

.luxh2-mobile__messenger--max .luxh2-mobile__messenger-icon {
  color: #7b3fe4;
}

.luxh2-mobile__messenger--vk:hover .luxh2-mobile__messenger-icon,
.luxh2-mobile__messenger--vk:focus-visible .luxh2-mobile__messenger-icon {
  border-color: rgba(0, 119, 255, 0.35);
  background: rgba(0, 119, 255, 0.06);
}

.luxh2-mobile__messenger--max:hover .luxh2-mobile__messenger-icon,
.luxh2-mobile__messenger--max:focus-visible .luxh2-mobile__messenger-icon {
  border-color: rgba(123, 63, 228, 0.35);
  background: rgba(123, 63, 228, 0.06);
}

@media (max-width: 1380px) {
  .luxh2-bar__inner {
    grid-template-columns: minmax(180px, 1fr) auto minmax(280px, 1fr);
    gap: 18px;
  }

  .luxh2-tools > .luxh2-search {
    flex-basis: 320px;
  }

  .luxh2-main-nav__link {
    font-size: 16px;
  }
}

@media (max-width: 1380px) and (min-width: 977px) {
  .luxh2-search-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .luxh2-tools > .luxh2-search {
    display: none;
  }

  .luxh2-compact-bar__search {
    display: flex;
  }

  .luxh2-search-flyout {
    position: absolute;
    left: 50%;
    top: 100%;
    z-index: 35;
    display: block;
    width: min(100%, 620px);
    padding-top: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-8px);
    transition: opacity 0.22s ease, transform 0.24s ease;
  }

  .luxh2-search-flyout.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .luxh2-search--flyout {
    display: flex;
    min-height: 48px;
    padding-inline: 16px;
    box-shadow:
      0 16px 34px rgba(67, 50, 31, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.94);
  }

  .luxh2-search-flyout::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -8px;
    height: 14px;
  }
}

@media (max-width: 976px) {
  .luxh2-header.is-under-compact {
    opacity: 1;
    pointer-events: auto;
  }

  /* Шапка прилипает к верху на мобиле: compact-bar тут скрыт,
     значит основная шапка сама должна оставаться видимой при скролле.
     Убрали backdrop-filter — он создаёт containing block для fixed
     потомков (это ломало search-flyout).
     Фон — полностью непрозрачный #fffcf8 (как первая шапка на ПК),
     прозрачность 0.94 без блюра ничего полезного не давала.
     Тень двухслойная: 1px тёплая граница снизу для гигиены границы
     и мягкая длинная коричневая дымка для ощущения «слоя». */
  .luxh2-header {
    position: sticky;
    top: 0;
    z-index: 25;
    background: var(--luxh2-bg-header-solid, #fffcf8);
    box-shadow:
      0 1px 0 rgba(218, 206, 192, 0.6),
      0 6px 14px rgba(103, 79, 54, 0.05);
  }

  .luxh2-bar__inner {
    position: relative;
    display: flex;            /* было block — мешало вертикально центрировать лого */
    align-items: center;
    justify-content: center;
    min-height: 64px;
  }

  .luxh2-topmeta {
    display: contents;
  }

  .luxh2-phone,
  .luxh2-service-nav--top,
  .luxh2-tools > .luxh2-search {
    display: none !important;
  }

  /* Search-flyout на мобиле: открывается полосой под шапкой по клику на лупу.
     position: fixed гарантирует, что flyout не зажмётся в overflow родителей.
     Top = высота sticky-шапки (64px = min-height .luxh2-bar__inner). */
  .luxh2-search-flyout {
    position: fixed;
    left: 0;
    right: 0;
    top: 64px;
    z-index: 40;
    display: block;
    padding: 12px 14px 14px;
    background: var(--luxh2-bg-header);
    border-bottom: 1px solid var(--luxh2-rule);
    box-shadow: 0 14px 26px rgba(40, 28, 16, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.22s ease, transform 0.24s ease, visibility 0s linear 0.24s;
  }

  .luxh2-search-flyout.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.22s ease, transform 0.24s ease, visibility 0s linear 0s;
  }

  .luxh2-search--flyout {
    display: flex;
    min-height: 44px;
    padding-inline: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
  }

  /* iOS Safari зумит viewport, если у input font-size < 16px.
     Зум растягивает страницу за пределы экрана. Поднимаем до 16px
     только на мобиле — это устраняет авто-зум. */
  .luxh2-search input,
  .luxh2-search--flyout input {
    font-size: 16px;
  }

  .luxh2-tools {
    display: contents;
  }

  .luxh2-burger {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    z-index: 2;
  }

  .luxh2-search-trigger {
    position: absolute;
    left: 72px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-left: 0;
    z-index: 2;
  }

  .luxh2-actions {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0;
    justify-self: end;
    z-index: 2;
  }

  .luxh2-action {
    min-width: 40px;
    padding: 2px 2px;
  }

  .luxh2-action__label {
    display: none;
  }

  .luxh2-action__icon {
    width: 26px;
    height: 26px;
  }

  /* --- Скрываем нижнюю навигацию категорий: на мобиле меню живёт в бургере --- */
  .luxh2-nav-wrap,
  .luxh2-compact-bar {
    display: none !important;
  }

  /* --- Логотип не должен наезжать на бургер слева и actions справа.
     Паддинги симметричны (по факту ширины левой и правой групп иконок ≈ одинаковы),
     чтобы лого визуально стоял по центру viewport, а не по центру оставшегося поля. --- */
  .luxh2-bar__inner {
    padding-inline: 0;
    padding-left: 120px;
    padding-right: 120px;
  }

  .luxh2-logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .luxh2-logo__mark {
    width: 100%;
    max-width: 160px;
    height: auto;
    aspect-ratio: 218 / 59;
  }

  .luxh2-logo__caption {
    display: none;
  }
}

@media (max-width: 420px) {
  .luxh2-bar__inner {
    padding-left: 104px;
    padding-right: 104px;
  }

  .luxh2-logo__mark {
    width: 100%;
    max-width: 140px;
  }
}

/* ── Интеграция в шаблон newgold_lux (вне демо-страницы прототипа) ── */
#site-header-root.luxh2-demo {
  /* На демо-странице .luxh2-demo = min-height:100vh для скролла; на сайте — только шапка */
  position: sticky;
  top: 0;
  z-index: 500;
  width: 100%;
  min-height: 0;
  height: auto;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: var(--luxh2-ink-2);
  transition: none;
}

#site-header-root .luxh2-logo__mark svg path {
  fill: var(--logo-color, currentColor);
}

#site-header-root.luxh2-demo.site-header--hidden {
  transform: none;
}

#site-header-root .luxh2-bar__inner,
#site-header-root .luxh2-nav-wrap,
#site-header-root .luxh2-compact-bar {
  font-family: var(--luxh2-sans);
}

#site-header-root .luxh2-service-nav a,
#site-header-root .luxh2-action__label,
#site-header-root .luxh2-search input,
#site-header-root .luxh2-compact-bar__search input,
#site-header-root .luxh2-compact-bar .luxh2-action__label,
#site-header-root .luxh2-main-nav .luxh2-main-nav__link {
  letter-spacing: 0.01em;
}

#site-header-root.luxh2-demo .luxh2-action--fav.is-has-items {
  color: var(--luxh2-accent);
}

#site-header-root.luxh2-demo .luxh2-action--fav.is-has-items .luxh2-action__icon svg path {
  fill: var(--luxh2-accent);
}

#site-header-root .luxh2-action__badge,
#site-header-root [data-luxh2-cart-badge],
#site-header-root [data-luxh2-fav-badge] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  box-sizing: border-box;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

#site-header-root.luxh2-demo .luxh2-action__badge.hdr-cart-count--pulse,
#site-header-root.luxh2-demo .luxh2-action__badge.hdr-fav-count--pulse {
  animation: luxh2-badge-pop 0.55s cubic-bezier(.2, .85, .2, 1);
}

@keyframes luxh2-badge-pop {
  0%   { transform: scale(0.65); opacity: 0; }
  55%  { transform: scale(1.12); opacity: 1; }
  100% { transform: scale(1); }
}

/* Корневой пункт с выпадашкой: название — ссылка, шеврон — открытие подменю */
#site-header-root .luxh2-main-nav__head {
  display: inline-flex;
  align-items: center;
  gap: 0;
  position: relative;
}

#site-header-root .luxh2-main-nav__head .luxh2-main-nav__link {
  text-decoration: none;
}

#site-header-root .luxh2-main-nav__drop-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  padding: 2px 0;
  border: 0;
  background: transparent;
  color: var(--luxh2-ink-3);
  cursor: pointer;
  line-height: 1;
}

#site-header-root .luxh2-main-nav__item--sale .luxh2-main-nav__drop-toggle {
  color: var(--luxh2-accent);
}

#site-header-root .luxh2-main-nav__item.is-open > .luxh2-main-nav__head .luxh2-main-nav__link::after,
#site-header-root .luxh2-main-nav__item--sale.is-open > .luxh2-main-nav__head .luxh2-main-nav__link::after {
  background: var(--luxh2-accent);
}

@media (hover: hover) and (pointer: fine) {
  #site-header-root .luxh2-main-nav__item:hover .luxh2-main-nav__head .luxh2-main-nav__link::after,
  #site-header-root .luxh2-main-nav__item--sale:hover .luxh2-main-nav__head .luxh2-main-nav__link::after {
    background: var(--luxh2-accent);
  }

  #site-header-root .luxh2-main-nav__drop-toggle:hover {
    color: var(--luxh2-ink);
  }

  #site-header-root .luxh2-main-nav__item--sale .luxh2-main-nav__drop-toggle:hover {
    color: var(--luxh2-accent);
  }
}

/* Мега-меню: до 4 колонок (данные getTree), ширина по числу колонок */
#site-header-root .luxh2-drop--columns {
  width: max-content;
  max-width: min(92vw, 820px);
  min-width: max(210px, min(92vw, calc(var(--luxh2-drop-cols, 1) * 196px + 28px)));
  padding: 10px 0 14px;
}

#site-header-root .luxh2-drop__all {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px 11px;
  margin: 0;
  color: var(--luxh2-ink-4);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid var(--luxh2-rule-soft);
}

#site-header-root .luxh2-drop__all:hover {
  background: var(--luxh2-bg-soft);
  color: var(--luxh2-accent);
}

/* Десктоп: пунктирное подчёркивание и стрелка у «Смотреть раздел» */
@media (min-width: 977px) {
  #site-header-root .luxh2-drop__all {
    text-decoration: underline;
    text-decoration-style: dashed;
    text-decoration-color: currentColor;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    gap: 6px;
  }

  #site-header-root .luxh2-drop__all::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    background-color: currentColor;
    opacity: 0.55;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 8L8 2M4 2h4v4'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 8L8 2M4 2h4v4'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  #site-header-root .luxh2-drop__all:hover::after {
    opacity: 1;
    transform: translate(1px, -1px);
  }
}

#site-header-root .luxh2-drop__columns {
  display: grid;
  grid-template-columns: repeat(var(--luxh2-drop-cols, 4), minmax(160px, 200px));
  gap: 0 6px;
  width: max-content;
  max-width: 100%;
}

#site-header-root .luxh2-drop__col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

#site-header-root .luxh2-drop__col a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  color: var(--luxh2-ink-3);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: background 0.22s ease, color 0.22s ease, padding-left 0.22s ease;
}

#site-header-root .luxh2-drop__col a:hover {
  background: var(--luxh2-bg-soft);
  color: var(--luxh2-ink);
  padding-left: 22px;
}

/* Десктоп и планшет: 1–3 пункта — одна строка с «Смотреть раздел» */
@media (min-width: 977px) {
  #site-header-root .luxh2-drop--inline {
    min-width: 0;
    padding: 0;
  }

  #site-header-root .luxh2-drop--inline .luxh2-drop__row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: max-content;
    max-width: min(92vw, 920px);
  }

  #site-header-root .luxh2-drop--inline .luxh2-drop__all {
    flex: 0 0 auto;
    border-bottom: none;
    border-right: 1px solid var(--luxh2-rule-soft);
    white-space: nowrap;
  }

  #site-header-root .luxh2-drop--inline .luxh2-drop__link {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 10px;
    padding: 9px 18px;
    color: var(--luxh2-ink-3);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: background 0.22s ease, color 0.22s ease, padding-left 0.22s ease;
  }

  #site-header-root .luxh2-drop--inline .luxh2-drop__link:hover {
    background: var(--luxh2-bg-soft);
    color: var(--luxh2-ink);
    padding-left: 22px;
  }
}

/* Десктоп и планшет (≥977px): мега-меню по центру пункта, шеврон как в прототипе */
@media (min-width: 977px) {
  #site-header-root .luxh2-main-nav__head {
    gap: 1px;
  }

  #site-header-root .luxh2-main-nav__item--has-drop > .luxh2-drop.luxh2-drop--columns {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-6px);
  }

  #site-header-root .luxh2-main-nav__item.is-open > .luxh2-drop.luxh2-drop--columns {
    transform: translateX(-50%) translateY(0);
  }
}

@media (min-width: 977px) and (hover: hover) and (pointer: fine) {
  #site-header-root .luxh2-main-nav__item--has-drop:hover > .luxh2-drop.luxh2-drop--columns {
    transform: translateX(-50%) translateY(0);
  }
}
