

/* 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.element/catalog/style.css?17701068242681 */
/* /local/templates/vrtorg/components/bitrix/catalog.products.viewed/viewed/style.css?17702823805958 */
