/* =========================================
   FLOWERS FOOTER
========================================= */

.site-footer {
    background: #fff;
    padding: 72px 0 30px;
    border-top: 1px solid #ece8f5;
}

.site-footer .layout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.footer-column h3 {
    margin: 0 0 18px;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 600;
    color: var(--color-text, #332f2f);
}

.footer-column h4 {
    margin: 3px 0 18px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--color-text, #332f2f);
}

.footer-column p {
    max-width: 32ch;
    margin: 0;
    line-height: 1.7;
    color: var(--color-text-light, #777276);
}

.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column li {
    margin: 0 0 13px;
    line-height: 1.45;
}

.footer-column a {
    color: var(--color-text-light, #777276);
    text-decoration: none;
    transition: color .2s ease;
}

.footer-column a:hover {
    color: var(--color-primary, #8f78bd);
}

/* Phone + messengers */
.footer-contact-phone {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.footer-contact-phone > a {
    white-space: nowrap;
}

.footer-contact-phone .contact-messengers {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: 12px;
    vertical-align: middle;
}

.footer-contact-phone .contact-messengers__link {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff !important;
    text-decoration: none !important;
    transition: transform .15s ease, filter .15s ease;
}

.footer-contact-phone .contact-messengers__link:hover {
    transform: translateY(-1px);
    filter: brightness(.96);
}

.footer-contact-phone .contact-messengers__link svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    display: block;
}

.footer-contact-phone .contact-messengers__link--viber {
    background: #7360a8;
}

.footer-contact-phone .contact-messengers__link--telegram {
    background: #229ed9;
}

.footer-contact-phone .contact-messengers__link--whatsapp {
    background: #25d366;
}

.footer-bottom {
    margin-top: 54px;
    padding-top: 22px;
    border-top: 1px solid #ece8f5;
    text-align: center;
    color: var(--color-text-light, #777276);
    font-size: 14px;
}

/* Mobile */
@media (max-width: 767px) {
    .site-footer {
        padding: 48px 0 24px;
    }

    .site-footer .layout-container {
        padding: 0 22px;
    }

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

    .footer-column h3 {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .footer-column h4 {
        margin-bottom: 12px;
    }

    .footer-column p {
        max-width: none;
    }

    .footer-contact-phone .contact-messengers {
        margin-left: 8px;
        gap: 6px;
    }

    .footer-contact-phone .contact-messengers__link {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .footer-bottom {
        margin-top: 36px;
        padding-top: 20px;
        font-size: 13px;
    }
}

/* Messenger icons in footer — force visible */
.site-footer .footer-contact-phone .contact-messengers {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    margin-left: 12px;
    visibility: visible !important;
    opacity: 1 !important;
}

.site-footer .footer-contact-phone .contact-messengers__link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 30px !important;
    height: 30px !important;
    min-width: 30px;
    padding: 0 !important;
    border-radius: 50%;
    visibility: visible !important;
    opacity: 1 !important;
    color: #fff !important;
    text-decoration: none !important;
}

.site-footer .footer-contact-phone .contact-messengers__link svg {
    display: block !important;
    width: 16px !important;
    height: 16px !important;
    visibility: visible !important;
    opacity: 1 !important;
    fill: currentColor !important;
}

.site-footer .contact-messengers__link--viber {
    background: #7360a8 !important;
}

.site-footer .contact-messengers__link--telegram {
    background: #229ed9 !important;
}

.site-footer .contact-messengers__link--whatsapp {
    background: #25d366 !important;
}
