.footer-v2 {
    padding: 12px;
    background: #fff;
}
.footer-v2 .container { max-width: 100%; padding: 0; }
.footer-v2__inner {
    background: #EEF3F5;
    border-radius: 48px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.footer-v2__title {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 18px;
    color: #111112;
}
.footer-v2__main {
    display: grid;
    grid-template-columns: 324px 1fr 1fr 324px;
    gap: 96px;
    align-items: start;
}

/* === Контакты === */
.footer-v2__col--contacts { display: flex; flex-direction: column; gap: 18px; }
.footer-v2__hours, .footer-v2__phones, .footer-v2__links {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.footer-v2__hours li {
    display: grid;
    grid-template-columns: 60px auto;
    gap: 12px;
    align-items: center;
    font-size: 14px; line-height: 18px;
    white-space: nowrap;
}
.footer-v2__hours-day {
    color: #8074C5;
    font-weight: 500;
}
.footer-v2__hours-time { color: #111112; }
.footer-v2__phones li {
    display: flex; gap: 12px; align-items: center;
    font-size: 14px;
}
.footer-v2__phones svg { flex-shrink: 0; color: #111112; }
.footer-v2__phones a {
    color: #111112; text-decoration: none;
}
.footer-v2__phones a:hover { color: #8074C5; }

/* === Links columns === */
.footer-v2__links li a {
    color: #111112;
    text-decoration: none;
    font-size: 14px; line-height: 18px;
    transition: color .15s;
}
.footer-v2__links li a:hover { color: #8074C5; }

/* === Соцмережі + рассылка === */
.footer-v2__col--social { display: flex; flex-direction: column; gap: 36px; }
.footer-v2__socials {
    display: flex; gap: 12px; flex-wrap: wrap;
}
.footer-v2__social {
    width: 48px; height: 48px;
    background: #fff;
    border-radius: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #111112;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.footer-v2__social:hover { background: #8074C5; color: #fff; }

.footer-v2__newsletter {
    position: relative;
    display: flex;
    gap: 6px;
    align-items: center;
}
.footer-v2__newsletter-icon {
    position: absolute;
    left: 24px; top: 50%; transform: translateY(-50%);
    color: #898E92;
    pointer-events: none;
}
.footer-v2__newsletter-input {
    flex: 1;
    background: #fff;
    border: 0;
    border-radius: 36px;
    padding: 14px 24px 14px 56px;
    font-size: 16px;
    line-height: 24px;
    color: #111112;
    outline: none;
    width: 100%;
}
.footer-v2__newsletter-input::placeholder { color: #898E92; }
.footer-v2__newsletter-input:focus { box-shadow: 0 0 0 2px rgba(128,116,197,.25); }
.footer-v2__newsletter-btn {
    background: #8074C5;
    color: #fff;
    border: 0;
    width: 44px; height: 44px;
    border-radius: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .15s;
}
.footer-v2__newsletter-btn:hover { background: #6F62B8; }
.footer-v2__newsletter-btn:disabled { opacity: 0.6; cursor: progress; }
.footer-v2__newsletter-msg {
    margin-top: 10px;
    font-size: 13px;
    line-height: 18px;
    padding: 8px 14px;
    border-radius: 12px;
}
.footer-v2__newsletter-msg.is-ok { background: #D9EDDC; color: #1F8B47; }
.footer-v2__newsletter-msg.is-error { background: #FEE2E2; color: #B91C1C; }

/* === Bottom === */
.footer-v2__bottom {
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    align-items: center;
    gap: 24px;
    background: #fff;
    border-radius: 48px;
    padding: 24px 36px;
}
.footer-v2__copy {
    margin: 0;
    font-size: 14px; line-height: 18px;
    color: #111112;
}
.footer-v2__payments {
    display: flex; justify-content: center; align-items: center; gap: 18px;
    flex-wrap: wrap;
}
.footer-v2__payments img {
    height: 24px; width: auto;
    background: #EEF3F5;
    border-radius: 36px;
    padding: 6px 14px;
    box-sizing: content-box;
    object-fit: contain;
}

.footer-v2__brand {
    display: flex; justify-content: flex-end; align-items: center; gap: 12px;
}
.footer-v2__logo img { height: 24px; width: auto; display: block; }
.footer-v2__top-btn {
    background: #EEF3F5;
    border: 0;
    width: 36px; height: 36px;
    border-radius: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #111112;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.footer-v2__top-btn:hover { background: #8074C5; color: #fff; }

/* === Адаптив === */
@media (max-width: 1100px) {
    .footer-v2__inner { padding: 36px 24px; gap: 24px; }
    .footer-v2__main {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-v2__bottom {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px;
    }
    .footer-v2__brand { justify-content: center; }
}
@media (max-width: 600px) {
    .footer-v2 { padding: 8px; }
    .footer-v2__inner { border-radius: 32px; padding: 28px 18px; }
    .footer-v2__main { grid-template-columns: 1fr; gap: 28px; }
    .footer-v2__contacts-row { flex-direction: column; gap: 18px; }
    .footer-v2__bottom { border-radius: 32px; padding: 20px 18px; }
    .footer-v2__payments img { padding: 6px 10px; }
}
