@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/rubik-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/rubik-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/rubik-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #081110;
  --bg2: #10201c;
  --panel: rgba(9, 17, 16, 0.84);
  --line: rgba(255, 255, 255, 0.1);
  --text: #eef7f4;
  --muted: #b7cbc3;
  --brand: #11b65d;
  --brand2: #7cf0b1;
  --accent: #ffd54a;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  --display: "Rubik", "Segoe UI", sans-serif;
  --body: "Rubik", "Segoe UI", Tahoma, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(17, 182, 93, 0.18), transparent 30%),
    radial-gradient(circle at 80% 12%, rgba(255, 213, 74, 0.12), transparent 20%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 50%, var(--bg) 100%);
}

.container {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: #15351e;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: visible;
}

.header__inner {
  min-height: 88px;
  display: flex;
  align-items: center !important;
  justify-content: space-between;
  gap: 20px;
}

.header__aurora-line {
  position: relative;
  height: 15px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #0a1f17 0%, #103426 16%, #145733 34%, #1aa04c 52%, #145733 70%, #103426 86%, #0a1f17 100%);
}

.header__aurora-line::before {
  content: "";
  position: absolute;
  inset: -14px 0;
  background:
    linear-gradient(90deg, rgba(7, 27, 20, 0.14) 0%, rgba(14, 76, 40, 0.84) 10%, rgba(33, 196, 90, 1) 22%, rgba(122, 255, 188, 0.9) 32%, rgba(19, 143, 71, 0.96) 42%, rgba(8, 41, 26, 0.24) 50%, rgba(14, 76, 40, 0.84) 60%, rgba(33, 196, 90, 1) 72%, rgba(122, 255, 188, 0.9) 82%, rgba(19, 143, 71, 0.96) 92%, rgba(7, 27, 20, 0.14) 100%);
  background-size: 160% 100%;
  background-repeat: no-repeat;
  filter: blur(11px);
  opacity: 0.96;
  animation: headerAurora 6.8s ease-in-out infinite alternate;
}

.header__aurora-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(150, 255, 198, 0.34), rgba(14, 71, 41, 0.08) 42%, rgba(4, 16, 11, 0.28) 100%);
  mix-blend-mode: screen;
  opacity: 0.88;
}

@keyframes headerAurora {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  width: clamp(140px, 15vw, 210px);
  height: auto;
  display: block;
}

.brand span {
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand--dtools {
  gap: 18px;
}

.brand--dtools img {
  width: clamp(180px, 18vw, 273px);
  height: auto;
}

.brand--dtools span {
  color: rgba(238, 247, 244, 0.84);
  font-family: "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: clamp(1.28rem, 2.2vw, 1.95rem);
  font-weight: 900;
  letter-spacing: 0.2em;
}

@keyframes brandDtoolsRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.header__mobile-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.header__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-menu-toggle,
.header-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(124, 240, 177, 0.3);
  background:
    radial-gradient(circle at 30% 28%, rgba(124, 240, 177, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(15, 44, 29, 0.96), rgba(8, 19, 14, 0.96));
  color: var(--text);
  padding: 0;
  cursor: pointer;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.header-menu-toggle {
  display: none;
}

.header-search-toggle {
  width: auto;
  min-width: 112px;
  padding: 0 14px;
}

.header-search-toggle__text {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.header-menu-toggle:hover,
.header-search-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 240, 177, 0.5);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.34),
    0 0 18px rgba(124, 240, 177, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.header-menu-toggle__bars,
.header-menu-toggle__bars::before,
.header-menu-toggle__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(236, 247, 243, 0.98);
  margin: 0 auto;
  content: "";
}

.header-menu-toggle__bars::before {
  transform: translateY(-6px);
}

.header-menu-toggle__bars::after {
  transform: translateY(4px);
}

.header-search-toggle__icon,
.header-search__submit-icon {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.header-search-toggle__icon::after,
.header-search__submit-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  right: -6px;
  bottom: -3px;
  transform: rotate(40deg);
}

.nav__mobile-head,
.nav__mobile-only,
.nav__mobile-shortcuts,
.nav__mobile-catalog,
.nav__account,
.header-mobile-backdrop,
.header-search {
  display: none;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--brand2);
}

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(123, 240, 176, 0.12);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.header-account {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 13px 0 10px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(123, 240, 176, 0.14);
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.header-account:hover,
.header-account:visited,
.header-account:active {
  color: var(--text);
  text-decoration: none;
}

.header-account:hover,
.header-account.is-active,
.header-account.is-signed {
  border-color: rgba(124, 240, 177, 0.38);
  background: linear-gradient(180deg, rgba(14, 40, 29, 0.88), rgba(8, 21, 15, 0.9));
  box-shadow: 0 0 16px rgba(124, 240, 177, 0.12);
}

.header-account__mark {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  color: #06110d;
  flex: 0 0 auto;
}

.header-account__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.header-account:not(.is-signed) .header-account__mark img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.header-account__mark strong {
  font-size: 0.78rem;
  line-height: 1;
}

.header-account__text {
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.cart-link:visited,
.cart-link:hover,
.cart-link:active {
  color: var(--text);
  text-decoration: none;
}

.cart-link.has-items {
  border-color: rgba(124, 240, 177, 0.44);
  background: linear-gradient(180deg, rgba(14, 40, 29, 0.9), rgba(8, 21, 15, 0.92));
  box-shadow:
    0 0 12px rgba(124, 240, 177, 0.18),
    0 0 20px rgba(124, 240, 177, 0.12);
}

.header-search {
  position: relative;
  z-index: 35;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 18px;
  border: 1px solid rgba(123, 240, 176, 0.24);
  background: linear-gradient(180deg, rgba(8, 24, 19, 0.98), rgba(7, 20, 16, 0.98));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.42);
}

.header-search.is-open {
  display: block;
}

.header-search__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px 54px;
  min-height: 58px;
}

.header-search__input {
  border: 0;
  border-radius: 18px 0 0 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  padding: 0 16px;
  outline: none;
}

.header-search__input::-webkit-search-cancel-button,
.header-search__input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.header-search__input::-ms-clear,
.header-search__input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

.header-search__close,
.header-search__submit {
  border: 0;
  border-left: 1px solid rgba(123, 240, 176, 0.2);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font: inherit;
  cursor: pointer;
}

.header-search__close {
  font-size: 1.9rem;
  line-height: 1;
}

.header-search__history {
  border-top: 1px solid rgba(123, 240, 176, 0.18);
  padding: 14px 16px 16px;
}

.header-search__suggestions {
  display: grid;
  gap: 10px;
  padding: 0 12px 12px;
}

.header-search__suggestions:empty {
  display: none;
}

.header-search__message {
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(123, 240, 176, 0.14);
  background:
    linear-gradient(135deg, rgba(123, 240, 176, 0.08), rgba(255, 213, 74, 0.035)),
    rgba(255, 255, 255, 0.035);
  color: rgba(238, 247, 244, 0.76);
  font-size: 0.9rem;
}

.header-search__suggestions-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 4px 0;
}

.header-search__suggestions-head strong {
  color: var(--brand2);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.header-search__suggestions-head span {
  color: rgba(238, 247, 244, 0.52);
  font-size: 0.78rem;
}

.header-search__suggestions-list {
  display: grid;
  gap: 8px;
}

.header-search-result {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 9px;
  border-radius: 16px;
  border: 1px solid rgba(123, 240, 176, 0.12);
  background:
    linear-gradient(135deg, rgba(123, 240, 176, 0.055), rgba(255, 213, 74, 0.025)),
    rgba(255, 255, 255, 0.026);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.header-search-result:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 240, 177, 0.34);
  background:
    linear-gradient(135deg, rgba(123, 240, 176, 0.11), rgba(255, 213, 74, 0.05)),
    rgba(255, 255, 255, 0.04);
}

.header-search-result__image {
  width: 58px;
  height: 58px;
  border-radius: 13px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  display: grid;
  place-items: center;
}

.header-search-result__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-search-result__body {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.header-search-result__body strong,
.header-search-result__body span,
.header-search-result__body small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header-search-result__body strong {
  font-size: 0.94rem;
}

.header-search-result__body small {
  color: rgba(124, 240, 177, 0.82);
  font-size: 0.76rem;
}

.header-search-result__body span {
  color: rgba(238, 247, 244, 0.62);
  font-size: 0.8rem;
}

.header-search-result__price {
  justify-self: end;
  color: #ffd84d;
  font-weight: 900;
  white-space: nowrap;
}

.header-search__history-title {
  display: block;
  margin: 0 0 8px;
  color: rgba(183, 203, 195, 0.9);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.header-search__history-list {
  display: grid;
  gap: 8px;
}

.header-search__history-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  padding: 6px 4px;
}

.header-search__history-item::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0.8;
}

.cart-link__icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 4px;
  position: relative;
  transform: translateY(1px);
}

.cart-link__icon::before {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  top: -6px;
  height: 7px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.cart-link__count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.78rem;
  line-height: 1;
}

.cart-link__count.is-filled,
.cart-link.is-active .cart-link__count {
  background: linear-gradient(135deg, var(--brand2), #e8ff75);
  color: #04100c;
}

.cart-link.is-pulsed {
  animation: cartPulse 0.5s ease;
}

.header-account.is-pulsed,
.nav__account.is-pulsed {
  animation: cartPulse 0.5s ease;
}

.favorite-fly-image {
  object-fit: contain;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.96);
  padding: 8px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
  transition: transform 0.62s cubic-bezier(.22,.9,.28,1), opacity 0.62s ease, filter 0.62s ease;
}

.cart-fly-image {
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  padding: 8px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
  transition: transform 0.62s cubic-bezier(.22,.9,.28,1), opacity 0.62s ease, filter 0.62s ease;
}

@keyframes cartPulse {
  0% { transform: scale(1); }
  45% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.hero {
  padding: 42px 0 22px;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 41, 34, 0.74);
  border: 1px solid rgba(123, 240, 176, 0.2);
  color: var(--brand2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

h1 {
  margin: 18px 0 14px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.lead {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.section {
  padding: 20px 0 60px;
}

.footer {
  padding: 22px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

@media (max-width: 980px) {
  .header__inner {
    min-height: 82px;
  }

  .brand--dtools img {
    width: clamp(164px, 34vw, 234px);
  }
}

@media (max-width: 640px) {
  .header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .header > .container {
    width: calc(100% - 12px);
  }

  body.mobile-menu-open,
  body.mobile-search-open {
    overflow: hidden;
  }

  .header__inner {
    min-height: 74px;
    gap: 8px;
    padding: 8px 0;
  }

  .header__mobile-left {
    flex: 1 1 auto;
    min-width: 0;
    gap: 8px;
  }

  .header-menu-toggle,
  .header-search-toggle {
    display: inline-flex;
    min-width: 42px;
    width: 42px;
    padding: 0;
  }

  .header-search-toggle__text {
    display: none;
  }

  .brand--dtools img {
    width: clamp(148px, 42vw, 204px);
    max-width: 100%;
  }

  .brand--dtools {
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: min(330px, 86vw);
    height: 100dvh;
    z-index: 2000;
    display: grid;
    align-content: start;
    gap: 6px;
    padding: 16px 14px 24px;
    background: linear-gradient(180deg, #0c241b 0%, #091812 100%);
    border-right: 1px solid rgba(123, 240, 176, 0.25);
    transform: translateX(-100%);
    transition: transform 0.26s ease;
    overflow-y: auto;
  }

  body.mobile-menu-open .nav[data-mobile-menu] {
    transform: translateX(0);
  }

  .nav__mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(123, 240, 176, 0.2);
  }

  .nav__mobile-close {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(123, 240, 176, 0.26);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-size: 1.5rem;
    line-height: 1;
  }

  .nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid transparent;
  }

  .nav__mobile-only {
    display: none;
  }

  .nav__mobile-only.is-active,
  .nav__mobile-only[aria-current="page"] {
    border-color: rgba(232, 255, 117, 0.88);
    background: linear-gradient(135deg, rgba(20, 69, 40, 0.92), rgba(66, 120, 16, 0.86));
    color: #f4ffd4;
    box-shadow: 0 0 12px rgba(150, 255, 105, 0.5);
  }

  .nav__mobile-shortcuts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 58px));
    gap: 12px;
    align-items: center;
    margin: 4px 0 12px;
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(123, 240, 176, 0.2);
  }

  .nav__mobile-shortcut {
    position: relative;
    width: 58px;
    height: 58px;
    min-height: 58px !important;
    display: grid !important;
    place-items: center;
    padding: 0 !important;
    border: 1px solid rgba(123, 240, 176, 0.22) !important;
    border-radius: 16px;
    background:
      radial-gradient(circle at 50% 35%, rgba(57, 255, 122, 0.16), transparent 58%),
      rgba(255, 255, 255, 0.035);
    color: var(--text) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  }

  .nav__mobile-shortcut svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .nav__mobile-shortcut.is-active,
  .nav__mobile-shortcut.is-available {
    border-color: rgba(188, 255, 111, 0.62) !important;
    color: #efffdc !important;
    background:
      radial-gradient(circle at 50% 38%, rgba(188, 255, 111, 0.28), transparent 62%),
      linear-gradient(135deg, rgba(17, 182, 93, 0.2), rgba(255, 213, 74, 0.09));
    box-shadow:
      0 0 14px rgba(150, 255, 105, 0.28),
      inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  }

  .nav__mobile-shortcut span {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    padding: 0 7px;
    border-radius: 999px;
    background: linear-gradient(135deg, #a5ff71, #e8ff75);
    color: #04100c;
    font-size: 0.82rem;
    font-weight: 950;
    box-shadow: 0 0 16px rgba(165, 255, 113, 0.54);
  }

  .nav__mobile-catalog {
    display: grid;
    gap: 8px;
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(123, 240, 176, 0.2);
  }

  .nav__mobile-catalog-title {
    color: rgba(186, 252, 213, 0.74);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .nav__mobile-catalog-link {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto 16px;
    align-items: center;
    gap: 10px;
    min-height: 54px !important;
    padding: 0 12px !important;
    border-radius: 13px;
    border: 1px solid rgba(123, 240, 176, 0.16) !important;
    background:
      linear-gradient(135deg, rgba(17, 182, 93, 0.09), rgba(255, 213, 74, 0.035)),
      rgba(255, 255, 255, 0.025);
    color: var(--text) !important;
  }

  .nav__mobile-catalog-link--has-icon {
    grid-template-columns: 40px minmax(0, 1fr) auto 16px;
    padding-left: 10px !important;
  }

  .nav__mobile-catalog-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background:
      radial-gradient(circle at 42% 34%, rgba(57, 255, 122, 0.3), transparent 44%),
      rgba(0, 0, 0, 0.24);
    box-shadow:
      inset 0 0 0 1px rgba(123, 240, 176, 0.18),
      0 0 16px rgba(17, 230, 94, 0.16);
    overflow: hidden;
  }

  .nav__mobile-catalog-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(42, 255, 103, 0.22));
  }

  .nav__mobile-catalog-link.is-active,
  .nav__mobile-catalog-link[aria-current="page"] {
    border-color: rgba(232, 255, 117, 0.88) !important;
    background: linear-gradient(135deg, rgba(20, 69, 40, 0.95), rgba(66, 120, 16, 0.88));
    box-shadow:
      0 0 14px rgba(150, 255, 105, 0.46),
      inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  }

  .nav__mobile-catalog-link--sale {
    position: relative;
    grid-template-columns: 28px minmax(0, 1fr) auto 16px;
    border-color: rgba(255, 109, 83, 0.36) !important;
    background:
      radial-gradient(circle at 28px 50%, rgba(255, 213, 74, 0.16), transparent 22px),
      linear-gradient(135deg, rgba(255, 63, 51, 0.16), rgba(255, 213, 74, 0.06)),
      rgba(255, 255, 255, 0.025);
    color: #fff0d2 !important;
    box-shadow:
      0 0 14px rgba(255, 82, 64, 0.12),
      inset 0 0 0 1px rgba(255, 223, 162, 0.04);
  }

  .nav__mobile-catalog-link--sale::before {
    content: "%";
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff553e, #ffd75b);
    color: #250f08;
    font-size: 0.95rem;
    font-weight: 950;
    letter-spacing: 0;
    box-shadow: 0 0 16px rgba(255, 87, 62, 0.44);
  }

  .nav__mobile-catalog-link--sale .nav__mobile-catalog-name {
    color: #fff4dc;
  }

  .nav__mobile-catalog-link--sale.is-active,
  .nav__mobile-catalog-link--sale[aria-current="page"] {
    border-color: rgba(255, 120, 84, 0.86) !important;
    background:
      radial-gradient(circle at 28px 50%, rgba(255, 213, 74, 0.24), transparent 24px),
      linear-gradient(135deg, rgba(104, 26, 22, 0.96), rgba(119, 72, 17, 0.9));
    box-shadow:
      0 0 18px rgba(255, 88, 70, 0.46),
      0 0 30px rgba(255, 190, 83, 0.13),
      inset 0 0 0 1px rgba(255, 239, 185, 0.12);
  }

  .nav__mobile-catalog-name {
    min-width: 0;
    overflow-wrap: anywhere;
    font-weight: 900;
  }

  .nav__mobile-catalog-count {
    min-width: 42px;
    min-height: 28px;
    display: inline-grid;
    place-items: center;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(188, 255, 111, 0.13);
    border: 1px solid rgba(188, 255, 111, 0.24);
    color: #dfff8f;
    font-size: 0.86rem;
    font-weight: 900;
  }

  .nav__mobile-catalog-link--sale .nav__mobile-catalog-count {
    background: rgba(255, 90, 72, 0.22);
    border-color: rgba(255, 166, 102, 0.48);
    color: #ffe7d4;
    box-shadow: 0 0 12px rgba(255, 94, 71, 0.22);
  }

  .nav__mobile-catalog-arrow {
    width: 11px;
    height: 11px;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: rotate(-45deg);
    opacity: 0.78;
  }

  .nav__account {
    display: grid !important;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 62px !important;
    margin: 2px 0 10px;
    padding: 10px 12px !important;
    border-radius: 15px !important;
    border: 1px solid rgba(123, 240, 176, 0.2) !important;
    background:
      linear-gradient(135deg, rgba(17, 182, 93, 0.12), rgba(255, 213, 74, 0.04)),
      rgba(255, 255, 255, 0.03);
    color: var(--text) !important;
  }

  .nav__account.is-active,
  .nav__account.is-signed {
    border-color: rgba(188, 255, 111, 0.56) !important;
    box-shadow: 0 0 14px rgba(150, 255, 105, 0.22);
  }

  .nav__account-mark {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #06110d;
  }

  .nav__account-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .nav__account:not(.is-signed) .nav__account-mark img {
    width: 22px;
    height: 22px;
    object-fit: contain;
  }

  .nav__account-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
  }

  .nav__account-copy strong {
    font-weight: 900;
    color: var(--text);
  }

  .nav__account-copy small {
    color: var(--muted);
    font-size: 0.78rem;
  }

  .header-mobile-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1900;
    border: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.55);
  }

  body.mobile-menu-open .header-mobile-backdrop {
    display: block;
  }

  .header__actions {
    flex: 0 0 auto;
    gap: 8px;
    margin-left: auto;
  }

  .header__actions .cart-link {
    min-height: 42px;
    padding: 0 10px;
  }

  .header__actions .header-account {
    display: none;
  }

  .header__actions .cart-link > span:nth-child(2) {
    display: none;
  }

  .header-search {
    display: none;
    position: fixed;
    top: 76px;
    left: 10px;
    right: 10px;
    width: auto;
    margin: 0;
    z-index: 2100;
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
  }

  .header-search.is-open {
    display: block;
  }

  .header-search-result {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .header-search-result__price {
    grid-column: 2;
    justify-self: start;
  }

  .header-search__suggestions-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}
