@font-face {
    font-family: "Commissioner";
    src: url("../assets/fonts/commissioner/Commissioner-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Commissioner";
    src: url("../assets/fonts/commissioner/Commissioner-Medium.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: "Commissioner";
    src: url("../assets/fonts/commissioner/Commissioner-SemiBold.ttf") format("truetype");
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: "Commissioner";
    src: url("../assets/fonts/commissioner/Commissioner-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
}

* {
    padding: 0;
    margin: 0;
    border: none;
    font-family: "Commissioner", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Отключаем стандартную прокрутку страницы */
}

.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory; /* Фиксируем каждую секцию при прокрутке */
    scroll-behavior: smooth; /* Плавная прокрутка */
}

.step {
    scroll-snap-align: start; /* Начало каждой секции фиксируется при прокрутке */
    height: 100vh; /* Каждая секция занимает 100% высоты экрана */

}

body {
    background: #ffffff;
}

a, a:link, a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

aside, nav, footer, header, section, main {
    display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: inherit;
}

ul, ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

img, svg {
    max-width: 100%;
    height: auto;
}

address {
    font-style: normal;
}

input, textarea, button, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
    display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

label {
    cursor: pointer;
}

legend {
    display: block;
}

.main-page {

    overflow: hidden;
}

.container {
    position: relative;
    max-width: 1620px;
    margin: 0 auto;
    padding: 12px 20px;
}

.section-temperature-conditions {
    overflow: hidden;
}

.section-temperature-conditions,
.section-use,
.main-screen {
    position: relative;
    max-width: 100%;
    width: 100%;
    height: 100vh;

}

.main-screen {
    background: url("../assets/image/mainscreen-bg.jpg") no-repeat center;
    background-size: cover;
}

.single-product .main-screen {
    background-size: cover;
}

.section-use {
    background-size: cover;
}

.section-temperature-conditions {
    background-size: cover;
}

.section-lift-specification {
    background-size: cover;
}


.section-lift-specification {
    position: relative;
}

.section-lift-specification img,
.section-temperature-conditions img,
.section-use img,
.main-screen img {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100px;
    z-index: 3;
    transition: opacity .5s;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;

    @media screen and (max-width: 768px) {
        background: rgba(0, 0, 0, .7);
        backdrop-filter: blur(34px);
    }
}

.header img {
    max-width: 198px;
    width: 100%;
    height: 64px;
}

.nav-menu ul {
    display: flex;
    gap: 48px;
    justify-content: end;
}

.nav-menu ul li a {
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    color: #FFFFFF;
}

h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    text-transform: uppercase;
    color: #000000;

}

.to-buy,
.products {
    padding: 20px 0;
    overflow: hidden;
}

.products h2 {
    margin-bottom: 12px;
}

.products .sub-title {
    color: black;
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    margin-bottom: 100px;
}

.products-block {
    padding: 0 160px;
    display: flex;
    justify-content: space-between;
    gap: 140px;
}

.products-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 332px;
    width: 100%;
}

.products-item:hover img {
    transform: scale(1.15);
}

.products-item img {
    max-width: 332px;
    height: 300px;
    object-fit: contain;
    margin-bottom: 12px;
    transition: transform 0.5s;
    z-index: -1;
}

.products-item p {
    font-size: 24px;
    line-height: 26px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 16px;
}

.product-item-stock {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-item-stock div {
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-item-stock span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 600;
    color: #000000;
}

.products-item a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 44px;
    background: #686748;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    color: #FFFFFF;
}

.about-us {
    padding: 20px 0 0 0;
}

.about-us h2 {
    margin-bottom: 60px;
}

.about-us-blocks {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 58px;
}

.about-us-block:first-child {
    flex-basis: 47.5%;
}

.about-us-block:last-child {
    flex-basis: 52.5%;
}

.about-us-block p {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    margin-bottom: 60px;
}

.about-us-block .title-list {
    font-weight: 600;
    margin-bottom: 16px;
}

.about-us-block ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 25px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

.about-us-block ul li {
    position: relative;
}

.about-us-block ul li:before {
    position: absolute;
    content: '';
    top: 0;
    left: -25px;
    width: 16px;
    height: 23px;
    background: url("../assets/image/icon-list.png");
}

h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 40px;
}

.advantages-content {
    display: flex;
    align-items: start;
    justify-content: space-between;
    max-width: 940px;
    margin: 0 auto;

    @media screen and (max-width: 700px) {
        flex-wrap: wrap;
    }
    @media screen and (max-width: 500px) {
        gap: 16px;
    }
}

.advantages-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;

    @media screen and (max-width: 700px) {
        flex-basis: calc(33% - 10px);
    }
    @media screen and (max-width: 600px) {
        flex-basis: calc(50% - 10px);
    }
    @media screen and (max-width: 500px) {
        flex-basis: 100%;
    }
}

.advantages-item p {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 110%;
    text-align: center;
    color: #000000;
    max-width: 200px;
}

.to-buy {
    position: relative;
    color: white;
    padding-bottom: 324px;
    margin-bottom: 100px;
    overflow: hidden;
}

.to-buy:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 102%;
    height: 100%;
    background: url('https://ru-bolts.v.gldev.pro/wp-content/uploads/2025/09/фон-для-сайта_такточ_светлый1-1.jpg') no-repeat center;
    z-index: -1;
    background-size: 100%;
}

.to-buy h2 {
    color: white;
    margin-bottom: 182px;
}

.to-but-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 60px;
}

.to-buy-block {
    display: flex;
    justify-content: space-between;
}

.to-buy-content-item-bottom .to-buy-block-title {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 38px;
    color: #FFFFFF;
}

.to-buy-block-time {
    max-width: 235px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
}

.to-buy-item-title {
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 49px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 40px;
    max-width: 420px;
}

.to-buy-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 40px;
    margin-bottom: 60px;
}

.to-buy-contact a {
    position: relative;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    color: #FFFFFF;
}

.to-buy-contact a:before {
    position: absolute;
    content: '';
    top: -2px;
    left: -40px;
    width: 28px;
    height: 28px;
}

.to-buy-contact a.map:before {
    background: url("../assets/image/map.svg") center no-repeat;
}

.to-buy-contact a.tel:before {
    background: url("../assets/image/tel.svg") center no-repeat;
}

.to-buy-image {
    position: absolute;
    top: 87px;
    left: -102px;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    width: 85%;
    z-index: -1;
    filter: drop-shadow(0px 170px 4px rgba(0, 0, 0, 0.25));
    max-width: 580px;
}

.contacts {
    margin-bottom: 100px;
}

.contacts h2 {
    margin-bottom: 60px;
}

.contacts-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contacts-content-item-map,
.contacts-content a {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    padding-left: 40px;
}

.contacts-content a {
    cursor: pointer;
}

.contacts-content-item {
    display: flex;
    justify-content: space-between;
}

.contacts-content-item-map {
    position: relative;
    max-width: 375px;
}

.contacts-content-item-tel,
.contacts-content-item-mail {
    position: relative;
}

.contacts-content-item-mail:before,
.contacts-content-item-tel:before,
.contacts-content-item-map:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    background: url("../assets/image/map-green.svg") no-repeat center center;
}

.contacts-content-item-tel:before {
    background: url("../assets/image/tel-green.svg") no-repeat center center;
}

.contacts-content-item-mail:before {
    background: url("../assets/image/mail-green.svg") no-repeat center center;
}

.contacts-content-item-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-basis: 39%;
}

.footer {
    padding: 80px 0;
}

.footer.step {
    height: 10%;
}

.footer-logo {
    width: 100%;
    max-width: 220px;
    height: 100%;
    max-height: 71px;
}

.footer-block {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding-bottom: 21px;
    border-bottom: 1px solid black;
    margin-bottom: 28px;
}

.footer-menu ul {
    display: flex;
    gap: 50px;
}

.footer-menu ul a {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #252525;
}

.footer-contacts {
    display: flex;
    gap: 20px;
}

.footer-block-bottom {
    display: flex;
    justify-content: end;
}

.footer-block-bottom a {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #252525;
}

.products-title {
    transition: transform 0.4s cubic-bezier(.17, .67, .62, 1.3);
    transform: translateY(100%);
}

.products-block {
    transition: transform 0.4s cubic-bezier(.17, .67, .62, 1.3);
    transform: translateY(10%);
}

.products-block.active,
.products-title.active {
    transform: translateY(0%);
}

.product-image {
    transition: transform 0.5s cubic-bezier(.17, .67, .62, 1.3), opacity 0.4s;
    transform: scale(0);
    opacity: 1;
}

.product-image-wrapper {
    display: flex;
    justify-content: center;
}

.product-image.active {
    transform: scale(1);
    opacity: 1;
}

.about-us {
    position: relative;
}

.about-us-title {
    position: relative;
    transition: transform 0.4s cubic-bezier(.17, .67, .62, 1.3), opacity 0.4s;
    transform: translateY(300%);
    opacity: 0;
    z-index: -1;
}

.about-us.active .about-us-title {
    transform: translateY(0%);
    opacity: 1;

}

.about-us-block-left img {
    will-change: transform, opacity;
}

.to-buy-content-item-left,
.about-us-block-left {
    transition: transform 0.5s cubic-bezier(.17, .67, .62, 1.3), opacity 0.5s;
    transform: translateX(-80%);
    opacity: 0;
}

.to-buy-content-item-right,
.about-us-block-right {
    position: relative;
    transition: transform 0.5s cubic-bezier(.17, .67, .62, 1.3), opacity 0.5s;
    transform: translateX(80%);
    opacity: 0;
}

.to-buy.active .to-buy-content-item-right,
.to-buy.active .to-buy-content-item-left,
.about-us.active .about-us-block-right,
.about-us.active .about-us-block-left {
    transform: translateX(0%);
    opacity: 1;
}

.contacts-content-item {
    position: relative;
    z-index: -1;
}

.contacts-content-item,
.contact-title,
.to-buy-title,
.advantages-title {
    transition: transform 0.4s cubic-bezier(.17, .67, .62, 1.3), opacity 0.4s;
    transform: translateY(250%);
    opacity: 0;
}

.contacts.active .contacts-content-item,
.contacts.active .contact-title,
.to-buy.active .to-buy-title,
.advantages-title.active {
    transform: translateY(0%);
    opacity: 1;
}

.advantages-item-image {
    max-width: 60px;
    max-height: 60px;
    transition: transform 0.4s cubic-bezier(.17, .67, .62, 1.3), opacity 0.4s;
    transform: scaleY(0);
    opacity: 0;
}

.advantages-item-image.active {
    transform: scaleY(1);
    opacity: 1;
}

.to-buy-image {
    transition: transform 0.4s cubic-bezier(.17, .67, .62, 1.3);
    transform: translateY(30%);
}

.to-buy.active .to-buy-image {
    transform: translateY(0%);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.modal-content {
    max-width: 700px;
    width: 100%;
    padding: 0 20px;
    margin: auto auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.modal-content ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.modal-content a {
    color: white;
    font-size: 20px;
    line-height: 20px;
}

.modal.show {
    display: block;
}

.burger-menu {
    position: relative;
    display: none;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    z-index: 1;
    width: 30px;
    height: 33px;
}

.burger-menu span {
    display: block;
    width: 30px;
    height: 1px;
    border: 1px solid white;
    transition: transform 0.4s;
}

.burger-menu.active {
    gap: 0;
}

.burger-menu.active span:nth-child(2) {
    display: none;
}

.burger-menu.active span:first-child {
    transform: rotate(45deg);
    margin-top: 10px;
}

.burger-menu.active span:last-child {
    transform: rotate(-45deg);
    margin-top: -2px;
}

@media screen and (max-width: 1400px) {
    .products-block {
        padding: 0;
        gap: 60px;
    }
}

@media screen and (max-width: 1300px) {
    .footer-menu ul {
        gap: 20px;
    }
}

@media screen and (max-width: 1150px) {
    .footer-menu ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

@media screen and (max-width: 1076px) {
    .nav-menu {
        display: none;
    }

    .burger-menu {
        position: relative;
        display: flex;
        height: auto;
    }
}

.header .logo {
    width: 198px;
    height: 64px;
}

.footer .logo {
    width: 220px;
    height: 71px;
}

@media screen and (max-width: 950px) {
    .products-block {
        flex-direction: column;
    }

    .products-item {
        max-width: 100%;
        align-items: center;
    }

    .product-item-stock {
        align-items: center;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .about-us-title,
    .contact-title,
    .products h2 {
        font-size: 32px;
    }

    .products-item p,
    .products .sub-title {
        font-size: 16px;
    }

    .products .sub-title {
        margin-bottom: 30px;
    }

    .products-item img {
        height: 218px;
    }

    .products-item a {
        font-size: 16px;
    }

    .to-buy, .products {
        padding: 50px 0;
    }

    .about-us {
        padding: 0 0 50px 0;
    }

    .about-us-blocks {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .about-us-block ul,
    .title-list,
    .about-us-block p {
        font-size: 16px;
        line-height: 16px;
    }

    .advantages-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .advantages-item p {
        font-size: 16px;
    }

    .to-buy h2 {
        margin-bottom: 91px;
    }

    .to-buy-title {
        font-size: 32px;
    }

    .to-buy-block {
        flex-direction: column;
        gap: 20px;
    }

    .to-buy-item-title {
        font-size: 24px;
        line-height: 26px;
    }

    .to-buy-contact {
        margin-bottom: 30px;
        gap: 20px;
    }

    .to-buy-contact a {
        font-size: 20px;
    }

    .to-buy-contact a:before {
        top: -3px;
    }

    .to-buy-content-item-bottom .to-buy-block-title {
        font-size: 20px;
    }

    .to-buy-block-time {
        font-size: 16px;
    }

    .to-buy-image {
        position: absolute;
        top: 117px;
        left: 88px;
        right: 0;
        bottom: 0;
        margin: 0 auto;
        z-index: -1;
        filter: drop-shadow(0px 170px 4px rgba(0, 0, 0, 0.25));
    }

    .to-buy {
        margin-bottom: 40px;
    }

    .contact-title {
        margin-bottom: 30px !important;
    }

    .contacts-content-item-tel,
    .contacts-content-item-mail,
    .contacts-content-item-map {
        font-size: 16px !important;
    }

    iframe {
        height: 300px;
    }

    .contacts {
        margin-bottom: 50px;
    }

    .footer {
        padding-top: 30px;
        padding-bottom: 24px;

    }

    .footer-menu ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .footer-menu ul a {
        font-size: 14px;
        line-height: 16px;
    }

    .about-us h2 {
        margin-bottom: 30px;
    }

    .footer-block-bottom {
        align-items: center;
        justify-content: center;
    }

    .about-us-blocks {
        gap: 30px;
    }
}

@media screen and (max-width: 600px) {
    .contacts-content-item {
        flex-direction: column;
        gap: 20px;
    }

    .to-buy-image {
        max-width: 100%;
        max-height: 100%;
        left: 0;
    }

    .footer-block {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 20px;
    }
}

.appointment-text {
    padding-top: 44px;
    padding-bottom: 44px;
}

.appointment-text h2 {
    margin-bottom: 12px;
}

.appointment-text p {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #000000;
    max-width: 1180px;
}

:root {
    --spacing-md: 60px;
}

@media screen and (max-width: 768px) {
    :root {
        --spacing-md: 20px;
    }
}

.splide__track {
    margin-bottom: 44px;
}

.splide__slide {
    max-width: 1360px;
    max-height: 640px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.splide__pagination {
    bottom: 5px;
    right: auto;
    padding-left: 20px;
}

.splide__pagination__page {
    background: #68674880;
}

.splide__pagination__page:hover {
    background: #686748;
}

.splide__pagination__page.is-active {
    background: #686748;
    transform: scale(1);
}

.splide__arrow--prev {
    left: auto;
    right: 60px;
}

.splide__arrow--next {
    right: 20px;
}

.splide__arrow {
    background: #68674833;
}

.appointment-splide {
    margin-bottom: 60px;
}

.appointment {
    overflow: hidden;
}

.appointment-text {
    transition: transform 0.5s cubic-bezier(.17, .67, .62, 1.3), opacity 0.6s cubic-bezier(.17, .67, .62, 1.3);
    transform: translateY(-50%);
    opacity: 0;
}

.appointment.active .appointment-text {
    transform: translateY(0);
    opacity: 1;
}

.appointment-splide {
    transition: transform 0.5s cubic-bezier(.17, .67, .62, 1.3), opacity 0.5s;
    transform: translatex(80%);
    opacity: 0;
}

.appointment-splide img {
    width: 100%;
    height: 100%;
}

.appointment-splide .splide__track {
    height: fit-content;
}

.appointment-splide .splide__pagination {
    right: auto;
}

.appointment-splide .splide__arrow--prev {
    left: auto;
}

.appointment.active .appointment-splide {
    transform: translateX(0);
    opacity: 1;
}

.control {
    transition: transform 0.5s cubic-bezier(.17, .67, .62, 1.3);
    transform: translateY(200%);
    transition-delay: .2s;
}

.appointment.active .control {
    transform: translateY(0);
}

.section-use.active .section-use-content {
    transition: opacity .5s cubic-bezier(.17, .67, .62, 1.3);
    opacity: 1;
}


.section-use-content {
    flex-direction: column;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    opacity: 0;
}

.section-use-content h2 {
    color: white;
    margin-bottom: 12px;
}

.section-use-content p {
    max-width: 1100px;
    width: 100%;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    color: #FFFFFF;
}

.section-characteristics .splide__slide {
    position: relative;
    height: 688px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 95.98%);
    align-items: end;
}

.appointment .appointment-splide .splide__slide {
    position: relative;
    height: 688px;
    align-items: end;
}

.appointment .appointment-splide .splide__slide img,
.section-characteristics .splide__slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.section-characteristics-item-text {
    color: white;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    padding: 0 80px 92px 80px;
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.section-characteristics .section-characteristics-item-text ul li {
    list-style: disc;
}

.section-characteristics .section-characteristics-item-text ul {
    padding-left: 20px;
    flex-basis: 50%;
}

.section-temperature-conditions h2 {
    transition: transform .5s cubic-bezier(.17, .67, .62, 1.3);
    transform: translateY(-100%);
}

.section-temperature-conditions.active .active-bar,
.section-temperature-conditions.active h2 {
    transform: translateY(0);
}

.section-temperature-conditions .active-bar {
    transform: translateY(200%);
    transition: transform .5s cubic-bezier(.17, .67, .62, 1.3);
}

.section-temperature-conditions-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0 100px 0;
    height: 100%;
}

.section-temperature-conditions-content h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 58px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    max-width: 932px;
    width: 100%;
    transform: translateY(-200%);
}

.table-active-bar,
.active-bar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.table-active-bar ul,
.active-bar ul {
    position: relative;
    display: flex;
    gap: 60px;
    justify-content: space-between;
    max-width: 1028px;
    width: 100%;
}

.table-active-bar ul:before,
.active-bar ul:before {
    position: absolute;
    content: '';
    bottom: 0;
    width: 100%;
    border-bottom: 4px solid rgba(255, 255, 255, 0.1);
}

.table-active-bar ul li,
.active-bar ul li {
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 32px;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
    min-height: 40px;
}

.table-active-bar ul li:hover,
.active-bar ul li:hover {
    border-bottom: 4px solid white;
}

.table-active-bar ul li.active,
.active-bar ul li.active {
    border-bottom: 4px solid white;
}

.hint {
    display: none;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}

.table-active-bar .table-lift {
    display: none;
}

.table-active-bar .table-lift.active,
.hint.active {
    display: block;
}

.section-helpful {
    width: 100%;
    background: #131313;
}

.helpful-content {
    padding: 80px 0;
}

.helpful-content h2 {
    color: white;
    margin-bottom: 80px;
}

.helpful-content-cards {
    padding: 0 148px;
    display: flex;
    justify-content: space-between;
    gap: 52px;
}

.section-product-specification.open-table {
    overflow: auto;
}

.helpful-content-cards a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 122px;
    max-width: 400px;
    width: 100%;
    min-height: 460px;
    background: #2a2a2a;
    cursor: pointer;
}

.helpful-content-cards a p {
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    line-height: 39px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    padding: 28px;
}

.helpful-content-cards a img {
    height: 232px;
}

.specifications-grid {
    position: relative;
    overflow: hidden;
    max-height: 600px;
}

.specifications-grid.open-table {
    max-height: 700px !important;
    overflow: auto;
}

.specifications-grid.open-table tr {
    display: table-row !important;
}

.section-product-specification {
    padding: 40px 0;
    overflow: hidden;
}

.section-product-specification h2,
.section-product-specification .table-button,
.section-product-specification .specifications-grid {
    transition: transform 0.5s cubic-bezier(.17, .67, .62, 1.2), opacity 0.5s cubic-bezier(.17, .67, .62, 1.3);
}

.section-product-specification .table-button {
    transform: translateY(2000%);
}

.section-product-specification.active .table-button {
    transform: translateY(0);
}

.section-product-specification h2 {
    transform: translateY(-200%);
    opacity: 0;
}

.section-product-specification .specifications-grid {
    transform: translateY(200%);
}

.section-product-specification.active h2,
.section-product-specification.active .specifications-grid {
    transform: translateY(0);
    opacity: 1;
}

.section-product-specification h2 {
    margin-bottom: 60px;
}

table.iksweb {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    height: auto;
    text-align: center;
}

table.iksweb, table.iksweb td, table.iksweb th {
    border-bottom: 1px solid #C0C0C0;
}

table.iksweb td, table.iksweb th {
    padding: 3px;
    width: 30px;
    height: 35px;
}


table.iksweb td {
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    padding: 14px 0;
}

.color-green td,
.color-green th {
    background: #686748;
    border: 1px solid white !important;
    color: white;
}

table.iksweb tr:first-child td,
table.iksweb tr:nth-child(2) td,
table.iksweb tr:nth-child(3) td {
    background: #686748 !important;
    border: 1px solid white !important;
    color: white;
}

table.iksweb tr:nth-child(odd) {
    background: #e2e2e3;
}

.table-lift-button,
.table-button {
    position: relative;
    width: 100%;
    background: #686748;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
    padding: 12px 0;
}

.table-button:before {
    position: absolute;
    content: '';
    top: -118px;
    left: 0;
    width: 100%;
    height: 118px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}

.table-button.open-table:before {
    display: none;
}

.section-lift-specification {
    padding: 80px 0 60px 0;
}

.section-lift-specification.open-table {
    overflow: auto;
    max-height: max-content;
}

.section-lift-specification h2 {
    color: white;
    text-align: center;
    margin-bottom: 80px;
}

.table-active-bar ul {
    margin: 0 auto;
    margin-bottom: 32px;
}

.table-active-bar ul li {
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    color: #FFFFFF;

}

.table-active-bar {
    max-height: 550px;
    overflow: hidden;
}

.table-active-bar.open-table {
    max-height: max-content;
    opacity: 1 !important;
}

.table-lift {
    position: relative;
    margin: 0 auto;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    height: auto;
    color: white;
    text-align: center;
    backdrop-filter: blur(10px);
}

.table-lift tbody {
    width: 100%;
    display: inline-table;
}

.table-lift, .table-lift td, .table-lift th {
    border-bottom: 1px solid rgba(192, 192, 192, 0.5);
}

.table-lift td, .table-lift th {
    padding: 13px 40px;
    height: 52px;
}

.table-lift th {
    position: relative;
    background: rgba(104, 103, 72, 0.5);
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    z-index: 1;
}

.table-lift td {
    position: relative;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    backdrop-filter: blur(10px);
}

.table-lift td:first-child,
.table-lift th:first-child {
    width: 340px;
}

.table-lift td:nth-child(3),
.table-lift th:nth-child(3),
.table-lift td:last-child,
.table-lift th:last-child {
    width: 360px;
}

.table-lift td:nth-child(2),
.table-lift th:nth-child(2) {
    width: 218px;
}

.table-lift-button:before {
    position: absolute;
    content: '';
    top: -109px;
    left: 0;
    width: 100%;
    height: 109px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
}

.table-lift-button.open-table:before {
    display: none;
}

.single-product .main-screen {
    display: flex;
    justify-content: center;
    padding-top: 168px;
}

.single-product .main-screen h1 {
    max-width: 1188px;
    font-style: normal;
    font-weight: 700;
    font-size: 56px;
    line-height: 56px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}

.single-product .header {
    transition: transform 0.5s cubic-bezier(.17, .67, .62, 1.3);
    transform: translateY(-100%);
}

.single-product .header.active {
    transform: translateY(0%);
}

.single-product h1 {
    transition: transform 0.5s cubic-bezier(.17, .67, .62, 1.3);
    transform: translateY(-20%) scale(0);
    transform-origin: top;
}


.section-lift-specification-content h2,
.table-active-bar {
    transition: transform 0.5s cubic-bezier(.17, .67, .62, 1.3), opacity 0.5s cubic-bezier(.17, .67, .62, 1.3);
}

.section-lift-specification-content h2 {
    transform: translateY(-200%);
    opacity: 0;
}

.table-active-bar {
    opacity: 0;
}

.section-lift-specification-content.active h2 {
    transform: translateY(0);
    opacity: 1;
}

.section-lift-specification-content.active .table-active-bar {
    opacity: 1;
}

.section-lift-specification-content.active .table-lift-button {
    opacity: 1;
}

.section-helpful h2,
.section-helpful .helpful-content-cards a {
    transition: transform 0.5s cubic-bezier(.17, .67, .62, 1.2);
}

.section-helpful h2 {
    transform: translateY(200%);
}

.section-helpful .helpful-content-cards a {
    transform: translateX(-200%);
}

.section-helpful h2.active,
.section-helpful .helpful-content-cards.active a {
    transform: translateY(0);
}

.contact-maps {
    display: flex;
    gap: 20px;
}

@media screen and (max-width: 1450px) {
    .helpful-content-cards {
        padding: 0 20px;
    }
}

@media screen and (max-width: 1076px) {


    .single-product h2,
    .single-product .main-screen h1 {
        font-size: 32px;
        line-height: 36px;
    }

    .section-product-specification h2,
    .section-helpful h2 {
        padding: 0 20px;
    }

    .section-use-content p,
    .appointment-text p {
        font-size: 18px;
        line-height: 24px;
    }

    .section-characteristics-item-text {
        font-size: 18px;
        flex-direction: column;
        gap: 0;
        padding: 0 40px 92px 40px;
    }

    .appointment-text h2 {
        font-size: 28px;
    }

    .helpful-content-cards {
        padding: 0 20px;
        flex-direction: column;
        align-items: center;
    }

    .helpful-content-cards a p {
        font-size: 24px;
        line-height: 24px;
    }

    .active-bar ul {
        padding: 0 20px;
        gap: 20px;
        max-width: 965px;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .active-bar ul:before {
        width: 200%;
    }

    .active-bar ul li {
        flex-shrink: 0;
        min-width: 0;
    }

    .hint {
        max-width: 400px;
        padding: 0 20px;
        font-size: 18px;
        line-height: 20px;
    }

    .table-active-bar ul li {
        font-size: 24px;
        line-height: 24px;
    }

    .table-active-bar ul {
        min-height: 100px;
    }

    .table-active-bar ul,
    .table-lift,
    .specifications-grid {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .specifications-grid th,
    .specifications-grid td {
        min-width: 75px;
    }

    .appointment-text {
        padding-top: 40px;
    }
}

@media screen and (max-width: 768px) {
    .to-buy:before {
        background-size: auto;
    }

    .contact-maps {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    body {
        overflow: auto;
    }

    .scroll-container {
        height: auto;
        scroll-snap-type: none;
    }

    .step {
        height: auto;
    }

    .to-buy-image {
        display: none;
    }

    .to-buy h2 {
        margin-bottom: 40px;
    }

    .single-product h2,
    .single-product .main-screen h1 {
        font-size: 28px;
        line-height: 32px;
    }

    .section-characteristics-item-text {
        padding: 40px 10px 0 10px;
        font-size: 14px;
        line-height: 20px;
    }

    .section-characteristics .splide__slide {
        align-items: start;
    }

    .helpful-content-cards a {
        gap: 30px;
        min-height: 360px;
    }

    .main-screen {
        height: 100%;
        padding-bottom: 286px;
    }

    .single-product .section-use,
    .single-product .main-screen {
        height: 100%;
        padding-top: 120px;
        padding-bottom: 70px;
    }

    .single-product .section-use {
        padding-top: 0;
    }

    .section-temperature-conditions {
        height: auto;
        padding-bottom: 0;
    }

    .appointment-text {
        padding-bottom: 20px;
    }

    .section-temperature-conditions-content {
        gap: 50px;
    }

    .active-bar {
        gap: 40px;
    }

    .section-characteristics .splide__slide {
        height: auto;
        padding-bottom: 40px;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0) 79.98%);
    }

    .section-product-specification {
        padding-top: 40px;
    }

    .section-product-specification h2 {
        margin-bottom: 30px;
    }

    .specifications-grid {
        max-height: 500px;
    }

    /*[data-animate],*/
    /*[data-animate] .about-us-title,*/
    /*[data-animate] .about-us-block-left,*/
    /*[data-animate] .about-us-block-right,*/
    /*[data-animate] .contact-title,*/
    /*[data-animate] .contacts-content-item,*/
    /*[data-animate] .appointment-text,*/
    /*[data-animate] .appointment-splide,*/
    /*[data-animate] .appointment-splide .control,*/
    /*[data-animate] .section-use-content,*/
    /*[data-animate] .section-temperature-conditions-content,*/
    /*[data-animate] .section-temperature-conditions-content .active-bar,*/
    /*[data-animate] h2,*/
    /*[data-animate] .table-button,*/
    /*[data-animate] .specifications-grid,*/
    /*[data-animate] .table-active-bar,*/
    /*[data-animate] .table-lift-button,*/
    /*[data-animate] .helpful-content-cards {*/
    /*    transform: translateY(0) scale(1) translateX(0) !important;*/
    /*    opacity: 1 !important;*/
    /*}*/
    /*.single-product .header {*/
    /*    transform: translateY(0);*/
    /*}*/
    /*.main-screen h1 {*/
    /*    transform: translateY(0) scale(1);*/
    /*}*/
}

@media (max-width: 768px) {
    .mobile-no-animation,
    .mobile-no-animation * {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }

    /* Принудительно показываем все анимированные элементы */
    [data-animate] {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    /* Если есть специфичные классы анимаций */
    .fade-in,
    .slide-up,
    .zoom-in,
    .animate__animated {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
