 /* Импорт шрифта из Google Fonts */

 @import url('../../vendor/fonts/fonts.css');

 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
  :root {
    --wgreen: #d7e7d4;
    --wgreen-hover: #99b9ae;
    --tblue: #e1eef3;
    --tblue-hover: #b1c9ea;
    --ctaorange: #fbcdaf;
    --ctaorange-hover: #e79e6d;
    --green: #004d30;
    --green-rgb: #e6e1da;
    --green-light: #e8f0eb;
    --green-mid: #1a6645;
    --ivory: #faf7f2;
    --brown: #4a2c10;
    --brown-hover: #3a2008;
    --text-main: #1a1a18;
    --text-muted: #6b6b63;
    --text-subtle: #9a9a90;
    --border: rgba(0,0,0,0.1);
    --white: #ffffff;
    --star: #d4850a;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
  }
 
  body {
    font-family: 'Inter', sans-serif;
    background: var(--ivory);
    color: var(--text-main);
    min-height: 100vh;
    
    -webkit-font-smoothing: antialiased;
  }

   
  /* ─── PAGE WRAPPER ─────────────────────────────── */
  .page-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 1rem;
  }
 
  /* ─── PRODUCT LAYOUT ───────────────────────────── */
  .product-layout {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 48px;
    align-items: start;
  }

  .section {
    margin: 32px 0;
    padding: 32px 0;
  }

  footer {
  font-family: 'Inter', sans-serif;
  background-color: #e6e1da;
}

  .section h2 {
    font-family: 'Inter', sans-serif;
    text-align: center;
  
  
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a; 
  }
 
  /* ─── GALLERY ──────────────────────────────────── */
  .gallery {
    display: flex;
    gap: 12px;
    position: sticky;
    top: 32px;
    
  }
 
  .thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
  }
 
  .thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease, opacity 0.2s ease;
    background: var(--white);
    flex-shrink: 0;
  }
 
  .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
 
  .thumb:hover { border-color: rgba(0,77,48,0.4); }
  .thumb.active { border-color: var(--green); }
  .thumb.active .thumb-dot { opacity: 1; }
 
  .main-image-wrap {
    flex: 1;
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #e8e2d9;
    position: relative;
  }
 
  .main-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
  }
 
  .main-image-wrap img.fading { opacity: 0; }
 
  /* ─── MOBILE GALLERY (slider) ──────────────────── */
  .gallery-mobile {
    display: none;
    flex-direction: column;
    gap: 12px;
  }
 
  .slider-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: var(--radius-xl);
  }
 
  .slider-wrap::-webkit-scrollbar { display: none; }
 
  .slider-track {
    display: flex;
    gap: 8px;
  }
 
  .slider-track .slide {
    flex-shrink: 0;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #e8e2d9;
  }
 
  .slider-track .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
 
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
  }
 
  .slider-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.2s;
    cursor: pointer;
  }
 
  .slider-dots span.active { background: var(--green); }
 
  /* ─── INFO COLUMN ──────────────────────────────── */
  .info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 4px;
  }
 
  /* ─── BADGE ────────────────────────────────────── */
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff8ec;
    border: 1px solid #f5d98a;
    color: #8a5c0a;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
  }
 
  .badge-star { color: var(--star); font-size: 12px; }
 
  /* ─── TITLE ────────────────────────────────────── */
  .product-title {
    font-family: 'Charis SIL', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-main);
    letter-spacing: -0.02em;
  }

  .title-icon {
    width: 36px;        /* нужный размер */
    height: auto;
    display: inline-flex;
    vertical-align: middle;
    margin-left: 6px;
}
 
  /* ─── SOCIAL PROOF ─────────────────────────────── */
  .social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rating-text {
  font-size: 13.5px;
  color: #615c56; /* Мягкий темный оттенок под общую палитру */
  font-weight: 500;
}

.text-subtle {
  color: #9c968e; /* Приглушенный цвет для (Cadastur) */
}

.divider-v {
  width: 1px;
  height: 14px;
  background: #e6e1da;
  /* Прячем разделитель на мобильных, если элементы переносятся на новую строку */
}
@media (max-width: 480px) {
  .divider-v { display: none; }
}

.fire { 
  font-size: 15px; 
  display: inline-flex;
}

/* ─── TOUR METADATA GRID (Параметры) ──────────────── */
.tour-meta {
  
  grid-template-columns: 1fr; /* На мобильных в одну колонку */
  gap: 10px;
  margin-bottom: 12px;
  padding: 16px;
  background: rgba(141, 110, 99, 0.04); /* Легкий благородный кофейный оттенок задника */
  border-radius: var(--radius-lg, 12px);
}

/* На экранах побольше выстраиваем параметры аккуратно в два столбца */
@media (min-width: 480px) {
  .tour-meta {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
  }
}

.meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 1.4;
  border-bottom: 1px dashed #e6e1da; /* Элегантная пунктирная линия-разделитель */
  padding-bottom: 4px;
}

.meta-label {
  color: #8a8279; /* Приглушенный тон для подписей */
  font-weight: 400;
}

.meta-value {
  color: #332f2b; /* Темный контрастный цвет для самих данных */
  font-weight: 600;
  text-align: right;
}

/* ─── NEW COMPACT SPEC GRID ──────────────────────── */
.tour-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Ровно 2 колонки */
  gap: 12px;                             /* Небольшие аккуратные отступы */
  margin-bottom: 24px;
}

.spec-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(74, 47, 27, 0.04);   /* Очень легкий фирменный кофейный оттенок */
  border-radius: 12px;                  /* Скругление под стиль карточек цен */
}

.spec-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #fff;                     /* Белая подложка под иконку для объема */
  border-radius: 8px;
  box-shadow: 0 2px 3px rgba(74, 47, 27, 0.02); /* Едва заметная мягкая тень */
  flex-shrink: 0;
}

.spec-icon {
  width: 18px;
  height: 18px;
  stroke: #4a2f1b;                      /* Ваша фирменная коричневая палитра */
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spec-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-label {
  font-size: 11px;
  text-transform: uppercase;            /* Капитель делает подписи аккуратными */
  letter-spacing: 0.08em;
  color: #8a8279;                       /* Приглушенный цвет для подписи */
  font-weight: 600;
}

.spec-value {
  
  font-size: 14px;
  font-weight: 600;
  color: #332f2b;                       /* Контрастный читаемый текст */
}

/* Адаптив для совсем крошечных экранов (если нужно) */
@media (max-width: 360px) {
  .tour-specs-grid {
    grid-template-columns: 1fr;         /* На ультра-маленьких смартфонах в 1 колонку */
  }
}

/* ─── DESCRIPTION & NOTES ───────────────────────── */
.description {
  font-size: 15px;
  line-height: 1.65;
  color: #4a443f;
  font-weight: 400;
  margin-bottom: 16px;
  text-align: justify;
}

.description-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #524b44;
  background: #fffdf9;
  border-left: 3px solid var(--brown, #4a2f1b); /* Вертикальный акцент в цвет вашей кнопки */
  padding: 12px 14px;
  border-radius: 0 var(--radius-lg, 12px) var(--radius-lg, 12px) 0;
  margin-bottom: 28px;
}

.note-icon {
  font-size: 14px;
  line-height: 1;
}
 
  /* ─── SEPARATOR ────────────────────────────────── */
.sep {
  height: 1px;
  background: #e6e1da;
  margin: 6px 0;
}
 
  /* ─── SEPARATOR ────────────────────────────────── */
  /*.sep {
    height: 1px;
    background: var(--border);
  }*/
 
  /* ─── PRICING ──────────────────────────────────── */
  .pricing-label {
    
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-subtle);
    margin-bottom: 10px;
  }
 
  .pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
 
  .price-card {
    border-radius: var(--radius-lg);
    padding: 16px;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: var(--white);
    border: 1.5px solid var(--border);
  }
 
  .price-card.primary {
    border-width: 2px;
    background: var(--white);
  }
 
  .price-card.secondary {
    border-width: 2px;
    border-color: var(--border);
    opacity: 0.85;
  }
 
  .price-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
 
  .price-card.selected.primary {
    border-color: var(--green);
    background: #f5fbf7;
  }
 
  .price-card.selected.secondary {
    border-color: var(--green-mid);
    opacity: 1;
  }
 
  .popular-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 20px;
    white-space: nowrap;
  }
 
  .card-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-subtle);
    margin-bottom: 6px;
  }
 
  .card-price {
    font-family: "Charis SIL", serif;
    font-weight: 600;
    font-style: normal;
    font-size: 30px;
    color: var(--text-main);
    line-height: 1;
  }
 
  .card-interval {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
  }
 
  /* ─── BENEFITS ─────────────────────────────────── */
  .benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
 
  .benefit-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
  }
 
  .check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
 
  .check-icon svg {
    width: 11px;
    height: 11px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
 
  
/* ─── CTA BUTTON & GROUP ───────────────────────────────── */
.cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  
  /* Анимация скрытия/появления */
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-in-out, opacity 0.3s ease-in-out, margin-top 0.3s ease-in-out;
  margin-top: 0;
}

/* Состояние, когда блок раскрыт */
.cta-group.is-open {
  max-height: 300px; /* Запас высоты, чтобы влезли все 3 кнопки с отступами */
  opacity: 1;
  margin-top: 15px;  /* Делаем красивый отступ от главной кнопки при раскрытии */
}

.cta-btn {
  width: 100%;
  padding: 18px 24px;
  background: var(--brown);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.01em;
}

.cta-btn:hover { background: var(--brown-hover); }
.cta-btn:active { transform: scale(0.98); }

/* Состояние главной кнопки, когда мессенджеры открыты */
.cta-btn.is-toggled {
  background: #fff8e8; /* Спокойный желтовато-серый цвет, показывающий неактивность */
  color: #2e2c2b;
}
.cta-btn.is-toggled:hover {
  background: #e6e2e7; /* Чуть темнее при наведении, чтобы считывался клик */
}
.cta-btn.is-toggled svg {
  stroke: #2e2c2b; /* Меняем цвет иконки внутри кнопки */
}

.cta-btn svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: stroke 0.2s ease;
}

/* WhatsApp — зелёный */
.cta-btn--whatsapp { background: var(--wgreen); color: #2e2c2b; text-decoration: none;}
.cta-btn--whatsapp svg { stroke: #2e2c2b; }
.cta-btn--whatsapp:hover { background: var(--wgreen-hover); }

/* Telegram — синий */
.cta-btn--telegram { background: var(--tblue); color: #2e2c2b; text-decoration: none;}
.cta-btn--telegram svg { stroke: #2e2c2b; }
.cta-btn--telegram:hover { background: var(--tblue-hover); }

/* Email / заявка pop-up окно */
.cta-btn--email { background: var(--ctaorange); color: #2e2c2b; text-decoration: none;}
.cta-btn--email svg { stroke: #2e2c2b; }
.cta-btn--email:hover { background: var(--ctaorange-hover); }
 
  /* ─── GUARANTEES ───────────────────────────────── */
  .guarantees {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
 
  .guarantee-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
  }
 
  .guarantee-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
 
  .guarantee-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--green);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* ─── Tripping block ───────────────────────────────── */

  .tripping-intro {
  margin-bottom: 24px;
  padding: 20px 24px;                      /* как у карточек */
  background: rgba(74, 47, 27, 0.04);      /* тот же фирменный фон */
  border-radius: 12px;                     /* то же скругление */
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a4a;
}

.tripping-intro h3 {
  margin-bottom: 16px;
  
  font-size: 18px;
  font-weight: 700;
}

  .tripping-intro ul {
  padding-left: 10px;
  margin: 8px 0;
}

  .tripping-intro li {
  margin-bottom: 6px;
}

  .tripping-group {
  margin-bottom: 24px;
}

  .tripping-group-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

  .included-label {
  color: #00A896;
}

  .excluded-label {
  color: #999999;
}

.tripping-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.tripping-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.tripping-list span {
  margin-left: 2.0rem;
}

.tripping-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 0.15em; /* выравнивание по первой строке текста */
  color: #999999;
  opacity: 0.85;
}


  .tripping-details-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* Ровно 1 колонка */
  gap: 12px;                             /* Небольшие аккуратные отступы */
  margin-bottom: 24px;
}

  .tripping-details {
    display: flex;
    align-items: flex-start;              /* Иконка сверху, если текст длинный */
    gap: 16px;                            /* Чуть увеличил отступ до текста */
    padding: 16px 20px;                   /* Комфортные внутренние отступы */
    background: rgba(74, 47, 27, 0.04);   /* Ваш фирменный кофейный оттенок */
    border-radius: 12px;                  /* Скругление под стиль карточек цен */
    font-family: 'Inter', sans-serif;     /* Базовый шрифт */
  }

  .tripping-details-content ul {
    font-size: 14px;
    line-height: 1.5;
    color: #4a4a4a;
    padding-left: 10px;
    margin: 8px 0;
  }

  .tripping-details-content li {
    display: list-item;
    align-items: flex-start;
    gap: 0.65rem;
  }

  

  .tripping-post-details {
    display: flex;
    align-items: flex-start;              /* Иконка сверху, если текст длинный */
    gap: 16px;                            /* Чуть увеличил отступ до текста */
    padding: 16px 20px;                   /* Комфортные внутренние отступы */
    background: rgb(255, 255, 255);   /* ________ оттенок */
    border-radius: 12px;                  /* Скругление под стиль карточек цен */
    font-family: 'Inter', sans-serif;     /* Базовый шрифт */
  }

  .status-icon {
  flex-shrink: 0;                       /* Чтобы иконка не сжималась */
  width: 20px;
  height: 20px;
  margin-top: 2px;                      /* Выравнивание иконки по первой строчке заголовка */
}

.list-content {
  flex-grow: 1;
  line-height: 1.5; /* Чтобы строки не слипались */
}

  /* ─── BREADCRUMBS ─────────────────────────────── */
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 32px;
    padding: 0.3rem 0.3rem 0.3rem 0.3rem;
    border: 1px solid var(--border);
    border-radius: 100px;
    background: #e6e1da;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.2;
    max-width: 100%;
  }

  .breadcrumbs__home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    line-height: 0;
    transition: color 0.2s ease;
  }

  .breadcrumbs__home:hover { color: var(--green-mid); }

  .breadcrumbs .home-icon {
    width: 1.2em;
    height: 1.2em;
    display: block;
    margin: 0 1.25rem 0 1.25rem;
    gap: 24px;
  }

  .breadcrumbs__link {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s ease;
    margin: 0 1.25rem 0 1.25rem;
  }

  .breadcrumbs__link:hover {
    color: var(--green);
    text-decoration: none;
  }

  .breadcrumbs__current {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 1.25rem 0.3rem 1.25rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    background: #fff;
    color: var(--text-main);
    border-radius: 100px;
    font-weight: 500;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Skeleton placeholder для крошек */
  .sk-breadcrumbs {
    width: 260px;
    max-width: 100%;
    height: 36px;
    border-radius: 100px;
    margin-bottom: 32px;
  }

  @media (max-width: 480px) {
    .breadcrumbs {
      font-size: 0.875rem;
      gap: 0.5rem;
      padding: 0.35rem 0.75rem;
    }
    .breadcrumbs__current {
      padding: 0.25rem 0.65rem;
    }
  }


.status-icon svg {
  width: 100%;
  height: 100%;
}

.tripping-details-content {
  display: flex;
  flex-direction: column;
  gap: 6px;                             /* Отступ между заголовком и описанием */
}

.tripping-details-content h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;                       /* Темный цвет для заголовка */
}

.tripping-details-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #4a4a4a;                       /* Спокойный цвет для текста */
}

/* Если внутри одного блока несколько абзацев текста (как в последнем пункте) */
.tripping-details-content p + p {
  margin-top: 10px;
}


 
  /* ─── RESPONSIVE ───────────────────────────────── */
  @media (min-width: 1536px) {
  .page-wrapper {
    padding: 32px 0;
  }
}

  @media (max-width: 900px) {
    .product-layout {
      grid-template-columns: 1fr;
      gap: 28px;
    }
 
    .gallery { display: none; }
    .gallery-mobile { display: flex; }
 
    .info-col { padding-top: 0; }
  }
 
  @media (max-width: 480px) {
    body { padding: 16px 12px; }
    .product-title { font-size: 28px; }
    .pricing-cards { grid-template-columns: 1fr; gap: 14px; }
    .price-card.secondary { margin-top: 6px; }
    .guarantees { flex-direction: column; gap: 10px; }
  }


  .cta-note {
  margin-top: -8px;
  color: #7a7066;
  font-size: 12.5px;
  line-height: 1.45;
  text-align: center;
}


.how-work-section {
  margin: 34px 0;
  padding: 0;
}


.how-work-section-title {
  margin: 0 0 16px;
  color: #8c7355;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


.how-work-value-copy {
  margin: -6px 0 2px;
  color: #4f4942;
  font-size: 16px;
  line-height: 1.58;
}


.how-work-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  align-items: start;
  gap: 12px;
}

.how-work-detail-card {
  display: flex;
  flex-direction: column;
  padding: 18px 18px 17px;
  border: 1px solid rgba(74, 47, 27, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
}

.how-work-detail-card h3 {
  margin: 0 0 8px;
  color: #1a1a18;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.75px;
}

.how-work-detail-card p {
  flex: 1;
  margin: 0 0 12px;
  color: #504940;
  font-size: 14px;
  line-height: 1.55;
}

.how-work-final-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-top: 28px;
      padding: 20px;
      border-radius: 12px;
      background: #fff;
      border: 1px solid rgba(74, 47, 27, 0.1);
    }

.how-work-final-cta h3 {
      margin: 0 0 4px;
      color: #1a1a18;
      font-size: 18px;
      font-weight: 600;
    }

.how-work-final-cta p {
      margin: 0;
      color: #615850;
      font-size: 14px;
      line-height: 1.45;
    }

.how-work-final-cta .cta-btn {
      width: auto;
      min-width: 210px;
      padding: 15px 18px;
    }

.mini-spoiler {
  margin-top: 0;
  border-top: 1px solid rgba(74, 47, 27, 0.1);
  padding-top: 12px;
}

.mini-spoiler summary {
  cursor: pointer;
  list-style: none;
  color: #4a2f1b;
  font-size: 13px;
  font-weight: 700;
}

.mini-spoiler summary::-webkit-details-marker {
  display: none;
}

.mini-spoiler summary::after {
  content: "+";
  float: right;
  color: #9a8a74;
  font-weight: 400;
}

.mini-spoiler[open] summary::after {
  content: "−";
}

.mini-spoiler p {
  margin: 9px 0 0;
  color: #5f574f;
  font-size: 13px;
  line-height: 1.5;
}


@media (max-width: 900px) {

  .how-work-details-grid
  {
    grid-template-columns: 1fr;
  }
}


.notice-block {
  padding: 1rem 0 0;
}

.notice-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  position: relative;
  margin-bottom: 8px;
  
}

.notice-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%; /* Центрируем */
  transform: translateX(-50%); /* Смещаем обратно на половину ширины */
  
  width: 85%; /* Вот здесь вы задаете нужную длину линии */
  height: 1px; /* Толщина линии */
  background-color: #e6e1da; /* Цвет линии */
}

.notice-item svg {
  flex-shrink: 0;
}

.notice-text {
  flex: 1;
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.45;
}

.notice-info-wrapper {
  position: relative;
  flex-shrink: 0;
}

/* Кнопки i — по аналогии с season-info-btn */
.transport-info-btn,
.tickets-info-btn,
.predoplata-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 1px solid rgba(140, 115, 85, 0.38);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: #8c7355;
  cursor: help;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  text-transform: none;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.transport-info-btn:hover,
.transport-info-btn:focus-visible,
.tickets-info-btn:hover,
.tickets-info-btn:focus-visible,
.predoplata-info-btn:hover,
.predoplata-info-btn:focus-visible {
  border-color: rgba(90, 62, 40, 0.55);
  background: #fff;
  color: #5a3e28;
  outline: none;
}

/* Поповеры */
.transport-info-popover,
.tickets-info-popover,
.predoplata-info-popover {
  position: absolute;
  right: 0;
  bottom: calc(100% + 9px);
  z-index: 5;
  width: min(260px, calc(100vw - 48px));
  padding: 12px 14px;
  border: 1px solid rgba(140, 115, 85, 0.18);
  border-radius: 10px;
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 10px 28px rgba(74, 47, 27, 0.12);
  color: #5a3e28;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  opacity: 0;
  pointer-events: none;
  text-transform: none;
  transform: translateY(4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

/* Стрелка поповера — справа, т.к. выравнивание по правому краю */
.transport-info-popover::after,
.tickets-info-popover::after,
.predoplata-info-popover::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: -6px;
  width: 10px;
  height: 10px;
  border-right: 1px solid rgba(140, 115, 85, 0.18);
  border-bottom: 1px solid rgba(140, 115, 85, 0.18);
  background: rgba(255, 253, 249, 0.98);
  transform: rotate(45deg);
}

/* Показ по hover/focus на кнопку */
.transport-info-btn:hover + .transport-info-popover,
.transport-info-btn:focus-visible + .transport-info-popover,
.transport-info-btn:focus + .transport-info-popover,
.tickets-info-btn:hover + .tickets-info-popover,
.tickets-info-btn:focus-visible + .tickets-info-popover,
.tickets-info-btn:focus + .tickets-info-popover,
.predoplata-info-btn:hover + .predoplata-info-popover,
.predoplata-info-btn:focus-visible + .predoplata-info-popover,
.predoplata-info-btn:focus + .predoplata-info-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.pricing-custom-section {
  width: 100%;
  padding: 4px 0 0;
}

.custom-price-card {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 30px 30px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.custom-price-kicker {
  font-size: 13px;
  font-weight: 400;
  color: #7b6b58;
  margin-bottom: 6px;
}

.custom-price-value {
  font-family: 'Charis SIL', serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  color: #4a2f1b;
  margin-bottom: 12px;
}

.custom-price-text {
  max-width: 360px;
  margin: 0 0 22px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #7b6b58;
}

.custom-price-factors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.custom-price-factors span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 5px 12px 5px 9px;
  border: 1px solid #e0ccb5;
  border-radius: 999px;
  background: #f5ede3;
  font-size: 12.5px;
  font-weight: 400;
  color: #7a5c3a;
  white-space: nowrap;
}

.custom-price-factors svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 480px) {
  .custom-price-card {
    padding: 26px 22px 24px;
  }

  .custom-price-value {
    font-size: 34px;
  }
}

  .pricing-gauge-section {
    width: 100%;
  }

  .gauge-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px 18px 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
  }

  .gauge-title {
    font-family: 'Charis SIL', serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8c7355;
    margin-bottom: 2px;
  }

  .gauge-subtitle {
    font-size: 12px;
    color: #9a8a74;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
  }

  .gauge-wrap canvas {
    width: min(100%, 360px);
    height: auto;
    display: block;
    margin-top: -2px;
  }

  .price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4px;
    margin-bottom: 14px;
  }

  .price-label {
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9a8a74;
    margin-bottom: 2px;
  }

  .price-value {
    font-family: 'Charis SIL', serif;
    font-size: 44px;
    font-weight: 600;
    color: #5a3e28;
    line-height: 1;
    display: inline-block;
    min-width: 116px;
    font-variant-numeric: tabular-nums;
    text-align: center;
    transform: translateY(0);
    transition: color 0.3s ease, filter 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
    will-change: contents, filter, transform;
  }

  .price-value.is-rolling {
    filter: blur(1.8px);
    opacity: 0.82;
    transform: translateY(-3px);
  }

  .price-range-note {
    font-size: 11px;
    color: #9a8a74;
    margin-top: 3px;
  }

  .gauge-divider {
    width: 52px;
    height: 1px;
    background: #e0d3c0;
    margin: 8px auto 16px;
  }

  .sliders-row {
    width: 100%;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }

  .slider-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
  }

  .slider-name {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8c7355;
    padding-left: 6px;
  }

  .slider-name--with-info {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: max-content;
    max-width: 100%;
  }

  .season-info-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    padding: 0;
    border: 1px solid rgba(140, 115, 85, 0.38);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    color: #8c7355;
    cursor: help;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    text-transform: none;
    transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
  }

  .season-info-btn:hover,
  .season-info-btn:focus-visible {
    border-color: rgba(90, 62, 40, 0.55);
    background: #fff;
    color: #5a3e28;
    outline: none;
  }

  .season-info-popover {
    position: absolute;
    left: 0;
    bottom: calc(100% + 9px);
    z-index: 5;
    width: min(290px, calc(100vw - 48px));
    padding: 12px 14px;
    border: 1px solid rgba(140, 115, 85, 0.18);
    border-radius: 10px;
    background: rgba(255, 253, 249, 0.98);
    box-shadow: 0 10px 28px rgba(74, 47, 27, 0.12);
    color: #5a3e28;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.45;
    opacity: 0;
    pointer-events: none;
    text-transform: none;
    transform: translateY(4px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .season-info-popover::after {
    content: "";
    position: absolute;
    left: 46px;
    bottom: -6px;
    width: 10px;
    height: 10px;
    border-right: 1px solid rgba(140, 115, 85, 0.18);
    border-bottom: 1px solid rgba(140, 115, 85, 0.18);
    background: rgba(255, 253, 249, 0.98);
    transform: rotate(45deg);
  }

  .season-info-popover strong {
    font-weight: 700;
  }

  .season-info-popover p {
    margin: 8px 0 0;
    padding-top: 8px;
    border-top: 1px solid rgba(140, 115, 85, 0.14);
    color: #8a7761;
    font-size: 11px;
    line-height: 1.4;
  }

  .slider-name--with-info:hover .season-info-popover,
  .season-info-btn:focus-visible + .season-info-popover,
  .season-info-btn:focus + .season-info-popover {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .pill-track {
    --active-index: 0;
    --active-offset: 0%;
    --option-count: 3;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 40px;
    padding: 4px;
    background: #ede4d8;
    border-radius: 999px;
    overflow: hidden;
    position: relative;
  }

  .pill-track::before {
    content: "";
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: calc((100% - 8px) / var(--option-count));
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(90, 62, 40, 0.13);
    transform: translateX(var(--active-offset));
    transition: transform 0.42s cubic-bezier(0.22, 0.9, 0.28, 1);
    will-change: transform;
    z-index: 0;
  }

  .pill-option {
    flex: 1;
    min-width: 0;
    padding: 8px 6px;
    border-radius: 999px;
    color: #8b6d4f;
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    position: relative;
    text-align: center;
    user-select: none;
    white-space: nowrap;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    z-index: 1;
  }

  .pill-option.active {
    background: transparent;
    color: #5a3e28;
    font-weight: 600;
    box-shadow: none;
  }

  .pill-option:hover:not(.active):not(.disabled) {
    color: #6d4a2e;
  }

  .pill-option.disabled {
    color: #cdbfa8;
    cursor: not-allowed;
    opacity: 0.55;
  }

  .pill-main {
    display: block;
    font-size: 12px;
  }

  .pill-sub {
    display: none;
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 0.01em;
    opacity: 0.72;
  }

  .pill-option.active .pill-main {
    display: none;
  }

  .pill-option.active .pill-sub {
    display: block;
  }

  .pill-option.active.no-sub .pill-main {
    display: block;
  }

  .pill-option.active.no-sub .pill-sub {
    display: none;
  }

  .unavail-note {
    min-height: 15px;
    margin-top: 4px;
    color: #a98258;
    font-size: 10.5px;
    letter-spacing: 0.02em;
    text-align: center;
  }

  .group-range-header {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-right: 6px;
  }

  .group-range-header strong {
    color: #5a3e28;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .group-range-control {
    min-height: 40px;
    padding: 9px 12px 6px;
    background: #ede4d8;
    border-radius: 999px;
  }

  .group-range {
    --range-progress: 0%;
    width: 100%;
    height: 18px;
    margin: 0;
    display: block;
    appearance: none;
    background: transparent;
    cursor: pointer;
  }

  .group-range::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #8c5e38 0 var(--range-progress), #d8c8b5 var(--range-progress) 100%);
  }

  .group-range::-webkit-slider-thumb {
    width: 22px;
    height: 22px;
    margin-top: -8px;
    appearance: none;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #5a3e28;
    box-shadow: 0 2px 7px rgba(90, 62, 40, 0.24);
  }

  .group-range::-moz-range-track {
    height: 6px;
    border-radius: 999px;
    background: #d8c8b5;
  }

  .group-range::-moz-range-progress {
    height: 6px;
    border-radius: 999px;
    background: #8c5e38;
  }

  .group-range::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #5a3e28;
    box-shadow: 0 2px 7px rgba(90, 62, 40, 0.24);
  }

  .group-range:focus-visible {
    outline: none;
  }

  .group-range:focus-visible::-webkit-slider-thumb {
    box-shadow: 0 0 0 3px rgba(140, 94, 56, 0.2), 0 2px 7px rgba(90, 62, 40, 0.24);
  }

  .group-range:focus-visible::-moz-range-thumb {
    box-shadow: 0 0 0 3px rgba(140, 94, 56, 0.2), 0 2px 7px rgba(90, 62, 40, 0.24);
  }

  .group-range-scale {
    display: flex;
    justify-content: space-between;
    margin-top: -1px;
    color: #9a8a74;
    font-size: 10px;
    line-height: 1;
  }

  @media (max-width: 480px) {
    .sliders-row {
      flex-direction: column;
      gap: 10px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .pill-track::before {
      transition: none;
    }

    .price-value {
      transition: none;
    }
  }
