/* ================================================================
   ОБЩЕЕ: хедер прозрачный → белый
   ================================================================ */


.elementor-location-header.aline-header-white .site-header {
  background-color: #fff !important;
}
.site-header {
    transition: background-color 0s !important;
}

/* ================================================================
   МОБИЛЬНОЕ МЕНЮ (≤1024px)
   ================================================================ */

/* Триггер (гамбургер) */
.aline-mob-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none !important;
  padding: 0 !important;
  width: 22px;
  height: 22px;
}
.aline-mob-trigger svg {
  display: block;
  min-width: 22px !important;
  min-height: 22px !important;
  fill: #171717 !important;
}

/* Корневая обёртка меню */
.aline-mob-menu {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 99998;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Экраны */
.aline-mob-screens {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.3s ease;
  overflow: hidden;
  flex: 1;
}
.aline-mob-screens.at-second {
  transform: translateX(-50%);
}
.aline-mob-screen {
  width: 50%;
  height: 100%;
  overflow-y: auto;
  flex-shrink: 0;
  padding: 32px 0;
  box-sizing: border-box;
}

/* Первый экран: пункты верхнего уровня */
.aline-mob-root-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  margin-bottom: 24px;
  font-family: Rawline, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: #171717;
  cursor: pointer;
}
.aline-mob-root-item:last-child { margin-bottom: 0; }
.aline-mob-chevron {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Второй экран: шапка «< МАГАЗИН» */
.aline-mob-screen2-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 24px;
  font-family: Rawline, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  background: #fff;
}
.aline-mob-back-arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Аккордеон */
.aline-mob-acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-family: Rawline, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  color: #171717;
}
.aline-mob-acc-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.aline-mob-acc-item.open .aline-mob-acc-icon {
  transform: rotate(180deg);
}
.aline-mob-acc-body {
  display: none;
  padding: 16px 24px 20px;
}
.aline-mob-acc-item.open .aline-mob-acc-body {
  display: block;
}
.aline-mob-acc-body a {
  display: block;
  margin-bottom: 10px;
  font-family: Rawline, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1em;
  text-transform: uppercase;
  color: #171717;
  text-decoration: none;
}
.aline-mob-acc-body a:last-child { margin-bottom: 0; }

/* Текстовые блоки (адреса) */
.aline-mob-acc-body p {
  font-family: Rawline, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.aline-mob-acc-body p:last-child { margin-bottom: 0; }

/* Кнопка «Связаться» */
.aline-mob-btn {
  display: inline-block !important;
  margin: 8px 0 16px;
  padding: 8px 16px;
  font-family: Rawline, sans-serif;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: #171717;
  border: 1px solid #000;
  line-height: 1em;
}
.aline-mob-btn:last-child { margin-bottom: 0; }

/* Outlet красный */
.aline-mob-acc-trigger.outlet-trigger { color: #cc0000; }
.aline-mob-acc-trigger.outlet-trigger .aline-mob-acc-icon svg path { fill: #cc0000; }

/* На десктопе скрываем мобильные элементы */
@media (min-width: 1025px) {
  .aline-mob-trigger { display: none !important; }
  .aline-mob-menu   { display: none !important; }
}

/* ================================================================
   ДЕСКТОПНОЕ МЕНЮ (>1024px)
   ================================================================ */

@media (max-width: 1024px) {
  .aline-desk-nav { display: none !important; }
}

.aline-desk-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  position: static;
}

.aline-desk-item {
  position: static;
}

.aline-desk-trigger {
  display: flex;
  align-items: center;
  font-family: Rawline, sans-serif;
  font-size: 13px!important;
  font-weight: 700!important;
  line-height: 1em!important;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: #171717!important;
  cursor: pointer;
  background: none!important;
  border: none!important;
  padding: 0!important;
  white-space: nowrap;
}

/* Дропдаун — полноширинная панель */
.aline-desk-dropdown {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 99990;
  padding: 40px 40px 48px;
  box-sizing: border-box;
}

.aline-desk-item.is-open > .aline-desk-dropdown {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

/* Колонка */
.aline-desk-col {
  min-width: 0;
  padding-right: 24px;
  box-sizing: border-box;
}
.aline-desk-col:last-child { padding-right: 0; }

/* Заголовок колонки */
.aline-desk-col-title {
  display: block;
  font-family: Rawline, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1em;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #171717;
  text-decoration: none;
  margin-bottom: 24px;
}

/* Ссылки в колонке */
.aline-desk-col a:not(.aline-desk-col-title):not(.aline-desk-btn) {
  display: block;
  font-family: Rawline, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2em;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #171717;
  text-decoration: none;
  margin-bottom: 4px;
}

.aline-desk-col a:not(.aline-desk-col-title):not(.aline-desk-btn):first-of-type {
  margin-bottom: 30px;
}

.aline-desk-col-others a:not(.aline-desk-col-title):not(.aline-desk-btn):first-of-type {
  margin-bottom: 4px;
}

.aline-desk-col-collections a:not(.aline-desk-col-title):not(.aline-desk-btn):first-of-type {
  margin-bottom: 4px;
}

.aline-desk-col-collections a,
.aline-mob-col-collections a {
  font-weight: 700 !important;

}

/* Outlet — красный заголовок */
.aline-desk-col-title.outlet { color: #cc0000; }

/* Блок адреса */
.aline-desk-address {
  font-family: Rawline, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2em;
  text-transform: uppercase;
  color: #171717;
  margin-bottom: 10px;
}
.aline-desk-address strong { font-weight: 700; }

/* Кнопка «Связаться» десктоп */
.aline-desk-btn {
  display: inline-block !important;
  margin-bottom: 24px;
  padding: 6px 14px;
  font-family: Rawline, sans-serif;
  font-size: 10px!important;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  color: #171717 !important;
  border: 1px solid #000;
  line-height: 1.2em;
}
.aline-desk-btn:last-child { margin-bottom: 0; }