/* footer.css */
.footer {
    background: var(--c-bg-dark);
    border-top: 1px solid rgba(79, 106, 104, 0.35);
    margin-top: var(--space-section);
    padding-block: var(--space-section);
}
.footer__inner { display: grid; gap: 1.6rem; text-align: center; }

.footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 1.4rem;
}
.footer__links a { color: var(--c-text); font-weight: var(--fw-medium); transition: color var(--transition); }
.footer__links a:hover { color: var(--c-heading); }

.footer__contact { display: grid; gap: 0.5rem; }
.footer__contact-label { color: var(--c-white); font-weight: var(--fw-bold); }
.footer__emails {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 1.2rem;
}
.footer__emails a { color: var(--c-heading); }
.footer__emails a:hover { text-decoration: underline; }

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

.footer__age { display: flex; justify-content: center; }
.footer__age-badge {
    display: inline-grid;
    place-items: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: #d33a2c;
    color: #fff;
    font-weight: var(--fw-black);
    font-size: 0.95rem;
}
.footer__responsible { color: var(--c-text); max-width: 60ch; margin-inline: auto; }
.footer__copy { color: var(--c-text); font-size: var(--fs-small); }
