/* ============================================
   WOOPREMIUM — Footer
   Version: 1.0.0
   ============================================ */

.wp-footer {
  background: var(--wp-white, #ffffff);
  color: var(--wp-text, #1a1a1a);
  font-family: var(--wp-sans);
}
.wp-footer * {
  font-family: var(--wp-sans);
}

/* ============ MAIN FOOTER ============ */
.wp-footer__main {
  padding: 64px 0 48px;
  border-top: 1px solid var(--wp-border-light, #eae6df);
}
.wp-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}

/* Brand column */
.wp-footer__logo {
  display: block;
  text-decoration: none;
  margin-bottom: 24px;
}
.wp-footer__logo img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.wp-footer__logo span {
  font-family: var(--wp-serif, Georgia, serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--wp-gold-text, #8e7409);
}
.wp-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wp-footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--wp-text-2, #5c5650);
  text-decoration: none;
  transition: color .2s;
}
.wp-footer__contact a:hover { color: var(--wp-gold-text, #8e7409); }
.wp-footer__contact svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--wp-text-3, #8a837c); }

/* Column headings */
.wp-footer__heading {
  font-family: var(--wp-sans);
  font-size: .875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--wp-text, #1a1a1a);
  margin-bottom: 20px;
}

/* Link lists */
.wp-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wp-footer__links li {
  margin-bottom: 10px;
}
.wp-footer__links li a {
  font-size: .875rem;
  color: var(--wp-text-2, #5c5650);
  text-decoration: none;
  transition: color .2s;
  font-family: var(--wp-sans);
}
.wp-footer__links li a:hover { color: var(--wp-gold-text, #8e7409); }

/* Address */
.wp-footer__address {
  font-size: .875rem;
  color: var(--wp-text-3, #8a837c);
  line-height: 1.5;
  margin-top: 4px;
}

/* Social icons */
.wp-footer__social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--wp-border-light, #eae6df);
}
.wp-footer__social-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--wp-text-3, #8a837c);
  transition: color .2s;
}
.wp-footer__social-link:hover { color: var(--wp-text, #1a1a1a); }
.wp-footer__social-link svg { width: 18px; height: 18px; }

/* Openingstijden */
.wp-footer__hours {
  font-size: .8125rem;
  color: var(--wp-text-2, #5c5650);
  line-height: 1.8;
}

/* Payment icons */
.wp-footer__payments {
  padding: 24px 0;
  text-align: center;
}
.wp-footer__payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.wp-footer__payment-icons svg {
  height: 24px;
  width: auto;
  opacity: .5;
}

/* ============ BOTTOM BAR ============ */
.wp-footer__bottom {
  padding: 24px 0;
  border-top: 1px solid var(--wp-border-light, #eae6df);
}
.wp-footer__bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: .75rem;
  color: var(--wp-text-3, #8a837c);
}
.wp-footer__legal {
  display: flex;
  gap: 24px;
  align-items: center;
}
.wp-footer__legal a {
  color: var(--wp-text-3, #8a837c);
  text-decoration: none;
  transition: color .2s;
  font-size: .75rem;
}
.wp-footer__legal a:hover { color: var(--wp-text, #1a1a1a); }
/* WP menu in legal bar: make it horizontal */
.wp-footer__legal-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}
.wp-footer__legal-menu li a {
  color: var(--wp-text-3, #8a837c);
  text-decoration: none;
  transition: color .2s;
  font-size: .75rem;
}
.wp-footer__legal-menu li a:hover { color: var(--wp-text, #1a1a1a); }
.wp-footer__powered {
  font-size: .75rem;
  color: var(--wp-text-3, #8a837c);
  text-decoration: none;
  transition: color .2s;
}
.wp-footer__powered:hover { color: var(--wp-text, #1a1a1a); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .wp-footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 32px;
  }
  /* Hide openingstijden on tablet — it moves to brand column */
  .wp-footer__col:nth-child(2) { display: none; }
}
@media (max-width: 768px) {
  .wp-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .wp-footer__col--brand {
    grid-column: 1 / -1;
  }
  .wp-footer__col:nth-child(2) { display: none; }
  .wp-footer__bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .wp-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ============ FOCUS STATES ============ */
.wp-footer :focus-visible {
  outline: 2px solid var(--wp-gold, #b8960c);
  outline-offset: 2px;
}
.wp-footer :focus:not(:focus-visible) {
  outline: none;
}
