/* ════════════════════════════════════════════════════════════
   WP-FOOTER — master shell replica (folders + promozilla)
   Self-contained, no Vuetify dependency
   ════════════════════════════════════════════════════════════ */

.wp-footer {
  background: #A5B7C9;
  color: rgba(0, 0, 0, 0.87);
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  padding: 0px 24px 16px;
}

/* ── TOP ROW ──────────────────────────────────────────────── */
.wp-footer__top {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
}

.wp-footer__top-col {
  flex: 1 1 0;
  display: flex;
  align-items: flex-end;
  min-width: 0;
}

.wp-footer__top-col--socials {
  justify-content: flex-start;
}

.wp-footer__top-col--newsletter {
  justify-content: center;
  flex-direction: column;
  align-items: stretch;
}

.wp-footer__top-col--badges {
  justify-content: flex-end;
  gap: 8px;
}

/* Socials */
.wp-footer__socials-label {
  white-space: nowrap;
  margin-right: 8px;
  font-size: 14px;
}

.wp-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 36px;
  margin: 0 4px;
  border-radius: 4px;
  color: rgba(0, 0, 0, 0.87);
  transition: background-color 0.2s;
}

.wp-footer__social:hover {
  background-color: rgba(0, 0, 0, 0.06);
}

.wp-footer__social svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Newsletter */
.wp-footer__newsletter-label {
  display: block;
  text-align: center;
  font-size: 14px;
  visibility: hidden;
  margin-bottom: 6px;
}

.wp-footer__newsletter {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  visibility: hidden;
  border-radius: 28px;
  height: 36px;
  padding: 0 4px 0 16px;
}

.wp-footer__newsletter-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  outline: none;
  color: rgba(0, 0, 0, 0.87);
}

.wp-footer__newsletter-input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.wp-footer__newsletter-btn {
  background: #82b1ff; /* accent — adjust to match brand */
  color: #fff;
  border: 0;
  height: 28px;
  padding: 0 16px;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.wp-footer__newsletter-btn:hover {
  filter: brightness(0.95);
}

/* App badges */
.wp-footer__badge {
  display: inline-block;
  width: 96px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.wp-footer__badge--android {
  background-image: url('https://folders.nl/static/img/store_android.40d5f333.svg');
}

.wp-footer__badge--ios {
  background-image: url('https://folders.nl/static/img/store_ios.c9806f42.svg');
}

/* ── BOTTOM ROW ──────────────────────────────────────────── */
.wp-footer__bottom {
  max-width: 1400px;
  margin: 16px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.184);
  display: flex;
  flex-wrap: nowrap;
}

.wp-footer__about {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding-right: 16px;
  margin-right: 8px;
  border-right: 1px solid rgba(0, 0, 0, 0.184);
}

.wp-footer__about p {
  margin: 0;
  font-size: 16px;
  font-family: "Poppins", sans-serif !important;
  line-height: 1.5;
}

.wp-footer__sitemap {
  flex: 0 0 66.667%;
  max-width: 66.667%;
  padding-left: 8px;
  display: flex;
  gap: 12px;
}

.wp-footer__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.wp-footer__heading {
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
  font-size: 17px;
}

.wp-footer__link {
    color: rgba(0, 0, 0, 0.87);
    text-decoration: none;
    padding: 2px 0;
    font-size: 16px;
    font-family: 'Poppins';
    line-height: 1.4;
}

.wp-footer__link:hover {
  text-decoration: underline;
}

/* ── COPYRIGHT BAR ───────────────────────────────────────── */
.wp-footer__bar {
  max-width: 1400px;
  margin: 24px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.184);
  text-align: center;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
}

.wp-footer__bar p {
  margin: 0;
}

/* ── RESPONSIVE: mobile ──────────────────────────────────── */
@media (max-width: 767px) {
  .wp-footer {
    padding: 24px 16px 12px;
  }

  .wp-footer__top {
    flex-direction: column;
    gap: 24px;
  }

  .wp-footer__top-col {
    width: 100%;
    justify-content: center !important;
    align-items: center;
  }

  .wp-footer__top-col--socials {
    flex-wrap: wrap;
  }

  .wp-footer__top-col--newsletter {
    align-items: stretch;
  }

  .wp-footer__bottom {
    flex-direction: column;
  }

  .wp-footer__about,
  .wp-footer__sitemap {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    border-right: none;
  }

  .wp-footer__about {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.184);
  }

  .wp-footer__sitemap {
    flex-wrap: wrap;
    gap: 0;
  }

  .wp-footer__col {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 24px;
    padding-right: 8px;
  }
}

/* Hide empty spacers on mobile */
@media (max-width: 767px) {
  .wp-footer__top-col--empty {
    display: none;
  }
}