:root {
  --navy: #133475;
  --navy-deep: #0e2a5c;
  --navy-dark: #0a1f46;
  --red: #e11d2e;
  --red-deep: #c41826;
  --muted: #6c7689;
  --ink: #133475;
  --light: #f3f5f7;
  --line: #e4e8ee;
  --white: #ffffff;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 1.12;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.55rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
}

p {
  margin: 0;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.label {
  margin: 0 0 14px;
  color: var(--red);
  font-weight: 700;
  font-size: 1.05rem;
}

.label--light {
  color: #ffb3b8;
}

.lede {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.chev {
  display: inline-block;
  width: 0.55em;
  height: 0.55em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg) translateY(-1px);
  margin-left: 8px;
}

.chev--red {
  border-color: var(--red);
}

.chev--white {
  border-color: #fff;
}

.chev--down {
  transform: rotate(45deg);
  margin-left: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  transition: 0.2s ease;
  white-space: nowrap;
}

.btn__cal {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.btn--white {
  background: var(--white);
  color: var(--navy);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}

.btn--red {
  background: var(--red);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
}

.btn--white:hover,
.btn--navy:hover {
  transform: translateY(-1px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
}

/* Topbar */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 500;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 38px;
}

.topbar__contacts {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.topbar__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.topbar__contacts a:hover {
  color: #fff;
}

.topbar__contacts svg {
  width: 14px;
  height: 14px;
  opacity: 0.85;
}

.topbar__locations {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 1.2em;
  text-align: right;
}

.topbar__place {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: right;
  white-space: nowrap;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.topbar__place.is-active {
  opacity: 1;
  pointer-events: auto;
}

.topbar__place:hover strong {
  text-decoration: underline;
}

.topbar__place strong {
  font-weight: 700;
}

.topbar__place span {
  color: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
}

.header.is-stuck {
  box-shadow: 0 8px 24px rgba(19, 52, 117, 0.08);
}

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
}

.logo img {
  height: 48px;
  width: auto;
}

.nav {
  display: flex;
  align-self: stretch;
  align-items: stretch;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
  color: #4b5568;
}

.nav > a,
.nav-mega {
  display: flex;
  align-items: center;
}

.nav a:hover {
  color: var(--navy);
}

.nav__shop {
  align-items: center;
  gap: 7px;
  font-weight: 500;
  color: inherit;
}

.nav__shop svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}


.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: none;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 6px 8px;
}

.nav-mega {
  position: static;
}

.nav-mega__btn {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  gap: 6px;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.25s ease;
}

.nav-mega__btn:hover,
.nav-mega.is-open .nav-mega__btn,
.nav-mega__btn.is-current {
  color: var(--navy);
}

.nav-mega__btn.is-current {
  font-weight: 700;
}

.nav-mega__chev {
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  margin-top: -2px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.nav-mega.is-open .nav-mega__chev {
  transform: rotate(-135deg);
  margin-top: 3px;
}

.mega {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  right: 0;
  z-index: 45;
  padding: 28px 0 32px;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(19, 52, 117, 0.12);
}

.mega__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.mega__cat {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  color: var(--navy);
}

.mega__item + .mega__item {
  border-top: 1px solid var(--line);
}

.mega__item strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  transition: color 0.25s ease;
}

.mega__item em {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.4;
}

.mega__item:hover strong {
  color: var(--red);
}

.mega__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--light);
  color: var(--navy);
}

.mega__icon svg {
  width: 18px;
  height: 18px;
}

.mega__banner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  background: var(--navy-dark);
  color: #fff;
}

.mega__banner .mega__cat {
  color: #ffb3b8;
}

.mega__banner p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.mega__banner strong {
  display: block;
  margin: 8px 0 14px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.mega__banner .btn {
  margin-top: auto;
  justify-content: center;
  width: 100%;
}

/* Hero */
.hero {
  --hero-slide-ms: 6s;
  position: relative;
  min-height: min(702px, calc((100vh - 82px) * 0.9));
  background: #05070c;
  color: var(--white);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero__slides img.is-active {
  opacity: 1;
}

.hero__slides img:nth-child(1) {
  object-position: 42% 78%;
}

.hero__slides img:nth-child(2) {
  object-position: 48% 62%;
}

.hero__slides img:nth-child(3) {
  object-position: 52% 58%;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #05070c 0%, rgba(5, 7, 12, 0.45) 21%, rgba(5, 7, 12, 0.08) 49%, transparent 72%);
  pointer-events: none;
}

.hero__progress {
  position: absolute;
  top: 0;
  right: 0;
  left: 42%;
  z-index: 4;
  height: 3px;
  background: rgba(128, 128, 128, 0.6);
}

.hero__progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
}

.hero__progress-bar.is-running {
  animation: hero-load var(--hero-slide-ms, 6s) linear forwards;
}

@keyframes hero-load {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.hero__dots {
  position: absolute;
  right: 0;
  bottom: 56px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero__dots button.is-active {
  background: var(--red);
  transform: scale(1.15);
}

.hero > .wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: min(702px, calc((100vh - 82px) * 0.9));
}

.hero__content {
  padding: 80px 0 140px;
  max-width: 720px;
}

.hero__content h1 {
  max-width: none;
}

.hero__content p {
  margin: 22px 0 32px;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.scroll-link {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 4px;
  font-size: 0.95rem;
}

.hero-scroll {
  position: absolute;
  left: -42px;
  top: -115px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
}

.hero-scroll__ring {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 48px;
  height: 56px;
}

.hero-scroll__ring span {
  display: block;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border-right: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(45deg);
  animation: hero-chevron 1.5s ease-in-out infinite;
}

.hero-scroll__ring span:last-child {
  animation-delay: 0.18s;
}

@keyframes hero-chevron {
  0%,
  100% {
    opacity: 0.25;
    transform: rotate(45deg) translate(-4px, -4px);
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) translate(4px, 4px);
  }
}

/* Overlapping about intro */
.intro {
  position: relative;
  z-index: 3;
  background: var(--navy-deep);
  color: #d7deea;
  padding: 0 0 90px;
}

.intro__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: end;
}

.intro-card {
  position: relative;
  z-index: 5;
  background: var(--red);
  color: #fff;
  min-height: 480px;
  margin-top: -180px;
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.intro-card__label {
  font-weight: 600;
  font-size: 1.05rem;
}

.intro-card h2 {
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 700;
}

.intro-card__geo {
  position: absolute;
  top: 54px;
  right: -10px;
  width: 210px;
  height: 170px;
}

.intro-card__geo span {
  position: absolute;
  display: block;
  height: 38px;
  transform: skewY(-22deg);
}

.intro-card__geo span:nth-child(1) {
  top: 0;
  right: 0;
  width: 170px;
  background: #fff;
}

.intro-card__geo span:nth-child(2) {
  top: 62px;
  right: 18px;
  width: 190px;
  background: var(--navy);
}

.intro-card__geo span:nth-child(3) {
  top: 96px;
  right: 0;
  width: 150px;
  background: #fff;
}

.intro__copy {
  position: relative;
  padding: 48px 0 8px;
}

.intro__copy h2 {
  color: #fff;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  margin-bottom: 16px;
}

.intro__copy p {
  margin-bottom: 28px;
  max-width: 48ch;
}

/* Mission */
.mission {
  padding: 96px 0;
}

.split-title span {
  display: block;
  color: var(--red);
}

.mission .lede {
  margin: 20px 0 40px;
}

.mission__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.mission__cards h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.mission__cards p {
  color: var(--muted);
}

/* Brands */
.brands {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}

.brands__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.brands__copy h2 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  margin-bottom: 10px;
}

.brands__copy p {
  color: var(--muted);
  max-width: 34ch;
}

.brands__slider {
  position: relative;
  overflow: hidden;
}

.brands__slider::before,
.brands__slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  z-index: 2;
  pointer-events: none;
}

.brands__slider::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.brands__slider::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.brands__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.brands__track:hover {
  animation-play-state: paused;
}

.brands__set {
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 0 36px;
}

.brands__logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  height: 56px;
}

.brands__logo img {
  display: block;
  height: 56px;
  width: auto;
  max-width: none;
  object-fit: contain;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Services / products */
.services,
.work {
  background: var(--light);
  padding: 96px 0;
}

.services__head,
.work__head {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 40px;
}

.work__head {
  grid-template-columns: 1fr auto;
}

.services__head .label {
  max-width: 28ch;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.media-card {
  color: inherit;
}

.media-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 18px;
  background: #fff;
}

.media-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.media-card p {
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
}

.product-card__main {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
}

.product-card__media {
  position: relative;
  flex: 0 0 210px;
  height: 210px;
  background: #fff;
  overflow: hidden;
}

.product-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.07);
}

.product-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.badge::before {
  content: "";
  width: 11px;
  height: 11px;
  background: currentColor;
  -webkit-mask: var(--badge-icon) center / contain no-repeat;
  mask: var(--badge-icon) center / contain no-repeat;
}

.badge--sale {
  --badge-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M21.41 11.58 12.41 2.58A2 2 0 0 0 11 2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 .59 1.41l9 9a2 2 0 0 0 2.82 0l7-7a2 2 0 0 0 0-2.83ZM6.5 8A1.5 1.5 0 1 1 8 6.5 1.5 1.5 0 0 1 6.5 8Z'/%3E%3C/svg%3E");
  background: var(--red);
  color: #fff;
}

.badge--hot {
  --badge-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 14.9 8.26 22 9.27l-5 4.87 1.18 6.88L12 17.77 5.82 21.02 7 14.14 2 9.27l7.1-1.01L12 2Z'/%3E%3C/svg%3E");
  background: var(--navy);
  color: #fff;
}

.badge--stock {
  --badge-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2Zm-1.2 14.2-4-4 1.4-1.4 2.6 2.58 5.6-5.58 1.4 1.4Z'/%3E%3C/svg%3E");
  background: #e7f6ec;
  color: #157347;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 14px 16px 10px;
}

.product-card__cat {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-card h3 {
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 6px;
}

.product-card__desc {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding: 0 16px 16px;
}

.product-card__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: var(--red);
  color: #fff;
  cursor: pointer;
}

.product-card__cart svg {
  width: 18px;
  height: 18px;
}

.product-card__cart:hover {
  background: var(--red-deep);
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-card__price strong {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.product-card__price s {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Stats */
.stats {
  background: var(--navy-deep);
  color: #fff;
  padding: 80px 0;
  overflow: hidden;
}

.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: stretch;
}

.stats__map {
  position: relative;
  min-height: 520px;
  background: #d8e0ea;
  overflow: hidden;
}

.site-map,
#servisi-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #d8e0ea;
}

.site-map img,
#servisi-map img {
  max-width: none;
}

.site-map .leaflet-control-attribution,
#servisi-map .leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}

.leaflet-fade-anim .leaflet-popup {
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease !important;
}

.leaflet-fade-anim .leaflet-popup.is-visible {
  transform: translateY(0);
}

.map-popup .leaflet-popup-content-wrapper {
  border-radius: 10px;
  padding: 4px 2px 2px;
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(19, 52, 117, 0.16);
}

.map-popup .leaflet-popup-content {
  margin: 14px 16px 12px;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  line-height: 1.45;
}

.map-popup .leaflet-popup-tip {
  box-shadow: 0 8px 16px rgba(19, 52, 117, 0.12);
}

.map-popup .leaflet-popup-close-button {
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
}

.map-popup .leaflet-popup-close-button:hover {
  color: var(--navy);
}

.map-popup__tag {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.map-popup__inner strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.map-popup__inner p:last-child {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

@media (prefers-reduced-motion: reduce) {
  .leaflet-fade-anim .leaflet-popup {
    transform: none;
    transition: none !important;
  }
}

.map-nav-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  padding: 11px 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(10, 31, 70, 0.16);
}

.map-nav-btn:hover {
  background: var(--navy);
  color: #fff;
}

.map-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.map-zoom__btn {
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  font-size: 0;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(10, 31, 70, 0.16);
}

.map-zoom__btn::before,
.map-zoom__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  border-radius: 1px;
  transform: translate(-50%, -50%);
}

.map-zoom__btn::before {
  width: 14px;
  height: 2px;
}

.map-zoom__btn[data-zoom="in"]::after {
  width: 2px;
  height: 14px;
}

.map-zoom__btn:hover {
  background: var(--navy);
  color: #fff;
}

.map-pin {
  background: none !important;
  border: 0 !important;
}

.map-pin__body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--navy);
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-45deg);
  box-shadow: 0 10px 20px rgba(10, 31, 70, 0.28);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.map-pin__bars {
  display: flex;
  flex-direction: column;
  gap: 3px;
  transform: rotate(45deg);
}

.map-pin__bars i {
  display: block;
  width: 16px;
  height: 3px;
  background: #fff;
  transform: skewY(-18deg);
}

.map-pin__bars i:nth-child(2) {
  background: #8fb0ea;
}

.map-pin.is-active .map-pin__body {
  background: var(--navy);
  transform: rotate(-45deg) scale(1.14);
  box-shadow: 0 0 0 7px rgba(19, 52, 117, 0.22), 0 12px 22px rgba(10, 31, 70, 0.3);
}

.stats__copy h2 {
  margin: 8px 0 14px;
}

.stats__copy > p {
  color: #c5cedd;
  max-width: 48ch;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 24px;
}

.stat-row strong {
  display: block;
  font-size: 2.4rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-row span {
  color: #c5cedd;
  font-size: 0.9rem;
}

.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.chip {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  border-radius: 999px;
  padding: 7px 13px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.chip.is-active,
.chip:hover {
  background: var(--red);
  border-color: var(--red);
}

.location-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 168px;
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.location-card.is-fading {
  opacity: 0;
  transform: translateY(10px);
}

.location-card__tag {
  color: #ffb3b8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-card h3 {
  margin: 6px 0;
  font-size: 1.2rem;
}

.location-card__treat {
  font-weight: 600;
  margin: 6px 0 10px;
}

.location-card__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.location-card__contacts a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

/* Categories */
.categories {
  padding: 90px 0;
}

.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 56px;
  margin-top: 28px;
}

.cat-grid a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
  font-size: 1.15rem;
  transition: color 0.25s ease;
}

.cat-grid span {
  color: var(--muted);
  font-weight: 600;
}

.cat-grid a:hover {
  color: var(--red);
}

/* FAQ */
.faq {
  padding: 20px 0 90px;
}

.faq-list {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 22px 36px 22px 0;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  cursor: pointer;
  position: relative;
}

.faq-item__q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 1.4rem;
}

.faq-item.is-open .faq-item__q::after {
  content: "–";
}

.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0;
  color: var(--muted);
  max-width: 70ch;
  transition: grid-template-rows 0.4s ease;
}

.faq-item.is-open .faq-item__a {
  grid-template-rows: 1fr;
}

.faq-item__a > * {
  overflow: hidden;
  min-height: 0;
}

.faq-item.is-open .faq-item__a > * {
  padding-bottom: 20px;
}

/* CTA */
.cta {
  background: var(--red);
  color: #fff;
  padding: 88px 0;
}

.cta h2 {
  max-width: 16ch;
}

.cta p {
  margin: 16px 0 28px;
  max-width: 46ch;
}

/* Footer */
.footer {
  background: var(--navy-dark);
  color: #c5cedd;
  padding: 64px 0 0;
}

.footer h3 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer a {
  display: block;
  margin: 8px 0;
}

.footer a:hover {
  color: #fff;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.9fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.logo--footer img {
  height: 42px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.88rem;
}

.footer a.footer-dev-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  white-space: nowrap;
}

.footer-dev-credit img {
  display: block;
  height: 26px;
  width: auto;
}

/* Modal */
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 70, 0.55);
}

.modal__panel {
  position: relative;
  width: min(560px, calc(100% - 24px));
  margin: 6vh auto;
  background: #fff;
  padding: 28px;
  max-height: 88vh;
  overflow: auto;
}

.modal__panel--nav {
  width: min(460px, calc(100% - 24px));
  border-radius: 20px;
  margin-top: 18vh;
}

.nav-apps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.nav-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
}

.nav-app img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.nav-app:hover {
  border-color: var(--navy);
  background: var(--light);
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: 0;
  background: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--muted);
}

.modal h2 {
  margin-bottom: 6px;
}

.modal__panel--thanks {
  width: min(440px, calc(100% - 24px));
  margin-top: 18vh;
}

.thanks-count {
  color: var(--navy) !important;
  font-weight: 600;
}

.thanks-count strong {
  color: var(--red);
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thanks-actions .btn {
  justify-content: center;
  flex: 1;
}

.thanks-actions .btn--ghost {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
}

.thanks-actions .btn--ghost:hover {
  border-color: var(--navy);
}

.modal p {
  color: var(--muted);
  margin-bottom: 16px;
}

#booking-form,
.site-form {
  display: grid;
  gap: 12px;
}

#booking-form label,
.site-form label {
  display: grid;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 600;
}

#booking-form input,
#booking-form select,
#booking-form textarea,
.site-form input:not([type="checkbox"]),
.site-form select,
.site-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: #fff;
}

#booking-form input:focus,
#booking-form select:focus,
#booking-form textarea:focus,
.site-form input:not([type="checkbox"]):focus,
.site-form select:focus,
.site-form textarea:focus {
  outline: 2px solid var(--navy);
  outline-offset: 1px;
  border-color: var(--navy);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-ok {
  color: #15803d !important;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .intro__grid,
  .brands__grid,
  .mission__cards,
  .services__head,
  .stats__grid,
  .cards-3 {
    grid-template-columns: 1fr;
  }

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

  .footer__top,
  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px 24px;
    box-shadow: 0 12px 30px rgba(19, 52, 117, 0.12);
  }

  .nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .nav-mega {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-mega__btn {
    align-self: flex-start;
    padding: 6px 0;
  }

  .mega {
    position: static;
    width: 100%;
    padding: 8px 0 4px;
    border: 0;
    box-shadow: none;
  }

  .mega__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mega__banner {
    min-height: 0;
  }

  .hero__media {
    width: 72%;
  }

  .stats__map {
    min-height: 380px;
  }

  .intro-card {
    margin-top: -80px;
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .cat-grid,
  .form-row,
  .work__head,
  .stat-row,
  .footer__bottom,
  .header__inner {
    grid-template-columns: 1fr auto;
  }

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

  .hero {
    min-height: auto;
  }

  .hero__media {
    width: 100%;
    height: 100%;
  }

  .hero__media::after {
    background: linear-gradient(180deg, rgba(5, 7, 12, 0.72) 0%, rgba(5, 7, 12, 0.45) 55%, #05070c 100%),
      linear-gradient(90deg, #05070c 0%, transparent 65%);
  }

  .hero > .wrap,
  .hero__content {
    min-height: 504px;
    padding: 56px 0 80px;
  }

  .header__right .btn--red {
    display: none;
  }

  .topbar__place span {
    display: none;
  }

  .hero-scroll {
    top: -28px;
  }

  .hero__dots {
    right: 0;
    bottom: 28px;
  }

  .intro-card {
    margin-top: -40px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
  }
}

/* Webflow-style scroll reveal */
.js-reveal .hero__content > *,
.js-reveal .intro-card,
.js-reveal .intro__copy > h2,
.js-reveal .intro__copy > p,
.js-reveal .intro__copy > .btn,
.js-reveal .brands__copy,
.js-reveal .brands__slider,
.js-reveal .mission .label,
.js-reveal .mission .split-title,
.js-reveal .mission .lede,
.js-reveal .mission__cards article,
.js-reveal .services__head,
.js-reveal .cards-3 .media-card,
.js-reveal .stats__map,
.js-reveal .stats__copy > .label,
.js-reveal .stats__copy > h2,
.js-reveal .stats__copy > p,
.js-reveal .stat-row,
.js-reveal .city-chips,
.js-reveal .location-card,
.js-reveal .work__head,
.js-reveal .product-card,
.js-reveal .categories .label,
.js-reveal .categories h2,
.js-reveal .cat-grid a,
.js-reveal .faq .label,
.js-reveal .faq h2,
.js-reveal .faq-item,
.js-reveal .page-hero .wrap > *,
.js-reveal .shop__aside,
.js-reveal .shop-toolbar,
.js-reveal .contact__info > *,
.js-reveal .contact-panel,
.js-reveal .rekviziti__head,
.js-reveal .copy-field,
.js-reveal .contact-visit__head,
.js-reveal .contact-visit__grid,
.js-reveal .contact-partners__title,
.js-reveal .contact-place,
.js-reveal .prose,
.js-reveal .compare,
.js-reveal .steps,
.js-reveal .price-table,
.js-reveal .product-split,
.js-reveal .cta .wrap > * {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-reveal .intro-card {
  transform: translate3d(-36px, 28px, 0);
}

.js-reveal .is-in {
  opacity: 1 !important;
  transform: none !important;
}

.js-reveal .location-card.is-fading {
  opacity: 0 !important;
  transform: translateY(10px) !important;
}

@media (prefers-reduced-motion: reduce) {
  .brands__track,
  .hero-scroll__ring span,
  .hero__progress-bar,
  .hero__slides img,
  .faq-item__a,
  .topbar__place {
    animation: none;
    transition: none;
  }

  .chip,
  .location-card,
  .map-pin__body,
  .product-card__media img {
    transition: none;
  }

  .product-card:hover .product-card__media img {
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }

  .js-reveal .hero__content > *,
  .js-reveal .intro-card,
  .js-reveal .intro__copy > h2,
  .js-reveal .intro__copy > p,
  .js-reveal .intro__copy > .btn,
  .js-reveal .brands__copy,
  .js-reveal .brands__slider,
  .js-reveal .mission .label,
  .js-reveal .mission .split-title,
  .js-reveal .mission .lede,
  .js-reveal .mission__cards article,
  .js-reveal .services__head,
  .js-reveal .cards-3 .media-card,
  .js-reveal .stats__map,
  .js-reveal .stats__copy > .label,
  .js-reveal .stats__copy > h2,
  .js-reveal .stats__copy > p,
  .js-reveal .stat-row,
  .js-reveal .city-chips,
  .js-reveal .location-card,
  .js-reveal .work__head,
  .js-reveal .product-card,
  .js-reveal .categories .label,
  .js-reveal .categories h2,
  .js-reveal .cat-grid a,
  .js-reveal .faq .label,
  .js-reveal .faq h2,
  .js-reveal .faq-item,
  .js-reveal .page-hero .wrap > *,
  .js-reveal .shop__aside,
  .js-reveal .shop-toolbar,
  .js-reveal .contact__info > *,
  .js-reveal .contact-panel,
  .js-reveal .rekviziti__head,
  .js-reveal .copy-field,
  .js-reveal .contact-visit__head,
  .js-reveal .contact-visit__grid,
  .js-reveal .contact-partners__title,
  .js-reveal .contact-place,
  .js-reveal .prose,
  .js-reveal .compare,
  .js-reveal .steps,
  .js-reveal .price-table,
  .js-reveal .product-split,
  .js-reveal .cta .wrap > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Shop archive + product */
.page-hero {
  background: var(--navy-dark);
  color: #fff;
  padding: 48px 0 56px;
}

.page-hero h1 {
  margin: 8px 0 14px;
}

.page-hero p {
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.78);
}

.prose {
  padding: 64px 0 24px;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose p {
  max-width: 68ch;
  margin-bottom: 16px;
}

.prose h2 {
  margin: 0 0 16px;
}

.prose ul {
  margin: 0 0 20px;
  padding-left: 1.15em;
}

.prose li + li {
  margin-top: 8px;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 8px;
}

.compare article {
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.compare h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.compare p,
.compare li {
  color: var(--muted);
  font-size: 0.95rem;
}

.compare ul {
  margin: 12px 0 0;
  padding-left: 1.15em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0 8px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.steps strong {
  display: block;
  margin-bottom: 6px;
}

.price-table {
  width: 100%;
  margin: 8px 0 24px;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table th {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-table td {
  font-weight: 600;
}

.price-table td:last-child,
.price-table th:last-child {
  text-align: right;
  color: var(--navy);
  white-space: nowrap;
}

.note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 28px;
}

.note-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: var(--light);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 600;
}

.product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}

.product-split article {
  padding: 24px;
  border: 1px solid var(--line);
}

.product-split h3 {
  margin-bottom: 8px;
}

.page-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
}

.crumbs a:hover {
  color: #fff;
}

.crumbs a::after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.35);
}

.crumbs--dark {
  color: var(--muted);
  padding: 28px 0 8px;
}

.crumbs--dark a {
  color: var(--navy);
}

.crumbs--dark a:hover {
  color: var(--red);
}

.crumbs--dark a::after {
  color: var(--line);
}

.shop {
  padding: 48px 0 90px;
}

.shop__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

.shop__aside h2 {
  font-size: 1rem;
  margin: 28px 0 12px;
}

.shop-search {
  display: grid;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
}

.shop-search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: #fff;
}

.shop-cats {
  display: grid;
}

.shop-cat {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  transition: color 0.25s ease;
  color: var(--navy);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.shop-cat span:last-child {
  color: var(--muted);
}

.shop-cat.is-active,
.shop-cat:hover {
  color: var(--red);
}

.shop-aside-note {
  margin-top: 28px;
  padding: 16px;
  background: var(--light);
  color: var(--muted);
  font-size: 0.88rem;
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.shop-toolbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.shop-select {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--navy);
}

.shop-select__btn {
  min-width: 180px;
  padding: 10px 36px 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23133475' d='M1.2 1.2 6 6l4.8-4.8'/%3E%3C/svg%3E") no-repeat right 12px center;
  color: var(--navy);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.shop-select__btn[aria-expanded="true"] {
  border-color: var(--navy);
}

.shop-select__list {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 8;
  min-width: 100%;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(19, 52, 117, 0.12);
}

.shop-select__list button {
  display: block;
  width: 100%;
  padding: 9px 12px;
  border: 0;
  border-radius: 6px;
  background: none;
  color: var(--navy);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.shop-select__list button:hover,
.shop-select__list button[aria-selected="true"] {
  background: var(--light);
  color: var(--red);
}

.shop-select--field {
  display: grid;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 600;
}

.shop-select--field .shop-select__btn {
  width: 100%;
  min-width: 0;
  padding: 11px 36px 11px 12px;
  font-weight: 500;
}

.shop-select--field .shop-select__btn.is-placeholder {
  color: var(--muted);
}

.shop-select--field .shop-select__list {
  left: 0;
  right: 0;
}

.shop-select--field.is-invalid .shop-select__btn {
  border-color: var(--red);
}

.shop-views {
  display: flex;
  gap: 4px;
}

.shop-views button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}

.shop-views button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.shop-views button.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.shop-grid {
  margin: 0;
  grid-template-columns: repeat(3, 1fr);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.shop-grid.is-fading {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.shop-grid[data-view="4"] {
  grid-template-columns: repeat(4, 1fr);
}

.shop-grid[data-view="list"] {
  grid-template-columns: 1fr;
}

.shop-grid[data-view="list"] .product-card {
  flex-direction: row;
  align-items: stretch;
}

.shop-grid[data-view="list"] .product-card__main {
  flex-direction: row;
  flex: 1;
}

.shop-grid[data-view="list"] .product-card__media {
  flex: 0 0 180px;
  height: 160px;
}

.shop-grid[data-view="list"] .product-card__body {
  padding-top: 20px;
}

.shop-grid[data-view="list"] .product-card__meta {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  align-self: stretch;
  margin-top: 0;
  min-width: 140px;
  padding: 20px 20px 16px;
}

.shop-empty {
  padding: 40px 0;
  color: var(--muted);
}

.shop-pager {
  display: flex;
  gap: 8px;
  margin-top: 32px;
}

.shop-page {
  min-width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.shop-page.is-active,
.shop-page:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* Contact page */
.contact {
  padding: 64px 0 80px;
}

.contact__layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: start;
}

.contact__info h2,
.contact-panel h2,
.contact-visit__head h2 {
  margin: 0 0 14px;
}

.contact__info .lede,
.contact-panel > p,
.contact-visit__head .lede {
  color: var(--muted);
  margin-bottom: 28px;
}

.contact-ways {
  border-top: 1px solid var(--line);
  margin-bottom: 28px;
}

.contact-way {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-way a:hover strong {
  color: var(--red);
}

.contact-way__body {
  flex: 1;
  min-width: 0;
}

.contact-way__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--light);
  color: var(--navy);
}

.contact-way__icon svg {
  width: 20px;
  height: 20px;
}

.contact-way__k {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-way strong {
  display: block;
  margin-top: 4px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  transition: color 0.25s ease;
}

.contact-dir {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
  transition: color 0.25s ease;
}

.contact-dir:hover {
  color: var(--red);
}

.contact-dir .chev {
  border-color: var(--red);
}

.contact-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-panel {
  border: 1px solid var(--line);
  background: #fff;
  padding: 32px;
}

.contact-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.contact-privacy input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--navy);
  cursor: pointer;
}

.contact-privacy input:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

.contact-privacy.is-invalid input {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.contact-privacy label {
  display: inline;
  font-size: inherit;
  font-weight: 500;
  cursor: pointer;
}

.contact-privacy a {
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
}

.contact-privacy a:hover {
  color: var(--red);
  border-color: var(--red);
}

.site-form {
  position: relative;
}

.site-form .btn {
  justify-content: center;
}

.site-form .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.rekviziti {
  padding: 0 0 80px;
}

.rekviziti__head {
  margin-bottom: 28px;
}

.rekviziti__head h2 {
  margin: 0 0 14px;
}

.rekviziti__head .lede {
  color: var(--muted);
}

.rekviziti__card {
  border: 1px solid var(--line);
  background: #fff;
}

.copy-field {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 18px 22px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.copy-field:last-of-type {
  border-bottom: 0;
}

.copy-field:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: -2px;
}

.copy-field__k {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.copy-field__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.copy-field strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.copy-field__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.copy-field__done {
  font-size: 0.78rem;
  font-weight: 700;
  color: #157347;
  opacity: 0;
  transform: translateX(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.copy-field__icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--light);
  color: var(--navy);
  opacity: 0;
  transition: opacity 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.copy-field__icon svg {
  width: 16px;
  height: 16px;
}

.copy-field__check {
  display: none;
}

.copy-field:hover .copy-field__icon,
.copy-field:focus-visible .copy-field__icon,
.copy-field.is-copied .copy-field__icon {
  opacity: 1;
}

.copy-field.is-copied .copy-field__done {
  opacity: 1;
  transform: none;
}

.copy-field.is-copied .copy-field__copy {
  display: none;
}

.copy-field.is-copied .copy-field__check {
  display: block;
}

.copy-field.is-copied .copy-field__icon {
  background: #e7f6ec;
  color: #157347;
}

.copy-live {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.copy-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.copy-line a {
  min-width: 0;
  overflow-wrap: anywhere;
}

.copy-field--line {
  width: auto;
  padding: 0;
  border: 0;
  background: none;
}

.copy-field--line .copy-field__done {
  display: none;
}

.copy-line:hover .copy-field__icon,
.copy-line:focus-within .copy-field__icon,
.copy-field--line.is-copied .copy-field__icon {
  opacity: 1;
}

.copy-field--line.is-copied .copy-field__done {
  display: inline;
  opacity: 1;
  transform: none;
}

@media (hover: none) {
  .copy-field__icon {
    opacity: 1;
  }
}

.contact-visit {
  background: var(--light);
  padding: 72px 0 80px;
}

.contact-visit__head {
  margin-bottom: 36px;
}

.contact-visit__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.contact-map {
  position: relative;
  min-height: 360px;
  height: 100%;
  background: #d8e0ea;
  border: 1px solid var(--line);
  overflow: hidden;
}

.contact-hq {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  padding: 28px;
}

.contact-hq .btn {
  margin-top: auto;
  align-self: flex-start;
}

.contact-hq__links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin: 12px 0 24px;
}

.contact-hq__links a,
.contact-place a {
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

.contact-hq__links a:hover,
.contact-place a:hover {
  color: var(--red);
  border-color: var(--red);
}

.contact-partners__title {
  margin: 48px 0 20px;
  font-size: 1.15rem;
}

.contact-partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-place {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px;
}

.contact-place__city {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-place h3 {
  margin: 6px 0 8px;
  font-size: 1.05rem;
}

.contact-place p {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-place__treat {
  font-weight: 600;
  color: var(--navy) !important;
  margin: 8px 0 12px;
}

.contact-place a {
  display: inline-block;
  margin-bottom: 6px;
}

.contact-place .copy-line {
  align-self: stretch;
  margin-bottom: 6px;
}

.contact-place .copy-line a {
  margin-bottom: 0;
}

.contact-place .contact-dir {
  margin-top: 10px;
}

.pdp {
  padding-bottom: 80px;
}

.pdp__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 20px 0 40px;
}

.pdp__media {
  background: var(--light);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.pdp__media img {
  max-height: 420px;
  width: auto;
  object-fit: contain;
}

.pdp__info h1 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 8px 0 12px;
}

.pdp__meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.pdp__stock {
  color: #15803d;
  font-weight: 700;
}

.pdp__stock.is-out {
  color: var(--red);
}

.pdp__price {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.pdp__vat,
.pdp__short {
  color: var(--muted);
  margin-bottom: 16px;
}

.pdp__buy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 8px 0 24px;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.qty button,
.qty input {
  border: 0;
  background: #fff;
  height: 42px;
  text-align: center;
}

.qty button {
  width: 40px;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--navy);
}

.qty input {
  width: 48px;
  font-weight: 700;
  -moz-appearance: textfield;
}

.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button {
  appearance: none;
}

.pdp__trust {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.pdp__trust li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.pdp__tabs {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.pdp__tablist {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.pdp__tablist button {
  border: 0;
  background: none;
  padding: 8px 0;
  margin-right: 22px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.pdp__tablist button.is-active {
  color: var(--navy);
  border-bottom-color: var(--red);
}

.pdp__panel {
  max-width: 70ch;
  color: var(--muted);
}

.pdp__panel a {
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
}

.pdp__related {
  margin-top: 56px;
}

.pdp__related h2 {
  margin-bottom: 24px;
}

.nav a.is-current {
  color: var(--navy);
  font-weight: 700;
}

.nav__shop.is-current {
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 980px) {
  .compare,
  .steps,
  .product-split,
  .shop__layout,
  .pdp__grid,
  .contact__layout,
  .contact-visit__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-partners {
    grid-template-columns: 1fr 1fr;
  }

  .pdp__media {
    min-height: 280px;
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .shop-toolbar__right {
    justify-content: space-between;
  }

  .shop-grid[data-view="3"],
  .shop-grid[data-view="4"] {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .shop-grid[data-view="3"],
  .shop-grid[data-view="4"] {
    grid-template-columns: 1fr;
  }

  .shop-grid[data-view="list"] .product-card,
  .shop-grid[data-view="list"] .product-card__main {
    flex-direction: column;
  }

  .shop-grid[data-view="list"] .product-card__media {
    flex-basis: 180px;
    width: 100%;
  }

  .shop-grid[data-view="list"] .product-card__meta {
    flex-direction: row;
    align-items: center;
    width: 100%;
  }

  .contact,
  .rekviziti,
  .contact-visit {
    padding: 48px 0 56px;
  }

  .contact-panel {
    padding: 22px;
  }

  .contact-partners,
  .site-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* Header cart + sidecart */
.header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}

.header-cart svg {
  width: 20px;
  height: 20px;
}

.header-cart:hover {
  border-color: var(--navy);
}

.header-cart__count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 18px;
}

.sidecart {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.sidecart[hidden] {
  display: block;
  pointer-events: none;
}

.sidecart__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 70, 0.46);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.sidecart.is-open .sidecart__backdrop {
  opacity: 1;
}

.sidecart__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(420px, 100%);
  height: 100%;
  background: #fff;
  box-shadow: -16px 0 40px rgba(19, 52, 117, 0.16);
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.sidecart.is-open .sidecart__panel {
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .sidecart__backdrop,
  .sidecart__panel {
    transition: none;
  }
}

.sidecart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.sidecart__head h2 {
  margin: 0;
  font-size: 1.25rem;
}

.sidecart__empty {
  margin: 28px 22px;
  color: var(--muted);
}

.sidecart__list {
  flex: 1;
  overflow: auto;
  padding: 20px 22px 16px;
  display: grid;
  gap: 20px;
  align-content: start;
}

.sidecart__item,
.checkout-line {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: start;
}

.sidecart__thumb {
  position: relative;
  width: 72px;
  height: 72px;
}

.sidecart__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.sidecart__badge {
  position: absolute;
  top: -6px;
  left: -6px;
  z-index: 1;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 20px;
  text-align: center;
}

.sidecart__info a,
.checkout-line p {
  display: block;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 4px;
}

.sidecart__info a:hover {
  color: var(--red);
}

.sidecart__info strong,
.checkout-line strong {
  display: block;
  color: var(--navy);
}

.checkout-line span {
  color: var(--muted);
  font-size: 0.82rem;
}

.sidecart__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.qty--sm button,
.qty--sm input {
  height: 34px;
}

.qty--sm button {
  width: 32px;
}

.qty--sm input {
  width: 38px;
}

.sidecart__remove {
  border: 0;
  background: none;
  padding: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.sidecart__remove:hover {
  color: var(--red);
}

.sidecart__summary {
  display: grid;
  gap: 8px;
  padding: 18px 22px 24px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.sidecart__summary p,
.checkout-totals p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  color: var(--muted);
}

.sidecart__total,
.checkout-totals .checkout-totals__sum {
  color: var(--navy);
  font-size: 1.05rem;
}

.sidecart__summary .btn,
.checkout-side .btn {
  justify-content: center;
  width: 100%;
  margin-top: 6px;
}

.sidecart__summary .btn[hidden] {
  display: none;
}

.sidecart__summary .btn--ghost {
  border: 1px solid var(--line);
  background: #fff;
}

/* Checkout */
.checkout-page {
  background: var(--light);
  padding: 36px 0 72px;
}

.checkout-page .crumbs--dark {
  padding: 0 0 8px;
}

.checkout-page h1 {
  margin: 8px 0 28px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.checkout-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
}

.checkout-card h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.checkout-card h2 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 0.85rem;
}

.checkout-card > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.req {
  color: var(--red);
}

.site-form .checkout-card label > span {
  display: inline;
}

.buyer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.site-form .buyer-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font-weight: 700;
}

.buyer-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.buyer-card svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.buyer-card.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.pay-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1.5px solid var(--navy);
  border-radius: 12px;
  background: rgba(19, 52, 117, 0.05);
  font-weight: 700;
  margin-bottom: 16px;
}

.pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.pay-chip {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-weight: 700;
  cursor: pointer;
}

.pay-chip.is-active {
  border-color: var(--navy);
  color: var(--navy);
}

.checkout-side {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}

.checkout-side h2 {
  margin: 0 0 16px;
  font-size: 1.15rem;
}

.checkout-side [data-checkout-list] {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.checkout-totals {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.checkout-side .contact-privacy {
  margin: 16px 0 4px;
}

.checkout-empty,
.checkout-done {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
  max-width: 560px;
}

.checkout-empty .btn,
.checkout-done .btn {
  margin-top: 16px;
}

.checkout-edit {
  display: inline;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  background: none;
  appearance: none;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.checkout-edit:hover {
  color: var(--red);
}

.checkout-back {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 600;
}

@media (max-width: 980px) {
  .checkout-grid,
  .buyer-grid,
  .pay-grid {
    grid-template-columns: 1fr;
  }

  .checkout-side {
    position: static;
  }
}
