footer {
    background-color: rgba(29, 43, 79, 1);
    padding: 70px 100px 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-payments-divider {
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.3);
}

.footer-column h4 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    margin-bottom: 22px;
}

.footer-column a,
.footer-address {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 16px;
}

.footer-column a {
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1.5px;
    bottom: -2px;
    left: 0;
    background-color: #fff;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.footer-column a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.footer-contacts a,
.footer-address {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contacts img {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-website-by {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-website-by img {
    height: 22px;
}

/* Адаптация подвала */
@media (max-width: 1440px) {
    footer .footer-top,
    footer .footer-bottom {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (max-width: 1240px) {
    footer .footer-top,
    footer .footer-bottom {
        padding-left: 40px;
        padding-right: 40px;
    }

    footer .footer-top {
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    footer {
        padding: 0;
    }

    footer .footer-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 40px 30px;
        gap: 40px 30px;
    }

    footer .footer-bottom {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    footer .footer-top {
        grid-template-columns: 1fr;
        align-items: flex-start;
        padding: 35px 20px;
        gap: 30px;
    }

    footer .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    footer .footer-top {
        padding: 30px 16px;
    }

    footer .footer-bottom {
        padding: 20px 16px;
    }
}

@media (min-width: 1680px) {
    footer .footer-top,
    footer .footer-bottom {
        padding-left: 12%;
        padding-right: 12%;
    }
}
