/* overrides.css — сюда добавляй стили для перезаписи */
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700&display=swap");

.selected {
    color: #DC9846;
}

h1 .selected {
    text-transform: uppercase;
}

.big-button, form .big-button {
    background: linear-gradient(270deg, #75C4FC 0%, #BCE3F6 100%);
}

body,
button,
input,
textarea,
select,
h1, h2, h3, h4, h5, h6,
h1 i, h1 b, h2 i, h2 b, h3 i, h3 b, h4 i, h4 b, h5 i, h5 b, h6 i, h6 b {
    font-family: "Inter Tight", sans-serif !important;
}

.section__stat-number {
    font-family: "Inter Tight", sans-serif !important;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -0.96px;
}

.section__delivery {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    padding: 2px;
    background: #D0D0D0;
}

.section__delivery p {
    color: #6B6B6B;

    text-align: center; 
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; 
}

.section__image-card .section__delivery img{
    width: auto;
    height: auto;
    min-height: auto;
}

.bottom-hover-container > .mobile > a {
    font-size: 18px !important;
}


#composition .section__image-container-center{
    max-width: none;
    width: auto;
    display: flex;
    align-self: stretch;
    justify-content: center;
    align-items: center;
}

/* Розтягуємо центральний блок по висоті сусідніх колонок у flex-ряду */
#composition .section__row-container{
    align-items: stretch;
}

#composition .section__image-container-center img{
    height: 100%;
    max-height: 100%;
    width: auto;
    /* max-width: 100%; */
    object-fit: contain;
}

/* На мобільних зазвичай блоки стають в колонку — повертаємо природну висоту */
@media screen and (max-width: 767px){
    #composition .section__image-container-center{
        align-self: auto;
    }

    #composition .section__image-container-center img{
        height: 300px;
        width: 100%;
    }
}

.header__logo{
    display: flex;
}

/* 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;
    }
}

/* @media screen and (max-width: 1280px) { */
    img[width][height]:not(.sections__bg, .sections__container-bg img, #about img) {
        height: auto;
    }
/* } */


@media (max-width: 479px) {
    #app .section__row-container {
        flex-wrap: wrap;
    }

    #app .section__column-container {
        width: 100%;
    }
}

#faq h3{
    color:#fff;
}