.faq-question h2 {
    font-size: 15px !important;
    color: #546377;
    margin: 0;
    font-family: sans-serif;
    font-weight: 500;
}

.faq-search-box {
    position: relative;
    max-width: 400px;
    margin-bottom: 20px;
}

.faq-search-box input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
}

.faq-item {
    background: #e6f4ff;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}

.faq-question h2::after {
    content: '▾';
    position: absolute;
    right: 15px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    font-size: 14px;
    line-height: 1.4;
    background: #f4faff;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 15px;
    max-height: 700px; /* достаточно для длинного ответа */
}

.tz-wrap {
    margin: 32px 0;
}

.tz-wrap > p {
    margin: 8px 0 16px;
}

/* Контейнер прокрутки */
.tz-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    position: relative;
}

/* Таблица (десктоп/планшет) */
.tz-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    background: #fff;
    min-width: 640px; /* min-width гарантирует горизонтальный скролл */
}

.tz-table th,
.tz-table td {
    padding: 10px 12px;
    border: 1px solid rgba(0,0,0,.08);
    vertical-align: top;
}

.tz-table thead th {
    text-align: left;
    font-weight: 600;
    background: rgba(0,0,0,.03);
    position: sticky;
    top: 0;
    z-index: 1;
}

.tz-table tbody tr:nth-child(odd) {
    background: rgba(0,0,0,.015);
}

.tz-caption {
    margin: 6px 0 0;
    font-size: 13px;
    opacity: .75;
}

/* Мобильная «карточная» версия */
@media (max-width: 640px) {
    .tz-table {
        min-width: 0;
        border: 0;
    }
    .tz-table thead {
        display: none;
    }
    .tz-table tbody,
    .tz-table tr,
    .tz-table td {
        display: block;
        width: 100%;
    }
    .tz-table tr > td:first-child {
        background: #29bb9252;
        border-bottom-color: rgba(0,0,0,.12);
    }
    .tz-table tr {
        border: 1px solid rgba(0,0,0,.08);
        border-radius: 12px;
        background: #fff;
        margin: 0 0 12px 0;
        overflow: hidden;
    }
    .tz-table td {
        border: 0;
        border-bottom: 1px solid rgba(0,0,0,.06);
        padding: 10px 12px;
        display: flex;
        gap: 12px;
        justify-content: space-between;
        align-items: flex-start;
        white-space: normal;
    }
    .tz-table td:last-child {
        border-bottom: 0;
    }
    .tz-table td::before {
        content: attr(data-col);
        font-weight: 600;
        opacity: .85;
        flex: 0 0 52%;
        max-width: 52%;
    }
    .tz-table td > * {
        flex: 1 1 auto;
        text-align: right;
    }
    .tz-table td:not(:has(*)) {
        text-align: right;
    }
}

 /* базовые фиксы и внешний вид */
  .tz-reviews *, .tz-reviews *::before, .tz-reviews *::after { box-sizing: border-box; }
  .tz-reviews { margin: 40px 0; }
  .tz-reviews h2 { margin-bottom: 8px; }
  .tz-rating-summary { margin-bottom: 16px; font-size: 15px; opacity: .85; display: flex; align-items: center; gap: 6px; }
  .tz-stars { color: #FFD700; font-size: 14px; }

  /* fallback: грид, если JS не загрузился */
  .tz-reviews-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  @media (max-width: 1024px) { .tz-reviews-track { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 640px)  { .tz-reviews-track { grid-template-columns: 1fr; } }

  .tz-review { border: 1px solid rgba(0,0,0,.08); border-radius: 12px; padding: 14px; background: #fff; }
  .tz-review__header { display: flex; justify-content: space-between; margin-bottom: 6px; font-weight: 700; }
  .tz-review__meta { font-size: 13px; opacity: .75; white-space: nowrap; } /* чтобы не ломался перенос */
  .tz-review__text { margin: 0; }

  /* слайдерный режим */
  .tz-reviews-track.is-slider { display: flex; gap: 16px; overflow: hidden; position: relative; padding: 0; }
  .tz-reviews-track.is-slider .tz-review { flex: 0 0 auto; width: calc((100% - 32px) / 3); }
  @media (max-width: 1024px) { .tz-reviews-track.is-slider .tz-review { width: calc((100% - 16px) / 2); } }
  @media (max-width: 640px)  { .tz-reviews-track.is-slider .tz-review { width: 100%; } }

  /* навигация — точки по центру, не растягиваются */
  .tz-reviews-nav { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 12px; }
  .tz-reviews-btn { border: 1px solid rgba(0,0,0,.1); background: #fff; border-radius: 8px; padding: 6px 10px; cursor: pointer; }
  .tz-reviews-dots { display: flex; gap: 1px; flex: 0 0 auto; }
  .tz-reviews-dots button {
    width: 8px; height: 10px; border-radius: 50%;
    border: 0; background: rgba(0,0,0,.2); cursor: pointer;
  }
  .tz-reviews-dots button[aria-selected="true"] { background: rgba(0,0,0,.6); }

  /* (опционально) мягкая фиксация при свайпе */
  .tz-reviews-track.is-slider { scroll-snap-type: x mandatory; }
  .tz-reviews-track.is-slider .tz-review { scroll-snap-align: start; }