.salons-hero {
  padding-top: 84px;
  padding-bottom: 64px;
  text-align: center;
}

.salons-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.salons-hero__intro {
  max-width: 40rem;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  font-weight: 300;
}

.salons-layout {
  display: grid;
  gap: 40px;
  padding-bottom: 130px;
}

.salons-list {
  padding-left: max(var(--vv-pad-x), var(--safe-left));
  margin-left: calc(-1 * max(var(--vv-pad-x), var(--safe-left)));
}

.salons-count {
  margin-top: 22px;
  margin-bottom: 8px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--vv-mute);
}

.vv-store {
  padding: 30px 24px 30px max(var(--vv-pad-x), var(--safe-left));
  margin-left: calc(-1 * max(var(--vv-pad-x), var(--safe-left)));
  border-bottom: 1px solid var(--vv-line);
  border-left: 1px solid transparent;
  -webkit-tap-highlight-color: transparent;
  transition: background var(--duration-ui) var(--ease-out), border-color var(--duration-ui) var(--ease-out);
}

.vv-store.is-active {
  background: var(--vv-pearl);
  border-left-color: var(--vv-ink);
}

@media (hover: hover) and (pointer: fine) {
  .vv-store:hover {
    background: var(--vv-pearl);
    border-left-color: var(--vv-ink);
  }
}

.vv-store__city {
  margin: 0 0 12px;
  font-size: clamp(20px, 2.4vw, 23px);
  letter-spacing: 0.04em;
}

.vv-store__name {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 14px;
  color: #555;
  margin: 0 0 18px;
}

.vv-store__meta {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 12.5px;
  line-height: 1.7;
  font-weight: 300;
  color: #555;
}

.vv-store__meta p {
  margin: 0;
}

.vv-store__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 24px;
}

.vv-route {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vv-mute);
  border-bottom: 1px solid var(--vv-hair);
  padding-bottom: 4px;
}

.vv-map {
  position: relative;
  min-height: 340px;
  background: var(--vv-pearl);
  overflow: hidden;
}

.vv-map__grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(#e6e6e6 1px, transparent 1px),
    linear-gradient(90deg, #e6e6e6 1px, transparent 1px);
  background-size: 88px 88px;
}

.vv-map__wash {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 60% 40%,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0) 62%
  );
}

.vv-map__pin {
  position: absolute;
  left: var(--pin-x, 52%);
  top: var(--pin-y, 42%);
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.vv-map__chip {
  display: block;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.94);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vv-ink);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.vv-map__dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vv-mute);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.9);
}

.vv-map__pin.is-active .vv-map__chip {
  background: var(--vv-ink);
  color: #fff;
}

.vv-map__pin.is-active .vv-map__dot {
  width: 9px;
  height: 9px;
  background: var(--vv-ink);
}

.vv-map__card {
  position: absolute;
  left: 28px;
  bottom: 28px;
  background: rgba(255, 255, 255, 0.92);
  padding: 18px 22px;
  max-width: 260px;
}

.vv-map__card-city {
  margin: 0 0 6px;
  font-family: var(--ff-serif);
  font-size: 16px;
  letter-spacing: 0.04em;
}

.vv-map__card-meta {
  margin: 0;
  font-size: 11px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--vv-mute);
}

@media (min-width: 992px) {
  .salons-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
  }

  .vv-map {
    position: sticky;
    top: calc(var(--header-offset) + 24px);
    height: 76vh;
    height: 76dvh;
    min-height: 520px;
  }
}

@media (max-width: 991px) {
  .salons-hero {
    padding-top: 56px;
    padding-bottom: 40px;
  }

  .salons-layout {
    gap: 28px;
    padding-bottom: 80px;
  }

  .vv-map {
    order: -1;
    height: 340px;
    min-height: 0;
  }

  .vv-map__card {
    left: max(16px, var(--safe-left));
    right: max(16px, var(--safe-right));
    bottom: max(16px, var(--safe-bottom));
    max-width: none;
  }
}

@media (max-width: 767px) {
  .salons-hero h1 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .salons-hero__intro {
    font-size: 13px;
    line-height: 1.8;
  }

  .vv-store {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-right: 16px;
  }

  .vv-store__actions {
    gap: 16px;
    margin-top: 20px;
  }

  .vv-map {
    height: 280px;
  }
}
