/** Нужен для быстрых фиксов типа "подровнять" или "подвинуть" **/

:root {
    --header-height: 88px;
    --header-1-size: 70px;
    --primary-green: #F5F5F5;
    --primary-light_green: #F5F5F5;
    --primary-yellow: #E5F2E2;
}

ul.phone-country-select-list {
    padding: 0;
}

.big-button {
    background: linear-gradient(270deg, #86E086 0%, #E1FFCD 100%);
}

.big-button.black {
    color: #28261B;
    border-radius: 32px;
    border: 2px solid var(--texts-black, #28261B);
    background: linear-gradient(90deg, #FFF 0%, #D0DDFF 100%);
}

#start .selected {
    -webkit-text-fill-color: #6F60AF;
    min-width: 588px;
    display: flex;
    font-weight: 600;
}

.selected {
    background: #6F60AF;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#faq-page .selected {
    background-color: #86E086;
}

.section__form {
    background-color: #FFF;
    box-shadow: 0 9px 21px #69777d26;
}

#path .section__form {
    box-shadow: none;
}

.bottle #start .section__main-container {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.bottle #start .section__inner-container.top {
    flex-direction: column;
}

.bottle #reg .section__container {
    flex-direction: row;
}

.bottle #reg .section__image {
    object-fit: contain;
    max-width: 440px;
    margin-inline: auto;
}

.bottle #reg .section__inner-container.top {
    flex-wrap: nowrap;
    text-align: left;
    align-items: flex-start;
    gap: 24px;
}

.section__card.bg-image .section__item-bg-image {
    object-position: top center;
}

#where .section__image,
#why .section__image,
#buy .section__image,
#how .section__image,
#path .section__image,
#effects .section__image {
    object-position: top center;
}

@media (max-width: 1280px) {

    .header__logo {
        max-height: 30px;
    }

    #timer .section__inner-container.nowrap {
        flex-wrap: wrap;
        max-width: var(--size-large);
        margin-inline: auto;
    }

    .bottle #start .section__main-container,
    .bottle #reg .section__container {
        flex-direction: column;
        align-items: center;
    }

    .product-image-1 {
        width: 600px;
    }

    .bottle #reg .section__image {
        max-height: 300px;
    }
}

@media (max-width: 620px) {

    .header__logo {
        max-height: 25px;
    }

    #start h1 .selected {
        font-size: 11dvw;
        white-space: nowrap;
        min-width: 100%;
    }

}


.heading-style-2,
.heading-style-3,
.heading-style-4,
.heading-style-5 {
    font-family: var(--header-font-family), "Geologica", serif;
    letter-spacing: -0.44px;
    line-height: 130%;
    margin: 0;
}

.heading-style-2 {
    font-size: var(--header-2-size);
    word-break: break-word;
}

.heading-style-3 {
    font-size: var(--header-3-size);
}

.heading-style-4 {
    font-size: var(--header-4-size);
}

.heading-style-5 {
    font-size: 16.667px;
    font-style: normal;
    font-weight: 600;
    line-height: 22.222px;
    letter-spacing: -0.333px;
}

.section__card.bg-image .heading-style-3,
.section__card.bg-image .heading-style-4 {
    position: relative;
}

.section__form .form-heading {
    text-align: center;
}

#path .section__form .form-heading.heading-style-5 {
    text-align: center;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
}

/* Footer */

.footer-new {
    background-color: #fff;
    padding: 48px 0 24px;
}

.footer-new__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-new__logo {
    height: 36px;
    width: auto;
    margin-bottom: 8px;
}

.footer-new__contact {
    font-size: 14px;
    color: #28261B;
    line-height: 1.8;
    text-decoration: none;
    display: block;
}

.footer-new__contact:hover {
    text-decoration: underline;
}

.footer-new__nav {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-new__nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #28261B;
    text-decoration: none;
    white-space: nowrap;
}

.footer-new__nav-link:hover {
    text-decoration: underline;
}

.footer-new__disclaimer {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-new__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
    padding-top: 24px;
}

.footer-new__policies {
    display: flex;
    gap: 12px;
}

.footer-new__policy-link {
    font-size: 13px;
    color: #28261B;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 24px;
    padding: 8px 20px;
    transition: background-color 0.2s;
}

.footer-new__policy-link:hover {
    background-color: #f5f5f5;
}

.footer-new__copyright {
    font-size: 13px;
    color: #999;
}

@media (max-width: 768px) {
    .footer-new__top {
        flex-direction: column;
    }

    .footer-new__nav {
        justify-content: flex-start;
        gap: 16px 24px;
    }

    .footer-new__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}