.public-site-header {
  width: 100%;
  background: rgba(255, 255, 251, 0.92);
  border-bottom: 1px solid rgba(34, 73, 44, 0.14);
  box-shadow: 0 8px 22px rgba(24, 52, 29, 0.08);
}

.public-site-header-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.public-site-logo {
  font-weight: 900;
  color: var(--green-950);
  font-size: 18px;
}

.public-site-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.public-site-nav a {
  color: var(--green-900);
  font-weight: 800;
  font-size: 14px;
}

@media (max-width: 700px) {
  .public-site-header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .public-site-nav {
    justify-content: flex-start;
  }
}

  .public-site-footer-nav-wrap {
    align-items: flex-start;
  }

  .public-site-social-links {
    justify-content: flex-start;
  }

/* =========================
   PUBLIC FOOTER
========================= */

.public-site-footer {
  width: 100%;
  padding: 28px 16px;
  background: rgba(255, 255, 251, 0.88);
  border-top: 1px solid rgba(34, 73, 44, 0.14);
  box-shadow: 0 -8px 22px rgba(24, 52, 29, 0.04);
}

.public-site-footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.public-site-footer-brand {
  color: var(--green-950);
}

.public-site-footer-brand strong {
  display: block;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 900;
  margin-bottom: 4px;
}

.public-site-footer-brand span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}

.public-site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.public-site-footer-links a {
  color: var(--green-900);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 800;
  text-decoration: none;
}

.public-site-footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.public-site-footer-nav-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.public-site-social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.public-site-social-links .social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-900);
  color: #ffffff;
  text-decoration: none;
  box-shadow: var(--shadow-button);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.public-site-social-links .social-icon:hover {
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 7px 16px rgba(16, 54, 27, 0.20);
}

.public-site-social-links .social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

/* =========================
   COOKIE CONSENT BANNER
========================= */

.cookie-consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99999;
  display: none;
  max-width: 1040px;
  margin: 0 auto;
  padding: 16px;
  background: rgba(255, 255, 251, 0.98);
  border: 1px solid rgba(34, 73, 44, 0.18);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(24, 52, 29, 0.16);
}

.cookie-consent-banner.is-visible {
  display: block;
}

.cookie-consent-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.cookie-consent-text strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green-950);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 900;
}

.cookie-consent-text p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
}

.cookie-consent-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-consent-button {
  min-height: 38px;
  padding: 8px 14px;
  border: none;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  cursor: pointer;
}

.cookie-consent-button.accept {
  background: var(--green-900);
  color: #ffffff;
}

.cookie-consent-button.close {
  background: #d9ecd0;
  color: var(--green-950);
}

/* =========================
   PUBLIC FOOTER / COOKIE MOBILE
========================= */

@media (max-width: 700px) {
  .public-site-footer-inner {
    grid-template-columns: 1fr;
  }

  .public-site-footer-links {
    justify-content: flex-start;
  }

  .cookie-consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie-consent-inner {
    grid-template-columns: 1fr;
  }

  .cookie-consent-actions {
    justify-content: flex-start;
  }

  .cookie-consent-button {
    width: 100%;
  }
}
  .public-site-footer-nav-wrap {
    align-items: flex-start;
  }

  .public-site-social-links {
    justify-content: flex-start;
  }


.public-site-footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}