:root {
  --ink: #061b3a;
  --muted: #68768c;
  --line: #e4e8ef;
  --pale: #f5f7fa;
  --nav: #022653;
  --nav-deep: #001d42;
  --blue: #064fb6;
  --logo-blue: #223a68;
  --page-pad: clamp(56px, 6vw, 118px);
  --page-pad-wide: clamp(120px, 9.4vw, 180px);
  --main-gap: clamp(52px, 5.6vw, 108px);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: #fff;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

.site-header {
  width: 100%;
  background: #fff;
}

.support-strip {
  height: 72px;
  background: linear-gradient(180deg, #fbfcfd 0%, #f3f5f8 100%);
  border-bottom: 1px solid #eef1f5;
}

.support-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.08fr;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--page-pad-wide);
}

.support-item {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.support-item svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  fill: none;
  stroke: #91a0b7;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-item span,
.order-phone {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.support-item strong,
.order-phone strong {
  color: #213553;
  font-size: 15px;
  font-weight: 800;
}

.support-item small,
.order-phone small {
  margin-top: 6px;
  color: #7f8a9d;
  font-size: 13px;
  font-weight: 500;
}

.order-phone {
  justify-self: end;
  text-align: left;
}

.order-phone strong {
  color: #092a5a;
  font-size: 20px;
  letter-spacing: 0.1px;
}

.main-header {
  height: 133px;
  background: #fff;
  position: relative;
  z-index: 4;
}

.main-inner {
  display: grid;
  grid-template-columns: clamp(204px, 17.5vw, 252px) minmax(560px, 930px) minmax(264px, 1fr);
  align-items: center;
  gap: var(--main-gap);
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  width: 214px;
  text-decoration: none;
}

.logo-link img {
  display: block;
  width: 210px;
  height: auto;
}

.search {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px 59px;
  height: 47px;
  border: 1px solid #d6dce5;
  border-radius: 3px;
  background: #fff;
  overflow: visible;
  z-index: 5;
}

.search-field {
  position: relative;
  min-width: 0;
}

.search input {
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0 25px;
  border: 0;
  outline: 0;
  color: #263b59;
  font-size: 16px;
  font-weight: 500;
}

.search input::placeholder {
  color: #9ba5b3;
}

.suggestions-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: -1px;
  z-index: 30;
  display: none;
  width: min(620px, calc(100vw - 40px));
  overflow: hidden;
  border: 1px solid #d6dce5;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 20px 42px rgba(6, 27, 58, 0.16);
}

.search.has-suggestions .suggestions-panel {
  display: block;
}

.suggestion-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 17px 10px;
  color: #6e7a8f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.suggestion-list {
  margin: 0;
  padding: 0 8px 8px;
  list-style: none;
}

.suggestion-option {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 13px;
  width: 100%;
  min-height: 58px;
  padding: 8px 11px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #071f43;
  cursor: pointer;
  text-align: left;
}

.suggestion-option:hover,
.suggestion-option.is-active {
  background: #f1f5fb;
}

.suggestion-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: #eef4fb;
  color: #0b56b4;
  font-size: 15px;
  font-weight: 900;
}

.suggestion-text {
  min-width: 0;
}

.suggestion-title {
  display: block;
  color: #071f43;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.suggestion-meta {
  display: block;
  margin-top: 4px;
  color: #6c7890;
  font-size: 12px;
  font-weight: 600;
}

.suggestion-type {
  color: #0b56b4;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.suggestion-empty {
  padding: 18px;
  color: #6c7890;
  font-size: 13px;
  font-weight: 600;
}

.category-picker {
  position: relative;
  min-width: 0;
}

.category-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  height: 100%;
  padding: 0 20px 0 25px;
  border: 0;
  border-left: 1px solid #d6dce5;
  background: #fff;
  color: #526176;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.category-select .category-label {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-select .chevron {
  display: inline-block;
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid #8a95a7;
  border-bottom: 1.5px solid #8a95a7;
  transform: translateY(-2px) rotate(45deg);
  color: #8a95a7;
}

.category-picker.is-open .chevron {
  transform: translateY(2px) rotate(225deg);
}

.category-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  display: none;
  width: 246px;
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid #d6dce5;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(6, 27, 58, 0.14);
}

.category-picker.is-open .category-menu {
  display: block;
}

.category-menu button {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: #263b59;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.category-menu button:hover,
.category-menu button:focus,
.category-menu button[aria-selected="true"] {
  background: #f1f5fb;
  color: #064fb6;
  outline: 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(680px, 46%) minmax(0, 54%);
  height: 560px;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 32%, rgba(14, 89, 193, 0.2), transparent 28%),
    linear-gradient(105deg, #001d42 0%, #001c3d 40%, #02152d 68%, #021325 100%);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 24, 54, 0.98) 0%, rgba(0, 31, 70, 0.93) 36%, rgba(0, 31, 70, 0.18) 58%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(135deg, rgba(0, 95, 205, 0.3), transparent 34%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 69% 28%, transparent 0 19%, rgba(255, 255, 255, 0.34) 19.2%, transparent 19.55%),
    radial-gradient(ellipse at 72% 20%, transparent 0 28%, rgba(255, 255, 255, 0.22) 28.2%, transparent 28.55%),
    linear-gradient(128deg, transparent 0 59.8%, rgba(255, 255, 255, 0.22) 59.88%, transparent 60.2%),
    linear-gradient(139deg, transparent 0 88%, rgba(255, 255, 255, 0.3) 88.1%, transparent 88.35%);
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  align-self: center;
  max-width: 690px;
  padding: 72px 0 66px var(--page-pad);
}

.hero-kicker {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(42px, 2.9vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: #1688ff;
}

.hero-copy {
  max-width: 470px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 620px;
  margin-top: 34px;
}

.hero-benefit {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 11px;
  align-items: start;
  min-width: 0;
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #0759bf;
  box-shadow: 0 0 0 5px rgba(7, 89, 191, 0.18);
}

.benefit-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #d7e8ff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-benefit strong {
  display: block;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
}

.hero-benefit small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 42px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.hero-button.primary {
  background: #075fcf;
  box-shadow: 0 12px 24px rgba(0, 62, 150, 0.28);
}

.hero-button.secondary {
  border: 2px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.04);
}

.hero-visual {
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%, 0 76%);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(132deg, transparent 0 84%, rgba(0, 28, 64, 0.94) 84.2% 100%),
    linear-gradient(90deg, rgba(0, 28, 64, 0.36), rgba(0, 0, 0, 0) 31%);
  z-index: 2;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.98) contrast(1.06);
  transform: translateX(-5%);
  transform-origin: center;
}

.category-section {
  padding: 72px var(--page-pad) 76px;
  background:
    radial-gradient(circle at 50% 0%, rgba(6, 49, 103, 0.06), transparent 34%),
    #f7f9fc;
  border-top: 1px solid #e8edf3;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 0;
  color: #071f43;
  font-size: 29px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.section-heading a {
  color: #526176;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.section-heading a span {
  margin-left: 10px;
  color: #075fcf;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  display: flex;
  flex-direction: column;
  min-height: 276px;
  padding: 20px 20px 18px;
  border: 1px solid #e4e9f0;
  border-radius: 4px;
  background: #fff;
  color: #071f43;
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(6, 27, 58, 0.04);
}

.category-image {
  display: grid;
  place-items: center;
  height: 124px;
  margin-bottom: 16px;
}

.category-image img {
  display: block;
  max-width: 100%;
  max-height: 124px;
  object-fit: contain;
}

.category-card h3 {
  margin: 0 0 8px;
  color: #071f43;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.category-card p {
  margin: 0;
  color: #69778c;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.45;
}

.shop-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  color: #075fcf;
  font-size: 12px;
  font-weight: 900;
}

.category-illustration {
  position: relative;
  overflow: hidden;
}

.boxes-art .box {
  position: absolute;
  border: 2px solid rgba(133, 79, 31, 0.16);
  background: linear-gradient(145deg, #c9874a, #e4aa70);
  box-shadow: 0 16px 24px rgba(94, 59, 32, 0.16);
}

.boxes-art .box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.24) 48% 52%, transparent 52%);
}

.box-large {
  width: 78px;
  height: 68px;
  left: 30px;
  top: 24px;
}

.box-small {
  width: 58px;
  height: 52px;
  right: 28px;
  top: 36px;
}

.tape-roll {
  position: absolute;
  right: 26px;
  bottom: 18px;
  width: 48px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 26%, #b3814d 27% 47%, #2c2d32 48% 56%, #f1e6d5 57%);
  box-shadow: 0 10px 18px rgba(6, 27, 58, 0.16);
}

.heatgun-art .gun-body {
  position: absolute;
  width: 118px;
  height: 44px;
  right: 18px;
  top: 42px;
  border-radius: 13px 24px 20px 13px;
  background: linear-gradient(145deg, #e6e8ec, #9da5b1);
  box-shadow: inset 0 4px 8px rgba(255, 255, 255, 0.6), 0 14px 20px rgba(6, 27, 58, 0.16);
  transform: rotate(4deg);
}

.heatgun-art .gun-nozzle {
  position: absolute;
  left: 18px;
  top: 44px;
  width: 48px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(90deg, #252a31, #5d6570);
  transform: rotate(4deg);
}

.heatgun-art .gun-handle {
  position: absolute;
  right: 52px;
  top: 76px;
  width: 30px;
  height: 58px;
  border: 11px solid #8c96a3;
  border-top: 0;
  border-radius: 0 0 16px 16px;
  transform: skewX(-10deg);
}

.heatgun-art .gun-trigger {
  position: absolute;
  right: 72px;
  top: 84px;
  width: 8px;
  height: 22px;
  border-radius: 999px;
  background: #343b45;
}

.arrow-art span {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: #05224b;
  color: #fff;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.search-button {
  display: grid;
  place-items: center;
  width: 59px;
  border: 0;
  background: #011f46;
  cursor: pointer;
}

.search-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
}

.account-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.account-link,
.basket-link {
  display: flex;
  align-items: center;
  color: #253957;
  text-decoration: none;
}

.account-link {
  gap: 16px;
}

.account-link > svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: #a3adbc;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-link span {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  line-height: 1.05;
  white-space: nowrap;
}

.account-link strong {
  color: #1d3150;
  font-size: 14px;
  font-weight: 800;
}

.account-link small {
  margin-top: 6px;
  color: #66758b;
  font-size: 13px;
  font-weight: 500;
}

.divider {
  width: 1px;
  height: 45px;
  background: #edf0f4;
}

.basket-link {
  gap: 14px;
}

.basket-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
}

.basket-icon svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: #60718c;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.basket-icon em {
  position: absolute;
  top: -6px;
  right: -6px;
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.basket-link strong {
  color: #2c3d58;
  font-size: 14px;
  font-weight: 700;
}

.category-nav {
  height: 64px;
  background: linear-gradient(90deg, var(--nav-deep) 0%, var(--nav) 100%);
  position: relative;
  z-index: 2;
}

.nav-inner {
  display: grid;
  grid-template-columns: minmax(168px, 0.9fr) minmax(174px, 0.95fr) minmax(168px, 0.9fr) minmax(194px, 1fr) minmax(143px, 0.78fr) minmax(144px, 0.82fr) minmax(390px, 2.1fr);
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding-left: var(--page-pad);
}

.nav-inner a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.nav-inner > a:not(.trade-tab) span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1.4px solid rgba(255, 255, 255, 0.82);
  border-bottom: 1.4px solid rgba(255, 255, 255, 0.82);
  transform: translateY(-2px) rotate(45deg);
}

.trade-tab {
  justify-content: flex-start !important;
  gap: 18px !important;
  padding-left: 34px;
  background: linear-gradient(90deg, #064898 0%, #075fcf 100%);
}

.trade-tab svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: #d8e8ff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trade-tab span {
  display: flex;
  flex-direction: column;
  color: #fff !important;
  line-height: 1.05;
}

.trade-tab strong {
  font-size: 15px;
  font-weight: 800;
}

.trade-tab small {
  margin-top: 6px;
  color: #c9ddf7;
  font-size: 12px;
  font-weight: 600;
}

@media (max-width: 760px) {
  .support-inner {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    min-height: 58px;
    padding: 8px 20px;
    row-gap: 8px;
  }

  .main-inner {
    grid-template-columns: 150px 1fr;
    gap: 18px;
    height: auto;
    min-height: 118px;
    padding: 18px 20px;
  }

  .search {
    grid-column: 1 / -1;
    order: 3;
  }

  .account-tools {
    gap: 12px;
  }

  .nav-inner {
    grid-template-columns: repeat(6, max-content) minmax(230px, 1fr);
    overflow-x: auto;
    padding-left: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 720px;
  }

  .hero-content {
    padding: 54px 20px;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: 100%;
    opacity: 0.34;
    clip-path: none;
  }
}
