

/* Start:/local/templates/vrtorg/components/bitrix/catalog/vrtorg/style.css?178047955517405*/
/* Спойлер для описания раздела каталога */
.desc-spoiler--collapsed {
    max-height: 130px;
    overflow: hidden;
    position: relative;
}

.desc-spoiler--collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, rgba(247, 247, 247, 0), #f7f7f7);
    pointer-events: none;
}

.desc-spoiler__body {
    transition: max-height 0.3s ease;
}

.desc-spoiler__btn {
    display: inline-block;
    color: #0066ff;
    cursor: pointer;
    font-size: inherit;
    font-weight: 500;
    text-decoration: none;
    border: none;
    background: none;
    padding: 0;
    margin: 8px 0 20px 20px;
}

.desc-spoiler__btn:hover {
    text-decoration: underline;
}

.desc-spoiler__btn::after {
    display: none;
}

.desc-spoiler__btn-less {
    display: none;
}

/* Раскрытое состояние */
.desc-spoiler__btn--expanded::after {
    transform: rotate(-135deg);
    margin-top: 3px;
}

.desc-spoiler__btn--expanded .desc-spoiler__btn-more {
    display: none;
}

.desc-spoiler__btn--expanded .desc-spoiler__btn-less {
    display: inline;
}

/* Компактная сетка для списков в описании раздела (task 19) */
.catalog-text-blocks .list-row,
.catalog-text-blocks .lists-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.catalog-text-blocks .list-row .list-col,
.catalog-text-blocks .lists-row .list-col {
    flex: 1 1 150px;
    min-width: 150px;
    padding: 8px 12px;
    margin-top: 0 !important;
    overflow-wrap: break-word;
    word-break: break-word;
}

.catalog-text-blocks .list-row .list-col ul,
.catalog-text-blocks .lists-row .list-col ul {
    margin: 0;
    padding-left: 18px;
}

.catalog-text-blocks .list-row .list-col li,
.catalog-text-blocks .lists-row .list-col li {
    margin-bottom: 0;
}

/* Текстовые блоки описания — не выходят за контейнер */
.catalog-text-blocks {
    overflow-wrap: break-word;
    word-break: break-word;
}

.catalog-text-blocks .white-box {
    overflow: hidden;
}

.catalog-text-blocks .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 20px;
}
/* */
.vrt-heading {
    width: 100%;
    box-sizing: border-box;
    padding: 30px 30px 25px;
    border-radius: 8px;
    background: linear-gradient(216.42deg, #27048f -41.76%, #0066ff 140.51%);
    color: #fff;
    font-family: "Gilroy", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow: hidden;
}

.vrt-heading__inner {
    /*  max-width: 1200px; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 0;
}

.vrt-heading__text {
    max-width: 840px;
}

.vrt-heading__eyebrow {
    margin: 0 0 6px;
    font-size: clamp(11px, 1.2vw, 13px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
}

.vrt-heading__title {
    margin: 0 0 15px;
    line-height: 1.2;
    font-weight: 600;
}

.vrt-heading__subtitle {
    margin: 0;
    font-size: clamp(19px, 1.6vw, 16px);
    line-height: 1.5;
    opacity: 0.95;
    font-weight: 400;
}


.vrt-heading__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


.vrt-heading__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 18px;
    min-height: 35px;
    box-sizing: border-box;
    border-radius: 8px;
    background-color: #f8c41a;
    border: 2px solid #f8c41a;
    font-family: "Gilroy", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #000;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.vrt-heading__tag:hover {
    background-color: transparent;
    border-color: #f8c41a;
    color: #f8c41a;
    transform: translateY(-1px);
    border-width: 2px;
}

.vrt-heading__tag > a {
    text-decoration: none;
    color: inherit;
}

@media (min-width: 768px) {
    .vrt-heading {
        padding: 40px 40px 25px;
        border-radius: 8px;
    }

    .vrt-heading__inner {
        gap: 20px;
    }

    .vrt-heading__tags {
        margin-top: 8px;
    }
}

/* Большие экраны */
@media (min-width: 1200px) {
    .vrt-heading {
        padding: 40px 40px 25px;
        border-radius: 8px;
    }

    .vrt-heading__tags {
        gap: 12px;
    }

    .vrt-heading__tag {
        padding: 6px 18px;
    }
}

@keyframes vrt-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* базовое состояние — спрятаны */
.vrt-heading--animated .vrt-heading__eyebrow,
.vrt-heading--animated .vrt-heading__title,
.vrt-heading--animated .vrt-heading__subtitle,
.vrt-heading--animated .vrt-heading__tag {
    opacity: 0;
    transform: translateY(10px);
}

/* запускаем анимации с небольшими задержками */
.vrt-heading--animated .vrt-heading__eyebrow {
    animation: vrt-fade-in-up 0.5s ease-out 0.05s forwards;
}

.vrt-heading--animated .vrt-heading__title {
    animation: vrt-fade-in-up 0.6s ease-out 0.15s forwards;
}

.vrt-heading--animated .vrt-heading__subtitle {
    animation: vrt-fade-in-up 0.6s ease-out 0.3s forwards;
}

.vrt-heading--animated .vrt-heading__tag {
    animation: vrt-fade-in-up 0.4s ease-out 0.45s forwards;
}

/* лёгкий разброс по тегам, чтобы не вспыхивали одновременно */
.vrt-heading--animated .vrt-heading__tag:nth-child(2) {
    animation-delay: 0.5s;
}
.vrt-heading--animated .vrt-heading__tag:nth-child(3) {
    animation-delay: 0.55s;
}
.vrt-heading--animated .vrt-heading__tag:nth-child(4) {
    animation-delay: 0.6s;
}
.vrt-heading--animated .vrt-heading__tag:nth-child(5) {
    animation-delay: 0.65s;
}
.vrt-heading--animated .vrt-heading__tag:nth-child(6) {
    animation-delay: 0.7s;
}


@media (prefers-reduced-motion: reduce) {
    .vrt-heading--animated .vrt-heading__eyebrow,
    .vrt-heading--animated .vrt-heading__title,
    .vrt-heading--animated .vrt-heading__subtitle,
    .vrt-heading--animated .vrt-heading__tag {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.section-description {
    margin: 0 auto;
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    border-radius: 8px;
}

.white-box {
    background: #ffffff;
    padding: 20px;
    line-height: 1.6;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.section-description h2 {
    margin-top: 0;
    color: #2c3e50;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 24px;
}

.lists-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}

.list-col {
    flex: 1;
    min-width: 280px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
}

.section-description ul {
    padding-left: 20px;
    margin: 10px 0 0 0;
}

.section-description li {
    margin-bottom: 5px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.benefit-item {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #eee;
    text-align: center;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}

.block-cta {
    text-align: center;
    font-size: 1.1em;
    font-weight: 500;
    color: #2c3e50;
}

.block-cta p {
    margin: 0;
}
.spoiler_body {
    padding: 0px !important;
}
strong {
    font-size: 18px;
}

.category__container {
    margin-inline: auto;
    padding-inline: 16px;
}

.category__header {
    padding: 24px 0;
}

.category__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 77px;
    align-items: start;
    padding-bottom: 48px;
}

.category__content {
    min-width: 0;
}

.category__section {
    padding: 35px 0;
}
.category__section > h2 {
    font-size: 32px;
    margin-bottom: 40px;
}
.category__section  > p {
    font-size: 18px;
}

.category__section:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 30px;
}

.feature-card__inner {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 30px;

}
.feature-card__icon > img  {
    height: 120px
}
.feature-card__title {
    font-size: 18px;
    font-weight: 700;
}
.feature-card__text {
    margin-top: 20px;
    font-size: 18px;
}
/* Адаптив: на мобилке навигация уходит вниз/вверх по дизайну */
@media (max-width: 960px) {
    .category__layout {
        grid-template-columns: 1fr;
    }
}

/* aside wrapper (опционально: липкий) */
.toc-aside {
    position: sticky;
    top: 24px;
    align-self: start;
}

/* контейнер оглавления */
.toc {
    padding-top: 6px; /* чтобы заголовок "дышал" */
}

.toc__title {
    margin: 0 0 22px;
    font-size: 28px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111;
}

/* список */
.toc__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 16px; /* расстояние как на скрине */
}

/* пункт: маркер слева */
.toc__item {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
}

/* кружок-маркер */
.toc__item::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-top: 0.62em; /* выравнивание по первой строке */
    border-radius: 999px;
    background: #cfcfcf; /* серый по умолчанию */
}

/* ссылка */
.toc__link {
    color: #444;
    text-decoration: none;
    line-height: 1.35;
    font-size: 16px;
    font-weight: 500;
    min-width: 0;
    display: inline; /* чтобы underline был по тексту */
}

/* hover */
.toc__link:hover {
    color: #222;
}

/* active state как на скрине */
.toc__item.is-active::before {
    background: #1a73e8; /* синий маркер */
}

.toc__item.is-active .toc__link {
    color: #1a73e8;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

/* focus (доступность) */
.toc__link:focus-visible {
    outline: 3px solid rgba(26, 115, 232, 0.35);
    outline-offset: 3px;
    border-radius: 6px;
}

/* адаптив: на узких экранах aside становится обычным блоком */
@media (max-width: 960px) {
    .toc-aside {
        position: static;
    }
    .toc__link {
        font-size: 16px;
    }
}

.advantages-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 50px;
}

.advantages-card__inner {
    display: grid;
    grid-template-columns: 75px minmax(0, 1fr);
    gap: 30px;

}
.advantages-card__icon > img  {
    height: 75px
}
    .advantages-card__title {
    font-size: 18px;
    font-weight: 700;
}
.advantages-card__text {
    margin-top: 10px;
    font-size: 18px;
}

/* Обёртка — горизонтальный скролл на мобилке */
.comparison-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Таблица */
.comparison-table {
    width: 100%;
    min-width: 640px;
    border-collapse: separate;
    border-spacing: 0 8px; /* вертикальные зазоры между строками */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    color: #222;
}

/* Шапка */
.comparison-table thead th {
    padding: 0 0px 12px;
    font-size: 14px;
    font-weight: 400;
    color: #888;
    text-align: left;
    border: none;
    background: transparent;
    white-space: nowrap;
}

.comparison-table thead th.col-param {
    width: 26%;
}

/* Строки тела */
.comparison-table tbody tr td {
    padding: 18px 24px;
    background: #fff;
    border: none;
    vertical-align: middle;
    line-height: 1.4;
}

/* Скругления по краям строки */
.comparison-table tbody tr td:first-child {
    border-radius: 12px 0 0 12px;
}
.comparison-table tbody tr td:last-child {
    border-radius: 0 12px 12px 0;
}

/* Название параметра — жирное */
.comparison-table tbody td.param-name {
    font-weight: 600;
    font-size: 15px;
    color: #111;
    width: 26%;
}


/* Галочка */
.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #2cc36b;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

/* Тире */
.dash {
    color: #bbb;
    font-size: 18px;
}

/* Адаптив */
@media (max-width: 768px) {
    .comparison-table {
        font-size: 13px;
    }
    .comparison-table tbody tr td {
        padding: 14px 16px;
    }
    .comparison-table tbody td.param-name {
        font-size: 13px;
    }
}

/* FAQ */
.faq {
    display: grid;
    gap: 10px;
}

/* Карточка */
.faq__item {
    background: #fff;
    border: 1px solid #e8e8ee;
    border-radius: 14px;
    overflow: clip; /* лучше чем hidden на современных браузерах */
    box-shadow: 0 1px 0 rgba(17, 17, 17, 0.02);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.faq__item:hover {
    border-color: #d9d9e3;
    box-shadow: 0 8px 28px rgba(17, 17, 17, 0.06);
}

/* Кнопка-вопрос */
.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    padding: 18px 20px;
    background: none;
    border: 0;
    cursor: pointer;
    text-align: left;

    font-family: inherit;
    font-size: 15px;
    font-weight: 650;
    color: #111;
    line-height: 1.35;

    transition: color 0.2s, background 0.2s;
}

.faq__question:hover {
    color: #1a73e8;
}

/* фокус для клавиатуры */
.faq__question:focus-visible {
    outline: 3px solid rgba(26, 115, 232, 0.25);
    outline-offset: 2px;
    border-radius: 12px;
}

/* Текст — чтобы стрелка не "съедала" переносы */
.faq__question-text {
    min-width: 0;
}

/* Иконка */
.faq__icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #f2f3f5;
    position: relative;
    transition: background 0.2s, transform 0.25s;
}

/* Чёткий chevron (2 линии) */
.faq__icon::before,
.faq__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 2px;
    background: #5b5f6a;
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.25s, background 0.2s;
}

.faq__icon::before { transform: translate(-55%, -50%) rotate(45deg); }
.faq__icon::after  { transform: translate(-45%, -50%) rotate(-45deg); }

/* Ответ */
.faq__answer {
    padding: 0 20px 16px;
}

.faq__answer > p {
    margin: 0;
    font-size: 14px;
    color: #4a4f59;
    line-height: 1.65;
}

/* Анимация открытия/закрытия через max-height */
.faq__answer[hidden] { display: hidden; } /* нужно, чтобы max-height работал */
.faq__answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-2px);
    transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.2s ease;
}

/* Открыто */
.faq__item.is-open .faq__question {
    color: #1a73e8;
    background: linear-gradient(0deg, rgba(26,115,232,0.06), rgba(26,115,232,0.06));
}

.faq__item.is-open .faq__icon {
    background: #e8f0fe;
    transform: rotate(180deg);
}

.faq__item.is-open .faq__icon::before,
.faq__item.is-open .faq__icon::after {
    background: #1a73e8;
}

.faq__item.is-open .faq__answer {
    max-height: 220px; /* JS ниже подставит точное значение, это fallback */
    opacity: 1;
    transform: translateY(0);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .faq__item, .faq__question, .faq__answer, .faq__icon,
    .faq__icon::before, .faq__icon::after {
        transition: none !important;
    }
}

/* Адаптив */
@media (max-width: 768px) {
    .faq__question { padding: 16px 16px; font-size: 14px; }
    .faq__answer { padding: 0 16px 14px; }
    .faq__answer > p { font-size: 13px; }
}

:root {
    --header-bottom-offset: 204px;
}

/* Оглавление */
.toc-aside {
    position: sticky;
    top: calc(24px + var(--header-bottom-offset));
    align-self: start;
}

/* Якоря секций */
.category__section {
    scroll-margin-top: calc(90px + var(--header-bottom-offset));
}

.category__container > .category__content:first-child .category__section {
    padding-top: 0;
}
/* End */


/* Start:/local/templates/vrtorg/components/bitrix/catalog.element/catalog/style.css?17701068242681*/
.product-preview-radio-list__item.selected .product-preview-radio-list__image
{
    border-color: var(--color-accent);
}

.product-radio-list__item.selected .product-radio-list__text {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: #000;
}

/* Inline Mode */

/* ===== INLINE MODE ===== */
.vrt-card--inline {
    flex-direction: row;
    height: auto;
}

.vrt-card--inline .vrt-card__link {
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
}

/* Картинка */
.vrt-card--inline .vrt-card__image-wrapper {
    width: 90px;
    min-width: 90px;
    height: 90px;
    padding: 10px;
    margin-bottom: 0;
}

/* Текст */
.vrt-card--inline .vrt-card__text {
    flex: 1;
}

/* Заголовок — в одну строку */
.vrt-card--inline .vrt-card__title {
    -webkit-line-clamp: 1;
    font-size: 15px;
    margin-bottom: 6px;
}

/* Цена */
.vrt-card--inline .vrt-card__price {
    font-size: 18px;
    margin-top: 0;
}

@media (max-width: 480px) {
    .vrt-card--inline .vrt-card__image-wrapper {
        width: 70px;
        min-width: 70px;
        height: 70px;
    }

    .vrt-card--inline .vrt-card__price {
        font-size: 16px;
    }
}



.rec-block__title{
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 14px;
}

.rec-list{
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 10px;
  overflow: hidden;
}

.rec-item{
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
}

.rec-item + .rec-item{
  border-top: 1px solid #f0f0f0;
}

.rec-item__img{
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 8px;
  background: #f7f7f7;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rec-item__img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rec-item__content{
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rec-item__name{
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 8px;

  display: -webkit-box;
  -webkit-line-clamp: 2;       /* 1 или 2 строки */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rec-item__price{
  font-size: 16px;
  font-weight: 800;
  line-height: 18px;
}

.rec-item__bonus{
  margin-top: 8px;
  font-size: 13px;
  line-height: 16px;
  color: #3aa400;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.rec-item__bonus-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3aa400;
  display: inline-block;
}

@media (hover:hover){
  .rec-item:hover{
    background: #fafafa;
  }
}

/* End */


/* Start:/local/templates/vrtorg/components/bitrix/catalog.products.viewed/viewed/style.css?17702823805958*/
.vrt-heading {
    width: 100%;
    box-sizing: border-box;
    padding: 30px 30px 25px;
    border-radius: 8px;
    background: linear-gradient(216.42deg, #27048f -41.76%, #0066ff 140.51%);
    color: #fff;
    font-family: "Gilroy", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow: hidden;
}

.vrt-heading__inner {
  /*  max-width: 1200px; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 0;
}

.vrt-heading__text {
    max-width: 840px;
}

.vrt-heading__eyebrow {
    margin: 0 0 6px;
    font-size: clamp(11px, 1.2vw, 13px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
}

.vrt-heading__title {
    margin: 0 0 15px;
    line-height: 1.2;
    font-weight: 600;
}

.vrt-heading__subtitle {
    margin: 0;
    font-size: clamp(19px, 1.6vw, 16px);
    line-height: 1.5;
    opacity: 0.95;
    font-weight: 400;
}


.vrt-heading__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


.vrt-heading__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 18px;
    min-height: 35px;
    box-sizing: border-box;
    border-radius: 8px;
    background-color: #f8c41a;
    border: 2px solid #f8c41a;
    font-family: "Gilroy", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #000;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.vrt-heading__tag:hover {
    background-color: transparent;
    border-color: #f8c41a;
    color: #f8c41a;
    transform: translateY(-1px);
    border-width: 2px;
}

.vrt-heading__tag > a {
    text-decoration: none;
    color: inherit;
}

@media (min-width: 768px) {
    .vrt-heading {
        padding: 40px 40px 25px;
        border-radius: 8px;
    }

    .vrt-heading__inner {
        gap: 20px;
    }

    .vrt-heading__tags {
        margin-top: 8px;
    }
}

/* Большие экраны */
@media (min-width: 1200px) {
    .vrt-heading {
        padding: 40px 40px 25px;
        border-radius: 8px;
    }

    .vrt-heading__tags {
        gap: 12px;
    }

    .vrt-heading__tag {
        padding: 6px 18px;
    }
}

@keyframes vrt-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* базовое состояние — спрятаны */
.vrt-heading--animated .vrt-heading__eyebrow,
.vrt-heading--animated .vrt-heading__title,
.vrt-heading--animated .vrt-heading__subtitle,
.vrt-heading--animated .vrt-heading__tag {
    opacity: 0;
    transform: translateY(10px);
}

/* запускаем анимации с небольшими задержками */
.vrt-heading--animated .vrt-heading__eyebrow {
    animation: vrt-fade-in-up 0.5s ease-out 0.05s forwards;
}

.vrt-heading--animated .vrt-heading__title {
    animation: vrt-fade-in-up 0.6s ease-out 0.15s forwards;
}

.vrt-heading--animated .vrt-heading__subtitle {
    animation: vrt-fade-in-up 0.6s ease-out 0.3s forwards;
}

.vrt-heading--animated .vrt-heading__tag {
    animation: vrt-fade-in-up 0.4s ease-out 0.45s forwards;
}

/* лёгкий разброс по тегам, чтобы не вспыхивали одновременно */
.vrt-heading--animated .vrt-heading__tag:nth-child(2) {
    animation-delay: 0.5s;
}
.vrt-heading--animated .vrt-heading__tag:nth-child(3) {
    animation-delay: 0.55s;
}
.vrt-heading--animated .vrt-heading__tag:nth-child(4) {
    animation-delay: 0.6s;
}
.vrt-heading--animated .vrt-heading__tag:nth-child(5) {
    animation-delay: 0.65s;
}
.vrt-heading--animated .vrt-heading__tag:nth-child(6) {
    animation-delay: 0.7s;
}


@media (prefers-reduced-motion: reduce) {
    .vrt-heading--animated .vrt-heading__eyebrow,
    .vrt-heading--animated .vrt-heading__title,
    .vrt-heading--animated .vrt-heading__subtitle,
    .vrt-heading--animated .vrt-heading__tag {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.section-description {
	margin: 0 auto;
	font-family: 'Segoe UI', Arial, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f4f4f4; 
	border-radius: 8px;
}

.white-box {
	background: #ffffff;
	padding: 20px;
	line-height: 1.6;
	margin-bottom: 25px;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.section-description h2 {
	margin-top: 0;
	color: #2c3e50;
	border-bottom: 2px solid #eee;
	padding-bottom: 10px;
	margin-bottom: 20px;
	font-size: 24px;
}

.lists-row {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 20px;
}

.list-col {
	flex: 1;
	min-width: 280px;
	background-color: #f9f9f9;
	padding: 15px;
	border-radius: 6px;
}

.section-description ul {
	padding-left: 20px;
	margin: 10px 0 0 0;
}

.section-description li {
	margin-bottom: 5px;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(240px, 1fr));
	gap: 15px;
	margin-top: 20px;
}

.benefit-item {
	background-color: #f8f9fa;
	padding: 15px;
	border-radius: 6px;
	border: 1px solid #eee;
	text-align: center;
	font-weight: 600;
	color: #444;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
}

.block-cta {
	text-align: center;
	font-size: 1.1em;
	font-weight: 500;
	color: #2c3e50;
}

.block-cta p {
	margin: 0;
}
.spoiler_body {
    padding: 0px !important;
}
strong {
	font-size: 18px;
}

/* Стили для слайдера */
@media (max-width: 1023px) {
	.viewed-slider .swiper {
		margin: 0 -24px;
	}
}

@media (max-width: 767px) {
	.viewed-slider .swiper {
		margin: 0 -15px;
	}
}

.viewed-slider .swiper-wrapper {
	height: auto!important;
}

.viewed-slider .swiper-slide {
	height: auto;
}

@media (max-width: 1023px) {
	.viewed-slider .swiper-slide {
		width: 270px;
		min-width: 270px;
	}
}
/* End */
/* /local/templates/vrtorg/components/bitrix/catalog/vrtorg/style.css?178047955517405 */
/* /local/templates/vrtorg/components/bitrix/catalog.element/catalog/style.css?17701068242681 */
/* /local/templates/vrtorg/components/bitrix/catalog.products.viewed/viewed/style.css?17702823805958 */
