/* footer.css */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: var(--space-section);
  padding-block: clamp(2rem, 4vw, 3rem);
}
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; text-align: center; }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
}
.footer__link {
  color: var(--text);
  font-weight: var(--fw-medium);
  transition: color var(--transition-fast);
}
.footer__link:hover { color: var(--white); }

.footer__contact { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.5rem 1rem; }
.footer__contact-label { color: var(--white); font-weight: var(--fw-semibold); }
.footer__email { color: var(--accent-yellow); }
.footer__email:hover { text-decoration: underline; }

.footer__payments { display: flex; align-items: center; gap: 1rem; }
.footer__payments img { height: 30px; width: auto; background: #fff; border-radius: 4px; padding: 3px 6px; }

.footer__responsible { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.footer__age {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #d21c1c;
  color: #fff;
  font-weight: var(--fw-extrabold);
  font-size: 0.9rem;
}
.footer__warning { color: var(--text); max-width: 60ch; font-size: 0.9rem; }
.footer__copy { color: var(--text); font-size: 0.9rem; }
