/* Страница «Обо мне» — косметолог: широкая сетка, единые отступы и типографика сайта */

.about-page--cosmetologist {
  --about-edge: clamp(10px, 1.1vw, 15px);
  --about-shell: min(1400px, 100%);
  --about-scale: 0.8;
  --about-card-pad-y: clamp(22px, 3.2vw, 32px);
  --about-card-pad-x: clamp(14px, 2vw, 20px);
  --about-card-radius: 16px;
  width: 100%;
  max-width: none;
  padding-bottom: clamp(38px, 5.6vw, 64px);
}

@media (min-width: 901px) {
  .about-page--cosmetologist {
    --about-edge: clamp(4px, 0.45vw, 8px);
    --about-shell: min(1680px, calc(100% - clamp(12px, 1.6vw, 24px)));
    --about-card-pad-x: clamp(12px, 1.2vw, 16px);
  }
}

/* Hero */
.about-page--cosmetologist .about-hero.about-hero--cosmetologist {
  display: block;
  min-height: auto;
  color: #fff;
  background: linear-gradient(135deg, #2d9de8 0%, #3b82c4 45%, #3dcc9f 100%);
}

.about-page--cosmetologist .about-hero--cosmetologist .about-hero__inner {
  width: 100%;
  max-width: var(--about-shell);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 92px) var(--about-edge) clamp(48px, 6vw, 72px);
}

.about-page--cosmetologist .about-hero__intro {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 18px);
  margin: 0 0 clamp(22px, 3vw, 30px);
}

.about-page--cosmetologist .about-hero__avatar-wrap {
  flex-shrink: 0;
  width: clamp(68px, 7.2vw, 84px);
  height: clamp(68px, 7.2vw, 84px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(15, 35, 50, 0.2);
}

.about-page--cosmetologist .about-hero__avatar {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-page--cosmetologist .about-hero__intro-text {
  min-width: 0;
}

.about-page--cosmetologist .about-hero__intro .about-cosmetologist__name {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
}

.about-page--cosmetologist .about-hero__intro .about-cosmetologist__title {
  margin: 0;
  font-size: clamp(15px, 1.55vw, 17px);
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
}

.about-page--cosmetologist .about-hero--cosmetologist .about-hero__title {
  margin: 0 0 18px;
  max-width: none;
  font-family: var(--font-display);
  font-size: clamp(38px, 6.2vw, 62px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.about-page--cosmetologist .about-hero--cosmetologist .about-hero__lead {
  margin: 0 0 14px;
  max-width: 48ch;
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.about-page--cosmetologist .about-hero--cosmetologist .about-hero__text {
  margin: 0;
  max-width: 62ch;
  font-size: clamp(15px, 1.55vw, 17px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.84);
}

.about-page--cosmetologist .about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 3.6vw, 36px);
}

.about-page--cosmetologist .about-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.about-page--cosmetologist .about-hero__cta--primary {
  border: none;
  background: #fff;
  color: #1a5f8a;
  box-shadow: 0 6px 19px rgba(15, 35, 50, 0.18);
}

.about-page--cosmetologist .about-hero__cta--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15, 35, 50, 0.22);
}

.about-page--cosmetologist .about-hero__cta--secondary {
  border: 2px solid rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.about-page--cosmetologist .about-hero__cta--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.about-page--cosmetologist .about-demo-banner {
  display: inline-block;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(45, 157, 232, 0.35);
  font-size: 13px;
  font-weight: 600;
  color: #2a6f9c;
}

/* Вертикальный стек: секции → отзывы → контакты → запись */
.about-cosmetologist__stack {
  width: 100%;
  max-width: var(--about-shell);
  margin: 0 auto;
  padding: clamp(22px, 3.2vw, 35px) var(--about-edge) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(13px, 2vw, 19px);
}

.about-cosmetologist__shell {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.4vw, 22px);
}

.about-page--cosmetologist .about-band {
  width: 100%;
  padding: 0;
  margin: 0;
  background: transparent;
}

.about-page--cosmetologist .about-band__card,
.about-page--cosmetologist .about-consultation {
  width: 100%;
  padding: var(--about-card-pad-y) var(--about-card-pad-x);
  border-radius: var(--about-card-radius);
  background: #fff;
  border: 1px solid rgba(197, 224, 245, 0.9);
  box-shadow: 0 8px 26px rgba(45, 157, 232, 0.07);
}

/* Заголовки и текст контента (без hero) */
.about-page--cosmetologist .about-cosmetologist__stack .about-band__title,
.about-page--cosmetologist .about-cosmetologist__stack .about-contacts__title,
.about-page--cosmetologist .about-cosmetologist__stack .contacts-split__title {
  margin: 0 0 clamp(14px, 1.9vw, 18px);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.13vw, 29px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #4ba2b8;
}

.about-page--cosmetologist .about-cosmetologist__stack .about-band__text {
  margin: 0 0 14px;
  font-size: clamp(14px, 1.33vw, 15px);
  line-height: 1.65;
  color: rgba(26, 46, 61, 0.88);
}

.about-page--cosmetologist .about-cosmetologist__stack .about-band__text:last-child {
  margin-bottom: 0;
}

.about-page--cosmetologist .about-cosmetologist__stack .about-band__list {
  margin: 3px 0 0;
  gap: 10px;
}

.about-page--cosmetologist .about-cosmetologist__stack .about-band__list li {
  font-size: clamp(12px, 1.28vw, 14px);
  line-height: 1.55;
  color: rgba(26, 46, 61, 0.85);
}

.about-page--cosmetologist .about-cosmetologist__stack .about-pricelist__name,
.about-page--cosmetologist .about-cosmetologist__stack .about-pricelist__price {
  font-size: clamp(14px, 1.41vw, 15px);
}

.about-page--cosmetologist .about-cosmetologist__stack .about-contacts__list dd,
.about-page--cosmetologist .about-cosmetologist__stack .contacts-split__value {
  font-size: clamp(14px, 1.41vw, 15px);
}

.about-page--cosmetologist .about-cosmetologist__stack .contacts-split__label {
  font-size: 12px;
}

.about-page--cosmetologist .about-cosmetologist__stack .contacts-split__route {
  font-size: 15px;
}

.about-page--cosmetologist .about-cosmetologist__stack .about-booking-cta__title {
  font-size: clamp(25px, 2.65vw, 31px);
}

.about-page--cosmetologist .about-cosmetologist__stack .about-booking-cta__text,
.about-page--cosmetologist .about-cosmetologist__stack .about-booking-cta__price {
  font-size: 17px;
}

.about-page--cosmetologist .about-cosmetologist__stack .about-cosmetologist-reviews__title {
  font-size: clamp(1.19rem, 2.21vw, 1.55rem);
}

.about-page--cosmetologist .about-cosmetologist__stack .about-cosmetologist-reviews__lead {
  font-size: clamp(14px, 1.33vw, 15px);
}

.about-page--cosmetologist .about-cosmetologist__stack .about-cosmetologist-reviews__filter {
  font-size: 14px;
}

.about-page--cosmetologist .about-cosmetologist__stack .about-cosmetologist-reviews__empty {
  font-size: 15px;
}

.about-page--cosmetologist .about-cosmetologist__stack .about-cosmetologist-review__author {
  font-size: 0.99rem;
}

.about-page--cosmetologist .about-cosmetologist__stack .about-cosmetologist-review__date {
  font-size: 0.88rem;
}

.about-page--cosmetologist .about-cosmetologist__stack .about-cosmetologist-review__text {
  font-size: 0.97rem;
}

.about-page--cosmetologist .about-cosmetologist__stack .about-band__links a {
  font-size: clamp(12px, 1.28vw, 14px);
}

.about-page--cosmetologist .about-band__figure {
  margin: 0 0 14px;
}

.about-page--cosmetologist .about-band__figure img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 12px;
}

.about-page--cosmetologist .about-band__links a {
  font-weight: 600;
  color: #1a5f8a;
}

.about-page--cosmetologist .about-band__actions {
  margin-top: 16px;
}

.about-page--cosmetologist .about-band__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #2d9de8, #3dcc9f);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(45, 157, 232, 0.22);
}

.about-page--cosmetologist .about-band__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(45, 157, 232, 0.28);
}

/* Блок «С чем обращаются чаще всего» */
.about-page--cosmetologist .about-band__card--topics {
  padding: clamp(22px, 3vw, 32px) clamp(16px, 2.2vw, 24px);
}

.about-page--cosmetologist .about-band__card--topics > .about-band__title {
  margin-bottom: 10px;
}

.about-page--cosmetologist .about-topic-intro {
  max-width: 70ch;
  margin: 0 0 clamp(20px, 2.8vw, 28px);
  font-size: clamp(14px, 1.36vw, 16px);
  line-height: 1.65;
  color: rgba(26, 46, 61, 0.82);
}

.about-page--cosmetologist .about-topic-bento {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 16px);
  margin-bottom: clamp(18px, 2.6vw, 24px);
}

.about-page--cosmetologist .about-topic-bento__card {
  padding: clamp(14px, 2vw, 18px) clamp(14px, 2vw, 20px);
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(197, 224, 245, 0.8);
  box-shadow: 0 6px 20px rgba(45, 157, 232, 0.05);
}

.about-page--cosmetologist .about-topic-bento__card--1 {
  border-top: 3px solid #2d9de8;
}

.about-page--cosmetologist .about-topic-bento__card--2 {
  border-top: 3px solid #e07a9a;
}

.about-page--cosmetologist .about-topic-bento__card--3 {
  border-top: 3px solid #8b6fd6;
}

.about-page--cosmetologist .about-topic-bento__card--4 {
  border-top: 3px solid #0f766e;
}

.about-page--cosmetologist .about-topic-bento__group {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #1a2e3d;
}

.about-page--cosmetologist .about-topic-bento__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.about-page--cosmetologist .about-topic-bento__item + .about-topic-bento__item {
  padding-top: 12px;
  border-top: 1px dashed rgba(197, 224, 245, 0.95);
}

.about-page--cosmetologist .about-topic-bento__label {
  margin: 0 0 3px;
  font-size: clamp(13px, 1.28vw, 14px);
  font-weight: 700;
  line-height: 1.4;
  color: #1a2e3d;
}

.about-page--cosmetologist .about-topic-bento__hint {
  margin: 0;
  font-size: clamp(12px, 1.16vw, 13px);
  line-height: 1.45;
  color: rgba(26, 46, 61, 0.62);
}

.about-page--cosmetologist .about-topic-cabinet {
  margin-top: clamp(18px, 2.4vw, 24px);
  margin-bottom: clamp(18px, 2.4vw, 22px);
  padding: clamp(16px, 2.2vw, 22px);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.06) 0%, rgba(45, 157, 232, 0.04) 100%);
  border: 1px solid rgba(15, 118, 110, 0.14);
}

.about-page--cosmetologist .about-topic-cabinet__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(14px, 2.2vw, 22px);
  align-items: start;
}

.about-page--cosmetologist .about-topic-cabinet__copy {
  min-width: 0;
}

.about-page--cosmetologist .about-topic-cabinet__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.48vw, 17px);
  font-weight: 800;
  line-height: 1.35;
  color: #0f766e;
}

.about-page--cosmetologist .about-topic-cabinet__text {
  margin: 0 0 clamp(12px, 1.6vw, 16px);
  font-size: clamp(13px, 1.28vw, 14px);
  line-height: 1.6;
  color: rgba(26, 46, 61, 0.86);
}

.about-page--cosmetologist .about-topic-cabinet__procedures {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-page--cosmetologist .about-topic-cabinet__procedures li {
  padding: 9px 11px;
  border-radius: 10px;
  font-size: clamp(11px, 1.1vw, 12px);
  line-height: 1.4;
  color: rgba(26, 46, 61, 0.86);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 118, 110, 0.12);
  box-shadow: 0 2px 8px rgba(15, 118, 110, 0.05);
}

.about-page--cosmetologist .about-topic-cabinet__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  font-size: clamp(12px, 1.16vw, 13px);
  font-weight: 600;
  line-height: 1.4;
  color: #2d9de8;
  text-decoration: underline;
  text-decoration-color: rgba(45, 157, 232, 0.35);
  text-underline-offset: 3px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.about-page--cosmetologist .about-topic-cabinet__link:hover {
  color: #1a5f8a;
  text-decoration-color: rgba(26, 95, 138, 0.55);
}

.about-page--cosmetologist .about-topic-cabinet__link svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.about-page--cosmetologist .about-topic-foot {
  display: flex;
  justify-content: center;
}

.about-page--cosmetologist .about-topic-foot__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 clamp(22px, 2.8vw, 32px);
  border-radius: 999px;
  font-size: clamp(13px, 1.28vw, 15px);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #2d9de8, #3dcc9f);
  box-shadow: 0 8px 22px rgba(45, 157, 232, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.about-page--cosmetologist .about-topic-foot__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(45, 157, 232, 0.28);
}

@media (max-width: 820px) {
  .about-page--cosmetologist .about-topic-bento {
    grid-template-columns: 1fr;
  }

  .about-page--cosmetologist .about-topic-cabinet__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .about-page--cosmetologist .about-topic-foot__cta {
    width: 100%;
  }
}

/* Консультации: онлайн + очно в одной карточке */
.about-page--cosmetologist .about-band__card--consultation {
  padding: clamp(22px, 3vw, 32px) clamp(16px, 2.2vw, 24px);
  background:
    linear-gradient(165deg, rgba(248, 252, 255, 0.98) 0%, #fff 42%, rgba(244, 251, 248, 0.92) 100%);
  border-color: rgba(45, 157, 232, 0.18);
  box-shadow:
    0 14px 36px rgba(45, 157, 232, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.about-page--cosmetologist .about-consultation-split__main-title {
  margin: 0 0 clamp(18px, 2.4vw, 24px);
}

.about-page--cosmetologist .about-consultation-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 22px);
  align-items: stretch;
}

.about-page--cosmetologist .about-consultation-split__col {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: clamp(16px, 2.2vw, 22px);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(197, 224, 245, 0.85);
  box-shadow: 0 8px 24px rgba(45, 157, 232, 0.06);
}

.about-page--cosmetologist .about-consultation-split__col::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2d9de8, #3dcc9f);
}

.about-page--cosmetologist .about-consultation-split__col--in-person::before {
  background: linear-gradient(90deg, #0f766e, #3dcc9f);
}

.about-page--cosmetologist .about-consultation-split__head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: clamp(12px, 1.6vw, 16px);
}

.about-page--cosmetologist .about-consultation-split__badge {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #1a5f8a;
  background: linear-gradient(145deg, rgba(45, 157, 232, 0.14), rgba(61, 204, 159, 0.12));
  box-shadow: inset 0 0 0 1px rgba(45, 157, 232, 0.14);
}

.about-page--cosmetologist .about-consultation-split__col--in-person .about-consultation-split__badge {
  color: #0f766e;
  background: linear-gradient(145deg, rgba(15, 118, 110, 0.12), rgba(61, 204, 159, 0.1));
  box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.14);
}

.about-page--cosmetologist .about-consultation-split__head-text {
  min-width: 0;
}

.about-page--cosmetologist .about-consultation-split__title {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.68vw, 20px);
  font-weight: 800;
  line-height: 1.25;
  color: #2d9de8;
}

.about-page--cosmetologist .about-consultation-split__col--in-person .about-consultation-split__title {
  color: #0f766e;
}

.about-page--cosmetologist .about-consultation-split__tagline {
  margin: 0;
  font-size: clamp(12px, 1.2vw, 13px);
  line-height: 1.45;
  color: rgba(26, 46, 61, 0.68);
}

.about-page--cosmetologist .about-consultation-split__body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
}

.about-page--cosmetologist .about-consultation-split__lead {
  margin: 0;
  font-size: clamp(13px, 1.28vw, 14px);
}

.about-page--cosmetologist .about-consultation-split__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: consult-step;
  display: grid;
  gap: 8px;
}

.about-page--cosmetologist .about-consultation-split__steps li {
  position: relative;
  padding-left: 30px;
  font-size: clamp(12px, 1.24vw, 14px);
  line-height: 1.5;
  color: rgba(26, 46, 61, 0.86);
}

.about-page--cosmetologist .about-consultation-split__steps li::before {
  counter-increment: consult-step;
  content: counter(consult-step);
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  color: #1a5f8a;
  background: rgba(45, 157, 232, 0.12);
}

.about-page--cosmetologist .about-consultation-split__col--in-person .about-consultation-split__steps li::before {
  color: #0f766e;
  background: rgba(15, 118, 110, 0.12);
}

.about-page--cosmetologist .about-consultation-split__catalog {
  margin-top: auto;
  padding: clamp(12px, 2vw, 18px) clamp(4px, 0.8vw, 8px) 0;
}

.about-page--cosmetologist .about-consultation-split__catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(6px, 1vw, 10px);
}

.about-page--cosmetologist .about-consultation-split__catalog-item {
  display: block;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, #f4fbff, #eef8f3);
  box-shadow:
    0 6px 18px rgba(45, 157, 232, 0.1),
    inset 0 0 0 1px rgba(197, 224, 245, 0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-page--cosmetologist .about-consultation-split__catalog-item:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 24px rgba(45, 157, 232, 0.16),
    inset 0 0 0 1px rgba(45, 157, 232, 0.22);
}

.about-page--cosmetologist .about-consultation-split__catalog-item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-page--cosmetologist .about-consultation-split__map-wrap {
  margin-top: auto;
  display: grid;
  gap: 8px;
}

.about-page--cosmetologist .about-consultation-split__map {
  position: relative;
  min-height: 132px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #d8ecf8, #e8f6ef);
  box-shadow: inset 0 0 0 1px rgba(197, 224, 245, 0.9);
}

.about-page--cosmetologist .about-consultation-split__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-page--cosmetologist .about-consultation-split__address {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(26, 46, 61, 0.72);
}

.about-page--cosmetologist .about-consultation-split__route {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  font-size: 13px;
  font-weight: 700;
  color: #0f766e;
  text-decoration: none;
}

.about-page--cosmetologist .about-consultation-split__route:hover {
  color: #2d9de8;
}

.about-page--cosmetologist .about-consultation-split__footer {
  margin-top: auto;
  padding-top: clamp(14px, 2vw, 18px);
}

.about-page--cosmetologist .about-consultation-split__cta {
  width: 100%;
}

@media (min-width: 901px) {
  .about-page--cosmetologist .about-consultation-split {
    position: relative;
  }

  .about-page--cosmetologist .about-consultation-split::before {
    content: "";
    position: absolute;
    top: clamp(12px, 1.6vw, 18px);
    bottom: clamp(12px, 1.6vw, 18px);
    left: 50%;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
      180deg,
      transparent 0%,
      rgba(197, 224, 245, 0.95) 12%,
      rgba(197, 224, 245, 0.95) 88%,
      transparent 100%
    );
    pointer-events: none;
  }
}

@media (max-width: 900px) {
  .about-page--cosmetologist .about-consultation-split {
    grid-template-columns: 1fr;
  }

  .about-page--cosmetologist .about-consultation-split::before {
    display: none;
  }
}

.about-page--cosmetologist .about-consultation__includes {
  margin: 16px 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.about-page--cosmetologist .about-consultation__includes li {
  position: relative;
  padding-left: 22px;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.55;
  color: rgba(26, 46, 61, 0.85);
}

.about-page--cosmetologist .about-consultation__includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2d9de8, #3dcc9f);
}

.about-page--cosmetologist .consultation-card__price {
  margin: 14px 0 0;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
  color: #1a2e3d;
  background: linear-gradient(135deg, rgba(232, 244, 252, 0.95), rgba(237, 249, 243, 0.9));
  border: 1px solid rgba(197, 224, 245, 0.85);
  display: inline-block;
}

/* Секции — одна колонка, строго друг под другом */
.about-cosmetologist__sections {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.4vw, 22px);
  width: 100%;
}

.about-cosmetologist__section {
  scroll-margin-top: clamp(72px, 10vw, 112px);
  width: 100%;
}

.about-band__card--split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(18px, 2.8vw, 28px);
  align-items: center;
}

.about-page--cosmetologist .about-band__figure {
  margin: 0;
}

.about-page--cosmetologist .about-band__figure img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 12px;
}

.about-page--cosmetologist .about-band__content {
  min-width: 0;
}

.about-page--cosmetologist .about-band__links li::before {
  display: none;
}

.about-page--cosmetologist .about-band__links li {
  padding-left: 0;
}

@media (max-width: 900px) {
  .about-band__card--split {
    grid-template-columns: 1fr;
  }
}

/* Прайс */
.about-page--cosmetologist .about-pricelist {
  margin: 13px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border: 1px solid rgba(197, 224, 245, 0.9);
  border-radius: 11px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(248, 252, 255, 0.95), rgba(255, 255, 255, 0.9));
}

.about-page--cosmetologist .about-pricelist__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 13px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(197, 224, 245, 0.7);
}

.about-page--cosmetologist .about-pricelist__row:last-child {
  border-bottom: none;
}

.about-page--cosmetologist .about-pricelist__name,
.about-page--cosmetologist .about-pricelist__price {
  line-height: 1.5;
  color: rgba(26, 46, 61, 0.88);
}

/* Контакты внутри стека */
.about-page--cosmetologist .about-cosmetologist__stack > .about-contacts {
  width: 100%;
  padding: 0;
  margin: 0;
}

.about-page--cosmetologist .about-contacts__inner {
  width: 100%;
  padding: var(--about-card-pad-y) var(--about-card-pad-x);
  border-radius: var(--about-card-radius);
  background: #fff;
  border: 1px solid rgba(197, 224, 245, 0.9);
  box-shadow: 0 8px 26px rgba(45, 157, 232, 0.07);
}

.about-page--cosmetologist .about-contacts__list {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 16px 26px;
}

.about-page--cosmetologist .about-contacts__list dd {
  color: rgba(26, 46, 61, 0.88);
}

/* Запись на консультацию */
.about-booking-cta {
  scroll-margin-top: clamp(72px, 10vw, 112px);
  width: 100%;
  padding: 0 0 clamp(36px, 5vw, 48px);
}

.about-booking-cta__inner {
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(24px, 3.5vw, 32px);
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(165deg, #ffffff 0%, #f4faff 52%, #eef8f4 100%);
  border: 1px solid rgba(197, 224, 245, 0.9);
  box-shadow: 0 8px 32px rgba(45, 157, 232, 0.08);
}

.about-booking-cta__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 800;
  color: #1a2e3d;
}

.about-booking-cta__text {
  margin: 0 0 10px;
  line-height: 1.6;
  color: rgba(26, 46, 61, 0.78);
}

.about-booking-cta__price {
  margin: 0 0 18px;
  font-weight: 700;
  color: #1a5f8a;
}

.about-booking-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #2d9de8, #3dcc9f);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(45, 157, 232, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.about-booking-cta__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(45, 157, 232, 0.34);
}

/* Форма записи */
.about-page--cosmetologist .about-cosmetologist__stack > .consultation-section {
  width: 100%;
  padding: 0;
  margin: clamp(8px, 1.5vw, 16px) 0 0;
}

.about-page--cosmetologist .consultation-section .consultation-card {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
  padding: clamp(32px, 4vw, 48px);
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff 0%, #f6fbff 48%, #f2faf6 100%);
  border: 1px solid rgba(197, 224, 245, 0.95);
  box-shadow:
    0 24px 64px rgba(45, 157, 232, 0.1),
    0 4px 16px rgba(26, 46, 61, 0.04);
  color: #1a2e3d;
  overflow: hidden;
}

.about-page--cosmetologist .consultation-section .consultation-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #2d9de8 0%, #3dcc9f 55%, #7bc4a8 100%);
}

.about-page--cosmetologist .consultation-section .consultation-card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -8%;
  width: min(42%, 360px);
  height: 140%;
  background: radial-gradient(ellipse, rgba(45, 157, 232, 0.08), transparent 68%);
  pointer-events: none;
}

.about-page--cosmetologist .consultation-card__info,
.about-page--cosmetologist .consultation-card__form-col {
  position: relative;
  z-index: 1;
}

.about-page--cosmetologist .consultation-card .cta-card__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1a2e3d;
}

.about-page--cosmetologist .consultation-card .cta-card__text {
  margin: 0;
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.65;
  color: rgba(26, 46, 61, 0.82);
  max-width: 36ch;
}

.about-page--cosmetologist .consultation-card .consultation-card__price {
  margin: 18px 0 0;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: #1a5f4a;
  background: rgba(61, 204, 159, 0.14);
  border: 1px solid rgba(61, 204, 159, 0.35);
  display: inline-block;
}

.about-page--cosmetologist .consultation-card__contacts {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.about-page--cosmetologist .consultation-card__contact {
  font-size: 16px;
  font-weight: 700;
  color: #2a7ab8;
  text-decoration: none;
}

.about-page--cosmetologist .consultation-card__contact:hover {
  color: #1a5f8c;
}

.about-page--cosmetologist .consultation-card__address {
  margin: 4px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(26, 46, 61, 0.68);
}

.about-page--cosmetologist .consultation-card__form-col {
  padding: clamp(20px, 2.5vw, 28px);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(197, 224, 245, 0.85);
  box-shadow: 0 12px 36px rgba(45, 157, 232, 0.06);
}

.about-page--cosmetologist .consultation-form {
  gap: 14px;
}

.about-page--cosmetologist .consultation-form input,
.about-page--cosmetologist .consultation-form textarea {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(197, 224, 245, 0.95);
  background: #f8fcff;
  color: #1a2e3d;
  font-size: 15px;
}

.about-page--cosmetologist .consultation-form input::placeholder,
.about-page--cosmetologist .consultation-form textarea::placeholder {
  color: rgba(26, 46, 61, 0.45);
}

.about-page--cosmetologist .consultation-form input:focus,
.about-page--cosmetologist .consultation-form textarea:focus {
  outline: none;
  border-color: #2d9de8;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(45, 157, 232, 0.14);
}

.about-page--cosmetologist .consultation-form textarea {
  min-height: 108px;
}

.about-page--cosmetologist .consultation-form__submit {
  margin-top: 4px;
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 999px;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #2d9de8 0%, #3dcc9f 100%);
  box-shadow: 0 10px 28px rgba(45, 157, 232, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.about-page--cosmetologist .consultation-form__submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 14px 32px rgba(45, 157, 232, 0.34);
}

.about-page--cosmetologist .consultation-card__success,
.about-page--cosmetologist .consultation-card__error {
  margin: 0 0 14px;
}

@media (max-width: 900px) {
  .about-page--cosmetologist .consultation-section .consultation-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-page--cosmetologist .consultation-card__form-col {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .about-page--cosmetologist .about-hero__cta {
    width: 100%;
  }

  .about-page--cosmetologist .consultation-form .cta-form__row {
    grid-template-columns: 1fr;
  }
}

.about-cosmetologist-reviews {
  scroll-margin-top: clamp(72px, 10vw, 112px);
}

.about-cosmetologist-reviews__inner {
  padding: var(--about-card-pad-y) var(--about-card-pad-x);
  border-radius: var(--about-card-radius);
  background: #f8fcff;
  border: 1px solid var(--sky-100);
}

.about-cosmetologist-reviews__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  flex-wrap: wrap;
  margin-bottom: 19px;
}

.about-cosmetologist-reviews__title {
  margin: 0;
  font-family: var(--font-display);
}

.about-cosmetologist-reviews__lead {
  margin: 6px 0 0;
  line-height: 1.5;
  color: rgba(26, 46, 61, 0.72);
}

.about-cosmetologist-reviews__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.about-cosmetologist-reviews__filter {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(45, 157, 232, 0.28);
  border-radius: 999px;
  background: #fff;
  color: rgba(26, 46, 61, 0.82);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.about-cosmetologist-reviews__filter.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #2d9de8, #3dcc9f);
  color: #fff;
}

.about-cosmetologist-reviews__empty {
  margin: 0 0 8px;
  color: rgba(26, 46, 61, 0.68);
}

.about-cosmetologist-reviews__empty[hidden] {
  display: none;
}

.about-cosmetologist-reviews__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 6px;
}

.about-cosmetologist-review {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--sky-100);
  box-shadow: 0 6px 19px rgba(15, 35, 50, 0.04);
}

.about-cosmetologist-review.is-review-hidden {
  display: none;
}

.about-cosmetologist-reviews__list.is-expanded .about-cosmetologist-review.is-review-hidden {
  display: block;
}

.about-cosmetologist-review__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.about-cosmetologist-review__author-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.about-cosmetologist-review__author {
  font-weight: 700;
}

.about-cosmetologist-review__date {
  color: var(--text-muted);
  white-space: nowrap;
}

.about-cosmetologist-review__text {
  margin: 0;
  line-height: 1.65;
  color: var(--text);
}

.about-cosmetologist-reviews__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 8px 16px;
  border: 1px solid var(--sky-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--sky-700);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.about-cosmetologist-reviews__more:hover {
  border-color: var(--sky-300);
  background: var(--sky-50);
}

.about-cosmetologist-reviews__more[hidden] {
  display: none;
}

/* ── Страница контактов косметолога ── */

.about-page--contacts.about-page--cosmetologist .about-hero__intro {
  margin-bottom: clamp(22px, 3vw, 30px);
}

.about-page--contacts.about-page--cosmetologist .about-hero__intro .about-cosmetologist__name {
  color: #fff;
}

.about-page--contacts.about-page--cosmetologist .about-hero__intro .about-cosmetologist__title {
  color: rgba(255, 255, 255, 0.92);
}

.about-page--contacts.about-page--cosmetologist .about-hero__lead,
.about-page--contacts.about-page--cosmetologist .about-hero__text {
  max-width: none;
}

.about-cosmetologist__hero-rating {
  display: inline-flex;
  margin-top: 10px;
  color: inherit;
  text-decoration: none;
}

.about-cosmetologist__hero-rating:hover {
  opacity: 0.92;
}

.about-page--contacts.about-page--cosmetologist .about-cosmetologist__stack {
  width: 100%;
  max-width: none;
  padding-inline: var(--about-edge, clamp(10px, 1.1vw, 15px));
}

.about-page--contacts.about-page--cosmetologist .about-contacts--page {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(28px, 4vw, 40px) 0 0;
}

.about-page--contacts.about-page--cosmetologist .about-cosmetologist-reviews {
  margin-top: clamp(28px, 4vw, 40px);
}

/* ── Контакты: две колонки + карта ── */

.contacts-split {
  padding: clamp(28px, 4vw, 40px) 0 0;
}

.contacts-split__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.12fr);
  min-height: clamp(340px, 42vw, 440px);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(197, 224, 245, 0.95);
  background: #fff;
  box-shadow:
    0 4px 24px rgba(45, 157, 232, 0.08),
    0 18px 48px rgba(45, 157, 232, 0.1);
}

.contacts-split__info {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.5vw, 24px);
  padding: clamp(28px, 4vw, 40px);
  background: linear-gradient(165deg, #ffffff 0%, #f4faff 52%, #eef8f4 100%);
}

.contacts-split__title {
  margin: 0;
}

.contacts-split__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 18px);
  flex: 1;
}

.contacts-split__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contacts-split__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #2a6f9c;
  background: linear-gradient(145deg, rgba(45, 157, 232, 0.14), rgba(61, 204, 159, 0.12));
  border: 1px solid rgba(45, 157, 232, 0.12);
}

.contacts-split__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  padding-top: 2px;
}

.contacts-split__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 46, 61, 0.48);
}

.contacts-split__value {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.45;
  font-weight: 600;
  color: #1a2e3d;
}

.contacts-split__link {
  color: #1a5f8a;
  text-decoration: none;
  transition: color 0.15s ease;
}

.contacts-split__link:hover {
  color: #2d9de8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contacts-split__route {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #2d9de8 0%, #3dcc9f 100%);
  box-shadow: 0 8px 22px rgba(45, 157, 232, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.contacts-split__route:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(45, 157, 232, 0.34);
}

.contacts-split__map {
  position: relative;
  min-height: 280px;
  background: linear-gradient(135deg, #d8ecf8, #e8f6ef);
}

.contacts-split__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-page--contacts.about-page--cosmetologist .about-contacts--page.contacts-split {
  padding-inline: 0;
}

.about-page--contacts.about-page--cosmetologist .contacts-split__inner {
  width: 100%;
}

@media (max-width: 860px) {
  .contacts-split__inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contacts-split__map {
    min-height: clamp(260px, 55vw, 340px);
    order: -1;
  }

  .contacts-split__route {
    width: 100%;
    justify-content: center;
  }
}

/* Якорная навигация по странице (как на наборах) */
.about-page--jump-nav {
  --product-jump-nav-h: 52px;
  --product-scroll-offset: calc(var(--product-header-offset, var(--shell-header-h, 128px)) + var(--product-jump-nav-h) + 12px);
}

.about-page--jump-nav .about-cosmetologist__section,
.about-page--jump-nav .about-cosmetologist-reviews,
.about-page--jump-nav #about-contacts {
  scroll-margin-top: var(--product-scroll-offset);
}

@media (max-width: 900px) {
  .about-page--jump-nav {
    --product-jump-nav-h: 48px;
  }
}

@media (max-width: 560px) {
  .about-page--jump-nav {
    --product-jump-nav-h: 44px;
  }
}

.about-page--jump-nav .product-jump-nav {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--product-header-offset, var(--shell-header-h, 128px));
  z-index: 90;
  width: 100%;
  max-width: 100vw;
  overflow: visible;
  border-bottom: 1px solid rgba(197, 224, 245, 0.9);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(26, 46, 61, 0.06);
}

.about-page--jump-nav .product-jump-nav__shell {
  position: relative;
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 clamp(4px, 0.45vw, 8px);
  box-sizing: border-box;
}

.about-page--jump-nav .product-jump-nav__fade {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 36px;
  pointer-events: none;
  z-index: 2;
}

.about-page--jump-nav .product-jump-nav__fade--start {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 20%, rgba(255, 255, 255, 0));
}

.about-page--jump-nav .product-jump-nav__fade--end {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.98) 20%, rgba(255, 255, 255, 0));
}

.about-page--jump-nav .product-jump-nav__fade--end::after {
  content: "›";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: rgba(26, 46, 61, 0.35);
}

.about-page--jump-nav .product-jump-nav__shell.is-overflow-start .product-jump-nav__fade--start,
.about-page--jump-nav .product-jump-nav__shell.is-overflow-end .product-jump-nav__fade--end {
  display: block;
}

.about-page--jump-nav .product-jump-nav__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
  height: var(--product-jump-nav-h);
}

.about-page--jump-nav .product-jump-nav__link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(26, 46, 61, 0.72);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.about-page--jump-nav .product-jump-nav__link:hover {
  background: rgba(45, 157, 232, 0.08);
  color: #1a2e3d;
}

.about-page--jump-nav .product-jump-nav__link.is-active {
  background: linear-gradient(135deg, rgba(74, 159, 212, 0.16), rgba(94, 201, 168, 0.16));
  color: #1a2e3d;
  box-shadow: inset 0 0 0 1px rgba(45, 157, 232, 0.22);
}

.about-page--jump-nav .product-jump-nav__picker {
  display: none;
  position: relative;
  width: 100%;
  height: var(--product-jump-nav-h);
}

.about-page--jump-nav .product-jump-nav__picker-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 0 14px;
  border: none;
  background: transparent;
  color: #1a2e3d;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.about-page--jump-nav .product-jump-nav__picker-caret {
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(26, 46, 61, 0.45);
  border-bottom: 2px solid rgba(26, 46, 61, 0.45);
  transform: rotate(45deg) translateY(-2px);
}

.about-page--jump-nav .product-jump-nav__picker-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px;
  list-style: none;
  border: 1px solid rgba(197, 224, 245, 0.95);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(26, 46, 61, 0.12);
  z-index: 5;
}

.about-page--jump-nav .product-jump-nav__picker-option {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: 8px;
  background: transparent;
  text-align: left;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #1a2e3d;
  cursor: pointer;
}

.about-page--jump-nav .product-jump-nav__picker-option:hover,
.about-page--jump-nav .product-jump-nav__picker-option.is-active {
  background: rgba(45, 157, 232, 0.08);
}

@media (min-width: 561px) and (max-width: 900px) {
  .about-page--jump-nav .product-jump-nav__track {
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .about-page--jump-nav .product-jump-nav__track::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 560px) {
  .about-page--jump-nav .product-jump-nav__track {
    display: none;
  }

  .about-page--jump-nav .product-jump-nav__picker {
    display: block;
  }
}
