/* footer.css */
.footer {
    background: var(--c-bg-primary);
    border-top: 1px solid var(--c-card-border);
    margin-top: var(--sp-section);
    padding-block: var(--sp-section);
}
.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}
.footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
}
.footer__link {
    color: var(--c-text);
    font-weight: var(--fw-medium);
    transition: color var(--transition-fast);
}
.footer__link:hover { color: var(--c-heading); }

.footer__contact { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.5rem 1rem; }
.footer__contact-label { color: var(--c-white); font-weight: var(--fw-semibold); }
.footer__emails { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.25rem; }
.footer__email { color: var(--c-heading); text-decoration: underline; text-underline-offset: 3px; }
.footer__email:hover { color: var(--c-accent-soft); }

.footer__payments { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1rem; }
.footer__payments img { height: 38px; width: auto; }

.footer__responsible { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; }
.footer__age {
    display: inline-grid;
    place-items: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--c-danger);
    color: #fff;
    font-weight: var(--fw-bold);
    font-size: 0.85rem;
}
.footer__responsible-text { color: var(--c-text); margin: 0; }
.footer__copy { color: var(--c-text); margin: 0; font-size: 0.9rem; }
