﻿/* header styles start */
/* header.php: Header */
.wt-header {
  /* padding: 0 var(--wt-page-padding); */
  position: sticky;
  top: 0;
  z-index: 9998;
  background: var(--wt-bg-base);
  border-bottom: 0;
}

body main#content.site-main,
body .site-main {
  position: relative;
  z-index: 1;
}

.wt-header__inner {
  height: var(--wt-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  /* max-width: var(--wt-container-width); */
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.wt-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  min-width: 0;
  max-width: 1152px;
}

.wt-header__nav-left,
.wt-header__nav-right {
  min-width: 0;
}

.wt-header__nav-left {
  display: flex;
  justify-content: flex-start;
  flex: 0 1 auto;
}

.wt-header__nav-right {
  display: flex;
  justify-content: flex-end;
  flex: 0 1 auto;
}

.wt-burger {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0 !important;
  background: transparent !important;
  padding: 0;
  cursor: pointer;
  border-radius: 10px;
  color: var(--wt-text) !important;
  box-shadow: none !important;

  flex-grow: 1;
  justify-content: flex-start;
}
.wt-burger:hover {
  background: var(--wt-color-text-06);
}
.wt-burger img {
  width: 19px;
  height: 20px;
  display: block;
}

.wt-burger--menu {
  display: none;
}

.wt-nav {
  min-width: 0;
  font-size: 20px !important;
}

.wt-menu {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.wt-menu li,
.wt-menu .sub-menu li {
  list-style: none;
}

.sub-menu {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wt-menu a {
  color: var(--wt-text);
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  font-family: var(--wt-font);
  line-height: 1;
  letter-spacing: 0.2px;
  transition: opacity 0.15s ease;
}
.wt-menu a:hover {
  opacity: 0.75;
}

.wt-menu li.menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wt-menu li.menu-item-has-children > a:after {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/contain no-repeat;
  opacity: 0.8;
}

.wt-menu > li > a {
  position: relative;
  border-bottom: 2px solid transparent;
  transition:
    border-color 0.15s ease,
    opacity 0.15s ease;
}
.wt-menu > li:hover > a,
.wt-menu > li.current-menu-item > a {
  opacity: 1;
  border-bottom-color: var(--wt-black);
}

.wt-menu li {
  position: relative;
}
.wt-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  margin-top: 1px;
  left: 0;
  min-width: 180px;
  padding: 8px 0;
  margin: 0;
  background: var(--wt-bg-base);
  border: none;
  border-radius: 0;

  z-index: 9999;
}
.wt-menu .sub-menu::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
  background: transparent;
  pointer-events: none;
}
.wt-menu li:hover > .sub-menu {
  display: block;
}

.wt-menu .sub-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px 10px 14px;
  border-radius: 0;
  white-space: nowrap;
  font-size: inherit;
  font-weight: inherit;
  font-family: var(--wt-font);
  border-left: 2px solid transparent;
  transition:
    border-color 0.15s ease,
    opacity 0.15s ease;
}
.wt-menu .sub-menu a:hover {
  background: transparent;
  opacity: 1;
  border-left-color: var(--wt-black);
}

.wt-menu .sub-menu .sub-menu {
  top: -8px;
  margin-top: 0;
  left: calc(100%);
  border-top: none;
  border-left: none;
  box-shadow: none;
  padding: 8px 0;
  min-height: calc(100% + 16px);
}
.wt-menu .sub-menu .sub-menu::before {
  top: 0;
  bottom: 0;
  left: -15px;
  width: 15px;
  height: 100%;
  right: auto;
}
.wt-menu .sub-menu li.menu-item-has-children > a:after {
  transform: rotate(-90deg);
}

.wt-header__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--wt-text);
  flex: 0 0 auto;
  min-width: 180px;
  font-weight: 700;

  flex-grow: 1;
}
.wt-header__drawer-title {
  letter-spacing: 0.2px;
}
.wt-header__drawer-spacer {
  height: 14px;
}
.custom-logo-link {
  display: flex;
  align-items: center;
}
.wt-header .wt-header__logo .wt-header__logo-img {
  height: 34px !important;
  width: auto !important;
  display: block;
  max-width: none !important;
}

.wt-header__logo-text {
  letter-spacing: 0.5px;
  line-height: 1;
  color: var(--wt-text);
  text-transform: uppercase;
}
.wt-header__logo-text span {
  font-size: 0.65em;
  font-weight: inherit;
  text-transform: none;
  margin: 0 4px;
}

.wt-header__phone {
  color: var(--wt-text);
  text-decoration: none;
  font-family: var(--wt-font);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;

  flex-grow: 1;
  text-align: center;
}

.wt-header__phone:hover {
  opacity: 0.75;
}

.wt-header__icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wt-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  text-decoration: none;
  color: var(--wt-text);
}
.wt-icon:hover {
  opacity: 0.75;
}
.wt-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.wt-icon--cart {
  position: relative;
}

.wt-cart-badge {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-30%, -15%);
  width: 20px;
  height: 20px;
  border-radius: 50% !important;
  background: #fff;
  color: #2d2a2d;
  border: 1px solid #2d2a2d;
  box-shadow: 0 0 0 0.5px #2d2a2d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
  box-sizing: border-box;
}

.wt-cart-badge.is-empty {
  display: none;
}

.wt-header__promo {
  margin: 0 -30px;
  background: var(--wt-color-danger);
  position: relative;
  z-index: 0;
}

.wt-header__promo-inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  color: var(--wt-white);
  text-align: center;
  font-family: var(--wt-font);
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.wt-search {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: none;
}
.wt-search.is-open {
  display: block;
}
.wt-search__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 42, 45, 0.16);
  backdrop-filter: blur(6px);
}
.wt-search__dialog {
  position: absolute;
  top: calc(var(--wt-header-h) + 14px);
  left: 50%;
  right: auto;
  width: min(calc(100vw - 32px), var(--wt-container-width));
  padding: 0 16px;
  background: transparent;
  z-index: 2;
  transform: translateX(-50%);
}
.wt-search__form {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 68px;
  align-items: stretch;
  background: linear-gradient(
    180deg,
    rgba(245, 245, 242, 0.98) 0%,
    rgba(255, 255, 255, 0.98) 100%
  );
  border: 1px solid var(--wt-color-accent-soft-35);
  border-radius: 22px;
  min-height: 72px;
  box-shadow: 0 18px 44px rgba(45, 42, 45, 0.14);
  overflow: hidden;
  animation: wt-search-drop 0.24s ease;
}
.wt-search__close,
.wt-search__submit {
  width: 100%;
  min-height: 72px;
  border: 0 !important;
  background: transparent !important;
  color: var(--wt-color-text) !important;
  box-shadow: none !important;
  padding: 0 !important;
  position: relative;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}
.wt-search__close:hover,
.wt-search__submit:hover {
  background: rgba(187, 133, 140, 0.1) !important;
  color: var(--wt-color-accent) !important;
}
.wt-search__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transform-origin: center;
  border-radius: 999px;
}
.wt-search__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.wt-search__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.wt-search__input {
  width: 100%;
  border: 0;
  border-left: 1px solid var(--wt-color-accent-soft-20);
  border-right: 1px solid var(--wt-color-accent-soft-20);
  background: transparent;
  color: var(--wt-color-text);
  min-height: 72px;
  padding: 0 28px;
  font-size: 20px;
  font-family: var(--wt-font);
  letter-spacing: 0.01em;
  line-height: 1;
  outline: none;
}
.wt-search__input::placeholder {
  color: var(--wt-color-text-50);
}
.wt-search__submit img {
  width: 26px;
  height: 26px;
  display: block;
  margin: 0 auto;
  opacity: 0.92;
}
.wt-search__input:focus {
  box-shadow: inset 0 0 0 1px var(--wt-color-accent-soft-35);
}

@keyframes wt-search-drop {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wt-header__decor {
  display: none;
}

.wt-header-decor-block {
  position: fixed;
  top: calc(var(--wt-header-h) + 14px);
  right: 0;
  z-index: 1;
  pointer-events: none;
  padding: 0;
}

.wt-header-decor-block__image {
  display: block;
  max-width: min(24vw, 360px);
  height: auto;
}

@media (max-width: 1200px) {
  .wt-header {
    padding: 0 20px;
  }

  .wt-header__inner {
    gap: 18px;
  }

  .wt-header__content {
    gap: 18px;
    max-width: none;
  }

  .wt-menu {
    gap: 18px;
  }

  .wt-menu a {
    font-size: 15px;
  }

  .wt-header__logo {
    min-width: 160px;
  }

  .wt-header .wt-header__logo .wt-header__logo-img {
    height: 30px !important;
  }

  .wt-header__phone {
    display: none;
  }

  .wt-header__icons {
    gap: 6px;

    flex-grow: 1;
    justify-content: flex-end;
  }

  .wt-icon {
    width: 26px;
    height: 26px;
  }

  .wt-header-decor-block__image {
    max-width: min(22vw, 280px);
  }
}

@media (max-width: 767px) {
  .wt-header-decor-block {
    display: none;
  }
}

/* header styles end */
/* burger-category-drawer styles start */
/* burger-category-drawer.php: Burger Category Drawer */
.wt-catdrawer .wt-drawer__backdrop {
  background: var(--wt-black);
  opacity: 0.16;
}
.wt-catdrawer__panel {
  position: absolute;
  top: var(--wt-catdrawer-top, var(--wt-header-h));
  left: var(--wt-catdrawer-left, 0px);
  width: min(1120px, calc(100vw - var(--wt-catdrawer-left, 0px) - 24px));
  min-width: 1024px;
  height: auto;
  max-height: 728px !important;
  background:
    linear-gradient(
      180deg,
      rgba(244, 246, 241, 0.92) 0%,
      rgba(255, 255, 255, 0.98) 18%
    ),
    var(--wt-white);
  border: 1px solid rgba(45, 42, 45, 0.1);
  border-radius: 28px !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 26px 60px rgba(45, 42, 45, 0.16);
}
.wt-catdrawer__top {
  min-height: 74px;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(45, 42, 45, 0.08);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}
.wt-catdrawer__top strong {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}
.wt-catdrawer__close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(45, 42, 45, 0.12) !important;
  background: rgba(255, 255, 255, 0.88) !important;
  color: var(--wt-color-text) !important;
  cursor: pointer;
  padding: 0 !important;
  box-shadow: none !important;
}
.wt-catdrawer__close:hover {
  background: rgba(187, 133, 140, 0.08) !important;
  border-color: rgba(187, 133, 140, 0.32) !important;
}
.wt-catdrawer__close svg {
  width: 18px;
  height: 18px;
  display: block;
  margin: 0 auto;
}
.wt-catdrawer__grid {
  min-height: 728px !important;
  min-height: 0;
  flex: 1;
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr) 292px;
}
.wt-catdrawer__tabs {
  border-right: 1px solid rgba(45, 42, 45, 0.08);
  padding: 18px 0;
  overflow: auto;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(244, 246, 241, 0.76) 100%
  );
}
.wt-catdrawer__tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--wt-color-text);
  padding: 12px 26px 12px 22px;
  margin-right: 12px;
  border-left: 3px solid transparent;
  gap: 14px;
}
.wt-catdrawer__tab:hover,
.wt-catdrawer__tab.is-active {
  border-left-color: var(--wt-color-accent);
  background: rgba(187, 133, 140, 0.08);
}
.wt-catdrawer__tabLabel {
  font-size: 16px;
  line-height: 1.25;
}
.wt-catdrawer__tab.is-active .wt-catdrawer__tabLabel {
  font-weight: 400;
}
.wt-catdrawer__tabArrow {
  opacity: 0.55;
  font-size: 18px;
  line-height: 1;
}
.wt-catdrawer__content {
  padding: 28px 30px 30px;
  overflow: auto;
}
.wt-catdrawer__pane {
  display: none;
}
.wt-catdrawer__pane.is-active {
  display: block;
}
.wt-catdrawer__title {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--wt-color-text);
  margin-bottom: 22px;
  font-weight: 400;
}
.wt-catdrawer__subgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}
.wt-catdrawer__sub {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--wt-color-text);
  padding: 12px 14px;
  min-height: 88px;
  border: 1px solid rgba(45, 42, 45, 0.08);
  background: rgba(255, 255, 255, 0.78);
}
.wt-catdrawer__sub:hover {
  border-color: rgba(187, 133, 140, 0.28);
  background: rgba(187, 133, 140, 0.06);
}
.wt-catdrawer__subImg {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(45, 42, 45, 0.08);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 72px;
  background:
    radial-gradient(
      circle at top left,
      rgba(187, 133, 140, 0.12),
      transparent 52%
    ),
    linear-gradient(180deg, #f7f6f3 0%, #efede7 100%);
}
.wt-catdrawer__subImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wt-catdrawer__subText {
  font-size: 15px;
  line-height: 1.3;
}
.wt-catdrawer__subImgPh {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(45, 42, 45, 0.14);
  position: relative;
}
.wt-catdrawer__subImgPh::before,
.wt-catdrawer__subImgPh::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border: 1px solid rgba(45, 42, 45, 0.1);
}
.wt-catdrawer__subImgPh::before {
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
}
.wt-catdrawer__subImgPh::after {
  width: 6px;
  height: 6px;
  border-radius: 50% !important;
  top: 8px;
  left: 8px;
  right: auto;
  bottom: auto;
}
.wt-catdrawer__preview {
  border-left: 1px solid rgba(45, 42, 45, 0.08);
  padding: 28px 26px 30px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.84) 0%,
    rgba(244, 246, 241, 0.88) 100%
  );
  overflow: auto;
}
.wt-catdrawer__previewPane {
  display: none;
}
.wt-catdrawer__previewPane.is-active {
  display: block;
}
.wt-catdrawer__previewPane img,
.wt-catdrawer__previewPh {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(45, 42, 45, 0.08);
  display: block;
  background:
    radial-gradient(
      circle at 24% 20%,
      rgba(187, 133, 140, 0.18),
      transparent 36%
    ),
    linear-gradient(145deg, #f8f7f4 0%, #f0ede7 100%);
}
.wt-catdrawer__previewPh {
  position: relative;
}
.wt-catdrawer__previewPh::before,
.wt-catdrawer__previewPh::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(187, 133, 140, 0.22);
  border-radius: 50% !important;
}
.wt-catdrawer__previewPh::before {
  inset: 18% 18%;
}
.wt-catdrawer__previewPh::after {
  inset: 32% 32%;
}
.wt-catdrawer__empty {
  padding: 28px;
}

.wt-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.wt-drawer.is-open {
  display: block;
}
.wt-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: var(--wt-black);
}
.wt-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: min(360px, 92vw);
  background: var(--wt-bg-base);
  padding: 18px 18px 22px;
  overflow: auto;
  box-shadow: var(--wt-shadow-xl);
}
.wt-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--wt-border);
  margin-bottom: 14px;
}
.wt-drawer__close {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  color: var(--wt-text);
}
.wt-drawer__close:hover {
  background: var(--wt-black);
}

.wt-drawer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wt-drawer__menu a {
  display: flex;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--wt-text);
  font-size: inherit;
  font-weight: inherit;
  font-family: var(--wt-font);
}
.wt-drawer__menu a:hover {
  background: var(--wt-black);
}

.wt-drawer__menu .sub-menu {
  display: block;
  position: static;
  box-shadow: none;
  border: 0;
  padding: 6px 0 0 12px;
  margin: 0;
  min-width: 0;
}

.wt-mobile-menu .wt-drawer__backdrop {
  background: rgba(45, 42, 45, 0.24);
  backdrop-filter: blur(8px);
}

.wt-mobile-menu .wt-drawer__panel {
  width: min(360px, calc(100vw - 28px));
  padding: 22px 22px 28px;
  border: 1px solid rgba(45, 42, 45, 0.08);
  border-radius: 0 24px 24px 0 !important;
  box-shadow: 0 24px 48px rgba(45, 42, 45, 0.14);
}

.wt-mobile-menu .wt-drawer__top {
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 0;
}

.wt-mobile-menu__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0 !important;
  background: transparent !important;
  color: var(--wt-color-text) !important;
  padding: 0 !important;
  margin-right: auto;
  min-height: 24px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  box-shadow: none !important;
  border-left: 3px solid transparent !important;
}

.wt-mobile-menu__back[hidden] {
  display: none !important;
}

.wt-mobile-menu__back:hover,
.wt-mobile-menu__back:focus-visible {
  border-left-color: var(--wt-black) !important;
  padding-left: 5px !important;
  color: inherit !important;
}

.wt-mobile-menu__back span:first-child {
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

.wt-mobile-menu .wt-header__drawer-title {
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
  margin-right: auto;
}

.wt-mobile-menu .wt-drawer__close {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px !important;
  border: 1px solid rgba(45, 42, 45, 0.12) !important;
  border-radius: 50% !important;
  background: rgba(187, 133, 140, 0.08) !important;
  border-color: rgba(187, 133, 140, 0.22) !important;
  color: var(--wt-color-text) !important;
  box-shadow: none !important;
  box-sizing: border-box;
}

.wt-mobile-menu .wt-drawer__close:hover {
  background: rgba(187, 133, 140, 0.08) !important;
  border-color: rgba(187, 133, 140, 0.22) !important;
}

.wt-mobile-menu .wt-drawer__close svg {
  width: 100%;
  height: 100%;
  display: block;
  flex: 0 0 auto;
  pointer-events: none;
}

.wt-mobile-menu .wt-drawer__close svg * {
  pointer-events: none;
}

.wt-mobile-menu .wt-drawer__menu {
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wt-mobile-menu .wt-drawer__menu + .wt-drawer__menu {
  margin-top: 2px;
}

.wt-mobile-menu .wt-drawer__menu li,
.wt-mobile-menu .wt-drawer__menu .sub-menu li {
  list-style: none;
}

.wt-mobile-menu .wt-header__drawer-spacer {
  height: 18px;
}

.wt-mobile-menu .wt-drawer__menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 2px;
  border-radius: 0 !important;
  border-left: 3px solid transparent;
  font-size: 16px;
  line-height: 1.25;
  color: var(--wt-color-text);
}

.wt-mobile-menu .wt-drawer__menu a:hover,
.wt-mobile-menu .wt-drawer__menu a:focus-visible {
  background: transparent !important;
  border-left-color: var(--wt-black);
  padding-left: 7px;
  color: inherit !important;
}

.wt-mobile-menu .wt-drawer__menu .sub-menu {
  padding: 4px 0 10px 14px;
  list-style: none;
}

.wt-mobile-menu .wt-mobile-menu__submenu {
  margin: 0;
  padding: 0;
}

.wt-mobile-menu .wt-mobile-menu__submenu a {
  padding: 13px 2px;
  font-size: 16px;
  line-height: 1.25;
  color: var(--wt-color-text);
}

.wt-mobile-menu .wt-mobile-menu__submenu a:active,
.wt-mobile-menu .wt-mobile-menu__submenu a:focus,
.wt-mobile-menu .wt-mobile-menu__submenu a[aria-expanded="true"] {
  border-left-color: transparent;
  padding-left: 2px;
}

.wt-mobile-menu__nav-shell {
  position: relative;
  min-height: 360px;
}

.wt-mobile-menu__pane {
  display: none;
}

.wt-mobile-menu__pane.is-active {
  display: block;
}

.wt-mobile-menu [data-wt-mobile-pane-open]::after {
  content: "\203A";
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 1;
  color: rgba(45, 42, 45, 0.78);
}

.wt-mobile-menu.is-subpane .wt-header__drawer-spacer,
.wt-mobile-menu.is-subpane .wt-drawer__menu[aria-label],
.wt-mobile-menu.is-subpane .wt-drawer__menu[aria-label]::after {
  display: none;
}

.wt-mobile-menu .wt-drawer__menu:last-of-type,
.wt-mobile-menu ul[aria-label] {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(45, 42, 45, 0.08);
}

.wt-mobile-menu ul[aria-label] a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.wt-mobile-menu ul[aria-label] a::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: currentColor;
  opacity: 0.9;
  -webkit-mask: var(--wt-mobile-menu-icon, none) center/contain no-repeat;
  mask: var(--wt-mobile-menu-icon, none) center/contain no-repeat;
}

.wt-mobile-menu ul[aria-label] li:nth-child(1) a {
  --wt-mobile-menu-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4Zm0 2c-4.418 0-8 2.239-8 5v1h16v-1c0-2.761-3.582-5-8-5Z' fill='currentColor'/%3E%3C/svg%3E");
}

.wt-mobile-menu ul[aria-label] li:nth-child(2) a {
  --wt-mobile-menu-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.1 20.3 4.95 13.2a4.94 4.94 0 0 1 7-7l.05.05.05-.05a4.94 4.94 0 1 1 7 7Z' fill='none' stroke='currentColor' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.wt-mobile-menu ul[aria-label] li:nth-child(3) a {
  --wt-mobile-menu-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 7h14l-1.5 8.5H9.5L8.8 12H6' fill='none' stroke='currentColor' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='10' cy='19' r='1.4' fill='currentColor'/%3E%3Ccircle cx='18' cy='19' r='1.4' fill='currentColor'/%3E%3C/svg%3E");
}

.wt-mobile-menu ul[aria-label]::after {
  content: "+7 495 005 06 06";
  display: block;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(45, 42, 45, 0.08);
  color: var(--wt-color-text);
  font-size: 18px;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .wt-header {
    padding: 0 20px;
  }

  .wt-header__inner > .wt-burger:not(.wt-burger--menu) {
    display: none;
  }

  .wt-burger--menu {
    display: inline-flex;
  }

  .wt-nav {
    display: none;
  }

  .wt-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 20px;
  }

  .wt-header__content {
    justify-content: flex-end;
  }

  .wt-header__phone {
    display: none;
  }

  .wt-mobile-menu .wt-drawer__panel {
    width: min(360px, calc(100vw - 20px));
  }

  .wt-catdrawer__grid {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .wt-catdrawer__preview {
    display: none;
  }
}

@media (max-width: 767px) {
  .wt-header {
    padding: 0 15px;
  }

  .wt-mobile-menu .wt-drawer__backdrop {
    background: rgba(45, 42, 45, 0.2);
  }

  .wt-mobile-menu .wt-drawer__panel {
    width: min(352px, calc(100vw - 12px));
    padding: 18px 18px 24px;
    border-radius: 0 22px 22px 0 !important;
  }

  .wt-mobile-menu .wt-header__drawer-title {
    font-size: 28px;
  }

  .wt-mobile-menu__back {
    font-size: 15px;
  }

  .wt-mobile-menu .wt-drawer__close {
    width: 52px;
    height: 52px;
  }

  .wt-mobile-menu .wt-drawer__menu a {
    padding: 12px 2px;
    font-size: 15px;
  }

  .wt-header__promo {
    margin: 0 -15px;
  }

  .wt-header__promo-inner {
    min-height: 46px;
    padding: 10px 14px;
    font-size: 14px;
    line-height: 1.3;
    padding-top: 14px;
  }

  .wt-search__dialog {
    top: calc(var(--wt-header-h) + 8px);
    width: calc(100vw - 16px);
    padding: 0 8px;
  }

  .wt-search__form {
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    min-height: 56px;
    border-radius: 18px;
  }

  .wt-search__close,
  .wt-search__submit,
  .wt-search__input {
    min-height: 56px;
  }

  .wt-search__input {
    font-size: 16px;
    padding: 0 16px;
  }

  .wt-search__close span {
    width: 20px;
  }

  .wt-search__submit img {
    width: 22px;
    height: 22px;
  }

  .wt-header__inner {
    height: 68px;
    gap: 10px;
  }

  .wt-header__content {
    justify-content: flex-end;
    gap: 30px;
  }

  .wt-header__logo {
    min-width: 0;
  }

  .wt-header__icons {
    gap: 6px;
  }

  .wt-icon {
    width: 24px;
    height: 24px;
  }

  .wt-catdrawer__panel {
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    max-height: none;
    border: 0;
  }

  .wt-catdrawer__grid {
    grid-template-columns: 1fr;
  }

  .wt-catdrawer__tabs {
    max-height: 44vh;
    border-right: 0;
    border-bottom: 1px solid var(--wt-border);
  }

  .wt-catdrawer__subgrid {
    grid-template-columns: 1fr;
  }

  .wt-drawer__panel {
    width: min(100vw, 420px);
  }
}

/* burger-category-drawer styles end */

.wt-header__promo {
  overflow: hidden;
}

.wt-header__promo-track {
  display: block;
}

.wt-header__promo-inner + .wt-header__promo-inner {
  display: none;
}

@media (max-width: 768px) {
  .wt-header__promo-track {
    display: flex;
    width: max-content;
    gap: 0;
    animation: wt-marquee 12s linear infinite;
    will-change: transform;
  }

  .wt-header__promo-inner {
    display: block;
    white-space: nowrap;
    flex-shrink: 0;
    padding-right: 10px; /* расстояние между повторами */
  }

  .wt-header__promo-inner + .wt-header__promo-inner {
    display: block;
  }

  @keyframes wt-marquee {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(-50%, 0, 0);
    }
  }
}
