/* ==========================================================================
   RIVAL Shoes - Footer
   ========================================================================== */

.footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: var(--space-xl) 0 var(--space-md);
}

/* ---- Brand ---- */

.footer__brand {
  text-align: left;
}

.footer__brand img {
  height: 70px;
  width: auto;
  margin-bottom: var(--space-sm);
}

.footer__brand p {
  color: var(--color-gray-300);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: var(--fw-light);
  max-width: 450px;
  margin-bottom: var(--space-sm);
}

.footer__email {
  color: var(--color-accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: var(--fw-regular);
  letter-spacing: 0.05em;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__email:hover {
  color: var(--color-white);
}

/* ---- Footer Bottom Bar ---- */

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--color-gray-300);
}

.footer__legal {
  display: flex;
  align-items: center;
}

.footer__legal a {
  color: var(--color-gray-300);
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.85rem;
  font-weight: var(--fw-regular);
  transition: color var(--duration-fast) var(--ease-out);
}

.footer__legal a:hover {
  color: var(--color-accent);
}

/* ---- Responsive ---- */

@media (max-width: 768px) {
  .footer {
    padding: var(--space-lg) 0 var(--space-md);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer__legal a {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
}
