/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--color-bg-dark);
  border-top: 1px solid rgba(255, 211, 41, 0.15);
  padding-block: var(--space-section);
  margin-top: var(--space-section);
}
.footer .container { display: grid; gap: 1.5rem; justify-items: center; text-align: center; }

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

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

.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.9rem;
  max-width: 640px;
}
.footer__age {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d32f2f;
  color: #fff;
  font-weight: var(--fw-bold);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.footer__notice { color: var(--color-text); font-size: 0.9rem; }

.footer__copy { color: var(--color-text); font-size: 0.85rem; opacity: 0.85; }
