.site-footer {
    padding-top: 30px;
    color: #777;
    font-size: 14px;
}

.mobile-bottom-nav {
    display: none;
}

.footer-promo-bar {
    display: flex;
    min-height: 134px;
    align-items: center;
    padding: 30px 0;
    background: linear-gradient(105deg, #eeb7c2 0%, #f4c7d0 55%, #eeb2c0 100%);
    color: #fff;
}

.footer-promo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.footer-promo-row h2 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 23px;
    font-weight: 700;
}

.footer-promo-row p {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.footer-social-buttons {
    display: flex;
    gap: 8px;
}

.social-button {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.social-button:hover {
    color: #fff;
    opacity: 1;
    transform: translateY(-2px);
}

.social-button--telegram {
    background: #2aabee;
}

.social-button--vk {
    background: #4c75a3;
}

.footer-main {
    min-height: 350px;
    padding: 62px 0 52px;
    background: linear-gradient(180deg, #fff 0%, #fffafa 100%);
}

.footer-grid-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px 65px;
}

.footer-title {
    position: relative;
    margin: 0 0 28px;
    padding-bottom: 15px;
    color: #3f393d;
    font-size: 18px;
    font-weight: 600;
}

.footer-title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 42px;
    height: 2px;
    content: '';
    background: var(--cf-pink);
}

.footer-social-intro {
    max-width: 230px;
    margin: -8px 0 20px;
    color: #898187;
    line-height: 1.6;
}

.footer-social-buttons--left {
    margin-bottom: 16px;
}

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

.footer-list li {
    margin-bottom: 14px;
}

.footer-contacts-list li {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    gap: 12px;
}

.footer-contact-icon {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid #f0d5db;
    border-radius: 50%;
    background: #fff;
    color: #cf7d8e;
}

.footer-contact-icon .cf-icon {
    width: 17px;
    height: 17px;
}

.footer-menu-list a,
.footer-contacts-list a {
    color: #777;
}

.footer-menu-list a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-menu-list a::before {
    width: 0;
    height: 1px;
    background: #d98a9a;
    content: '';
    transition: width .2s ease;
}

.footer-menu-list a:hover::before {
    width: 14px;
}

.footer-bottom-bar {
    min-height: 56px;
    padding: 16px 0;
    background: #292528;
    color: #aaa;
    font-size: 12px;
}

.bottom-bar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.bottom-bar-row a {
    color: #aaa;
}

#cookie-notice {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 99999;
    display: none;
    width: calc(100% - 40px);
    max-width: 920px;
    padding: 18px 22px;
    transform: translateX(-50%);
    border: 1px solid rgba(242, 190, 205, .75);
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 14px 38px rgba(213, 132, 157, .22);
    backdrop-filter: blur(8px);
}

#cookie-notice.is-visible {
    display: block;
}

.cookie-notice-inner {
    display: flex;
    align-items: center;
    gap: 22px;
}

.cookie-text {
    flex: 1;
    color: #5f5f68;
    font-size: 15px;
    line-height: 1.55;
}

.cookie-text a {
    color: #ff6f9f;
    font-weight: 700;
}

.cookie-text a:hover {
    color: #e94f87;
}

#cookie-accept {
    min-width: 130px;
    padding: 13px 28px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff86ad 0%, #f3bfd0 100%);
    box-shadow: 0 8px 22px rgba(255, 111, 159, .28);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
}

#cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 11px 26px rgba(255, 111, 159, .35);
}

@media (max-width: 767px) {
    .site-footer {
        padding-top: 15px;
        padding-bottom: 64px;
    }

    .footer-promo-bar {
        min-height: 0;
        padding: 30px 0;
    }

    .footer-promo-row {
        align-items: flex-start;
    }

    .footer-promo-row h2 {
        font-size: 21px;
        line-height: 1.3;
    }

    .footer-promo-row p {
        font-weight: 400;
        line-height: 1.5;
    }

    .footer-main {
        min-height: 0;
        padding: 38px 0 30px;
    }

    .footer-grid-row {
        gap: 0;
    }

    .footer-col {
        padding: 25px 0;
        border-bottom: 1px solid #f0e6e8;
    }

    .footer-col:first-child {
        padding-top: 0;
    }

    .footer-title {
        margin-bottom: 20px;
        font-size: 17px;
    }

    .footer-social-intro {
        max-width: none;
    }

    .footer-bottom-bar {
        padding: 20px 0;
    }

    .bottom-bar-row {
        gap: 8px;
    }
}
