.footer {
  background-color: var(--color-bg-primary);
  border-top: 1px solid rgba(247, 200, 121, 0.15);
  padding-block: 2.5rem 5rem;
  text-align: center;
}

.footer__nav {
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.footer__link {
  color: var(--color-text);
  transition: color var(--transition-base);
}

.footer__link:hover,
.footer__link:focus-visible {
  color: var(--color-gold);
}

.footer__contact {
  margin-bottom: 1.5rem;
}

.footer__contact-label {
  display: block;
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
}

.footer__payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.footer__payments-item img {
  height: 1.75rem;
  width: auto;
}

.footer__age {
  margin-bottom: 1.25rem;
}

.footer__age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--color-danger);
  color: var(--color-white);
  font-weight: 800;
  font-size: 1rem;
}

.footer__warning {
  color: var(--color-white);
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer__copyright {
  margin-bottom: 0;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer__contact-list {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}
