/* ============================================================
   HOENSPORT FOOTER
   Global: active on ALL pages (including shop)
   ============================================================ */

.hs-footer {
  background: #111111;
  border-top: 4px solid #E63227;
  padding: 6.4rem 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.hs-footer a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.hs-footer a:hover { color: #E63227; }

.hs-footer h4 {
  font-family: var(--font-heading-family);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: #ffffff;
  margin: 0 0 2rem;
}

/* Grid */
.hs-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4.8rem;
  margin-bottom: 4.8rem;
}

/* Brand column */
.hs-footer__logo-img {
  margin-bottom: 1.6rem;
}

.hs-footer__logo-img img {
  height: 40px;
  width: auto;
}

.hs-footer__address {
  font-style: normal;
  font-size: 1.3rem;
  line-height: 1.9;
}

/* Links column */
.hs-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hs-footer__links a {
  font-size: 1.3rem;
  transition: color 0.2s, padding-left 0.2s;
}

.hs-footer__links a:hover { padding-left: 0.4rem; }

/* Info column */
.hs-footer__col--right { font-size: 1.3rem; line-height: 1.9; }

.hs-footer__info { margin-bottom: 2.4rem; }
.hs-footer__info p { margin: 0; }

/* Newsletter */
.hs-footer__newsletter { margin-top: 2.4rem; }

.hs-footer__newsletter-heading {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.hs-newsletter-form__field {
  display: flex;
  gap: 0;
}

.hs-newsletter-form__input {
  flex: 1;
  padding: 1rem 1.4rem;
  font-size: 1.3rem;
  font-family: var(--font-body-family);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  border-radius: 0.4rem 0 0 0.4rem;
  color: #ffffff;
  outline: none;
  transition: border-color 0.2s;
}

.hs-newsletter-form__input::placeholder { color: rgba(255, 255, 255, 0.35); }
.hs-newsletter-form__input:focus { border-color: #E63227; }

.hs-newsletter-form__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  background: #E63227;
  border: 1px solid #E63227;
  border-radius: 0 0.4rem 0.4rem 0;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s;
}

.hs-newsletter-form__button:hover { background: #b5201a; }

.hs-newsletter-form__button .svg-wrapper {
  display: flex;
  width: 1.4rem;
  height: 1.4rem;
}

.hs-newsletter-form__button svg {
  width: 100%;
  height: 100%;
}

.hs-newsletter-form__message {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.8rem;
  font-size: 1.2rem;
}

.hs-newsletter-form__message--error { color: #ff6b6b; }
.hs-newsletter-form__message--success { color: #51cf66; }

.hs-newsletter-form__message .svg-wrapper {
  display: flex;
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
}

/* Bottom bar */
.hs-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.hs-footer__copyright {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.3);
}

.hs-footer__payment .list-payment {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hs-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hs-footer__col:last-child { grid-column: span 2; }
}

@media (max-width: 749px) {
  .hs-footer__grid {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }

  .hs-footer__col:last-child { grid-column: auto; }
}

/* Mobile: minimale footer — alleen adres/contact + payment + copyright.
   Snellinks en newsletter/info verborgen, bereikbaar via hamburger. */
@media (max-width: 749px) {
  .hs-footer { padding-top: 3.2rem; }

  .hs-footer__grid { gap: 1.6rem; }

  /* Verberg kolom 2 (snellinks) en kolom 3 (info + newsletter) */
  .hs-footer__col:nth-child(2),
  .hs-footer__col--right {
    display: none;
  }

  /* Brand tekst compacter */
  .hs-footer__brand { font-size: 2rem; }
  .hs-footer__tagline { margin-bottom: 1rem; }
  .hs-footer__address { font-size: 1.2rem; }

  /* Bottom bar compact */
  .hs-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.6rem 0;
  }
}
