/* ===== Логотип в футере. Задать размер ===== */

.t977__logo {
    max-width: 180px;
    width: 100%;
    height: auto;
    aspect-ratio: 360 / 74;
    object-fit: contain;
}


/* ===== Кнопка "Получить КП" на странице товара ===== */

.kt-product-request {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    min-height: 46px;
    padding: 0;
    margin: 16px 0 18px;
    box-sizing: border-box;
    border-radius: 10px;
    background: #054daa;
    color: #fff !important;
    font-family: "Inter Tight", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none !important;
    transition: background-color .2s ease;
}

.kt-product-request:hover {
    background: #033d88;
    color: #fff !important;
}

@media screen and (max-width: 640px) {
    .kt-product-request {
        width: 180px;
        margin: 14px 0 18px;
    }
}