:root {
    --spacing-base: 40px;
    --trn: 200ms;
    --section-padding-y: 40px;
    --border: 1px solid #f1f1f1;

    --color-primary: #ef8354;
}

@media (max-width: 1280px) {
    :root {
        --spacing-base: 25px;
    }
}
@media (max-width: 768px) {
    :root {
        --section-padding-y: 30px;
    }
}



.h2 {
    font-weight: 600;
    font-size: 28px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0;
}
.h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    color: #65666b;
    text-transform: unset;
}
@media (max-width: 768px) {
    .h2 {
        font-size: 16px;
    }
    .h3 {
        font-size: 14px;
    }
}



.list-iskra {    
    display: flex;
    flex-wrap: wrap;
    list-style: none;

    --gap: 0px;
}
.list-iskra--3 {
    --cols: 3;
}
.list-iskra__item {
    padding: 20px 20px 20px 65px;
    width: calc(100% / var(--cols) - var(--gap) * (var(--cols) - 1) / var(--cols));
    background-image: url(/wp-content/themes/ire-polus/img/iskra.svg);
    background-repeat: no-repeat;
    background-size: 50px 50px;
    background-position: left center;
    border-bottom: var(--border);
}
@media (min-width: 769px) {
    .list-iskra__item:nth-child(2n) + .list-iskra__item:last-child {
        flex-grow: 1;
    }
}
@media (min-width: 1281px) {
    .list-iskra__item:nth-child(3n) + .list-iskra__item:last-child {
        flex-grow: 1;
    }
}
@media (max-width: 1280px) {
    .list-iskra--3 {
        --cols: 2;
    }
}
@media (max-width: 768px) {
    .list-iskra--3 {
        --cols: 1;
    }
    .list-iskra__item {
        padding: 12px 14px 12px 40px;
        background-size: 30px 30px;
    }
}



.list {}
.list--dash {
    padding-left: 23px;
}
.list--dash-left {
    padding-left: 7px;
}
.list--dash li {
    padding-left: 6px;
}
.list--dash li::marker {
    content: '-';
}
.explanation-name ul,
.block-description ul {
    padding-left: 15px;
}
.list--circle {
    padding-left: 18px;
}
.explanation-name ul li::marker,
.block-description ul li::marker,
.list--circle li::marker {
    font-size: 12px;
}



.flex-cols {
    --gap: 40px;

    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
}
.flex-cols--2 {
    --cols: 2;
}
.flex-cols__item {
    width: calc(100% / var(--cols) - var(--gap) * (var(--cols) - 1) / var(--cols));
}
@media (max-width: 768px) {
    .flex-cols {
        --gap: 20px;
    }
    .flex-cols--2 {
        --cols: 1;
    }
}



.slider-arrows .arrow.is-disabled {
    background: transparent;
    border: 1rem solid #65666b;
    cursor: default;
}
.slider-arrows .arrow.is-disabled svg path {
    stroke: #65666b;
}



.btn-line--orange {
    border-color: var(--color-primary)!important;
    color: var(--color-primary)!important;
    transition: .3s;
}
.btn-line--orange:active {
    background-color: var(--color-primary);
}
.btn-line--orange span {
    background: var(--color-primary)!important;
}
.btn-line--orange .name {
    color: var(--color-primary)!important;
    transition: .3s;
}
.btn-line--orange:active .name {
    color: #fff!important;
}
.btn-line--nowrap {
    flex-shrink: 0;
}
.btn-filling {
    background-color: var(--color-primary)!important;
    border: none;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff!important;
}
@media (hover: hover) {
    .btn-line--orange:hover {
        background-color: var(--color-primary);
    }
    .btn-line--orange:hover .name {
        color: #fff!important;
    }
}



.single-arrow {
    width: 40px;
    height: 40px;
    stroke: #65666b;
    background-color: transparent;
    border: none;
    transition: var(--trn);
    cursor: pointer;
    z-index: 25;
}
.single-arrow--disabled {
    stroke: #c4c5c7;
    cursor: default;
}
.single-arrow--prev {
    transform: translateY(-50%) rotate(180deg);
}
.single-arrow--next {}
.single-arrow:not(.single-arrow--disabled):active {
    stroke: var(--color-primary);
}
@media (hover: hover) {
    .single-arrow:not(.single-arrow--disabled):hover {
        stroke: var(--color-primary);
    }
}



.card-product {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 50px 30px;
    border: var(--border);
    background-color: #fff;
}
.card-product__image {
    position: relative;
    background-color: #f1f1f1;
    padding-top: 67%;
}
.card-product__image:not(:last-child) {
    margin-bottom: 40px;
}
.card-product__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
}
.card-product__info {
    display: flex;
    flex-direction: column;
    gap: 17px;
}
.card-product__info:not(:last-child) {
    margin-bottom: 50px;
}
.card-product__title {
    font-weight: 600;
    font-size: 28px;
    line-height: 1.2;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    color: #5a5766;
}
.card-product__description {
    line-height: 1.6;
    text-align: center;
}
.card-product__actions {
    display: flex;
    margin-top: auto;
}
.card-product__btn {
    flex-grow: 1;
}
@media (max-width: 1280px) {
    .card-product {
        padding: 25px;
    }
    .card-product__title {
        font-size: 20px;
    }
    .card-product__description {
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    .card-product__title {
        font-size: 15px;
        line-height: 1.18;
    }
    .card-product__description {
        font-size: 13px;
        line-height: 1.59;
    }
    .card-product__image {
        padding-top: 94%;
    }
    .card-product__image:not(:last-child) {
        margin-bottom: 15px;
    }
    .card-product__info {
        gap: 10px;
    }
    .card-product__info:not(:last-child) {
        margin-bottom: 10px;
    }
}



.section {
    padding: var(--section-padding-y) 0;
}
.section--sticky {
    position: sticky;
    top: 113rem;
    background-color: #fff;
    z-index: 100;
    transition: .2s;
}
.section--sticky.is-sticky {
    padding: 10px 0;
}
.section--pt-0 {
    padding-top: 0;
}
.section--ov-hidden {
    overflow: hidden;
}
.section__inner {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-base);
}
.section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.section__header h2 {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .section__header:not(:last-child) {
        margin-bottom: 5px;
    }
    .section__inner {
        gap: 15px;
    }
}
@media (max-width: 389px) {
    .section--sticky {
        top: 80rem;
    }
}



.product-main {}
.product-main__inner {
    display: flex;
    gap: 60px;
}
.product-main__sliders {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 50%;
}
.product-main__info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-base);
    width: 50%;
}
.product-main__description {
    line-height: 1.4;
}
.product-main__chars {}
.product-main__prices {}
.product-main__actions {
    display: flex;
    gap: 70px;
}
.product-main__btn {
    border: none;
}
.product-main__btn--offer {}
@media (min-width: 1281px) {
    .product-main__btn.btn-line {
        width: 50%;
    }
}
@media (max-width: 1500px) {
    .product-main__inner {
        gap: var(--spacing-base);
    }
    .product-main__actions {
        gap: 25px 20px;
    }
    .product-main__btn--offer {
        flex-shrink: 1;
    }
}
@media (max-width: 1280px) {
    .product-main__sliders {
        width: 60%;
    }
    .product-main__info {
        width: 40%;
    }
    .product-main__actions {
        flex-direction: column;
    }
}
@media (min-width: 1024px) {
    .product-main__info {
        padding-top: var(--spacing-base);
    }
}
@media (max-width: 1023px) {
    .product-main__inner {
        flex-direction: column;
    }
    .product-main__sliders {
        gap: 15px;
        width: 100%;
    }
    .product-main__info {
        width: 100%;
    }
    .product-main__actions {
        flex-direction: row;
    }
    .product-main__btn {
        flex-grow: 1;
    }
}



.product-slider {}
.product-slider__main {
    position: relative;
    width: 100%;
    background-color: #F1F1F1;
}
.product-slider__disclaimers {
    position: absolute;
    top: 15px;
    left: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    pointer-events: none;
    z-index: 50;
}
.product-slider__disclaimer {
    display: flex;
    align-items: center;
    height: 30px;
}
.product-slider__disclaimer-img {
    display: block;
    max-width: 140px;
}
.product-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.product-slider__arrow--prev {
    left: 0;
    transform: translateY(-50%) rotate(180deg);
}
.product-slider__arrow--next {
    right: 0;
}
.product-slider__items {}
.product-slider__item {}
.product-slider__image {
    position: relative;
    padding-top: 53%;
}
.product-slider__img {
    position: absolute;
    inset: 0;
    margin: auto auto 0;
    height: calc(100% - 60px);
    max-width: 100%;
    object-fit: contain;
}
.product-slider__thumbs {
    width: 100%;
}
@media (max-width: 768px) {
    .product-slider__main {
        width: auto;
        margin: 0 -50rem;
    }
}
@media (max-width: 639px) {
    .product-slider__main {
        margin: 0 -30rem;
    }
    .product-main__actions {
        flex-direction: column;
    }
    .product-main__btn.btn-line {
        width: auto;
    }
    .product-slider__image {
        padding-top: 63%;
    }
}



.product-thumbs {
    --cols: 7;
    --gap: 30px;
}
.product-thumbs__items {
    display: flex;
}
.product-thumbs__item {
    width: calc(100% / var(--cols) - var(--gap) * (var(--cols) - 1) / var(--cols));
    border: 2px solid transparent;
    cursor: pointer;
}
.product-thumbs__item.swiper-slide-thumb-active {
    border-color: var(--color-primary);
}
.product-thumbs__item:not(:last-child) {
    margin-right: var(--gap);
}
.product-thumbs__image {
    position: relative;
    padding-top: 100%;
}
.product-thumbs__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}
@media (max-width: 1023px) {
    .product-thumbs {
        --gap: 15px;
    }
}



.preview-chars {}
.preview-chars__items {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: space-between;
    gap: 15px;
}
.preview-chars__item {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.preview-chars__name {
    line-height: 1.4;
    text-align: center;
    color: #c4c5c7;
}
.preview-chars__value {
    line-height: 1.4;
    text-align: center;
}
@media (max-width: 1280px) {
    .preview-chars__items {
        grid-template-columns: repeat(1, 1fr);
    }
    .preview-chars__item {
        flex-direction: row;
        justify-content: space-between;
    }
    .preview-chars__name {
        text-align: left;
    }
    .preview-chars__value {
        text-align: right;
    }
}



.prices-product {}
.prices-product__price {}
.prices-product__value {
    font-weight: 600;
    font-size: 28px;
    line-height: 1.2;
    text-transform: lowercase;
    color: #5a5766;
}
@media (max-width: 390px) {
    .prices-product__value {
        font-size: 16px;
    }
}



.tabs {
    overflow: hidden;
}
.tabs__items {
    position: relative;
    display: flex;
    gap: 10px;
    overflow: auto;
}
.tabs__items {scrollbar-width: none;}
.tabs__items::-webkit-scrollbar {height: 0; width: 0; display: none;}
.tabs__items::-webkit-scrollbar-track {background: transparent;}
.tabs__items::-webkit-scrollbar-thumb {background-color: transparent; border-radius: 0px; border: transparent;}
.tabs__item {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    border: none;
    font-family: "Golos Text",sans-serif;
    color: #65666b;
    background-color: #f1f1f1;
    transition: var(--trn);
    cursor: pointer;
    outline: none;
    text-decoration: none;
}
.tabs__item:not(.is-active):active {
    background-color: #dbd8d8;
}
.tabs__item.is-active {
    color: #f1f1f1;
    background-color: #65666b;
}
[data-tab-content] {
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity .5s ease-in-out;
}
[data-tab-content]:not(.is-active) {
    padding: 0;
}
[data-tab-content].is-active {
    opacity: 1;
    height: auto;
    overflow: visible;
}
@media (hover: hover) {
    .tabs__item:not(.is-active):hover {
        background-color: #dbd8d8;
    }
}
@media (max-width: 768px) {
    .tabs {
        overflow: visible;
    }
    .tabs__items {
        margin: 0 -50rem;
        padding: 0 50rem;
    }
    .tabs__item {
        padding: 11px 10px;
        font-size: 12px;
    }
    .tabs-arrow {
        display: none!important;
    }
}
@media (max-width: 639px) {
    .tabs__items {
        margin: 0 -30rem;
        padding: 0 30rem;
    }
}



.testimonial {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background-color: #f1f1f1;
}
.testimonial__quote {
    width: 43px;
    height: 35px;
}
.testimonial__quote svg {
    width: 100%;
    height: 100%;
}
.testimonial__text {
    font-weight: 500;
    line-height: 1.36;
    color: #5a5766;
}
.testimonial__author {
    line-height: 1.4;
}
@media (max-width: 1023px) {
    .testimonial {
        gap: 15px;
        padding: 10px;
    }
    .testimonial__quote {
        display: flex;
        width: 8px;
        height: 7px;
    }
    .testimonial__text {
        font-size: 14px;
    }
}



.product-videos {
    --cols: 2;
    --gap: 15px;
}
.product-videos__items {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
}
.product-videos__item {
    width: calc(100% / var(--cols) - var(--gap) * (var(--cols) - 1) / var(--cols));
    background-color: #5A5766;
    cursor: pointer;
}
.product-videos__item:active .product-videos__img {
    transform: scale(1.04);
}
.product-videos__item:active .product-videos__play {
    transform: scale(1.04);
}
.product-videos__inner {
    position: relative;
    padding-top: 63%;
}
.product-videos__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
    height: 100%;
    padding: 20px;
    overflow: hidden;
    z-index: 5;
}
.product-videos__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.product-videos__title {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.35;
    text-transform: uppercase;
    text-align: center;
    color: #f1f1f1;
}
.product-videos__subtitle {
    text-align: center;
    color: #c4c5c7;
}
.product-videos__play {
    --size: 85px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    width: var(--size);
    height: var(--size);
    background-color: var(--color-primary);
    transition: var(--trn);
    transform: scale(1.001);
}
.product-videos__play svg {
    transform: translateX(3px);
}
.product-videos__img {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .1;
    transform: scale(1.001);
    transition: var(--trn);
    z-index: -1;
}
.product-videos__iframe {
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    margin: -20px;
    border: none;
}
@media (hover: hover) {
    .product-videos__item:hover .product-videos__img {
        transform: scale(1.04);
    }
    .product-videos__item:hover .product-videos__play {
        transform: scale(1.04);
    }
}
@media (max-width: 1920px) {
    .product-videos__title {
        font-size: calc((100vw - 1023px)/(1920 - 1023) * (40 - 18) + 18px);
    }
    .product-videos__subtitle {
        font-size: calc((100vw - 1023px)/(1920 - 1023) * (18 - 13) + 13px);
    }
    .product-videos__play {
        --size: calc((100vw - 1023px)/(1920 - 1023) * (85 - 55) + 55px)
    }
}
@media (max-width: 1023px) {
    .product-videos__inner {
        padding-top: 76%;
    }
    .product-videos__title {
        font-size: 18px;
    }
    .product-videos__subtitle {
        font-size: 13px;
    }
    .product-videos__info {
        gap: 19px;
    }
    .product-videos__play {
        --size: 55px;
    }
}
@media (max-width: 992px) {
    .product-videos {
        --cols: 1;
    }
    .product-videos__info,
    .product-videos__content {
        gap: 10px;
    }
}



.section:has(.promo) + .section:has(.promo) {
    display: none;
}
.promo {
    position: relative;
    padding: calc(var(--section-padding-y) * 2) 0;
    background-color: #5A5766;
    z-index: 5;
}
.promo__background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .15;
    z-index: -1;
}
.promo__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}
.promo__info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-base);
}
.promo__title {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.35;
    text-transform: uppercase;
    color: #f1f1f1;
}
.promo__description {
    max-width: 545px;
    line-height: 1.4;
    color: #c4c5c7;
}
.promo__actions {}
@media (max-width: 768px) {
    .promo {
        padding: 50rem 0;
    }
    .promo__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 45px;
    }
    .promo__title {
        font-size: 16px;
    }
    .promo__description {
        line-height: normal;
    }
}
@media (max-width: 639px) {
    .promo {
        padding: 30rem 0;
    }
    .promo__inner {

        align-items: stretch;
    }
    .promo__actions-btn.btn-line {
        justify-content: center;
        width: 100%;
    }
}



.block-icons {
    display: flex;
    gap: 20px;
}
.block-icons__icon {
    --size: 40px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: var(--size);
    height: var(--size);
}
.block-icons__icon-img {
    max-width: 100%;
    object-fit: contain;
}
.block-icons__title {
    font-weight: 600;
    line-height: 1.4;
}
.block-icons__list {
    line-height: 1.4;
}
@media (max-width: 1023px) {
    .block-icons {
        gap: 10px;
    }
    .block-icons__icon {
        --size: 25px;
    }
}



.block-group {
    line-height: 1.4;
}



.block-description {}



.characteristics {
    --gap: 25px;
    
    display: flex;
    flex-direction: column;
    
}
.characteristics__arrows {}
.characteristics__inner {
    display: flex;
    flex-direction: column;
}
.characteristics__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    padding: 0 30px;
    border-bottom: var(--border);
}
.characteristics__row--images {}
.characteristics__value {
    padding: 30px 0;
}
.characteristics__value--name {
    width: 41%;
}
.characteristics__value--slider {
    flex-shrink: 0;
    width: calc(100% / var(--cols) - var(--gap) * (var(--cols) - 1) / var(--cols));
}
.characteristics__value--slider:not(:last-child) {
    margin-right: var(--gap);
}
.characteristics__img {
    width: 310px;
    max-width: 100%;
    height: 200px;
    object-fit: contain;
}
.characteristics__slider {
    --cols: 2;
    
    width: 59%;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.characteristics__slider-items {
    display: flex;
    transition: .3s;
}
@media (max-width: 768px) {
    .characteristics {
        --gap: 20px;
    }
    .characteristics__slider {
        --cols: 1;
    }
    .characteristics__row {
        padding: 0;
    }
    .characteristics__value {
        padding: 30px 0;
    }
    .characteristics--is-only .characteristics__value {
        width: 50%;
        padding: 10px 0;
    }
    .characteristics__value--name {
        width: 50%;
    }
    .characteristics__slider {
        width: 50%;
    }
    .characteristics__img {
        width: 165px;
        height: 105px;
    }
}


.product-documents {}
.product-documents__items {
    display: flex;
    flex-direction: column;
}
.product-documents__item {
    display: flex;
    justify-content: space-between;
    border-top: var(--border);
    border-bottom: var(--border);
    text-decoration: none;
    color: #453f3e;
}
.product-documents__image {
    position: relative;
    flex-shrink: 0;
    align-self: center;
    width: 22%;
}
.product-documents__img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
}
.product-documents__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    flex-grow: 1;
    padding: 31px 24px;
}
.product-documents__title {
    font-weight: 600;
    font-size: 30px;
    line-height: 1.4;
    text-transform: uppercase;
    color: #453f3e;
}
.product-documents__description {
    font-size: 20px;
    line-height: 1.4;
}
.product-documents__actions {
    flex-shrink: 0;
}
.product-documents__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 135px;
    height: 100%;
    min-height: 135px;
    background-color: #453f3e;
    border: 2px solid transparent;
    transition: .3s;
}
.product-documents__btn:active {
    background-color: #fff;
    border-color: #453f3e;
}
.product-documents__btn:active svg path {
    fill: #453f3e;
}
@media (hover: hover) {
    .product-documents__btn:hover {
        background-color: #fff;
        border-color: #453f3e;
    }
    .product-documents__btn:hover svg path {
        fill: #453f3e;
    }
}
@media (max-width: 1023px) {
    .product-documents__item {
        gap: 6px;
    }
    .product-documents__title {
        font-weight: 700;
        font-size: 16px;
        line-height: 1.38;
    }
    .product-documents__info {
        gap: 0;
        padding: 12px 0;
    }
    .product-documents__description {
        font-size: 14px;
        line-height: 1.21;
    }
}
@media (max-width: 768px) {
    .product-documents__actions {
        display: none;
    }
    .product-documents__image {
        width: 45px;
    }
}



.product-description {}



.images-slider {}
.images-slider__inner {
    position: relative;
}
.images-slider__items {}
.images-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.images-slider__arrow--prev {
    left: 0;
    transform: translateY(-50%) rotate(180deg);
}
.images-slider__arrow--next {
    right: 0;
}
.images-slider__item {}
.images-slider__image {
    position: relative;
    display: block;
    padding-top: 34%;
    outline: none;
}
.images-slider__img {
    position: absolute;
    inset: 0;
    height: 100%;
    max-width: 100%;
    margin: 0 auto;
    object-fit: contain;
}
@media (max-width: 768px) {
    .images-slider__image {
        padding-top: 60%;
    }
}



.products-slider {
    --cols: 3;
    --gap: 0px;
}
.products-slider__inner {
    margin: 0 -107rem;
    padding: 0 107rem;
}
.products-slider__items {}
.products-slider__item {
    height: auto;
    width: calc(100% / var(--cols, 1) - var(--gap, 0px) * (var(--cols, 1) - 1) / var(--cols, 1));
}
@media (max-width: 1280px) {
    .products-slider {
        --cols: 2;
    }
}
@media (max-width: 639px) {
    .products-slider {
        --cols: 1.3;
    }
}