/* footer-actions — нижний фиксированный блок «Написать» + «Оформить заказ»
   1:1 как на dekohair (выдернуто из main.css) */
.footer-actions {
    display: none;
}

@media (max-width: 767px) {
    .footer-actions {
        display: none;
        align-items: center;
        position: fixed;
        bottom: 0;
        background: #f7f7f7;
        left: 0;
        z-index: 100000000;
        width: 100%;
        padding: 14px 20px;
        justify-content: space-evenly;
        border-top: 1px solid #e1e1e1;
        gap: 20px;
        box-sizing: border-box;
    }

    body .footer-actions.active {
        display: flex;
    }

    .footer-actions a.footer-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 16px;
        font-family: 'Lato', Arial, sans-serif;
        line-height: 1.55;
        font-weight: 700;
        border-radius: 30px;
        border-style: solid;
        transition: background-color .2s ease-in-out, color .2s ease-in-out, border-color .2s ease-in-out;
        text-align: center;
        height: 45px;
        color: #b8b8b8;
        border-width: 1px;
        border-color: #b8b8b8;
        text-decoration: none;
        width: auto;
        max-width: 200px;
        flex: 1 1 0px;
    }

    .footer-actions a.footer-btn-1 {
        color: #858585 !important;
        background: 0 0;
        border-color: #858585;
    }

    .footer-actions a.footer-btn-2 {
        color: #fff !important;
        background-color: #187bf1;
        border-color: transparent;
    }

    .footer-actions a.footer-btn-1 img {
        width: 22px;
        height: 22px;
    }
}
