.footer--site-footer {
    background-color: var(--color-bg-dark);
    padding: 28px 0 12px;
}

.footer--container {
    max-width: 1431px;
    margin: 0 auto;
    padding: 0 76px;
}

.footer--main {
    display: flex;
    justify-content: space-between;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer--brand {
    max-width: 347px;
}

.footer--logo {
    height: 32px;
    margin-bottom: 16px;
}

.footer--desc {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.18px;
    color: rgba(255, 255, 255, 0.50);
    line-height: 1.5;
}

.footer--links,
.footer--contact {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer--links .footer--title {
    text-align: center;
}

.footer--links-columns {
    display: flex;
    gap: 48px;
}

.footer--links-list,
.footer--contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer--title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.45px;
    color: var(--color-white);
}

.footer--links .footer--link,
.footer--contact .footer--link {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.18px;
    color: rgba(255, 255, 255, 0.60);
    text-decoration: none;
    transition: color 0.2s;
}

.footer--links .footer--link:hover,
.footer--contact .footer--link:hover {
    color: var(--color-white);
}

.footer--bottom {
    padding-top: 24px;
    text-align: center;
}

.footer--copyright {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.18px;
    color: rgba(255, 255, 255, 0.40);
}

.footer--payment-logos {
    display: block;
    margin-top: 20px;
    max-width: 240px;
    height: auto;
    opacity: 0.7;
}

@media (max-width: 1200px) {
    .footer--container {
        padding: 0 32px;
    }
}

@media (max-width: 768px) {
    .footer--container {
        padding: 0 16px;
    }

    .footer--main {
        flex-direction: column;
        gap: 32px;
        align-items: center;
        text-align: center;
    }

    .footer--brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer--payment-logos {
        margin: 20px auto 0;
    }

    .footer--links {
        align-items: center;
    }

    .footer--links-columns {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .footer--links-list {
        align-items: center;
    }

    .footer--contact {
        align-items: center;
    }
}
