/* Shared nav-icon styling (self-hosted inline SVGs; no external icon fonts). */
.nav-ico {
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 7px;
  flex: 0 0 auto;
  stroke: currentColor;
}
/* If the nav anchors use flexbox, keep icon + label aligned. */
header nav a,
.overlay-menu nav a {
  display: inline-flex;
  align-items: center;
}

/* --- header CTA buttons: keep icon + label aligned --- */
.buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.buttons .btn .btn-ico {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  stroke: currentColor;
}

/* --- header logo sizing (new horizontal logo is very large intrinsically) --- */
.logo a { display: inline-block; line-height: 0; }
.logo img { height: 46px; width: auto; display: block; }
@media (max-width: 768px) {
  .logo img { height: 38px; }
}


/* ============================================================
   Mobile / tablet burger overlay menu — clean vertical layout
   (overrides the per-page overlay rules; nav-icons.css loads last)
   ============================================================ */
@media (max-width: 1024px) {
  .overlay {
    background: #EFF0EB;          /* opaque — no page bleed-through */
    height: 100%;
    inset: 0;
    padding: 92px 32px 48px;
    overflow-y: auto;
  }
  .overlay.active { display: flex; }

  .overlay-menu {
    width: 100%;
    gap: 0;
    text-align: left;
  }

  .overlay-menu nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
  }

  .overlay-menu nav a {
    display: flex;               /* override inline-flex that caused wrapping */
    align-items: center;
    width: 100%;
    padding: 16px 2px;
    font-size: 18px;
    line-height: 1.2;
    color: #195535;
    border-bottom: 1px solid rgba(4, 14, 8, 0.08);
  }
  .overlay-menu nav a.active { font-weight: 800; }
  .overlay-menu nav a .nav-ico {
    width: 20px;
    height: 20px;
    margin-right: 12px;
  }

  .overlay-menu .buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 28px;
  }
  .overlay-menu .buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 16px;
  }
  .overlay-menu .buttons .btn .btn-ico { width: 18px; height: 18px; }
}


/* ============================================================
   Footer payment-trust strip (white icons on the dark footer)
   ============================================================ */
.footer-payments {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.footer-payments p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.footer-payments .payments {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-payments .payments img {
  height: 22px;
  width: auto;
  /* recolour the dark-green SVG marks to white for the dark footer */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
@media (max-width: 768px) {
  .footer-payments {
    gap: 16px;
    justify-content: center;
    text-align: center;
  }
  .footer-payments .payments { gap: 18px; justify-content: center; }
  .footer-payments .payments img { height: 20px; }
}
