.site-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: #010315;
  overflow: visible;
}

.top-bar {
  height: 36px;
  background: #070b22;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.top-bar__inner {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-benefits,
.socials {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  white-space: nowrap;
}

.top-benefits svg {
  width: 13px;
  height: 13px;
  color: var(--gold);
}

.socials {
  gap: 22px;
  direction: ltr;
}

.socials a {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.18s ease, transform 0.18s ease;
}

.socials a:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.header-main {
  position: relative;
  z-index: 10020;
  height: 72.8px;
  background: #010315;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-main__inner {
  height: 72.8px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  flex: 0 0 auto;
}

.logo img {
  display: block;
  width: 137px;
  height: auto;
}

.search-box {
  position: relative;
  flex: 1 1 auto;
  max-width: 620px;
  min-width: 260px;
  z-index: 10040;
  isolation: isolate;
}

.search-box:focus-within {
  z-index: 10080;
}

.search-box::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: 12px;
  background: conic-gradient(from 0deg, rgba(0, 76, 255, 0.45), rgba(255, 192, 2, 0.18), rgba(0, 76, 255, 0.45), rgba(255, 192, 2, 0.18), rgba(0, 76, 255, 0.45));
  filter: blur(8px);
  opacity: 0.28;
  animation: searchGlow 5s ease-in-out infinite;
}

@keyframes searchGlow {
  0%, 100% { opacity: 0.22; }
  50% { opacity: 0.45; }
}

.search-box input {
  width: 100%;
  height: 48px;
  padding: 0 84px 0 124px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(8, 14, 35, 0.92), rgba(4, 8, 22, 0.95));
  border: 1.5px solid rgba(0, 76, 255, 0.45);
  border-radius: 10px;
  outline: 0;
  box-shadow: inset 0 0 16px rgba(0, 76, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 6px 18px rgba(0, 0, 0, 0.5);
  font-size: 14.5px;
  font-weight: 600;
  text-align: right;
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 500;
}

.search-box button {
  position: absolute;
  left: 78px;
  top: 6px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.search-box button svg {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 6px rgba(255, 192, 2, 0.45));
}

.search-box kbd {
  position: absolute;
  left: 12px;
  top: 11px;
  z-index: 2;
  height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(0, 76, 255, 0.13);
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-family: inherit;
}

.product-search-autocomplete {
  position: absolute;
  inset-inline: 0;
  top: calc(100% + 10px);
  z-index: 2147483000;
  display: none;
  max-height: min(430px, calc(100vh - 158px));
  overflow: auto;
  padding: 8px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(10, 16, 38, 0.98), rgba(4, 8, 24, 0.98));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  transform-origin: top center;
}

.product-search-autocomplete.is-open {
  display: block;
  animation: productSearchIn 0.16s ease-out;
}

@keyframes productSearchIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.product-search-autocomplete::-webkit-scrollbar {
  width: 8px;
}

.product-search-autocomplete::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.product-search-state {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.product-search-state--loading span {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: productSearchSpin 0.7s linear infinite;
}

@keyframes productSearchSpin {
  to { transform: rotate(360deg); }
}

.product-search-suggestion {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 8px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  transition: background 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.product-search-suggestion:hover,
.product-search-suggestion.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-1px);
}

.product-search-suggestion__media {
  width: 52px;
  height: 52px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.product-search-suggestion__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-search-suggestion__body {
  min-width: 0;
  display: grid;
  gap: 1px;
  text-align: right;
}

.product-search-suggestion__body strong {
  overflow: hidden;
  color: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.product-search-suggestion__body small,
.product-search-suggestion__price small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 700;
}

.product-search-suggestion__price {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 192, 2, 0.18);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 192, 2, 0.08);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.category-drawer__search .product-search-autocomplete {
  z-index: 2147483000;
  top: calc(100% + 8px);
  max-height: min(360px, 54vh);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.icon-btn,
.login-btn {
  border: 0;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.icon-btn svg,
.login-btn svg,
.mobile-menu svg {
  flex: 0 0 auto;
  display: block;
}

.icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
}

.nav-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 17px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid #010315;
  border-radius: 999px;
  color: #111;
  background: var(--gold);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.icon-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.login-btn {
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 8px 22px rgba(0, 76, 255, 0.35);
  font-size: 14px;
  font-weight: 700;
}

.login-btn svg {
  width: 18px;
  height: 18px;
}

.customer-balance-pill {
  min-height: 40px;
  max-width: 178px;
  display: inline-grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 14px;
  border: 1px solid rgba(255, 192, 2, 0.24);
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(255, 192, 2, 0.16), rgba(0, 76, 255, 0.12));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: right;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.customer-balance-pill:hover {
  color: var(--white);
  transform: translateY(-1px);
  border-color: rgba(255, 192, 2, 0.42);
  background: linear-gradient(135deg, rgba(255, 192, 2, 0.2), rgba(0, 76, 255, 0.16));
}

.customer-balance-pill__icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #10121f;
  background: linear-gradient(145deg, var(--gold), #ff9f1a);
  box-shadow: 0 8px 18px rgba(255, 192, 2, 0.2);
}

.customer-balance-pill__icon svg {
  width: 17px;
  height: 17px;
}

.customer-balance-pill small,
.customer-balance-pill strong {
  display: block;
  min-width: 0;
}

.customer-balance-pill small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
}

.customer-balance-pill strong {
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.25;
  direction: ltr;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-balance-pill.is-updated,
.customer-priority-link.is-updated {
  animation: customerBalancePulse 0.72s ease;
}

@keyframes customerBalancePulse {
  0% { transform: scale(1); }
  35% { transform: scale(1.035); box-shadow: 0 0 0 6px rgba(255, 192, 2, 0.12); }
  100% { transform: scale(1); }
}

.customer-priority-strip {
  position: relative;
  z-index: 10010;
  background: linear-gradient(180deg, rgba(5, 9, 28, 0.96), rgba(3, 6, 20, 0.98));
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.customer-priority-strip__inner {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding-block: 9px;
}

.customer-priority-strip__label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 192, 2, 0.2);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(255, 192, 2, 0.08);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.customer-priority-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 10px;
}

.customer-priority-links.has-balance {
  grid-template-columns: minmax(210px, .8fr) repeat(2, minmax(220px, 1fr));
}

.customer-priority-link {
  min-width: 0;
  min-height: 52px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 11px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.customer-priority-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-block-start: 2px solid currentColor;
  border-inline-start: 2px solid currentColor;
  opacity: 0.45;
  transform: rotate(-45deg);
}

.customer-priority-link:hover {
  color: var(--white);
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.customer-priority-link__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
}

.customer-priority-link__icon svg {
  width: 22px;
  height: 22px;
}

.customer-priority-link.is-orders {
  border-color: rgba(0, 76, 255, 0.34);
  background: linear-gradient(180deg, rgba(0, 76, 255, 0.16), rgba(255, 255, 255, 0.04));
}

.customer-priority-link.is-orders .customer-priority-link__icon {
  background: linear-gradient(145deg, var(--blue), #31a8ff);
  box-shadow: 0 10px 22px rgba(0, 76, 255, 0.3);
}

.customer-priority-link.is-wallet {
  border-color: rgba(255, 192, 2, 0.3);
  background: linear-gradient(180deg, rgba(255, 192, 2, 0.13), rgba(255, 255, 255, 0.04));
}

.customer-priority-link.is-wallet .customer-priority-link__icon {
  color: #121212;
  background: linear-gradient(145deg, var(--gold), #ff9f1a);
  box-shadow: 0 10px 22px rgba(255, 192, 2, 0.22);
}

.customer-priority-link.is-balance {
  border-color: rgba(34, 197, 94, 0.3);
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.13), rgba(255, 255, 255, 0.04));
}

.customer-priority-link.is-balance .customer-priority-link__icon {
  background: linear-gradient(145deg, #16a34a, #4ade80);
  box-shadow: 0 10px 22px rgba(34, 197, 94, 0.18);
}

.customer-priority-link.is-balance strong {
  color: #8df7b5;
  direction: ltr;
}

.customer-priority-link strong,
.customer-priority-link small {
  display: block;
  min-width: 0;
}

.customer-priority-link strong {
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.customer-priority-link small {
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.mobile-menu {
  display: none;
}

.burger-trigger {
  position: relative;
  overflow: hidden;
}

.burger-icon {
  position: relative;
  width: 20px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 auto;
}

.burger-icon span {
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.24s ease, opacity 0.18s ease, width 0.2s ease;
}

.burger-icon span:nth-child(2) {
  width: 72%;
  margin-inline-start: auto;
}

.burger-trigger:hover .burger-icon span:nth-child(2),
.burger-trigger.is-active .burger-icon span:nth-child(2) {
  width: 100%;
}

.burger-trigger.is-active .burger-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger-trigger.is-active .burger-icon span:nth-child(2) {
  opacity: 0;
}

.burger-trigger.is-active .burger-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-strip {
  position: relative;
  z-index: 1000;
  height: 48.8px;
  background: linear-gradient(180deg, rgba(7, 11, 34, 0.85), rgba(5, 7, 20, 0.92));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.nav-scroll {
  height: 48.8px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.nav-scroll a,
.category-pill {
  height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 8px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 600;
}

.nav-scroll a {
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-scroll a:hover,
.nav-scroll a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.nav-scroll a.active {
  color: #6fa0ff;
  border: 1px solid rgba(0, 76, 255, 0.25);
  background: rgba(0, 76, 255, 0.08);
}

.category-pill {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  background: linear-gradient(135deg, rgba(0, 76, 255, 0.2), rgba(255, 255, 255, 0.05));
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-weight: 700;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.category-pill:hover,
.category-pill.is-active {
  border-color: rgba(255, 192, 2, 0.5);
  background: linear-gradient(135deg, rgba(0, 76, 255, 0.28), rgba(255, 192, 2, 0.12));
  box-shadow: 0 14px 34px rgba(0, 76, 255, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.nav-sep {
  width: 1px;
  height: 20px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: rgba(1, 3, 21, 0.74);
  transition: opacity 0.24s ease, visibility 0.24s ease;
  backdrop-filter: blur(12px);
}

.mobile-nav.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__panel {
  position: relative;
  width: min(460px, 100vw);
  height: 100%;
  margin-right: 0;
  margin-left: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(180deg, #0b102d 0%, #070a20 48%, #050718 100%);
  border-inline-start: 1px solid var(--line);
  box-shadow: -34px 0 90px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.2, .8, .2, 1);
  outline: 0;
}

.mobile-nav__panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--blue), transparent);
  opacity: 0.9;
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}

body.has-open-drawer {
  overflow: hidden;
}

.category-drawer__top {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.category-drawer__logo img {
  width: 112px;
  display: block;
}

.category-drawer__title {
  min-height: 78px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 4px;
  padding: 14px 28px 18px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: right;
}

.category-drawer__title span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.category-drawer__title strong {
  font-size: 17px;
  font-weight: 800;
}

.category-drawer__search {
  position: relative;
  z-index: 20010;
  margin: 16px 22px 6px;
}

.category-drawer__search:focus-within {
  z-index: 20020;
}

.category-drawer__search input {
  width: 100%;
  height: 46px;
  padding: 0 18px 0 50px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  outline: 0;
  background: rgba(255, 255, 255, 0.055);
  font: inherit;
  font-size: 14px;
  text-align: right;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.category-drawer__search input:focus {
  border-color: rgba(255, 192, 2, 0.48);
  background: rgba(255, 255, 255, 0.075);
}

.category-drawer__search button {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 0;
  border-radius: 10px;
  background: transparent;
}

.category-drawer__search svg {
  width: 20px;
  height: 20px;
}

.category-drawer__list {
  flex: 1 1 auto;
  overflow: auto;
  padding: 18px 0 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}

.category-drawer__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-drawer__list li {
  position: relative;
}

.category-drawer .category-drawer__list a,
.category-all-link {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 28px 0 72px;
  color: rgba(255, 255, 255, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.035);
  font-size: 16px;
  font-weight: 700;
  position: relative;
  transition: color 0.18s ease, background 0.18s ease, padding 0.18s ease;
}

.category-drawer .category-drawer__list a::after,
.category-all-link::after {
  content: "";
  position: absolute;
  inset-block: 16px;
  right: 0;
  width: 3px;
  border-radius: 999px 0 0 999px;
  background: var(--gold);
  opacity: 0;
  transform: scaleY(0.45);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.category-drawer .category-drawer__list a:hover,
.category-drawer .category-drawer__list li.is-expanded > a,
.category-all-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  padding-inline-end: 34px;
}

.category-drawer .category-drawer__list a:hover::after,
.category-drawer .category-drawer__list li.is-expanded > a::after,
.category-all-link:hover::after {
  opacity: 1;
  transform: scaleY(1);
}

.category-node-toggle {
  position: absolute;
  left: 24px;
  top: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.035);
  transition: color 0.18s ease, background 0.18s ease, transform 0.2s ease;
}

.category-node-toggle::before {
  content: "\2039";
  font-size: 32px;
  line-height: 1;
}

.category-node-toggle:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.category-drawer__list li.is-expanded > .category-node-toggle {
  color: var(--gold);
  transform: rotate(-90deg);
}

.category-drawer__list li > ul {
  display: none;
  padding: 6px 28px 12px;
  background: rgba(255, 255, 255, 0.025);
}

.category-drawer__list li.is-expanded > ul {
  display: block;
}

.category-drawer .category-drawer__list li > ul a {
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.category-drawer__list li > ul li > ul {
  padding-inline: 18px 0;
}

.category-drawer__quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 16px 18px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.category-drawer__quick a {
  position: relative;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 800;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.category-drawer__quick .nav-badge {
  position: static;
  margin-inline-start: 6px;
  border-color: transparent;
}

.category-drawer__quick a:hover {
  color: var(--white);
  border-color: rgba(255, 192, 2, 0.38);
  background: rgba(255, 192, 2, 0.08);
  transform: translateY(-1px);
}

.category-drawer .drawer-close {
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 10px;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.58);
  background: transparent;
}

.category-drawer .drawer-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.category-drawer .drawer-close span:first-child {
  transform: rotate(45deg);
}

.category-drawer .drawer-close span:last-child {
  transform: rotate(-45deg);
}

.category-drawer .drawer-close:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.newsletter {
  background: linear-gradient(105deg, #004cff 0%, #0917a8 43%, #1a0644 100%);
}

.newsletter__inner {
  min-height: 148px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.newsletter form {
  display: flex;
  align-items: center;
  gap: 8px;
  direction: ltr;
}

.newsletter input {
  width: 286px;
  height: 46px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  outline: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.newsletter form button {
  height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  color: #111;
  background: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.newsletter__inner > .btn {
  min-width: 150px;
  justify-content: center;
}

.newsletter-copy {
  display: flex;
  align-items: center;
  gap: 22px;
  text-align: right;
}

.newsletter-copy span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
}

.newsletter-copy h2 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
}

.newsletter-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #05081b 0%, #070b22 48%, #040716 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 34px 0 30px;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 76, 255, 0.74), rgba(255, 192, 2, 0.56), transparent);
  opacity: 0.85;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 86px 86px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 82%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 82%);
}

.footer .wrap {
  position: relative;
  z-index: 1;
}

.footer-platform {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(0, 76, 255, 0.18), rgba(255, 192, 2, 0.075) 64%, rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-platform__copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.footer-platform__copy span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.footer-platform__copy strong {
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.65;
}

.footer-platform__action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 12px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(135deg, var(--blue), #0b63ff);
  box-shadow: 0 14px 30px rgba(0, 76, 255, 0.28);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.footer-platform__action:hover {
  color: var(--white);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 38px rgba(0, 76, 255, 0.36);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.95fr) minmax(380px, 1.28fr) minmax(280px, 1fr);
  gap: 14px;
  align-items: stretch;
}

.footer-brand-panel,
.footer-nav-panel,
.footer-assurance-panel,
.footer-commerce-row {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.054), rgba(255, 255, 255, 0.022));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 18px 52px rgba(0, 0, 0, 0.16);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-brand-panel:hover,
.footer-nav-panel:hover,
.footer-assurance-panel:hover,
.footer-commerce-row:hover {
  border-color: rgba(77, 142, 255, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.066), rgba(255, 255, 255, 0.026));
  transform: translateY(-1px);
}

.footer-brand-panel,
.footer-nav-panel,
.footer-assurance-panel {
  padding: 24px;
}

.footer-brand-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo img {
  display: block;
  width: 134px;
  height: auto;
}

.footer-brand-panel p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  line-height: 1.95;
}

.footer-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  direction: ltr;
  justify-content: flex-end;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  transition: transform 0.18s ease, color 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.footer-socials a:hover {
  color: var(--white);
  border-color: rgba(77, 142, 255, 0.55);
  background: rgba(0, 76, 255, 0.18);
  box-shadow: 0 16px 34px rgba(0, 76, 255, 0.18);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

.footer-nav-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.footer-col {
  min-width: 0;
}

.footer h3 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
}

.footer h3::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(255, 192, 2, 0.08);
}

.footer a,
.footer li,
.footer small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13.5px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  list-style: none;
  min-width: 0;
}

.footer .footer-col > ul,
.footer .mobile-menu-list,
.footer .mobile-menu-list > ul,
.trust-lines {
  display: grid;
  gap: 7px;
}

.footer ul a,
.footer .mobile-menu-list a {
  width: 100%;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.66);
  transition: color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.footer ul a:hover,
.footer .mobile-menu-list a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  transform: translateX(-4px);
}

.footer a:focus-visible {
  outline: 2px solid rgba(77, 142, 255, 0.82);
  outline-offset: 3px;
}

.footer .mobile-menu-list ul ul {
  display: grid;
  gap: 4px;
  margin: 4px 0 0;
  padding-inline-start: 12px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-lines li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.trust-lines li:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 192, 2, 0.18);
  background: rgba(255, 255, 255, 0.052);
}

.trust-lines span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 192, 2, 0.2);
  border-radius: 12px;
  color: var(--gold);
  background: rgba(255, 192, 2, 0.085);
}

.trust-lines svg {
  width: 18px;
  height: 18px;
}

.trust-lines div {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
  line-height: 1.6;
  min-width: 0;
}

.trust-lines small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 500;
  line-height: 1.7;
}

.footer-commerce-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  padding: 14px 18px;
}

.footer-commerce-row p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.8;
}

.payment-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  direction: ltr;
}

.payment-icons img {
  max-width: 66px;
  max-height: 28px;
  object-fit: contain;
  opacity: 0.9;
  filter: saturate(0.95);
  padding: 4px 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 4px 0;
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 11, 34, 0.96);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.cookie-bar.is-hidden {
  display: none;
}

.cookie-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #6b360f;
  background: #f2a64f;
  box-shadow: inset 6px -5px 0 rgba(116, 56, 19, 0.2);
}

.cookie-bar p {
  flex: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
  font-size: 12px;
  line-height: 1.8;
}

.cookie-bar strong {
  color: var(--white);
  font-size: 14px;
}

.cookie-bar a {
  color: #8fb5ff;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  order: 2;
  direction: ltr;
}

.cookie-actions button {
  width: 82px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 700;
}

.cookie-actions .accept {
  width: 96px;
  color: var(--white);
  border-color: rgba(0, 76, 255, 0.45);
  background: var(--blue);
}

@media (max-width: 1023px) {
  .header-main__inner {
    gap: 14px;
  }

  .customer-priority-strip__inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .header-actions > .customer-balance-pill {
    display: none;
  }

  .customer-priority-strip__label {
    justify-self: start;
  }

  .mobile-menu {
    display: grid;
  }

  .search-box {
    max-width: 136px;
    min-width: 136px;
  }

  .search-box input {
    padding-right: 42px;
    padding-left: 48px;
  }

  .search-box input::placeholder,
  .search-box kbd {
    color: transparent;
    display: none;
  }

  .search-box button {
    left: 6px;
  }

  .search-box .product-search-autocomplete {
    inset-inline: auto;
    right: 0;
    width: min(360px, calc(100vw - 28px));
  }

  .nav-scroll {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .newsletter__inner {
    flex-direction: column-reverse;
    align-items: stretch;
    padding: 28px 0;
  }

  .newsletter form {
    justify-content: flex-start;
  }

  .footer-platform {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-platform__action {
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-panel {
    min-height: 0;
  }
}

@media (max-width: 767px) {
  .top-benefits {
    display: none;
  }

  .top-bar__inner {
    justify-content: flex-start;
  }

  .header-main,
  .header-main__inner {
    height: 72px;
  }

  .logo img {
    width: 116px;
  }

  .nav-strip {
    display: block;
    height: 46px;
  }

  .customer-priority-strip__inner {
    min-height: 0;
    padding-block: 8px;
  }

  .customer-priority-strip__label {
    display: none;
  }

  .customer-priority-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .customer-priority-links.has-balance {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .customer-priority-link {
    min-height: 58px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    padding: 8px;
    border-radius: 12px;
  }

  .customer-priority-link::after {
    display: none;
  }

  .customer-priority-link__icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .customer-priority-link__icon svg {
    width: 19px;
    height: 19px;
  }

  .customer-priority-link strong {
    font-size: 13.5px;
  }

  .customer-priority-link.is-balance strong {
    font-size: 12px;
  }

  .customer-priority-link small {
    display: none;
  }

  .nav-scroll {
    height: 46px;
  }

  .site-nav-list,
  .nav-sep {
    display: none;
  }

  .category-pill {
    width: 100%;
    justify-content: center;
    height: 34px;
  }

  .login-btn {
    width: 42px;
    height: 42px;
    padding: 0;
    display: grid;
    place-items: center;
    gap: 0;
    font-size: 0;
    line-height: 1;
  }

  .login-btn svg {
    width: 20px;
    height: 20px;
    margin: 0;
  }

  .search-box {
    order: -1;
    max-width: 40px;
    min-width: 40px;
  }

  .search-box input,
  .search-box::before {
    display: none;
  }

  .search-box button {
    position: static;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
  }

  .search-box .product-search-autocomplete {
    display: none !important;
  }

  .category-drawer__search .product-search-autocomplete {
    max-height: 48vh;
  }

  .product-search-suggestion {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
  }

  .product-search-suggestion__media {
    width: 48px;
    height: 48px;
  }

  .product-search-suggestion__price {
    grid-column: 2;
    justify-self: start;
    padding: 4px 8px;
    font-size: 12px;
  }

  .newsletter input {
    width: min(240px, 62vw);
  }

  .footer {
    padding-top: 28px;
  }

  .footer-platform,
  .footer-brand-panel,
  .footer-nav-panel,
  .footer-assurance-panel,
  .footer-commerce-row {
    border-radius: 14px;
  }

  .footer-platform {
    padding: 18px;
  }

  .footer-platform__copy strong {
    font-size: 15.5px;
  }

  .footer-platform__action {
    width: 100%;
  }

  .footer-brand-panel,
  .footer-nav-panel,
  .footer-assurance-panel {
    padding: 20px;
  }

  .footer-nav-panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-commerce-row {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
  }

  .payment-icons {
    justify-content: flex-end;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cookie-bar {
    min-height: 150px;
    flex-wrap: wrap;
    align-items: center;
    padding: 14px 16px;
  }

  .cookie-bar p {
    flex: 1 1 100%;
    order: 1;
  }

  .cookie-actions {
    order: 3;
    margin-inline-start: auto;
  }
}

@media (max-width: 520px) {
  .mobile-nav__panel {
    width: 100vw;
    border-inline-start: 0;
  }

  .category-drawer__top {
    padding-inline: 22px;
  }

  .category-drawer .category-drawer__list a,
  .category-all-link {
    min-height: 66px;
    padding-inline: 24px 70px;
  }

  .category-drawer__quick {
    grid-template-columns: repeat(2, 1fr);
  }
}
