html{scrollbar-gutter:stable;}
::selection{background:#1f6f4a;color:#ffffff;-webkit-text-fill-color:#ffffff}
.cookie-banner {
  box-sizing: border-box;
  position: fixed;
  left: 50%;
  bottom: 20px;
  width: min(calc(100vw - 32px), 760px);
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  padding: 12px 14px;
  background: #ffffff;
  color: #000000;
  border: 1px solid #cfe1d6;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.24);
  z-index: 2000;
}
.cookie-banner.show {
  display: flex;
}
.cookie-copy {
  width: 100%;
  font-size: 13px;
  line-height: 1.35;
  color: #000000;
}
.cookie-copy strong {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}
.cookie-copy p {
  margin: 0;
  color: #000000;
  font-size: 13px;
  line-height: 1.35;
}
.cookie-copy a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-copy a:hover,
.cookie-copy a:focus-visible {
  color: #dff4ea;
}
.cookie-actions {
  display: flex;
  width: 100%;
  align-items: stretch;
  gap: 8px;
}
.cookie-btn {
  appearance: none;
  border: 1px solid #0d1f18;
  border-radius: 10px;
  padding: 10px 12px;
  min-width: 0;
  flex: 1 1 0;
  background: #0d1f18;
  color: #ffffff;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.cookie-btn:hover,
.cookie-btn:focus-visible {
  background: #0d1f18;
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}
.cookie-btn:focus-visible {
  outline: 2px solid #dff4ea;
  outline-offset: 2px;
}
.cookie-btn-secondary {
  background: #f3faf5;
  color: #000000;
  border: 1px solid #cfe1d6;
}
.cookie-btn-secondary:hover,
.cookie-btn-secondary:focus-visible {
  background: #e6f3eb;
}

.cookie-modal[hidden] {
  display: none;
}
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
}
.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13,31,24, 0.55);
}
.cookie-modal-panel {
  position: relative;
  z-index: 1;
  width: min(calc(100vw - 32px), 720px);
  max-height: calc(100vh - 48px);
  margin: 24px auto;
  padding: 22px 22px 18px;
  overflow: auto;
  border-radius: 20px;
  background: #ffffff;
  color: #000000;
  box-shadow: 0 24px 60px rgba(13,31,24, 0.28);
}
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #f0f8f3;
  color: #000000;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.cookie-modal-panel h2 {
  margin: 0 36px 8px 0;
  font-size: 28px;
  line-height: 1.1;
}
.cookie-modal-intro {
  margin: 0 0 18px;
  color: #000000;
  font-size: 15px;
  line-height: 1.55;
}
.cookie-form {
  display: grid;
  gap: 12px;
}
.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid #cfe1d6;
  border-radius: 16px;
  background: #f7fbf8;
}
.cookie-option-locked {
  background: #f3faf5;
}
.cookie-option-copy {
  display: grid;
  gap: 4px;
}
.cookie-option-copy strong {
  font-size: 16px;
}
.cookie-option-copy small {
  color: #000000;
  font-size: 13px;
  line-height: 1.45;
}
.cookie-option input[type="checkbox"] {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.cookie-modal-actions .cookie-btn {
  font-size: 13px;
}
.cookie-modal-actions .cookie-btn-secondary {
  background: #f0f8f3;
  color: #000000;
  border: 1px solid #cfe1d6;
}
.cookie-modal-actions .cookie-btn-secondary:hover,
.cookie-modal-actions .cookie-btn-secondary:focus-visible {
  background: #e6f3eb;
  color: #000000;
}
body.cookie-modal-open {
  overflow: hidden;
}
@media (max-width: 700px) {
.cookie-banner {
    bottom: 10px;
    flex-direction: column;
    align-items: stretch;
    width: min(calc(100vw - 20px), 680px);
    gap: 8px;
    padding: 10px 12px;
    border-radius: 14px;
  }
  .cookie-copy {
    width: 100%;
    font-size: 11px;
    line-height: 1.25;
  }
  .cookie-copy strong {
    display: block;
    margin-bottom: 2px;
    font-size: 11.5px;
  }
  .cookie-copy p {
    margin: 0;
    color: #000000;
    font-size: 11px;
    line-height: 1.25;
  }
  .cookie-actions {
    width: 100%;
    justify-content: space-between;
    align-items: stretch;
    gap: 6px;
  }
  .cookie-actions .cookie-btn {
    min-width: 0;
    flex: 1 1 0;
    padding: 8px 6px;
    font-size: 10.5px;
    line-height: 1.15;
    border-radius: 9px;
  }
  .cookie-modal-panel {
    width: min(calc(100vw - 20px), 680px);
    max-height: calc(100vh - 20px);
    margin: 10px auto;
    padding: 18px 14px 14px;
    border-radius: 16px;
  }
  .cookie-modal-panel h2 {
    margin-right: 34px;
    font-size: 22px;
  }
  .cookie-modal-intro {
    font-size: 13px;
    line-height: 1.45;
  }
  .cookie-option {
    padding: 12px 12px;
    gap: 12px;
  }
  .cookie-option-copy strong {
    font-size: 14px;
  }
  .cookie-option-copy small {
    font-size: 12px;
  }
  .cookie-modal-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Global polish layer loaded after page-local styles. */
body {
  color: #000000;
  background: #0d1f18;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.top-nav {
  background: #ffffff !important;
  color: #000000 !important;
  border-bottom: 1px solid #cfe1d6 !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08) !important;
}

.nav-links a,
.nav-domain {
  color: #000000 !important;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(13,31,24,0.10) !important;
}

.phone,
.btn-primary,
.cookie-btn {
  background: #0d1f18 !important;
  color: #ffffff !important;
  border-color: #0d1f18 !important;
}

.phone:hover,
.btn-primary:hover,
.cookie-btn:hover,
.cookie-btn:focus-visible {
  background: #091711 !important;
  color: #ffffff !important;
}

.nav-toggle span {
  background: #0d1f18 !important;
}

.top-nav.open .nav-toggle {
  background: #0d1f18 !important;
  border-color: #0d1f18 !important;
}

.top-nav.open .nav-toggle span {
  background: #ffffff !important;
}

@media (max-width: 980px) {
  .top-nav.open .nav-links {
    background: rgba(13,31,24,.98) !important;
  }

  .top-nav.open .nav-links a {
    color: #ffffff !important;
  }
}

.wrap,
main.wrap {
  color: #ffffff;
}

main.wrap > section > h2,
.section-head h2,
#sekcja-produkty,
main.wrap > section > .product-lead {
  color: #ffffff !important;
}

.card,
.cta-banner,
.seo-card,
.contact-card,
.hero-copy,
.hero-visual,
.article-main,
.article-aside,
.quick-card,
.hours-card,
.map-card,
.sample-layout,
.product-card,
.cookie-modal-panel {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #cfe1d6 !important;
}

.highlight-card,
.highlight-card.highlight-card--accent,
.highlight-card.highlight-card--accent.highlight-card--shop,
.highlight-card.highlight-card--accent.highlight-card--advice,
.highlight-card.highlight-card--accent.highlight-card--delivery {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #cfe1d6 !important;
  box-shadow: 0 18px 34px rgba(13,31,24,0.16) !important;
}

.highlight-card strong,
.highlight-card .highlight-label,
.highlight-card p,
.highlight-card.highlight-card--accent strong,
.highlight-card.highlight-card--accent .highlight-label,
.highlight-card.highlight-card--accent p {
  color: #000000 !important;
}

.highlight-card::before,
.highlight-card.highlight-card--accent::before {
  background: #0d1f18 !important;
}

.highlight-card::after,
.highlight-card.highlight-card--accent::after {
  border-top-color: #0d1f18 !important;
  border-right-color: #0d1f18 !important;
}

.cta-banner img,
.card img,
.hero img,
.highlight-card-media,
.highlight-card__media img,
.stack-card img,
.info-card img,
.cta-media img,
.hero-visual img,
.product-card img,
.sample-visual img {
  display: block;
  max-width: 100%;
}

.hero-visual {
  padding: 14px !important;
}

.hero-visual img {
  height: auto !important;
  max-height: 360px;
  object-fit: contain !important;
}

.article-cta {
  background: #0d1f18 !important;
  color: #ffffff !important;
}

.article-cta h3,
.article-cta p {
  color: #ffffff !important;
}

.article-cta .btn-primary {
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
}

.article-cta .btn-secondary {
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.45) !important;
}

footer {
  background: #eef8f2 !important;
  color: #000000 !important;
}

footer a,
.footer-meta a {
  color: #000000 !important;
}

.cookie-banner {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #cfe1d6 !important;
}

.cookie-copy,
.cookie-copy p,
.cookie-copy a {
  color: #000000 !important;
}

.cookie-btn-secondary {
  background: #f3faf5 !important;
  color: #000000 !important;
  border: 1px solid #cfe1d6 !important;
}

@media (max-width: 980px) {
  .nav-links {
    background: #ffffff !important;
    border-color: #cfe1d6 !important;
  }

  .nav-links a {
    color: #000000 !important;
  }

  .top-nav.open .nav-links {
    background: rgba(13,31,24,.98) !important;
    border-color: rgba(255,255,255,.08) !important;
  }

  .top-nav.open .nav-links a {
    color: #ffffff !important;
  }
}
