/* Footer */
.footer {
  background: var(--color-bg-dark);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-block: 2.5rem 1.5rem;
  font-size: var(--font-size-sm);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.footer__nav a {
  color: var(--color-text);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--color-white); }

.footer__contact {
  text-align: center;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}
.footer__contact a {
  color: var(--color-gold);
  transition: opacity var(--transition);
}
.footer__contact a:hover { opacity: 0.75; }

.footer__payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.footer__payment-item img { height: 28px; width: auto; }

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

.footer__disclaimer {
  text-align: center;
  color: var(--color-text);
  font-size: 0.8rem;
  line-height: 1.6;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 1rem;
}

.footer__copy {
  text-align: center;
  color: var(--color-text);
  font-size: 0.8rem;
}
