/* ============================================
   GRIZY PET FOOD — PALETA KOLORÓW MARKI
   Override zmiennych Leo theme.css + własne custom props
   ============================================ */
:root {
  /* Nadpisujemy zmienne theme'u (definiowane w theme.css:195) */
  --theme-color-default: #84973A;
  --theme-color-senary: #48211A;

  /* Własne zmienne marki - użyteczne w całym custom.css */
  --grz-green: #84973A;
  --grz-green-dark: #6d7d2f;
  --grz-green-light: #a8b04c;
  --grz-brown: #48211A;
  --grz-brown-dark: #2f1510;
  --grz-cream: #f5f0e4;
  --grz-olive-pale: #d9dfb8;
  --grz-bg-soft: #f5f8e8;
}
/* Hero kontaktu */
.grz-contact-hero {
  background: linear-gradient(135deg, var(--grz-cream) 0%, #ede5d3 100%);
  padding: 60px 24px 50px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 30px;
}
.grz-contact-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  color: var(--grz-brown);
  margin: 0 0 12px 0;
  line-height: 1.15;
}
.grz-contact-hero p {
  font-size: 17px;
  color: #5d4438;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
 
/* Wariant kafla na podstronie kontakt — układ pionowy, wycentrowany */
.grz-cat--contact {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 10px;
  padding: 28px 20px;
  min-height: 200px;
  justify-content: flex-start;
}
 
/* Kółko z ikoną SVG */
.grz-contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(132, 151, 58, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grz-green);
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
}
.grz-cat--contact:hover .grz-contact-icon {
  transform: scale(1.08);
  background: rgba(132, 151, 58, 0.2);
}
 
.grz-cat--contact .grz-cat__label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grz-green);
  margin: 0;
}
.grz-cat--contact .grz-cat__name {
  font-size: 18px;
  font-weight: 500;
  color: var(--grz-brown);
  word-break: break-word;
  line-height: 1.3;
  margin: 0;
}
.grz-cat--contact .grz-cat__desc {
  font-size: 13px;
  color: #7a5c52;
  line-height: 1.45;
  margin: auto 0 0 0;
}
 
/* Wariant ciemny (kafel Adres) — nadpisuje kolory */
.grz-cat--all.grz-cat--contact .grz-cat__label { color: var(--grz-olive-pale); }
.grz-cat--all.grz-cat--contact .grz-cat__name  { color: #fff; }
.grz-cat--all.grz-cat--contact .grz-cat__desc  { color: rgba(255,255,255,0.75); }
.grz-cat--all.grz-cat--contact .grz-contact-icon {
  background: rgba(255,255,255,0.12);
  color: var(--grz-olive-pale);
}
.grz-cat--all.grz-cat--contact:hover .grz-contact-icon {
  background: rgba(255,255,255,0.22);
}
 
@media (max-width: 767px) {
  .grz-contact-hero { padding: 44px 20px 36px; }
  .grz-cat--contact { min-height: auto; padding: 22px 16px; }
}
.contact-form {
  margin-top: 35px;
}
/* --- Grid kategorii: 4 kolumny, szerokie kafle na 2 kol --- */
.grz-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
}
#cms li {
  list-style: none;
}
.box-top-link a:hover {
  color: #ddd;
}
#blogstart .btn-link {
  display: none;
} 
/* --- Pojedyncza kategoria (mały kafel) --- */
.grz-cat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 5px;
  text-decoration: none;
  color: #48211A;
  background: #faf8f2;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  border: 2px solid transparent;
  min-height: 80px;
}
 
.grz-cat:hover,
.grz-cat:focus {
  background: #f5f0e4;
  border-color: #84973A;
  text-decoration: none;
  color: #48211A;
}
 
.grz-cat__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
 
.grz-cat:hover .grz-cat__icon {
  transform: scale(1.08) rotate(-5deg);
}
 
.grz-cat__name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
}
 
/* --- Szeroki kafel (Drób, Dziczyzna) — zajmuje 2 kolumny --- */
.grz-cat--wide {
  grid-column: span 2;
}
 
/* --- Kategoria z podkategoriami --- */
.grz-cat--with-subs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 5px;
  background: #faf8f2;
  border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}
 
.grz-cat--with-subs:hover {
  background: #f5f0e4;
  border-color: #84973A;
}
 
.grz-cat--with-subs .grz-cat__main {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #48211A;
  padding: 0;
  background: transparent;
  border: 0;
}
 
.grz-cat--with-subs:hover .grz-cat__icon {
  transform: scale(1.08) rotate(-5deg);
}
 
/* Podkategorie w jednej linii poziomo */
.grz-cat__subs {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px 16px !important;
  padding-left: 0 !important;
  width: 100%;
}
 
.grz-cat__subs li {
  list-style: none;
}
 
.grz-cat__subs a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #7a5c52;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
 
.grz-cat__subs a:hover,
.grz-cat__subs a:focus {
  color: #84973A;
  text-decoration: none;
}
 
/* --- Kafel "Wszystkie" --- */
.grz-cat--all {
  background: #48211A;
  color: #fff;
}
 
.grz-cat--all:hover,
.grz-cat--all:focus {
  background: #5d2e24;
  border-color: #84973A;
  color: #fff;
}
 
.grz-cat__icon--all {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #84973A;
  flex-shrink: 0;
}
 
.grz-cat--all:hover .grz-cat__icon--all {
  transform: scale(1.08);
}
 
/* ============================================================
   RESPONSIVE — tablet (3 kolumny)
   ============================================================ */
@media (max-width: 991px) {
  .grz-cats {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .grz-cat--wide {
    grid-column: span 3;
  }
}
 
/* ============================================================
   RESPONSIVE — mobile (2 kolumny)
   ============================================================ */
@media (max-width: 767px) {
  .grz-cats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .grz-cat--wide {
    grid-column: span 2;
  }
  
  .grz-cat,
  .grz-cat--with-subs {
    padding: 10px;
    min-height: auto;
  }
  
  .grz-cat__icon {
    width: 44px;
    height: 44px;
  }
  
  .grz-cat__name {
    font-size: 13px;
  }
  
  .grz-cat__subs {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 10px;
  }
  
  .grz-cat__subs a {
    font-size: 12px;
  }
}
 
/* Telefony — 1 kolumna */
@media (max-width: 420px) {
  .grz-cats {
    grid-template-columns: 1fr;
  }
  
  .grz-cat--wide {
    grid-column: span 1;
  }

}
/* --- Topbar: ikona infolinii --- */
.grz-topbar-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #84973A;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.grz-topbar-contact:hover,
.grz-topbar-contact:focus {
  color: #48211A;
  text-decoration: none;
}

.grz-topbar-icon {
  flex-shrink: 0;
}
.AppButton.oferta.ApButton.btn-block {
  text-align: center;
  margin-top: 35px;
}
/* --- Footer: ikony kontaktu --- */
.grz-footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px 0;
}
.grz-footer-icon {
    vertical-align: middle;
  flex-shrink: 0;
  color: #84973A;
}
.grz-footer-contact a {
  text-decoration: none;
}
.grz-hero__featuress {
  position: relative;
  z-index: 2;
  margin: 0px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  animation: grzFadeUp 1s 0.25s ease both;
}
#blogRecentBlog span {
display:none;
}
#blogRecentBlog a {
color: #48211A;
}
.facet a {
color: #48211A;
}
.block-categories.block.block-highlighted a {
  color: #48211a;
}
#categories_blog_menu a {
  color:#48211A;
}
.image_description a {
  color: white;
  text-decoration: underline;
}
.header_logo img {
  max-width: 190px !important;
}
.header-top {
  --border-radius: 20px 20px 20px 20px;
  box-shadow: 0px 0px 20px -12px rgba(0,0,0,0.5);
  border: 1px solid #f5f5f5;
  border-radius: 20px;
}
.dodajdo {
    --border-radius: 20px 20px 20px 20px;
  box-shadow: 0px 0px 20px -12px rgba(0,0,0,0.2);
  background: white;
  padding: 15px;
  border-left: 2px solid #ddd;
}
#cms #content {
  background:rgba(255, 255, 255, 0.5);
  padding: 20px;
}
#regulamin{font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;line-height:1.7;color:#333;max-width:100%;padding:20px 0}
#regulamin *{box-sizing:border-box}
#regulamin h1.reg-title{text-align:center;color:#48211A;font-size:28px;margin:0 0 5px 0;padding-bottom:15px;border-bottom:3px solid #84973A}
#regulamin .reg-subtitle{text-align:center;font-size:20px;color:#84973A;margin-bottom:30px;font-weight:600}
#regulamin h2.reg-section-title{color:#48211A;font-size:20px;margin-top:40px;margin-bottom:20px;padding-bottom:8px;border-bottom:2px solid #e0e0e0}
#regulamin .reg-intro{background:#f5f8e8;border-left:4px solid #84973A;padding:20px;margin:30px 0;font-style:italic}
#regulamin .reg-toc{background:#f5f5f5;padding:25px 30px;border-radius:6px;margin:30px 0}
#regulamin .reg-toc h2{margin-top:0;border-bottom:none;text-align:center;font-size:18px;color:#48211A}
#regulamin .reg-toc ol{columns:2;column-gap:40px;padding-left:20px;margin:0}
#regulamin .reg-toc li{margin-bottom:8px;break-inside:avoid}
#regulamin .reg-toc a{color:#333;text-decoration:none;transition:color 0.2s}
#regulamin .reg-toc a:hover{color:#84973A;text-decoration:underline}
#regulamin .reg-section{margin-bottom:30px}
#regulamin .reg-point{margin-bottom:15px;text-align:justify}
#regulamin .reg-point-num{font-weight:600;color:#555}
#regulamin .reg-sub{margin-left:25px;margin-bottom:10px}
#regulamin .reg-def{margin-left:25px;margin-bottom:12px;padding-left:15px;border-left:2px solid #e0e0e0}
#regulamin .reg-def strong{color:#48211A}
#regulamin .reg-highlight{background:#fff8e7;border:1px solid #f0d78c;padding:15px 20px;border-radius:5px;margin:15px 0}
#regulamin .reg-warning{background:#fff0f0;border:1px solid #ffcccc;padding:15px 20px;border-radius:5px;margin:15px 0}
#regulamin .reg-info{background:#f5f8e8;border:1px solid #d9dfb8;padding:15px 20px;border-radius:5px;margin:15px 0}
#regulamin .reg-used-goods{background:#fef3c7;border:1px solid #f59e0b;padding:15px 20px;border-radius:5px;margin:15px 0}
#regulamin table.reg-table{width:100%;border-collapse:collapse;margin:20px 0}
#regulamin table.reg-table th,#regulamin table.reg-table td{border:1px solid #ddd;padding:12px;text-align:left}
#regulamin table.reg-table th{background:#f5f5f5;font-weight:600}
#regulamin .reg-form{background:#fafafa;border:1px dashed #ccc;padding:25px;margin:20px 0}
#regulamin .reg-form h3{text-align:center;margin-top:0}
#regulamin .reg-form-field{border-bottom:1px dotted #999;min-height:25px;margin:10px 0}
#regulamin .reg-back-top{display:inline-block;margin-top:15px;color:#84973A;text-decoration:none;font-size:14px}
#regulamin .reg-back-top:hover{text-decoration:underline}
#regulamin .reg-footer{text-align:center;margin-top:40px;padding-top:20px;border-top:1px solid #e0e0e0;color:#777;font-size:14px}
#regulamin .reg-footer p{margin:5px 0}
#regulamin ul.reg-list,#regulamin ol.reg-list{margin:10px 0;padding-left:25px}
#regulamin ul.reg-list li,#regulamin ol.reg-list li{margin-bottom:8px}
@media (max-width:768px){#regulamin .reg-toc ol{columns:1}#regulamin h1.reg-title{font-size:22px}#regulamin h2.reg-section-title{font-size:18px}#regulamin .reg-sub{margin-left:15px}#regulamin .reg-def{margin-left:15px}}
@media print{#regulamin .reg-back-top{display:none}}
#polityka-prywatnosci{font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;line-height:1.7;color:#333;max-width:100%;padding:20px 0}
#polityka-prywatnosci *{box-sizing:border-box}
#polityka-prywatnosci h1.pp-title{text-align:center;color:#48211A;font-size:28px;margin:0 0 5px 0;padding-bottom:15px;border-bottom:3px solid #84973A}
#polityka-prywatnosci .pp-subtitle{text-align:center;font-size:20px;color:#84973A;margin-bottom:30px;font-weight:600}
#polityka-prywatnosci h2.pp-section-title{color:#48211A;font-size:20px;margin-top:40px;margin-bottom:20px;padding-bottom:8px;border-bottom:2px solid #e0e0e0}
#polityka-prywatnosci .pp-intro{background:#f5f8e8;border-left:4px solid #84973A;padding:20px;margin:30px 0;font-style:italic}
#polityka-prywatnosci .pp-toc{background:#f5f5f5;padding:25px 30px;border-radius:6px;margin:30px 0}
#polityka-prywatnosci .pp-toc h2{margin-top:0;border-bottom:none;text-align:center;font-size:18px;color:#48211A}
#polityka-prywatnosci .pp-toc ol{columns:2;column-gap:40px;padding-left:20px;margin:0}
#polityka-prywatnosci .pp-toc li{margin-bottom:8px;break-inside:avoid}
#polityka-prywatnosci .pp-toc a{color:#333;text-decoration:none;transition:color 0.2s}
#polityka-prywatnosci .pp-toc a:hover{color:#84973A;text-decoration:underline}
#polityka-prywatnosci .pp-section{margin-bottom:30px}
#polityka-prywatnosci .pp-point{margin-bottom:15px;text-align:justify}
#polityka-prywatnosci .pp-point-num{font-weight:600;color:#555}
#polityka-prywatnosci .pp-sub{margin-left:25px;margin-bottom:10px}
#polityka-prywatnosci .pp-highlight{background:#fff8e7;border:1px solid #f0d78c;padding:15px 20px;border-radius:5px;margin:15px 0}
#polityka-prywatnosci .pp-info{background:#f5f8e8;border:1px solid #d9dfb8;padding:15px 20px;border-radius:5px;margin:15px 0}
#polityka-prywatnosci .pp-contact-box{background:#f5f5f5;border-radius:6px;padding:20px;margin:20px 0}
#polityka-prywatnosci .pp-rodo-box{background:#f0f4dc;border:1px solid #84973A;padding:15px 20px;border-radius:5px;margin:15px 0}
#polityka-prywatnosci table.pp-table{width:100%;border-collapse:collapse;margin:20px 0}
#polityka-prywatnosci table.pp-table th,#polityka-prywatnosci table.pp-table td{border:1px solid #ddd;padding:12px;text-align:left;vertical-align:top}
#polityka-prywatnosci table.pp-table th{background:#f5f5f5;font-weight:600}
#polityka-prywatnosci .pp-back-top{display:inline-block;margin-top:15px;color:#84973A;text-decoration:none;font-size:14px}
#polityka-prywatnosci .pp-back-top:hover{text-decoration:underline}
#polityka-prywatnosci .pp-footer{text-align:center;margin-top:40px;padding-top:20px;border-top:1px solid #e0e0e0;color:#777;font-size:14px}
#polityka-prywatnosci .pp-footer p{margin:5px 0}
#polityka-prywatnosci ul.pp-list{margin:10px 0;padding-left:25px}
#polityka-prywatnosci ul.pp-list li{margin-bottom:8px}
#polityka-prywatnosci .pp-update-date{text-align:right;font-size:13px;color:#777;font-style:italic;margin-bottom:20px}
@media (max-width:768px){#polityka-prywatnosci .pp-toc ol{columns:1}#polityka-prywatnosci h1.pp-title{font-size:22px}#polityka-prywatnosci h2.pp-section-title{font-size:18px}#polityka-prywatnosci .pp-sub{margin-left:15px}}
@media print{#polityka-prywatnosci .pp-back-top{display:none}}
.onas strong {
  font-weight: 900;
  color: #48211A;
}
.onas {
  line-height: 1.5rem;
}
.onas ul{
  list-style-type: disc;          /* kółka */
  list-style-position: inside;    /* kółka wewnątrz, nie na zewnątrz */
  margin: 0;
  padding: 0;
}

.onas ul li{
  margin: 0 0 8px 0;
  padding: 0;
}
/* Obrazek "onasimg" po prawej stronie dla >= 992px */
@media (min-width: 992px){
  .onasimg{
    text-align: right;         /* wszystko w prawo w tej kolumnie */
  }

  .onasimg img{
    display: inline-block;     /* żeby text-align działał przewidywalnie */
    max-width: 100%;
    height: auto;
  }
}

/* (opcjonalnie) na mniejszych ekranach wyśrodkuj */
@media (max-width: 991.98px){
  .onasimg{
    text-align: center;
    margin-top: 15px;
  }
}
.footerlogo img {
  max-width: 180px !important;
}
/* === IKONY FA5 PRO W TABACH PRODUKTU === */

/* Ikona (dodajemy BEFORE, bo motyw ma już AFTER) */
.product-tabs.tabs .nav-tabs .nav-link::before{
  font-family: "Font Awesome 5 Pro" !important;
  font-weight: 900 !important;   /* solid; jeśli nie masz solid -> zmień na 400 */
  font-style: normal !important;
  display: inline-block !important;
  line-height: 1;
  font-size: 14px;
  margin-right: 10px;
  color: #333;
  content: "\f128";              /* fallback */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Opis */
.product-tabs.tabs .nav-tabs .nav-link[href="#description"]::before{
  content: "\f036"; /* fa-align-left */
}

/* Szczegóły produktu */
.product-tabs.tabs .nav-tabs .nav-link[href="#product-details"]::before{
  content: "\f0ca"; /* fa-list-ul */
}

/* Opinie */
.product-tabs.tabs .nav-tabs .nav-link[href="#leo-product-show-review-content"]::before{
  content: "\f005"; /* fa-star */
}
.platnosciimg img{
  border-radius:6px;
}
  .infolinia-bar {
    display: flex;
    align-items: center;
justify-content: flex-start;
    gap: 20px;
    font-family: inherit;
    flex-wrap: wrap;
  }

  .infolinia-mascot {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .dog-icon { width: 28px; height: 28px; flex-shrink: 0; }

  .infolinia-label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #48211A;
  }

  .infolinia-sep { color: #ccc; font-size: 14px; user-select: none; }

  .infolinia-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #48211A;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    transition: color 0.2s ease;
  }

  .infolinia-phone:hover { color: #469bee; }

  .phone-icon { width: 16px; height: 16px; color: #469bee; flex-shrink: 0; }

  .phone-hours { font-size: 11px; font-weight: 400; color: #888; margin-left: 4px; }
  .leo-megamenu .leo-top-menu {
  text-align: center;
}

.leo-megamenu .navbar-nav.horizontal {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}

@media (min-width: 992px) {
  /* punkt odniesienia */
  .leo-megamenu .leo-top-menu,
  .leo-megamenu .navbar-nav {
    position: relative;
  }

  /* tylko dropdown PSY */
  .leo-megamenu .navbar-nav > .nav-item.psy.aligned-fullwidth {
    position: static !important;
  }

  .leo-megamenu .navbar-nav > .nav-item.psy.aligned-fullwidth > .dropdown-sub.dropdown-menu {
    left: 0 !important;
    right: 0 !important;
    top: 100%;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
    padding: 20px 24px !important;
    box-sizing: border-box;
  }
}
.widget-heading {
  font-weight: 600 !important;
  color: black !important;
  font-size: 15px;
  margin-bottom: 10px;
  visibility: visible;
}
@media (min-width: 992px) {
  /* tło i kontener */
  .leo-megamenu .navbar-nav > .nav-item.psy .dropdown-sub.dropdown-menu {
    padding: 18px 22px !important;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,.10);
    border: 1px solid rgba(0,0,0,.06);
  }

  /* siatka kolumn: równe odstępy */
  .leo-megamenu .navbar-nav > .nav-item.psy .dropdown-menu-inner .row {
    display: flex;
    flex-wrap: wrap;
    row-gap: 18px;
  }

  .leo-megamenu .navbar-nav > .nav-item.psy .mega-col {
    padding-left: 14px;
    padding-right: 14px;
  }

  /* delikatne separatory między kolumnami (opcjonalne) */
  .leo-megamenu .navbar-nav > .nav-item.psy .mega-col:not(:last-child) {
    border-right: 1px solid rgba(0,0,0,.06);
  }

  /* jeśli masz 4-5 kolumn, separator może przeszkadzać */
  .leo-megamenu .navbar-nav > .nav-item.psy .mega-col:last-child {
    border-right: 0;
  }

  /* blok widgetu */
  .leo-megamenu .navbar-nav > .nav-item.psy .widget-subcategories {
    margin-bottom: 14px;
  }

  /* nagłówki sekcji jak „kafelki” */
  .leo-megamenu .navbar-nav > .nav-item.psy .widget-heading {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-weight: 500;
    font-size: 13px;
    letter-spacing: .2px;

    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(0, 169, 224, .08);
    color: #0b5f7a;
    margin: 0 0 10px 0;
  }

  /* listy – mniej „ściany” */
  .leo-megamenu .navbar-nav > .nav-item.psy .widget-inner ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
  }

  /* linki */
  .leo-megamenu .navbar-nav > .nav-item.psy .widget-inner ul li a {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 7px 10px;
    border-radius: 10px;

    color: #2d2d2d;
    font-size: 13px;
    line-height: 1.25;

    transition: background .15s ease, color .15s ease, transform .15s ease;
  }

  /* mała kropka/bullet – robi mega różnicę w czytelności */
  .leo-megamenu .navbar-nav > .nav-item.psy .widget-inner ul li a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0,0,0,.25);
    flex: 0 0 6px;
  }

  /* hover */
  .leo-megamenu .navbar-nav > .nav-item.psy .widget-inner ul li a:hover {
    background: rgba(0, 169, 224, .08);
    color: #0b5f7a;
    transform: translateX(2px);
  }

  .leo-megamenu .navbar-nav > .nav-item.psy .widget-inner ul li a:hover::before {
    background: #84973A;
  }

  /* jeśli gdzieś wjeżdża za długa nazwa */
  .leo-megamenu .navbar-nav > .nav-item.psy .sub_cat_name {
    display: inline-block;
    max-width: 100%;
    white-space: normal;
  }
}
/* ===== MOBILE FIX: rozbijanie pozycji (koniec z lepieniem) ===== */
@media (max-width: 991px) {

  /* elementy list w megamenu muszą być blokami */
  .leo-megamenu .dropdown-sub .widget-subcategories ul,
  .leo-megamenu .dropdown-sub .widget-subcategories ul > li,
  .leo-megamenu .dropdown-sub .widget-subcategories ul > li.sub_auto,
  .leo-megamenu .dropdown-sub .widget-subcategories ul > li.clearfix,
  .leo-megamenu .dropdown-sub .widget-subcategories ul > li.clearfix.sub_auto {
    display: block !important;
    float: none !important;
    clear: both !important;
    width: 100% !important;
  }

  /* link też jako blok (to jest kluczowe) */
  .leo-megamenu .dropdown-sub .widget-subcategories ul > li > a,
  .leo-megamenu .dropdown-sub .widget-subcategories ul > li.sub_auto > a,
  .leo-megamenu .dropdown-sub .widget-subcategories a.img {
    display: block !important;
    width: 100% !important;
    padding: 8px 0 !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    word-break: break-word !important;
  }

  /* span z nazwą nie może być blokiem-inline bez łamania */
  .leo-megamenu .dropdown-sub .widget-subcategories .sub_cat_name {
    display: inline !important;
    white-space: normal !important;
  }

  /* mały separator dla czytelności */
  .leo-megamenu .dropdown-sub .widget-subcategories ul > li > a {
    border-bottom: 1px solid rgba(0,0,0,.06) !important;
  }
  .leo-megamenu .dropdown-sub .widget-subcategories ul > li:last-child > a {
    border-bottom: 0 !important;
  }
}
/* ===== OFF-CANVAS (MOBILE) MEGAMENU – czytelność ===== */
@media (max-width: 991px){

  /* Cały dropdown jako "karty" jedna pod drugą */
  .off-canvas-nav-megamenu .dropdown-sub .row{
    display:block !important;
    margin:0 !important;
  }

  .off-canvas-nav-megamenu .dropdown-sub .mega-col{
    width:100% !important;
    max-width:100% !important;
    float:none !important;
    padding:0 !important;
    margin:0 0 14px 0 !important;
  }

  /* Nagłówki sekcji */
  .off-canvas-nav-megamenu .widget-subcategories .widget-heading{
    font-weight:700 !important;
    font-size:14px !important;
    padding:10px 0 6px !important;
    border-bottom:1px solid rgba(0,0,0,.10) !important;
    margin:0 0 6px !important;
  }

  /* UL/LI – MUSI być blokowo (koniec z lepieniem) */
  .off-canvas-nav-megamenu .widget-subcategories ul,
  .off-canvas-nav-megamenu .widget-subcategories ul > li{
    display:block !important;
    float:none !important;
    width:100% !important;
    clear:both !important;
    margin:0 !important;
    padding:0 !important;
  }

  /* Link jako pełna linia */
  .off-canvas-nav-megamenu .widget-subcategories ul > li > a,
  .off-canvas-nav-megamenu .widget-subcategories a.img{
    display:block !important;
    width:100% !important;
    padding:8px 0 !important;
    line-height:1.25 !important;
    white-space:normal !important;
    word-break:break-word !important;
  }

  /* Delikatny separator między pozycjami */
  .off-canvas-nav-megamenu .widget-subcategories ul > li > a{
    border-bottom:1px solid rgba(0,0,0,.06) !important;
  }
  .off-canvas-nav-megamenu .widget-subcategories ul > li:last-child > a{
    border-bottom:0 !important;
  }

  /* Usuń clearfix jeśli theme coś kombinuje */
  .off-canvas-nav-megamenu .widget-subcategories ul > li.clearfix:before,
  .off-canvas-nav-megamenu .widget-subcategories ul > li.clearfix:after{
    content:none !important;
    display:none !important;
  }
}
/* === MOBILE ONLY: tło dla nagłówków sekcji w off-canvas === */
@media (max-width: 991px){
  .off-canvas-nav-megamenu .widget-subcategories .widget-heading{
    display: block;
    padding: 10px 12px;
    margin: 10px 0 8px;
text-align: center;
    padding-bottom: 10px !important;
    background: #f6f7f9;
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
  }
}
.produktyy {
  box-shadow: 0px 0px 20px -12px rgba(0,0,0,0.5);
  border: 1px solid #f5f5f5;
  border-radius: 10px;
  margin-top: 2rem;
  background: #FFFFFF;
  padding: 1.25rem 1.875rem;
}

@media (max-width: 687px) {
  .produktyy {
    padding: 0;
  }
}
.badges-list--grizy {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0 10px;
}

.badge-item,
.badge-slide {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f3e7d7;
  border: 1px solid rgba(67, 41, 24, 0.12);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 8px 24px rgba(67, 41, 24, 0.06);
}

.badge-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: #48211A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
}

.badge-text strong {
  display: block;
  color: #48211A;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 6px;
}

.badge-text span {
  display: block;
  color: #6b5a4d;
  font-size: 14px;
  line-height: 1.45;
}

.badges-slider-wrap {
  display: none;
}

.slider-dots {
  display: none;
}

.slider-progress-wrap {
  display: none;
}

@media (max-width: 991px) {
  .badges-list--grizy {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .badges-list--grizy {
    display: none;
  }

  .badges-slider-wrap {
    display: block;
    overflow: hidden;
    margin-top: 18px;
  }

  .badges-slider {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
  }

  .badges-slider::-webkit-scrollbar {
    display: none;
  }

  .badge-slide {
    min-width: calc(50% - 4px);
    box-sizing: border-box;
  }

  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
  }

  .slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(67, 41, 24, 0.2);
    transition: 0.2s ease;
  }

  .slider-dots .dot.active {
    background: #48211A;
    transform: scale(1.15);
  }

  .slider-progress-wrap {
    display: block;
    width: 100%;
    height: 4px;
    background: rgba(67, 41, 24, 0.10);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 10px;
  }

  .slider-progress-bar {
    width: 0;
    height: 100%;
    background: #84973A;
    border-radius: 999px;
    transition: width 0.2s ease;
  }
}
  @media (min-width: 992px) {
  .leo-megamenu .navbar-nav > .nav-item.brandik.aligned-fullwidth > .dropdown-sub.dropdown-menu {
    left: 0 !important;
    right: 0 !important;
    top: 100%;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
    padding: 20px 24px !important;
    box-sizing: border-box;
  }
}
          .manu-alpha-wrap { width: 100%; columns: 4; column-gap: 24px; }
          .manu-alpha-group { break-inside: avoid; margin-bottom: 16px; padding-left: 12px; border-left: 2px solid #e0f0f8; }
          .manu-alpha-letter { font-size: 12px; font-weight: 500; color: #fff; background: #84973A; display: inline-block; width: 24px; height: 24px; line-height: 24px; text-align: center; border-radius: 4px; margin-bottom: 6px; margin-left: -12px; }
          .manu-alpha-items { display: flex; flex-direction: column; gap: 4px; }
          .manu-item { display: flex; align-items: center; gap: 8px; padding: 4px 6px; border-radius: 6px; text-decoration: none; color: #48211A; transition: background 0.2s; white-space: nowrap; }
          .manu-item:hover { background: #eef6fb; }
          .manu-item img { width: 60px; height: 36px; object-fit: contain; flex-shrink: 0; }
          .manu-item span { font-size: 12px; font-weight: 500; overflow: hidden; text-overflow: ellipsis; }
          @media (max-width: 991px) { .manu-alpha-wrap { columns: 3; } }
          @media (max-width: 767px) { .manu-alpha-wrap { columns: 1; } }

             .zoo8-about {
      margin: 0 auto;
      padding: 50px 20px;
  padding: 50px 20px;
    }

    .zoo8-about-inner {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 24px;
      align-items: stretch;
    }

    /* ===== LEWA STRONA ===== */
    .zoo8-about-left {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .zoo8-about-heading {
      margin-bottom: 20px;
    }

    .zoo8-about-heading .eyebrow {
      font-size: 11px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #84973A;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
    }

    .zoo8-about-heading .eyebrow::before {
      content: '';
      width: 24px;
      height: 2px;
      background: #84973A;
      display: inline-block;
    }

    .zoo8-about-heading h2 {
      font-size: 26px;
      font-weight: 500;
      color: #48211A;
      line-height: 1.25;
    }

    .zoo8-about-heading h2 span {
      color: #84973A;
    }

    /* ===== KAFELKI ===== */
    .zoo8-tiles {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      flex: 1;
    }

    .zoo8-tile {
      background: #fff;
      border-radius: 14px;
      padding: 18px 20px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.055);
      border: 1px solid #eef3f6;
      transition: transform 0.2s, box-shadow 0.2s;
      position: relative;
      overflow: hidden;
    }

    .zoo8-tile::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: #84973A;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }

    .zoo8-tile:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0,169,224,0.13);
    }

    .zoo8-tile:hover::after {
      transform: scaleX(1);
    }

    .zoo8-tile-icon {
      width: 42px;
      height: 42px;
      background: #e8f7fd;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .zoo8-tile-icon svg {
      width: 20px;
      height: 20px;
      stroke: #84973A;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .zoo8-tile-body {}

    .zoo8-tile-title {
      font-size: 13px;
      font-weight: 500;
      color: #48211A;
      line-height: 1.3;
      margin-bottom: 3px;
    }

    .zoo8-tile-desc {
      font-size: 11.5px;
      color: #6b8394;
      line-height: 1.5;
    }

    /* ===== PRAWA — VIDEO ===== */
    .zoo8-about-video {
      border-radius: 18px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 8px 32px rgba(0,0,0,0.13);
      height: 100%;
      min-height: 480px;
    }

    .zoo8-about-video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .zoo8-about-video-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,30,50,0.45) 100%);
      pointer-events: none;
    }

    .zoo8-about-video-badge {
      position: absolute;
      bottom: 18px;
      left: 18px;
      right: 18px;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 10px;
      padding: 12px 14px;
      color: #fff;
      font-size: 12px;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .zoo8-about-video-badge svg {
      width: 28px;
      height: 28px;
      fill: white;
      flex-shrink: 0;
    }

    /* ===== MOBILE ===== */
    @media (max-width: 768px) {
      .zoo8-about-inner {
        grid-template-columns: 1fr;
      }
      .zoo8-about-video {
        min-height: 300px;
        order: -1;
      }
      .zoo8-tiles {
        grid-template-columns: 1fr;
      }
    }
.zoo8-about-lead {
font-size: 14px;
  color: #2E4657;
  line-height: 1.7;
  margin-top: 12px;
}
.zoo8-tile {
  padding: 12px 14px;
}
.zoo8-about-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 20px;
  padding: 10px 22px;
  background: #84973A;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.zoo8-about-cta::after {
  content: '→';
  font-size: 14px;
}

.zoo8-about-cta:hover {
  background: #0090c0;
  transform: translateX(2px);
  color: #fff;
  text-decoration: none;
}
.box-deals {
  position: relative;
  z-index: 0;
  margin-bottom: 40px;
  background: #fbfbfb;
}

.box-deals::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100vw;
  right: -100vw;
  background: #fbfbfb;
  z-index: -1;
}
.product-description {
  line-height: 25px;
}
#form_7454159657726426 {
  background: #fbfbfb !important;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: calc(50vw - 50%) !important;
  padding-right: calc(50vw - 50%) !important;
  margin-bottom: 40px !important;
}
.leo-compare-wishlist-button {
  display: none !important;
}
   .product-stock-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin: 8px 0;
    }
    .stock-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 6px 14px;
      border-radius: 2px;
      font-size: 12px;
      font-weight: 500;
    }
 .stock-badge-ok {
  background: #edfaf4;
  color: #1a7a4a;
  border: 1px solid #b6e8ce;
  gap: 10px;
}
    .stock-badge-ok::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #2ecc71;
      display: inline-block;
      box-shadow: 0 0 0 0 rgba(46,204,113,0.4);
      animation: pulse-green 2s infinite;
    }
    .stock-qty {
  font-size: 12px;
  color: #1a7a4a;
  font-weight: 500;
}
    .stock-qty strong {
      color: #48211A;
      font-weight: 500;
    }
.stock-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fff8f0, #fff3e6);
  border: 1px solid #ffd8a8;
  border-radius: 2px;
  padding: 3px 14px;
  width: auto;
}
    .stock-flame {
      font-size: 20px;
      animation: flame 0.6s ease-in-out infinite alternate;
      transform-origin: bottom center;
      display: inline-block;
    }
    .stock-urgency-text {
      font-size: 11px;
      font-weight: 500;
      color: #d4580a;
      line-height: 1.3;
    }
    .stock-urgency-text span {
      display: block;
      font-size: 11px;
      font-weight: 500;
      color: #e07a30;
    }
    @keyframes pulse-green {
      0%   { box-shadow: 0 0 0 0 rgba(46,204,113,0.4); }
      70%  { box-shadow: 0 0 0 6px rgba(46,204,113,0); }
      100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
    }
    @keyframes flame {
      0%   { transform: rotate(-8deg) scale(1); }
      100% { transform: rotate(8deg) scale(1.15); }
    }
    .product-stock-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 15px 0;
  padding-top: 15px;
  border-top: 2px solid #eef3f6;
}
.zoo8-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.zoo8-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1 1 200px;
  min-width: 180px;
}

.zoo8-trust-icon {
  flex-shrink: 0;
}

.zoo8-trust-icon svg {
  display: block;
}

.zoo8-trust-text strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #48211A;
  margin-bottom: 4px;
  line-height: 1.3;
}

.zoo8-trust-text p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .zoo8-trust-bar {
    flex-direction: column;
    gap: 20px;
  }

  .zoo8-trust-item {
    flex: unset;
    width: 100%;
  }
}
#confirm_order {
  padding: 20px 65px;
  margin-top: 20px;
}

/* ============================================================
   GRIZY HERO SECTION (v1) — scoped, BEM, prefix .grz-hero
   ============================================================ */
.grz-hero, .grz-hero *, .grz-hero *::before, .grz-hero *::after { box-sizing: border-box; }

.grz-hero {
  --grz-brown: #432918;
  --grz-olive: #91993E;
  --grz-olive-dark: #757d2f;
  --grz-cream: #fbf7f0;
  --grz-cream-2: #f3ead9;
  --grz-tan: #c7a87d;
  --grz-white: #ffffff;

  position: relative;
  overflow: hidden;
  padding: 56px 20px 40px;
  background:
    radial-gradient(1200px 600px at 85% 10%, rgba(145, 153, 62, 0.10), transparent 60%),
    radial-gradient(900px 500px at 15% 35%, rgba(67, 41, 24, 0.05), transparent 60%),
    linear-gradient(180deg, #fbf7f0 0%, #F5F0E4 100%);
  color: var(--grz-brown);
  font-family: inherit;
  line-height: 1.5;
  isolation: isolate;
}

/* Choinki jako dekoracja w tle — dół sekcji */
.grz-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background-image: url('https://grizzy.domlili.pl/img/cms/GRIZY_choinki.png');
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 110%;
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

/* Subtelny noise overlay — rustykalny klimat (maskowany na dole, żeby łączył się z sekcją poniżej) */
.grz-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.26  0 0 0 0 0.16  0 0 0 0 0.09  0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.22;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 calc(100% - 120px), transparent 100%);
          mask-image: linear-gradient(to bottom, #000 0%, #000 calc(100% - 120px), transparent 100%);
}

.grz-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

/* ---------- Lewa kolumna: tekst ---------- */
.grz-hero__content {
  position: relative;
  padding: 25px 36px;
  background: rgba(251, 245, 232, 0.82);
  border: 1px solid rgba(67, 41, 24, 0.08);
  border-radius: 5px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 10px 40px -15px rgba(67, 41, 24, 0.25);
  animation: grzFadeUp 0.8s ease both;
}

.grz-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  background: rgba(145, 153, 62, 0.12);
  color: var(--grz-brown);
  border: 1px solid rgba(145, 153, 62, 0.35);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.grz-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grz-olive);
  box-shadow: 0 0 0 4px rgba(145, 153, 62, 0.22);
}

.grz-hero__title {
  font-family: inherit;
font-size: clamp(32px, 4.6vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--grz-brown);
  margin: 0 0 20px 0;
}
.grz-hero__title em {
  font-style: normal;
  color: var(--grz-olive);
  position: relative;
  white-space: nowrap;
}
.grz-hero__title em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 10px;
  background: rgba(145, 153, 62, 0.22);
  z-index: -1;
  border-radius: 5px;
}

.grz-hero__lead {
  font-size: clamp(16px, 1.15vw, 15px);
  line-height: 1.6;
  color: rgba(67, 41, 24, 0.85);
  max-width: 520px;
  margin: 0 0 32px 0;
}

.grz-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.grz-hero__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.grz-hero__btn--primary {
  background: var(--grz-olive);
  color: var(--grz-white);
  box-shadow: 0 10px 24px -10px rgba(145, 153, 62, 0.65);
}
.grz-hero__btn--primary:hover {
  background: var(--grz-olive-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(145, 153, 62, 0.8);
  color: var(--grz-white);
}
.grz-hero__btn--secondary {
  background: transparent;
  color: var(--grz-brown);
  border-color: var(--grz-brown);
}
.grz-hero__btn--secondary:hover {
  background: var(--grz-brown);
  color: var(--grz-white);
  transform: translateY(-2px);
}
.grz-hero__btn svg { flex-shrink: 0; transition: transform 0.25s ease; }
.grz-hero__btn:hover svg { transform: translateX(3px); }

/* ---------- Prawa kolumna: wideo ---------- */
.grz-hero__media {
  position: relative;
  animation: grzFadeUp 0.9s 0.1s ease both;
}

.grz-hero__video-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 5px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -25px rgba(67, 41, 24, 0.45),
    0 12px 24px -12px rgba(67, 41, 24, 0.3);
  outline: 6px solid var(--grz-cream);
  outline-offset: -6px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  font-family: inherit;
}
.grz-hero__video-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(67, 41, 24, 0.1);
  border-radius: 5px;
  pointer-events: none;
  z-index: 3;
}
.grz-hero__video-btn:hover {
  transform: translateY(-4px);
  box-shadow:
    0 40px 70px -25px rgba(67, 41, 24, 0.55),
    0 18px 30px -12px rgba(67, 41, 24, 0.35);
}

.grz-hero__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #000;
}

.grz-hero__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}
.grz-hero__play-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--grz-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background 0.3s ease;
}
.grz-hero__play-circle::before {
  content: "";
  position: absolute;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  animation: grzPulse 2s ease-out infinite;
}
.grz-hero__video-btn:hover .grz-hero__play-circle {
  transform: scale(1.08);
  background: var(--grz-olive);
  color: var(--grz-white);
}
.grz-hero__play-circle svg {
  margin-left: 4px;
  width: 30px;
  height: 30px;
}

/* Odznaka „Zobacz w powiększeniu" */
.grz-hero__video-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(67, 41, 24, 0.85);
  color: var(--grz-white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 5px;
  backdrop-filter: blur(6px);
  z-index: 3;
}

/* ---------- Feature tiles ---------- */
.grz-hero__features {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  animation: grzFadeUp 1s 0.25s ease both;
}

.grz-hero__feature {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 22px;
  background: #ffffff;
  border: 1px solid rgba(67, 41, 24, 0.08);
  border-radius: 5px;
  box-shadow: 0 10px 30px -15px rgba(67, 41, 24, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.grz-hero__feature:hover {
  transform: translateY(-4px);
  border-color: rgba(145, 153, 62, 0.4);
  box-shadow: 0 18px 40px -20px rgba(67, 41, 24, 0.35);
}

.grz-hero__feature-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grz-hero__feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}
.grz-hero__feature:hover .grz-hero__feature-icon img {
  transform: scale(1.08) rotate(-4deg);
}

.grz-hero__feature-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--grz-brown);
  letter-spacing: -0.005em;
  margin: 0;
}

/* ---------- Lightbox / fullscreen wideo ---------- */
.grz-hero__modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 6, 3, 0.92);
  backdrop-filter: blur(10px);
  z-index: 99999;
  animation: grzModalIn 0.3s ease;
}
.grz-hero__modal.is-open {
  display: flex;
}
.grz-hero__modal-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8);
}
.grz-hero__modal-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}
.grz-hero__modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: var(--grz-white);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(10px);
  z-index: 2;
  font-family: inherit;
}
.grz-hero__modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* ---------- Animacje ---------- */
@keyframes grzFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes grzPulse {
  0%   { transform: scale(1);   opacity: 0.9; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes grzModalIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---------- Responsywność ---------- */
@media (max-width: 992px) {
  .grz-hero { padding: 40px 18px 32px; }
  .grz-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .grz-hero__features {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 44px;
  }
  .grz-hero__play-circle { width: 70px; height: 70px; }
  .grz-hero__play-circle::before { width: 70px; height: 70px; }
}
@media (max-width: 560px) {
  .grz-hero { padding: 32px 14px 28px; }
  .grz-hero__content { padding: 24px 20px; }
  .grz-hero__badge { font-size: 11px; padding: 6px 12px 6px 8px; }
  .grz-hero__actions { gap: 10px; }
  .grz-hero__btn { padding: 14px 22px; font-size: 13px; flex: 1 1 auto; }
  .grz-hero__features { grid-template-columns: 1fr 1fr; gap: 12px; }
  .grz-hero__feature { padding: 16px; gap: 12px; }
  .grz-hero__feature-icon { width: 52px; height: 52px; }
  .grz-hero__feature-text { font-size: 12.5px; }
  .grz-hero__video-hint { font-size: 10px; padding: 6px 10px; }
}
/* ============================================================
   /GRIZY HERO SECTION
   ============================================================ */

    .grz-about {
      position: relative;
      padding: 90px 24px 110px;
      background: #84973A;
      overflow: hidden;
    }

    .grz-about__inner {
      position: relative;
      z-index: 2;
      max-width: 1240px;
      margin: 0 auto;
    }

    .grz-about__header {
      text-align: center;
      margin-bottom: 56px;
    }

    .grz-about__title-wrap {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: clamp(18px, 3vw, 42px);
      flex-wrap: nowrap;
    }

    .grz-about__dot {
      width: clamp(26px, 3vw, 66px);
      height: clamp(26px, 3vw, 66px);
      border-radius: 50%;
      background: #6a2c0f;
      flex: 0 0 auto;
      margin-top: 8px;
    }

    .grz-about__title {
      margin: 0;
      color: #f3efe6;
      font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
      font-size: clamp(64px, 11vw, 196px);
      line-height: 0.88;
      letter-spacing: 0.01em;
      text-transform: uppercase;
      position: relative;
      text-align: center;
      text-shadow: 0 1px 0 rgba(255,255,255,0.12);
    }

    .grz-about__title-main,
    .grz-about__title-sub {
      display: block;
      position: relative;
    }

    .grz-about__title-sub {
      color: #5a220c;
      font-family: Arial, Helvetica, sans-serif;
      font-size: clamp(34px, 5vw, 88px);
      line-height: 0.95;
      font-weight: 500;
      letter-spacing: 0;
      text-align: left;
      max-width: 70%;
      margin-left: 0.12em;
      margin-top: 8px;
    }

    .grz-about__title-main::after {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.18;
      pointer-events: none;
      background-image:
        radial-gradient(circle at 12% 22%, rgba(90,34,12,0.95) 0 1px, transparent 1.8px),
        radial-gradient(circle at 34% 62%, rgba(90,34,12,0.8) 0 1.2px, transparent 2px),
        radial-gradient(circle at 56% 28%, rgba(90,34,12,0.9) 0 1.1px, transparent 2px),
        radial-gradient(circle at 74% 66%, rgba(90,34,12,0.85) 0 1.4px, transparent 2.2px),
        radial-gradient(circle at 88% 18%, rgba(90,34,12,0.9) 0 1px, transparent 1.8px),
        radial-gradient(circle at 22% 78%, rgba(90,34,12,0.85) 0 1.2px, transparent 2px),
        radial-gradient(circle at 66% 82%, rgba(90,34,12,0.85) 0 1.2px, transparent 2px);
      mix-blend-mode: multiply;
    }

    .grz-about__content {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
      gap: 34px;
      align-items: center;
      margin-top: 30px;
    }

    .grz-about__card {
      background: rgba(255,255,255,0.16);
      border: 1px solid rgba(255,255,255,0.16);
      border-radius: 30px;
      padding: 34px 32px;
      backdrop-filter: blur(10px);
      box-shadow: 0 20px 60px rgba(67,41,24,0.15);
    }

    .grz-about__lead {
      margin: 0 0 18px;
      color: #fffdf8;
      font-size: clamp(22px, 2vw, 34px);
      line-height: 1.18;
      font-weight: 500;
      text-transform: uppercase;
    }

    .grz-about__text {
      margin: 0;
      color: rgba(255,255,255,0.94);
      font-size: 18px;
      line-height: 1.75;
    }

    .grz-about__text + .grz-about__text {
      margin-top: 16px;
    }

    .grz-about__stats {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
      margin-top: 28px;
    }

    .grz-about__stat {
      background: rgba(67,41,24,0.14);
      border-radius: 20px;
      padding: 20px 18px;
    }

    .grz-about__stat strong,
    .grz-about__stat span {
      display: block;
    }

    .grz-about__stat strong {
      color: #fff;
      font-size: 28px;
      line-height: 1;
      font-weight: 500;
    }

    .grz-about__stat span {
      margin-top: 8px;
      color: rgba(255,255,255,0.88);
      font-size: 14px;
      line-height: 1.4;
      text-transform: uppercase;
    }

    .grz-about__visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 520px;
    }

    .grz-about__shape {
      position: absolute;
      inset: 18px 30px 18px 30px;
      border-radius: 50% 50% 48% 48% / 14% 14% 86% 86%;
      background: #48211A;
      box-shadow: 0 24px 60px rgba(67,41,24,0.22);
    }

    .grz-about__pack {
      position: relative;
      z-index: 2;
      width: min(100%, 340px);
      filter: drop-shadow(0 16px 40px rgba(0,0,0,0.28));
      border-radius: 18px;
    }

    .grz-about__tree-left,
    .grz-about__tree-right {
      position: absolute;
      bottom: -8px;
      width: 160px;
      opacity: 0.28;
      pointer-events: none;
      filter: saturate(0.75);
    }

    .grz-about__tree-left {
      left: -8px;
    }

    .grz-about__tree-right {
      right: -8px;
      transform: scaleX(-1);
    }

    @media (max-width: 991px) {
      .grz-about {
        padding: 72px 18px 84px;
      }

      .grz-about__content {
        grid-template-columns: 1fr;
      }

      .grz-about__visual {
        min-height: 420px;
      }

      .grz-about__title-sub {
        max-width: none;
        text-align: center;
        margin-left: 0;
      }
    }

    @media (max-width: 767px) {
      .grz-about__title-wrap {
        gap: 10px;
      }

      .grz-about__stats {
        grid-template-columns: 1fr;
      }

      .grz-about__card {
        padding: 26px 20px;
        border-radius: 24px;
      }

      .grz-about__visual {
        min-height: 340px;
      }

      .grz-about__shape {
        inset: 10px 12px;
      }

      .grz-about__tree-left,
      .grz-about__tree-right {
        width: 92px;
      }
    }
    .header-nav {
  color: white;
}
.header-nav a {
  color: white;
}


/* ============================================
   GRIZY — BRAND OVERRIDE DLA KOMPONENTÓW LEO THEME
   Sekcja dodana na końcu, żeby mieć najwyższą specyficzność
   ============================================ */

/* --- LINKI ogólne --- */
a {
  color: var(--grz-green);
  transition: color 0.2s ease;
}
a:hover,
a:focus {
  color: var(--grz-brown);
  text-decoration: none;
}

/* --- PRZYCISKI PODSTAWOWE --- */
.btn-primary,
.btn.btn-primary {
  background: var(--grz-green);
  border-color: var(--grz-green);
  color: #fff;
}
.btn-primary:hover,
.btn.btn-primary:hover,
.btn-primary:focus,
.btn.btn-primary:focus,
.btn-primary:active,
.btn.btn-primary:active {
  background: var(--grz-brown);
  border-color: var(--grz-brown);
  color: #fff;
}

/* Outline button */
.btn-outline-primary {
  color: var(--grz-green);
  border-color: var(--grz-green);
  background: transparent;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--grz-green);
  color: #fff;
}

/* --- PRZYCISK "DODAJ DO KOSZYKA" --- */
.add-to-cart,
button.add-to-cart,
.product-add-to-cart .add-to-cart,
.quick-view-product .add-to-cart,
.product-list-reviews-btn .add-to-cart {
  background: var(--grz-green);
  border-color: var(--grz-green);
  color: #fff;
}
.add-to-cart:hover,
button.add-to-cart:hover,
.product-add-to-cart .add-to-cart:hover {
  background: var(--grz-brown);
  border-color: var(--grz-brown);
  color: #fff;
}

/* --- CENY --- */
.product-price,
.price,
.current-price,
.product-prices .current-price .price {
  color: var(--grz-brown);
}
.regular-price {
  color: #999;
}

/* --- NAGŁÓWKI / TYTUŁY --- */
.page-title,
.h1, h1,
.h2, h2,
.h3, h3,
.h4, h4,
.title_block,
.product-title,
.product-name {
  color: var(--grz-brown);
}

/* --- BREADCRUMB --- */
.breadcrumb {
  background: transparent;
}
.breadcrumb a {
  color: var(--grz-green);
}
.breadcrumb a:hover {
  color: var(--grz-brown);
}
.breadcrumb-item.active,
.breadcrumb .active {
  color: var(--grz-brown);
}

/* --- MENU GŁÓWNE (top menu) --- */
.leo-megamenu .navbar-nav > li > a:hover,
.leo-megamenu .navbar-nav > li:hover > a,
.leo-megamenu .navbar-nav > li.active > a,
.menu-top .navbar-nav > li > a:hover,
header .top-menu .menu-top .navbar-nav > li > a:hover {
  color: var(--grz-green);
}

/* Hamburger menu / mobile */
.navbar-toggler:hover i,
.navbar-toggler:focus i {
  color: var(--grz-green);
}

/* --- KARTA PRODUKTU - HOVER --- */
.product-miniature:hover .product-title a,
.product-miniature:hover h3 a,
.product-miniature .product-title a:hover,
.js-product-miniature .product-title a:hover {
  color: var(--grz-green);
}

/* Ramka karty produktu na hover */
.product-miniature .thumbnail-container:hover,
.js-product-miniature .thumbnail-container:hover {
  box-shadow: 0 8px 28px rgba(132, 151, 58, 0.18);
}

/* --- BADGE "NOWY" / "PROMOCJA" na karcie produktu --- */
.product-flags .product-flag.new,
.product-flags .product-flag.online-only,
.product-flags .new {
  background: var(--grz-green);
  color: #fff;
}
.product-flags .product-flag.discount,
.product-flags .discount-percentage,
.product-flags .on-sale {
  background: var(--grz-brown);
  color: #fff;
}

/* --- LINKI W STOPCE --- */
.footer-container a,
.footer-container .links a {
  color: #fff;
}
.footer-container a:hover,
.footer-container .links a:hover {
  color: var(--grz-olive-pale);
}
.footer-container .h3,
.footer-container .h4,
.footer-container h3,
.footer-container h4 {
  color: #fff;
}

/* --- KOSZYK (mini-cart) --- */
.blockcart .cart-products-count,
.blockcart-header .cart-products-count {
  background: var(--grz-green);
  color: #fff;
}

/* --- INPUT / FORMULARZE --- */
.form-control:focus,
input:focus,
textarea:focus,
select:focus {
  border-color: var(--grz-green);
  box-shadow: 0 0 0 3px rgba(132, 151, 58, 0.15);
}

/* --- ALERTY (zachowujemy czerwony dla błędów, reszta stonowana) --- */
.alert-success {
  background: rgba(132, 151, 58, 0.12);
  border-color: rgba(132, 151, 58, 0.3);
  color: var(--grz-brown);
}

/* --- PAGINACJA --- */
.page-list .page-item.active .page-link,
.pagination .page-item.active .page-link,
.pagination .current a {
  background: var(--grz-green);
  border-color: var(--grz-green);
  color: #fff;
}
.page-list .page-item .page-link:hover,
.pagination .page-link:hover {
  background: var(--grz-green);
  border-color: var(--grz-green);
  color: #fff;
}

/* --- FILTRY KATEGORII (facets) --- */
.faceted-search .facet-title,
.faceted-search-controls a:hover,
.facet-label a:hover {
  color: var(--grz-brown);
}
.facet .facet-label a:hover,
.custom-checkbox input[type="checkbox"]:checked + span {
  color: var(--grz-green);
  border-color: var(--grz-green);
}

/* --- TABS --- */
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover,
.tabs .nav-tabs .nav-link.active {
  color: var(--grz-green);
  border-bottom-color: var(--grz-green);
}

/* --- WIDGETS: NEWSLETTER FORM --- */
.block_newsletter input[type="email"]:focus {
  border-color: var(--grz-green);
}
.block_newsletter button[type="submit"],
.block_newsletter .btn {
  background: var(--grz-green);
  color: #fff;
}
.block_newsletter button[type="submit"]:hover {
  background: var(--grz-brown);
}

/* --- TYPOGRAFIA pomocnicza --- */
strong,
b {
  color: inherit;
}
/* gdy jest tekst wyrózniony w kontencie */
.content-text strong,
.product-description strong {
  color: var(--grz-brown);
}

/* --- WIDGET "FEATURES" / trust icons na home --- */
.zoo8-trust-icon svg path,
.zoo8-trust-icon svg {
  color: var(--grz-green);
  fill: var(--grz-green);
}
.zoo8-trust-text strong {
  color: var(--grz-brown);
}

/* --- HEADER: logo + nawigacja spójne z marką --- */
.header-nav {
  background: var(--grz-brown);
}
.header-top {
  background: #fff;
}

/* --- SCROLLBAR (branding detail) --- */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #f5f5f5;
}
::-webkit-scrollbar-thumb {
  background: var(--grz-olive-pale);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--grz-green);
}

/* --- SELEKCJA TEKSTU --- */
::selection {
  background: var(--grz-green);
  color: #fff;
}
::-moz-selection {
  background: var(--grz-green);
  color: #fff;
}
/* === GRIZY: tytuł sekcji homepage z kropkami po bokach === */
/* Wyklucza stopkę od razu w selektorze - nic nie trzeba odkręcać */

:is(.ApRow .block[class*="Ap"], .block.ApHtml, .block.ApBlog):not(.footer-container *, .footer-container) > .title_block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  color: var(--grz-brown);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 500;
  margin-bottom: 24px;
}

:is(.ApRow .block[class*="Ap"], .block.ApHtml, .block.ApBlog):not(.footer-container *, .footer-container) > .title_block::before,
:is(.ApRow .block[class*="Ap"], .block.ApHtml, .block.ApBlog):not(.footer-container *, .footer-container) > .title_block::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: var(--grz-green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Mniejsze kropki na mobile */
@media (max-width: 576px) {
  :is(.ApRow .block[class*="Ap"], .block.ApHtml, .block.ApBlog):not(.footer-container *, .footer-container) > .title_block {
    gap: 16px;
  }
  :is(.ApRow .block[class*="Ap"], .block.ApHtml, .block.ApBlog):not(.footer-container *, .footer-container) > .title_block::before,
  :is(.ApRow .block[class*="Ap"], .block.ApHtml, .block.ApBlog):not(.footer-container *, .footer-container) > .title_block::after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background: var(--grz-green);
    border-radius: 50%;
    flex-shrink: 0;
  }
}/* ============================================
   SEKCJA O NAS — HOMEPAGE
   ============================================ */
.grz-about-home {
  padding: 30px 0;
  background: transparent;
}

.grz-about-home .container > .row {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(132, 151, 58, 0.2);
  border-radius: 10px;
  padding: 48px 36px;
  margin: 0;
}

.grz-about-home__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grz-green);
  margin-bottom: 18px;
}
.grz-about-home__kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--grz-green);
  border-radius: 2px;
}

.grz-about-home__title {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 500;
  color: var(--grz-brown);
  margin: 0 0 20px;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.01em;
}

.grz-about-home__lead {
  font-size: 16px;
  line-height: 1.75;
  color: #4a3a33;
  margin: 0 0 24px;
}

.grz-about-home__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.grz-about-home__features li {
  position: relative;
  padding: 6px 0 6px 32px;
  font-size: 15px;
  color: var(--grz-brown);
  font-weight: 500;
}
.grz-about-home__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--grz-green);
  border-radius: 50%;
}
.grz-about-home__features li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translate(0, -65%) rotate(45deg);
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
}

.grz-about-home__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.grz-about-home__media {
  position: relative;
  padding: 20px 0;
}
.grz-about-home__img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* Dekoracyjna plamka za obrazkiem (oliwkowa) */
.grz-about-home__media::before {
  content: "";
  position: absolute;
  inset: 10px -15px -15px 25px;
  background: var(--grz-olive-pale);
  border-radius: 10px;
  z-index: 0;
}
.grz-about-home__media .grz-about-home__img {
  position: relative;
  z-index: 1;
}

/* Responsywność O nas */
@media (max-width: 991px) {
  .grz-about-home { padding: 50px 0; }
  .grz-about-home .container > .row { padding: 32px 24px; }
  .grz-about-home__title { font-size: 28px; }
  .grz-about-home__text { margin-bottom: 40px; }
}
@media (max-width: 576px) {
  .grz-about-home__title { font-size: 24px; }
  .grz-about-home__cta { flex-direction: column; }
  .grz-about-home__cta .btn { width: 100%; }
}

/* ============================================
   SEKCJA: DWA CTA
   ============================================ */
.grz-cta-pair {
  padding: 40px 0 70px;
  background: transparent;
}

.grz-cta-pair__col {
  margin-bottom: 20px;
}

.grz-cta-box {
  position: relative;
  padding: 40px 36px;
  border-radius: 10px;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Wariant: Współpraca hurtowa — zielony */
.grz-cta-box--wholesale {
  background: var(--grz-green);
  color: #fff;
}
.grz-cta-box--wholesale::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

/* Wariant: Oferta — brązowy */
.grz-cta-box--offer {
  background: var(--grz-brown);
  color: #fff;
}
.grz-cta-box--offer::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: rgba(132, 151, 58, 0.18);
  border-radius: 50%;
}

.grz-cta-box__title {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 14px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  position: relative;
  z-index: 2;
}

.grz-cta-box__desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 24px;
  position: relative;
  z-index: 2;
}

/* Nadpisanie .btn.btn-primary WEWNĄTRZ kolorowych CTA */
.grz-cta-box--wholesale .btn.btn-primary {
  background: #fff;
  border-color: #fff;
  color: var(--grz-brown);
  position: relative;
  z-index: 2;
}
.grz-cta-box--wholesale .btn.btn-primary:hover {
  background: var(--grz-brown);
  border-color: var(--grz-brown);
  color: #fff;
}

.grz-cta-box--offer .btn.btn-primary {
  background: var(--grz-green);
  border-color: var(--grz-green);
  color: #fff;
  position: relative;
  z-index: 2;
}
.grz-cta-box--offer .btn.btn-primary:hover {
  background: #fff;
  border-color: #fff;
  color: var(--grz-brown);
}

@media (max-width: 576px) {
  .grz-cta-box { padding: 30px 24px; }
  .grz-cta-box__title { font-size: 20px; }
}
.grz-cat--with-subs {
  align-items: flex-start !important;
  text-align: left !important;
}

.grz-cat--with-subs .grz-cat__main {
  justify-content: flex-start !important;
  width: 100% !important;
  text-align: left !important;
}

.grz-cat--with-subs .grz-cat__main .grz-cat__name {
  text-align: left !important;
}

.grz-home-cats {
  padding: 60px 0;
}
 
.grz-home-cats__header {
  text-align: center;
  margin-bottom: 40px;
}
 
.grz-home-cats__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #84973A;
  margin-bottom: 12px;
}
 
.grz-home-cats__title {
  font-size: 32px;
  font-weight: 500;
  color: #48211A;
  margin: 0 0 12px 0;
  line-height: 1.2;
}
 
.grz-home-cats__lead {
  font-size: 16px;
  color: #7a5c52;
  max-width: 560px;
  margin: 0 auto !important;
  line-height: 1.5;
}
 
/* --- Grid 3×3 --- */
.grz-home-cats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto;
}
 
/* --- Pojedynczy kafel --- */
.grz-home-cat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-decoration: none;
  color: #48211A;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  border: 2px solid transparent;
  box-shadow: 0 2px 8px rgba(72, 33, 26, 0.05);
}
 
.grz-home-cat:hover,
.grz-home-cat:focus {
  background: rgba(255, 255, 255, 0.95);
  border-color: #84973A;
  text-decoration: none;
  color: #48211A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(72, 33, 26, 0.12);
}
 
.grz-home-cat__icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  transition: transform 0.25s;
}
 
.grz-home-cat:hover .grz-home-cat__icon {
  transform: scale(1.08) rotate(-5deg);
}
 
.grz-home-cat__name {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.2px;
}
 
/* ============================================================
   RESPONSIVE — tablet (3 kolumny, węższe)
   ============================================================ */
@media (max-width: 991px) {
  .grz-home-cats__title {
    font-size: 26px;
  }
  
  .grz-home-cat {
    padding: 16px 18px;
    gap: 12px;
  }
  
  .grz-home-cat__icon {
    width: 52px;
    height: 52px;
  }
  
  .grz-home-cat__name {
    font-size: 15px;
  }
}
 
/* ============================================================
   RESPONSIVE — mobile (2 kolumny)
   ============================================================ */
@media (max-width: 767px) {
  .grz-home-cats {
    padding: 40px 0;
  }
  
  .grz-home-cats__header {
    margin-bottom: 28px;
  }
  
  .grz-home-cats__title {
    font-size: 22px;
  }
  
  .grz-home-cats__lead {
    font-size: 14px;
  }
  
  .grz-home-cats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .grz-home-cat {
    padding: 12px 14px;
    gap: 10px;
  }
  
  .grz-home-cat__icon {
    width: 44px;
    height: 44px;
  }
  
  .grz-home-cat__name {
    font-size: 13px;
  }
}
 
/* Telefon — 1 kolumna */
@media (max-width: 420px) {
  .grz-home-cats__grid {
    grid-template-columns: 1fr;
  }
}
.grz-home-cats__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.grz-home-cats__title::before,
.grz-home-cats__title::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: var(--grz-green);
  border-radius: 50%;
  flex-shrink: 0;
}
/* ============================================================
   GRIZY — O NAS (własny namespace .grz-onas)
   ============================================================ */
.grz-onas {
  color: var(--grz-brown);
  line-height: 1.6;
  font-family: inherit;
}
.grz-onas * { box-sizing: border-box; }
 
/* ---------- Sekcja bazowa ---------- */
.grz-onas__section {
  padding: 90px 24px;
  position: relative;
  overflow: hidden;
}
 
/* ============================================================
   1. HERO — storytelling manifesto
   ============================================================ */
.grz-onas__hero {
  background: 
    radial-gradient(1200px 600px at 85% 10%, rgba(145, 153, 62, 0.12), transparent 60%),
    radial-gradient(900px 500px at 15% 35%, rgba(67, 41, 24, 0.06), transparent 60%),
    linear-gradient(180deg, var(--grz-cream) 0%, #ede5d3 100%);
  padding: 100px 24px 80px;
}
 
.grz-onas__hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
 
.grz-onas__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--grz-green);
  margin-bottom: 20px;
}
.grz-onas__eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--grz-green);
  display: inline-block;
}
 
.grz-onas__hero-title {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--grz-brown);
  margin: 0 0 28px 0;
}
.grz-onas__hero-title em {
  font-style: normal;
  color: var(--grz-green);
  position: relative;
}
.grz-onas__hero-title em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 12px;
  background: rgba(145, 153, 62, 0.22);
  z-index: -1;
  border-radius: 5px;
}
 
.grz-onas__hero-manifesto {
  font-size: 19px;
  line-height: 1.7;
  color: #5d4438;
  margin: 0 0 20px 0;
}
.grz-onas__hero-manifesto:last-of-type {
  margin-bottom: 0;
}
.grz-onas__hero-manifesto strong {
  color: var(--grz-brown);
  font-weight: 500;
}
 
.grz-onas__hero-video-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -20px rgba(67, 41, 24, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  font-family: inherit;
  outline: 6px solid var(--grz-cream);
  outline-offset: -6px;
}
.grz-onas__hero-video-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 70px -20px rgba(67, 41, 24, 0.45);
}
.grz-onas__hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}
.grz-onas__hero-video-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, transparent 40%, rgba(67, 41, 24, 0.5) 100%);
  pointer-events: none;
}
 
.grz-onas__hero-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}
.grz-onas__hero-play-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--grz-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s, background 0.3s;
  position: relative;
}
.grz-onas__hero-play-circle::before {
  content: "";
  position: absolute;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  animation: grzOnasPulse 2s ease-out infinite;
}
.grz-onas__hero-video-btn:hover .grz-onas__hero-play-circle {
  transform: scale(1.08);
  background: var(--grz-green);
  color: #fff;
}
.grz-onas__hero-play-circle svg {
  margin-left: 4px;
}
 
.grz-onas__hero-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: left;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.grz-onas__hero-caption::before {
  content: '—';
  margin-right: 8px;
  color: var(--grz-olive-pale);
}
 
/* Lightbox — fullscreen video */
.grz-onas__modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 6, 3, 0.92);
  backdrop-filter: blur(10px);
  z-index: 99999;
  animation: grzOnasModalIn 0.3s ease;
}
.grz-onas__modal.is-open { display: flex; }
.grz-onas__modal-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8);
}
.grz-onas__modal-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}
.grz-onas__modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(10px);
  z-index: 100000;
  font-family: inherit;
}
.grz-onas__modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}
 
@keyframes grzOnasPulse {
  0%   { transform: scale(1);   opacity: 0.9; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes grzOnasModalIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
 
/* ============================================================
   2. TIMELINE — historia w krokach
   ============================================================ */
.grz-onas__timeline-section {
  background: #faf8f2;
}
 
.grz-onas__section-header {
  max-width: 800px;
  margin: 0 auto 56px;
  text-align: center;
}
 
.grz-onas__h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--grz-brown);
  margin: 0 0 16px 0;
  letter-spacing: -0.3px;
}
 
.grz-onas__section-lead {
  font-size: 17px;
  color: #5d4438;
  line-height: 1.6;
  margin: 0;
}
 
.grz-onas__timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.grz-onas__timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: linear-gradient(180deg, var(--grz-green) 0%, rgba(132, 151, 58, 0.3) 100%);
  border-radius: 3px;
}
 
.grz-onas__milestone {
  position: relative;
  padding: 0 0 40px 72px;
}
.grz-onas__milestone:last-child {
  padding-bottom: 0;
}
.grz-onas__milestone::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 8px;
  width: 18px;
  height: 18px;
  background: var(--grz-green);
  border: 4px solid var(--grz-cream);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--grz-green);
  z-index: 2;
}
 
.grz-onas__milestone-year {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grz-green);
  background: rgba(132, 151, 58, 0.12);
  padding: 4px 12px;
  border-radius: 5px;
  margin-bottom: 12px;
}
 
.grz-onas__milestone-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--grz-brown);
  margin: 0 0 8px 0;
}
 
.grz-onas__milestone-text {
  font-size: 16px;
  line-height: 1.6;
  color: #5d4438;
  margin: 0;
}
 
/* ============================================================
   3. DLACZEGO GRIZY — 4 filary
   ============================================================ */
.grz-onas__pillars-section {
  background: var(--grz-brown);
  color: #fff;
  position: relative;
}
.grz-onas__pillars-section::before,
.grz-onas__pillars-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(132, 151, 58, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.grz-onas__pillars-section::before { top: -100px; left: -150px; }
.grz-onas__pillars-section::after  { bottom: -100px; right: -150px; }
 
.grz-onas__pillars-section .grz-onas__h2 { color: #fff; }
.grz-onas__pillars-section .grz-onas__section-lead { color: rgba(255,255,255,0.85); }
.grz-onas__pillars-section .grz-onas__eyebrow { color: var(--grz-olive-pale); }
.grz-onas__pillars-section .grz-onas__eyebrow::before { background: var(--grz-olive-pale); }
 
.grz-onas__pillars {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
 
.grz-onas__pillar {
  background: rgba(255, 255, 255, 0.08);
  padding: 32px 24px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.grz-onas__pillar:hover {
  transform: translateY(-4px);
  border-color: var(--grz-green);
  background: rgba(255, 255, 255, 0.12);
}
 
.grz-onas__pillar-num {
  font-size: 14px;
  font-weight: 500;
  color: var(--grz-green);
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-feature-settings: "tnum";
}
 
.grz-onas__pillar-title {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 14px 0;
  line-height: 1.25;
}
 
.grz-onas__pillar-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
 
/* ============================================================
   4. GALERIA produkcji
   ============================================================ */
.grz-onas__gallery-section {
  background: var(--grz-brown);
  color: #fff;
}
.grz-onas__gallery-section .grz-onas__h2 { color: #fff; }
.grz-onas__gallery-section .grz-onas__section-lead { color: rgba(255,255,255,0.85); }
.grz-onas__gallery-section .grz-onas__eyebrow { color: var(--grz-olive-pale); }
.grz-onas__gallery-section .grz-onas__eyebrow::before { background: var(--grz-olive-pale); }
 
.grz-onas__gallery {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
 
.grz-onas__gallery-item {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}
.grz-onas__gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
}
.grz-onas__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.grz-onas__gallery-item:hover img {
  transform: scale(1.08);
}
.grz-onas__gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}
.grz-onas__gallery-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}
 
/* ============================================================
   5. DANE FIRMOWE — karta z faktami
   ============================================================ */
.grz-onas__data-section {
  background: #faf8f2;
}
 
.grz-onas__data {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 5px;
  padding: 40px 44px;
  box-shadow: 0 20px 50px -20px rgba(67, 41, 24, 0.15);
  border: 1px solid rgba(132, 151, 58, 0.15);
}
 
.grz-onas__data-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid rgba(132, 151, 58, 0.15);
}
.grz-onas__data-header h2 {
  font-size: 26px;
  font-weight: 500;
  color: var(--grz-brown);
  margin: 0 0 4px 0;
}
.grz-onas__data-header p {
  font-size: 14px;
  color: #7a5c52;
  margin: 0;
}
 
.grz-onas__data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}
 
.grz-onas__data-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(132, 151, 58, 0.1);
}
.grz-onas__data-row:last-child,
.grz-onas__data-row:nth-last-child(2) {
  border-bottom: 0;
}
 
.grz-onas__data-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grz-green);
}
 
.grz-onas__data-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--grz-brown);
}
.grz-onas__data-value a {
  color: var(--grz-brown);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.grz-onas__data-value a:hover {
  border-bottom-color: var(--grz-green);
}
 
/* ============================================================
   6. CTA FINAL
   ============================================================ */
.grz-onas__cta-section {
  background: linear-gradient(135deg, var(--grz-green) 0%, var(--grz-green-dark) 100%);
  color: #fff;
  text-align: center;
}
 
.grz-onas__cta-inner {
  max-width: 700px;
  margin: 0 auto;
}
 
.grz-onas__cta-section .grz-onas__h2 {
  color: #fff;
  margin-bottom: 16px;
}
 
.grz-onas__cta-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 32px 0;
  line-height: 1.6;
}
 
.grz-onas__cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
 
.grz-onas__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}
 
.grz-onas__btn--white {
  background: #fff;
  color: var(--grz-green);
}
.grz-onas__btn--white:hover {
  background: var(--grz-cream);
  color: var(--grz-green-dark);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.grz-onas__btn--ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.grz-onas__btn--ghost:hover {
  background: #fff;
  color: var(--grz-green);
  text-decoration: none;
}
 
.grz-onas__btn svg { transition: transform 0.2s; }
.grz-onas__btn:hover svg { transform: translateX(3px); }
 
/* ============================================================
   RESPONSYWNOŚĆ
   ============================================================ */
@media (max-width: 991px) {
  .grz-onas__section { padding: 70px 20px; }
  .grz-onas__hero { padding: 70px 20px 60px; }
  
  .grz-onas__hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .grz-onas__hero-video-btn {
    max-width: 500px;
    margin: 0 auto;
    aspect-ratio: 4 / 3;
  }
  
  .grz-onas__pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grz-onas__gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grz-onas__data-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .grz-onas__data-row {
    border-bottom: 1px solid rgba(132, 151, 58, 0.1) !important;
  }
  .grz-onas__data-row:last-child {
    border-bottom: 0 !important;
  }
}
 
@media (max-width: 767px) {
  .grz-onas__section { padding: 55px 18px; }
  .grz-onas__hero { padding: 55px 18px 45px; }
  
  .grz-onas__timeline::before { left: 14px; }
  .grz-onas__milestone {
    padding-left: 50px;
    padding-bottom: 32px;
  }
  .grz-onas__milestone::before {
    left: 6px;
    width: 14px;
    height: 14px;
    border-width: 3px;
  }
  
  .grz-onas__pillars {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .grz-onas__gallery {
    grid-template-columns: 1fr;
  }
  .grz-onas__gallery-item {
    aspect-ratio: 4 / 3;
  }
  
  .grz-onas__data {
    padding: 28px 20px;
  }
  
  .grz-onas__cta-buttons {
    flex-direction: column;
  }
  .grz-onas__btn {
    width: 100%;
    justify-content: center;
  }
  .grz-onas__hero-play-circle,
  .grz-onas__hero-play-circle::before {
    width: 64px;
    height: 64px;
  }
}
/* ============================================================================
   GRIZY — CSS dla podstrony WSPÓŁPRACA
   Namespace: .grz-wsp__*
   Nie koliduje z istniejącym custom.css ani z .grz-onas
   ============================================================================ */

.grz-wsp {
  --grz-olive: #84973A;
  --grz-olive-dark: #6d7e2f;
  --grz-brown: #48211A;
  --grz-brown-light: #5d2e24;
  --grz-cream: #F5F0E4;
  --grz-cream-light: #faf8f2;
  color: var(--grz-brown);
  line-height: 1.6;
  font-family: inherit;
}

.grz-wsp * {
  box-sizing: border-box;
}

/* --- Wspólna typografia --- */
.grz-wsp__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--grz-olive);
  margin-bottom: 16px;
}

.grz-wsp__eyebrow--light {
  color: #d9dfb8;
}

.grz-wsp__h2 {
  font-size: 34px;
  font-weight: 500;
  color: var(--grz-brown);
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.grz-wsp__h2--light {
  color: #fff;
}

.grz-wsp__lead {
  font-size: 17px;
  color: #5d4438;
  margin: 0 0 28px 0;
  line-height: 1.6;
}

/* --- INTRO --- */
.grz-wsp__intro {
  background: linear-gradient(135deg, var(--grz-cream) 0%, #ede5d3 100%);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.grz-wsp__intro::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(132, 151, 58, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.grz-wsp__intro-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.grz-wsp__intro-title {
  font-size: 54px;
  font-weight: 500;
  color: var(--grz-brown);
  line-height: 1.1;
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

.grz-wsp__intro-title br + span,
.grz-wsp__intro-title span {
  color: var(--grz-olive);
}

.grz-wsp__intro-lead {
  font-size: 18px;
  color: #5d4438;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.grz-wsp__intro-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.grz-wsp__intro-stats > div {
  text-align: center;
}

.grz-wsp__stat-num {
  display: block;
  font-size: 48px;
  font-weight: 500;
  color: var(--grz-olive);
  line-height: 1;
}

.grz-wsp__stat-lbl {
  display: block;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grz-brown);
  margin-top: 8px;
}

/* --- SEKCJE (white / private) --- */
.grz-wsp__section {
  padding: 80px 24px;
}

.grz-wsp__section--white {
  background: var(--grz-cream-light);
}

.grz-wsp__section--private {
  background: linear-gradient(135deg, var(--grz-cream) 0%, #e8decd 100%);
}

.grz-wsp__row {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.grz-wsp__row--reverse .grz-wsp__text {
  order: 2;
}

.grz-wsp__row--reverse .grz-wsp__image {
  order: 1;
}

.grz-wsp__text {
  min-width: 0;
}

/* --- Tag --- */
.grz-wsp__tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--grz-olive);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.grz-wsp__tag--alt {
  background: var(--grz-brown);
}

/* --- Benefits list --- */
.grz-wsp__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.grz-wsp__benefits li {
  position: relative;
  padding: 14px 0 14px 36px;
  border-bottom: 1px solid rgba(72, 33, 26, 0.1);
  font-size: 15px;
  color: #5d4438;
  line-height: 1.5;
}

.grz-wsp__benefits li:last-child {
  border-bottom: 0;
}

.grz-wsp__benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 17px;
  width: 22px;
  height: 22px;
  background: var(--grz-olive);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

.grz-wsp__benefits li strong {
  color: var(--grz-brown);
  font-weight: 500;
}

/* --- CTA --- */
.grz-wsp__cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.grz-wsp__cta-group--center {
  justify-content: center;
}

.grz-wsp__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
}

.grz-wsp__cta--primary {
  background: var(--grz-olive);
  color: #fff;
}

.grz-wsp__cta--primary:hover {
  background: var(--grz-olive-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(132, 151, 58, 0.35);
}

.grz-wsp__cta--secondary {
  background: var(--grz-brown);
  color: #fff;
}

.grz-wsp__cta--secondary:hover {
  background: var(--grz-brown-light);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(72, 33, 26, 0.35);
}

.grz-wsp__cta--ghost {
  background: transparent;
  color: var(--grz-brown);
  border-color: var(--grz-brown);
}

.grz-wsp__cta--ghost:hover {
  background: var(--grz-brown);
  color: #fff;
  text-decoration: none;
}

.grz-wsp__cta--ghost-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.grz-wsp__cta--ghost-light:hover {
  background: #fff;
  color: var(--grz-brown);
  text-decoration: none;
}

/* --- Image + badge --- */
.grz-wsp__image {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(72, 33, 26, 0.15);
}

.grz-wsp__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.grz-wsp__image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--grz-olive);
  color: #fff;
  padding: 12px 18px;
  border-radius: 5px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.grz-wsp__image-badge--alt {
  background: var(--grz-brown);
}

.grz-wsp__image-badge span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.8;
}

.grz-wsp__image-badge strong {
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin-top: 2px;
}

/* --- STORY (cytat klienta) --- */
.grz-wsp__story {
  background: var(--grz-brown);
  color: #fff;
  padding: 70px 24px;
  position: relative;
  overflow: hidden;
}

.grz-wsp__story::before,
.grz-wsp__story::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(132, 151, 58, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.grz-wsp__story::before {
  top: -100px;
  left: -100px;
}

.grz-wsp__story::after {
  bottom: -100px;
  right: -100px;
}

.grz-wsp__story-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.grz-wsp__story-quote {
  margin-bottom: 24px;
  opacity: 0.9;
}

.grz-wsp__story-quote-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 28px 0;
  font-style: italic;
  color: #fff;
}

.grz-wsp__story-author {
  display: block;
}

.grz-wsp__story-author strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--grz-olive);
  margin-bottom: 4px;
}

.grz-wsp__story-author span {
  display: block;
  font-size: 13px;
  opacity: 0.7;
}

/* --- PROCES (4 kroki) --- */
.grz-wsp__process {
  background: var(--grz-brown);
  color: #fff;
  padding: 80px 24px;
  border-top: 2px solid var(--grz-brown-light);
}

.grz-wsp__process-header {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.grz-wsp__steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grz-wsp__step {
  background: var(--grz-brown-light);
  border-radius: 5px;
  padding: 28px 22px;
  position: relative;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}

.grz-wsp__step:hover {
  border-color: var(--grz-olive);
  transform: translateY(-4px);
}

.grz-wsp__step-num {
  font-size: 36px;
  font-weight: 500;
  color: var(--grz-olive);
  line-height: 1;
  margin-bottom: 16px;
}

.grz-wsp__step-title {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 10px 0;
}

.grz-wsp__step p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.5;
}

/* --- FINAL CTA --- */
.grz-wsp__final {
  background: linear-gradient(135deg, var(--grz-olive) 0%, var(--grz-olive-dark) 100%);
  color: #fff;
  padding: 70px 24px;
  text-align: center;
}

.grz-wsp__final-inner {
  max-width: 700px;
  margin: 0 auto;
}

.grz-wsp__final .grz-wsp__h2 {
  color: #fff;
  margin-bottom: 16px;
}

.grz-wsp__final p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 32px 0;
  line-height: 1.6;
}

.grz-wsp__final .grz-wsp__cta--primary {
  background: #fff;
  color: var(--grz-olive);
}

.grz-wsp__final .grz-wsp__cta--primary:hover {
  background: var(--grz-cream);
  color: var(--grz-olive-dark);
}

/* --- Responsywność Współpraca --- */
@media (max-width: 991px) {
  .grz-wsp__h2 {
    font-size: 28px;
  }
  .grz-wsp__intro-title {
    font-size: 42px;
  }
  .grz-wsp__row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .grz-wsp__row--reverse .grz-wsp__text {
    order: 1;
  }
  .grz-wsp__row--reverse .grz-wsp__image {
    order: 2;
  }
  .grz-wsp__steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .grz-wsp__story-quote-text {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .grz-wsp__intro,
  .grz-wsp__section,
  .grz-wsp__process,
  .grz-wsp__final,
  .grz-wsp__story {
    padding: 50px 20px;
  }
  .grz-wsp__intro-title {
    font-size: 32px;
  }
  .grz-wsp__intro-lead {
    font-size: 16px;
  }
  .grz-wsp__intro-stats {
    gap: 24px;
  }
  .grz-wsp__stat-num {
    font-size: 36px;
  }
  .grz-wsp__h2 {
    font-size: 24px;
  }
  .grz-wsp__lead {
    font-size: 15px;
  }
  .grz-wsp__benefits li {
    font-size: 14px;
    padding-left: 32px;
  }
  .grz-wsp__benefits li::before {
    width: 18px;
    height: 18px;
    top: 16px;
    background-size: 11px;
  }
  .grz-wsp__cta {
    padding: 12px 20px;
    font-size: 14px;
  }
  .grz-wsp__cta-group {
    flex-direction: column;
  }
  .grz-wsp__cta-group .grz-wsp__cta {
    width: 100%;
    justify-content: center;
  }
  .grz-wsp__steps {
    grid-template-columns: 1fr;
  }
  .grz-wsp__story-quote-text {
    font-size: 18px;
  }
}
.grz-guide {
  color: var(--grz-brown);
  line-height: 1.7;
  font-family: inherit;
}
.grz-guide * { box-sizing: border-box; }
 
.grz-guide__section {
  padding: 60px 0;
}
.grz-guide__section + .grz-guide__section {
  border-top: 1px solid rgba(132, 151, 58, 0.15);
}
 
.grz-guide__header {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}
.grz-guide__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--grz-green);
  margin-bottom: 14px;
}
.grz-guide__eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--grz-green);
  display: inline-block;
}
.grz-guide__h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--grz-brown);
  margin: 0 0 16px 0;
  letter-spacing: -0.3px;
}
.grz-guide__h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--grz-brown);
  margin: 0 0 14px 0;
}
.grz-guide__h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--grz-brown);
  margin: 28px 0 10px 0;
}
.grz-guide__lead {
  font-size: 17px;
  color: #5d4438;
  line-height: 1.65;
  margin: 0;
}
 
/* --- HERO --- */
.grz-guide__hero {
  background: linear-gradient(135deg, var(--grz-cream) 0%, #ede5d3 100%);
  padding: 70px 24px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.grz-guide__hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(132, 151, 58, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.grz-guide__hero > * { position: relative; z-index: 1; }
.grz-guide__hero .grz-guide__h1 span { color: var(--grz-green); }
.grz-guide__hero .grz-guide__eyebrow { justify-content: center; }
 
/* --- Spis treści --- */
.grz-guide__toc {
  max-width: 720px;
  margin: 32px auto 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(132, 151, 58, 0.18);
  border-radius: 10px;
  padding: 24px 32px;
  text-align: left;
}
.grz-guide__toc-title {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grz-green);
  margin: 0 0 12px 0;
}
.grz-guide__toc ol {
  columns: 2;
  column-gap: 32px;
  padding-left: 18px;
  margin: 0;
}
.grz-guide__toc li {
  margin-bottom: 6px;
  break-inside: avoid;
  color: var(--grz-brown);
}
.grz-guide__toc a {
  color: var(--grz-brown);
  text-decoration: none;
  transition: color 0.2s;
}
.grz-guide__toc a:hover {
  color: var(--grz-green);
  text-decoration: underline;
}
 
/* --- Content --- */
.grz-guide__content {
  max-width: 900px;
  margin: 0 auto;
}
.grz-guide__content p {
  font-size: 16px;
  line-height: 1.75;
  color: #3d2a20;
  margin: 0 0 18px 0;
}
.grz-guide__content strong {
  color: var(--grz-brown);
  font-weight: 500;
}
 
/* --- Korzyści (lista z checkmarkami) --- */
.grz-guide__benefits {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
.grz-guide__benefits li {
  position: relative;
  padding: 8px 0 8px 32px;
  font-size: 15px;
  line-height: 1.5;
  color: #3d2a20;
}
.grz-guide__benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  background: var(--grz-green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.grz-guide__benefits li strong { color: var(--grz-brown); }
 
/* --- Info box --- */
.grz-guide__info {
  padding: 20px 24px;
  border-radius: 10px;
  margin: 24px 0;
  border-left: 4px solid var(--grz-green);
  background: var(--grz-bg-soft);
}
.grz-guide__info--warning {
  border-left-color: #d4580a;
  background: #fff3e6;
}
.grz-guide__info-title {
  font-weight: 500;
  color: var(--grz-brown);
  margin-bottom: 6px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.grz-guide__info p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #3d2a20;
}
 
/* --- 3 kolumny twardości --- */
.grz-guide__hardness {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0;
}
.grz-guide__hard-card {
  background: #faf8f2;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 24px 22px;
  transition: border-color 0.2s, transform 0.2s;
}
.grz-guide__hard-card:hover {
  border-color: var(--grz-green);
  transform: translateY(-2px);
}
.grz-guide__hard-card--soft   { border-top: 4px solid var(--grz-green-light); }
.grz-guide__hard-card--medium { border-top: 4px solid var(--grz-green); }
.grz-guide__hard-card--hard   { border-top: 4px solid var(--grz-brown); }
 
.grz-guide__hard-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grz-green);
  margin-bottom: 10px;
}
.grz-guide__hard-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--grz-brown);
  margin: 0 0 8px 0;
}
.grz-guide__hard-time {
  font-size: 13px;
  color: #7a5c52;
  margin: 0 0 14px 0;
  font-style: italic;
}
.grz-guide__hard-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #3d2a20;
  margin: 0 0 16px 0;
}
.grz-guide__hard-examples {
  font-size: 13px;
  color: #5d4438;
  padding-top: 14px;
  border-top: 1px solid rgba(132, 151, 58, 0.2);
  line-height: 1.5;
}
.grz-guide__hard-examples strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grz-green);
  margin-bottom: 6px;
}
 
/* --- Kafelki białka --- */
.grz-guide__proteins {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 28px 0;
}
.grz-guide__protein-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 22px 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.grz-guide__protein-card:hover {
  border-color: var(--grz-green);
  transform: translateY(-2px);
}
.grz-guide__protein-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.grz-guide__protein-label--common {
  background: rgba(132, 151, 58, 0.12);
  color: var(--grz-green-dark);
}
.grz-guide__protein-label--rare {
  background: var(--grz-olive-pale);
  color: var(--grz-brown);
}
.grz-guide__protein-label--exotic {
  background: var(--grz-brown);
  color: #fff;
}
.grz-guide__protein-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--grz-brown);
  margin: 0 0 6px 0;
}
.grz-guide__protein-desc {
  font-size: 13px;
  line-height: 1.5;
  color: #5d4438;
  margin: 0 0 14px 0;
}
.grz-guide__protein-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(132, 151, 58, 0.2);
}
.grz-guide__protein-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid rgba(132, 151, 58, 0.25);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--grz-brown);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.grz-guide__protein-links a img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.grz-guide__protein-links a:hover {
  background: var(--grz-cream);
  border-color: var(--grz-green);
  text-decoration: none;
  color: var(--grz-brown);
}
 
/* --- Kafelki "dla kogo" --- */
.grz-guide__audience {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0;
}
.grz-guide__audience-card {
  background: #faf8f2;
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.grz-guide__audience-card:hover {
  border-color: var(--grz-green);
  transform: translateY(-2px);
}
.grz-guide__audience-emoji {
  font-size: 32px;
  margin-bottom: 8px;
  display: block;
}
.grz-guide__audience-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--grz-brown);
  margin: 0 0 6px 0;
}
.grz-guide__audience-desc {
  font-size: 12px;
  line-height: 1.45;
  color: #5d4438;
  margin: 0;
}
 
/* --- FAQ --- */
.grz-guide__faq {
  max-width: 820px;
  margin: 0 auto;
}
.grz-guide__faq details {
  background: #faf8f2;
  border: 1px solid rgba(132, 151, 58, 0.2);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.grz-guide__faq details[open] { border-color: var(--grz-green); }
.grz-guide__faq summary {
  padding: 18px 56px 18px 22px;
  cursor: pointer;
  font-weight: 500;
  color: var(--grz-brown);
  font-size: 16px;
  position: relative;
  list-style: none;
  user-select: none;
}
.grz-guide__faq summary::-webkit-details-marker { display: none; }
.grz-guide__faq summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--grz-green);
  font-weight: 300;
  line-height: 1;
}
.grz-guide__faq details[open] summary::after { content: '−'; }
.grz-guide__faq details[open] summary {
  background: rgba(132, 151, 58, 0.08);
}
.grz-guide__faq-answer {
  padding: 0 22px 20px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: #3d2a20;
}
.grz-guide__faq-answer p { margin: 0 0 10px 0; }
.grz-guide__faq-answer p:last-child { margin-bottom: 0; }
.grz-guide__faq-answer a {
  color: var(--grz-green);
  font-weight: 500;
}
 
/* --- Final CTA --- */
.grz-guide__final {
  background: linear-gradient(135deg, var(--grz-green) 0%, var(--grz-green-dark) 100%);
  color: #fff;
  padding: 50px 32px;
  border-radius: 10px;
  text-align: center;
  margin-top: 40px;
}
.grz-guide__final h2 {
  color: #fff;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  margin: 0 0 12px 0;
}
.grz-guide__final p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 24px 0;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.grz-guide__final-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.grz-guide__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s, background 0.2s;
  border: 2px solid transparent;
}
.grz-guide__btn--white {
  background: #fff;
  color: var(--grz-green);
}
.grz-guide__btn--white:hover {
  background: var(--grz-cream);
  text-decoration: none;
  color: var(--grz-green-dark);
  transform: translateY(-2px);
}
.grz-guide__btn--ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.grz-guide__btn--ghost:hover {
  background: #fff;
  color: var(--grz-green);
  text-decoration: none;
}
 
/* --- Disclaimer --- */
.grz-guide__disclaimer {
  max-width: 820px;
  margin: 32px auto 0;
  padding: 16px 20px;
  background: rgba(132, 151, 58, 0.06);
  border-left: 3px solid var(--grz-green);
  border-radius: 5px;
  font-size: 13px;
  line-height: 1.55;
  color: #5d4438;
  font-style: italic;
}
.grz-guide__disclaimer strong {
  color: var(--grz-brown);
  font-style: normal;
}
 
/* --- Responsywność --- */
@media (max-width: 991px) {
  .grz-guide__hardness,
  .grz-guide__proteins {
    grid-template-columns: 1fr;
  }
  .grz-guide__audience {
    grid-template-columns: repeat(2, 1fr);
  }
  .grz-guide__benefits {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .grz-guide__section { padding: 40px 0; }
  .grz-guide__hero { padding: 44px 20px; }
  .grz-guide__toc { padding: 18px 22px; }
  .grz-guide__toc ol { columns: 1; }
  .grz-guide__final { padding: 36px 22px; }
  .grz-guide__final-buttons { flex-direction: column; }
  .grz-guide__btn { width: 100%; justify-content: center; }
}
/* --- Ikonki w podkategoriach megamenu --- */
/* rozmiar ikony ustawia --grz-icon-size na końcu pliku */
.grz-cat__sub-icon {
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.grz-cat__subs li a:hover {
  background: rgba(132, 151, 58, 0.10);
  color: #84973A;
}

.grz-cat__subs li a:hover .grz-cat__sub-icon {
  opacity: 1;
}
/* --- Kafel home z podkategoriami --- */
.grz-home-cat--with-subs {
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
}

.grz-home-cat--with-subs .grz-home-cat__main {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #48211A;
}

.grz-home-cat--with-subs:hover .grz-home-cat__icon {
  transform: scale(1.08) rotate(-5deg);
}

.grz-home-cat__subs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.grz-home-cat__subs li {
  list-style: none;
}

.grz-home-cat__subs a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #7a5c52;
  text-decoration: none;
  transition: color 0.2s;
}

.grz-home-cat__subs a:hover,
.grz-home-cat__subs a:focus {
  color: #84973A;
  text-decoration: none;
}

.grz-home-cat__sub-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}

.grz-home-cat__subs a:hover .grz-home-cat__sub-icon {
  opacity: 1;
  transform: scale(1.08) rotate(-5deg);
}

.grz-wsp__process{background:linear-gradient(135deg,rgba(72,33,26,0.92) 0%,rgba(47,21,16,0.82) 100%),url('https://grizzy.domlili.pl/themes/at_autozpro/assets/img/modules/appagebuilder/images/dofoferta2.png') center/cover no-repeat;background-color:var(--grz-brown);color:#fff;padding:80px 24px;border-top:2px solid var(--grz-brown-light);}
 
/* --- START: nagłówek + 2 boksy zamawiania --- */
.grz-wsp__order{background:linear-gradient(135deg,var(--grz-cream) 0%,#ede5d3 100%);padding:72px 24px 80px;position:relative;overflow:hidden;}
.grz-wsp__order::before{content:'';position:absolute;top:-80px;right:-80px;width:400px;height:400px;background:radial-gradient(circle,rgba(132,151,58,0.10) 0%,transparent 70%);pointer-events:none;}
.grz-wsp__order-header,.grz-wsp__formats-header{max-width:820px;margin:0 auto 40px;text-align:center;position:relative;z-index:1;}
.grz-wsp__note{display:inline-flex;align-items:center;gap:8px;background:rgba(132,151,58,0.14);color:var(--grz-brown);font-size:13px;font-weight:500;line-height:1.4;padding:9px 18px;border-radius:30px;margin-top:6px;}
.grz-wsp__note svg{width:16px;height:16px;stroke:var(--grz-olive);fill:none;stroke-width:2;flex-shrink:0;}
.grz-wsp__order-grid{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:24px;position:relative;z-index:1;}
.grz-wsp__order-card{position:relative;display:flex;flex-direction:column;padding:40px 36px;border-radius:5px;color:#fff;overflow:hidden;min-height:300px;}
.grz-wsp__order-card--online{background:var(--grz-olive);}
.grz-wsp__order-card--rep{background:var(--grz-brown);}
.grz-wsp__order-card::before{content:'';position:absolute;top:-40px;right:-40px;width:180px;height:180px;background:rgba(255,255,255,0.08);border-radius:50%;}
.grz-wsp__order-icon{width:56px;height:56px;border-radius:14px;background:rgba(255,255,255,0.15);display:flex;align-items:center;justify-content:center;margin-bottom:22px;position:relative;z-index:2;}
.grz-wsp__order-icon svg{width:28px;height:28px;stroke:#fff;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.grz-wsp__order-title{font-size:26px;font-weight:500;margin:0 0 14px;color:#fff;position:relative;z-index:2;}
.grz-wsp__order-text{font-size:15px;line-height:1.65;color:rgba(255,255,255,0.92);margin:0 0 28px;position:relative;z-index:2;flex:1;}
.grz-wsp__order-card .grz-wsp__cta{align-self:flex-start;position:relative;z-index:2;}
.grz-wsp__order-card--online .grz-wsp__cta{background:#fff;color:var(--grz-olive);}
.grz-wsp__order-card--online .grz-wsp__cta:hover{background:var(--grz-cream);color:var(--grz-olive-dark);transform:translateY(-2px);}
.grz-wsp__order-card--rep .grz-wsp__cta{background:var(--grz-olive);color:#fff;}
.grz-wsp__order-card--rep .grz-wsp__cta:hover{background:var(--grz-olive-dark);color:#fff;transform:translateY(-2px);}
 
/* --- 3 FORMATY ze zdjęciem (foto nad tytułem, 5px radius) --- */
.grz-wsp__formats{padding:72px 24px 80px;}
.grz-wsp__formats-grid{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.grz-wsp__format-card{background:#fff;border:2px solid rgba(72,33,26,0.08);border-top:4px solid var(--grz-olive);border-radius:5px;overflow:hidden;transition:transform 0.2s,box-shadow 0.2s;}
.grz-wsp__format-card:hover{transform:translateY(-4px);box-shadow:0 12px 30px rgba(72,33,26,0.1);}
.grz-wsp__format-card--brand{border-top-color:var(--grz-brown);}
.grz-wsp__format-img{position:relative;margin:14px 14px 0;border-radius:5px;aspect-ratio:4/3;background:#efe7d6;overflow:hidden;}
.grz-wsp__format-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 0.4s ease;}
.grz-wsp__format-card:hover .grz-wsp__format-img img{transform:scale(1.04);}
.grz-wsp__format-body{padding:18px 28px 30px;}
.grz-wsp__format-title{font-size:20px;font-weight:500;color:var(--grz-brown);margin:0 0 4px;}
.grz-wsp__format-sub{font-size:12px;text-transform:uppercase;letter-spacing:1px;color:var(--grz-olive);margin:0 0 14px;}
.grz-wsp__format-text{font-size:14px;line-height:1.6;color:#5d4438;margin:0;}
 
/* --- responsywność (steps/h2 masz już w swoich @media, tu tylko nowe) --- */
@media (max-width:991px){
  .grz-wsp__order-grid,.grz-wsp__formats-grid{grid-template-columns:1fr;}
  .grz-wsp__order,.grz-wsp__formats{padding:56px 20px;}
}
@media (max-width:767px){
  .grz-wsp__order-card{padding:30px 24px;min-height:auto;}
  .grz-wsp__order-title{font-size:22px;}
}
/* Kontakt — handlowcy (2 kol.) + flagi językowe */
.grz-cats--2{grid-template-columns:repeat(2,1fr);max-width:680px;margin-left:auto;margin-right:auto;}
.grz-flags{display:inline-flex;gap:8px;margin-top:14px;}
.grz-flags img{width:26px;height:auto;border-radius:3px;box-shadow:0 1px 4px rgba(0,0,0,.18);}
@media (max-width:767px){.grz-cats--2{grid-template-columns:1fr;}}
.category-default a{
  display:inline-block; padding:2px 10px; border-radius:999px;
  text-decoration:none; background:#e8e2d5; color:#fff;
}
.category-default a[title="Kurczak"]     {background:#f7e04a}
.category-default a[title="Indyk"]       {background:#f28c28}
.category-default a[title="Kaczka"]      {background:#1f4d33; color:#fff}
.category-default a[title="Gęś"]         {background:#e8563f; color:#fff}
.category-default a[title="Perliczka"]   {background:#f2d541}
.category-default a[title="Dzik"]        {background:#8b5a2b; color:#fff}
.category-default a[title="Jeleń"]       {background:#6b4a2f; color:#fff}
.category-default a[title="Sarna"]       {background:#c89a6b}
.category-default a[title="Wieprzowina"] {background:#ef4a8b; color:#fff}
.category-default a[title="Wołowina"]    {background:#e03127; color:#fff}
.category-default a[title="Królik"]      {background:#7ec8e3}
.category-default a[title="Konina"]      {background:#9aa0a6; color:#fff}
.category-default a[title="Baranina"]    {background:#2eaa5a; color:#fff}
.category-default a[title="Ryba"]        {background:#2196d6; color:#fff}
.category-default a[title="Wielbłąd"]    {background:#8e44ad; color:#fff}
/* ============================================
   GRIZY — FORMY PRODUKTU (pasek nad kategoriami)
   ============================================ */
.grz-forms {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(72, 33, 26, 0.10);
}

.grz-forms__label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--grz-green);
  flex-shrink: 0;
}

.grz-forms__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
}

.grz-form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #faf8f2;
  border: 2px solid transparent;
  text-decoration: none;
  color: var(--grz-brown);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.grz-form:hover,
.grz-form:focus {
  background: var(--grz-cream);
  border-color: var(--grz-green);
  color: var(--grz-brown);
  text-decoration: none;
  transform: translateY(-2px);
}

.grz-form__icon {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.grz-form:hover .grz-form__icon {
  transform: scale(1.08) rotate(-5deg);
}

.grz-form__name {
  font-size: 14px;
  font-weight: 500;
  white-space: normal;
}

/* ============================================
   GRIZY — ujednolicenie rozmiaru ikon w menu
   ============================================ */
.grz-cats {
  --grz-icon-size: 46px;
}

.grz-cat__icon,
.grz-cat__sub-icon {
  width: var(--grz-icon-size) !important;
  height: var(--grz-icon-size) !important;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .grz-cats { --grz-icon-size: 40px; }

  .grz-forms { padding-bottom: 12px; }
  .grz-forms__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .grz-form { padding: 8px 12px; }
  .grz-form__icon { width: 28px; height: 28px; }
  .grz-form__name { font-size: 12px; }
}

@media (max-width: 420px) {
  .grz-forms__list { grid-template-columns: 1fr; }
}
/* ============================================
   GRIZY — kategorie na stronie głównej (.homecatsy)
   ta sama struktura co w menu, tylko większa skala
   ============================================ */
.homecatsy .grz-cats {
  --grz-icon-size: 64px;
  gap: 18px;
}

.homecatsy .grz-cat,
.homecatsy .grz-cat--with-subs {
  padding: 20px 24px;
  min-height: 104px;
  border-radius: 8px;
}

.homecatsy .grz-cat__name {
  font-size: 18px;
}

.homecatsy .grz-cat__subs {
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 14px 18px !important;
}

.homecatsy .grz-cat__subs a {
  font-size: 16px;
  color: #48211A;
  gap: 12px;
  padding: 8px 10px;
}

.homecatsy .grz-cat__sub-icon {
  opacity: 1;
}

.homecatsy .grz-cat__icon--all svg {
  width: 34px;
  height: 34px;
}

/* formy nad kategoriami */
.homecatsy .grz-forms {
  margin-bottom: 24px;
  padding-bottom: 20px;
}
.homecatsy .grz-form {
  padding: 14px 20px;
  gap: 14px;
}
.homecatsy .grz-form__icon {
  width: 44px;
  height: 44px;
}
.homecatsy .grz-form__name {
  font-size: 16px;
}

@media (max-width: 991px) {
  .homecatsy .grz-cats { --grz-icon-size: 52px; }
  .homecatsy .grz-cat__name { font-size: 16px; }
  .homecatsy .grz-cat__subs a { font-size: 14px; }
  .homecatsy .grz-form__name { font-size: 14px; }
}

@media (max-width: 767px) {
  .homecatsy .grz-cats { --grz-icon-size: 44px; }
  .homecatsy .grz-cat,
  .homecatsy .grz-cat--with-subs { padding: 14px; min-height: auto; }
  .homecatsy .grz-form { padding: 10px 14px; }
  .homecatsy .grz-form__icon { width: 32px; height: 32px; }
  .homecatsy .grz-form__name { font-size: 13px; }
}
.block.homecatsy.ApRawHtml {
  margin: 40px 0;
}
#thecheckout-cart-summary {
  background: white !important;
  overflow: inherit !important;
}
#checkout .cart-grid.row {
  background: #f6f6f6;
  padding: 10px;
}