.site-footer {
    position: relative;
    margin-top: 80px;
    background: #fff8fb;
    color: #523d46;
    border-top: 1px solid #efdce4;
}

.footer-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.footer-main {
    padding: 70px 0 56px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.75fr 0.85fr 1fr;
    gap: 48px;
}

.footer-brand {
    display: inline-grid;
    gap: 3px;
    margin-bottom: 20px;
    color: #3f2d35;
    text-decoration: none;
}

.footer-brand img {
    display: block;
    width: auto;
    max-width: 210px;
    max-height: 90px;
    object-fit: contain;
}

.footer-brand strong {
    color: #a54570;
    font-family: "Playfair Display", serif;
    font-size: 38px;
    line-height: 1;
}

.footer-brand span {
    color: #6f5963;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-brand-column > p {
    max-width: 390px;
    margin: 0;
    color: #79666f;
    line-height: 1.75;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 24px;
}

.footer-social a {
    padding: 9px 13px;
    border: 1px solid #e9cfd9;
    border-radius: 999px;
    background: #ffffff;
    color: #9e456c;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(97, 55, 73, 0.1);
}

.footer-column h2 {
    margin: 0 0 20px;
    color: #423139;
    font-family: "Playfair Display", serif;
    font-size: 21px;
}

.footer-column nav {
    display: grid;
    gap: 13px;
}

.footer-column nav a {
    color: #75616a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column nav a:hover {
    color: #a54570;
}

.footer-contact-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact-column > a {
    display: grid;
    gap: 4px;
    margin-bottom: 16px;
    color: #543d47;
    text-decoration: none;
}

.footer-contact-column > a strong {
    color: #9e456c;
    font-size: 14px;
}

.footer-contact-column > a span {
    color: #75616a;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.footer-delivery {
    margin: 8px 0 0;
    padding: 13px 15px;
    border: 1px solid #edd7e0;
    border-radius: 13px;
    background: #ffffff;
    color: #745d67;
    line-height: 1.5;
}

.footer-bottom {
    padding: 19px 0;
    border-top: 1px solid #ead5de;
    background: #fffdfd;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-bottom p {
    margin: 0;
    color: #806d75;
    font-size: 13px;
}

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

.footer-payment span {
    margin-right: 5px;
    color: #806d75;
    font-size: 12px;
}

.footer-payment strong {
    padding: 7px 10px;
    border: 1px solid #ead7df;
    border-radius: 8px;
    background: #ffffff;
    color: #76505f;
    font-size: 11px;
}

.footer-whatsapp-floating {
    position: fixed;
    z-index: 1000;
    right: 22px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 19px;
    border-radius: 999px;
    background: #2aaf61;
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(35, 122, 72, 0.28);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.footer-whatsapp-floating:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(35, 122, 72, 0.36);
}

@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .site-footer {
        margin-top: 54px;
    }

    .footer-container {
        width: min(100% - 26px, 1180px);
    }

    .footer-main {
        padding: 52px 0 42px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-payment {
        justify-content: flex-start;
    }

    .footer-whatsapp-floating {
        right: 13px;
        bottom: 13px;
        min-height: 46px;
        padding: 0 16px;
    }
}