
    /* ── HERO KATEGORII ── */
    .cat-hero {
      background: var(--green-dark);
      padding: 48px 6%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      flex-wrap: wrap;
    }
    .cat-hero-text h1 {
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      font-weight: 900;
      color: var(--white);
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: .5rem;
    }
    .cat-hero-text p {
      color: rgba(255,255,255,.7);
      font-size: .95rem;
    }
    .cat-hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .btn-download {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold);
      color: var(--white);
      text-decoration: none;
      font-weight: 700;
      font-size: .9rem;
      padding: .7em 1.6em;
      border-radius: 30px;
      transition: background .2s, transform .15s;
    }
    .btn-download:hover { background: #a87420; transform: translateY(-2px); }
    .btn-download-outline {
      background: transparent;
      border: 2px solid rgba(255,255,255,.4);
      color: var(--white);
    }
    .btn-download-outline:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }

    /* ── NAWIGACJA KATEGORII ── */
    .cat-nav {
      background: var(--white);
      border-bottom: 2px solid #eee;
      padding: 0 6%;
      display: flex;
      gap: 0;
      overflow-x: auto;
    }
    .cat-nav a {
      text-decoration: none;
      font-size: .88rem;
      font-weight: 600;
      color: #666;
      padding: 14px 20px;
      white-space: nowrap;
      border-bottom: 3px solid transparent;
      margin-bottom: -2px;
      transition: color .2s, border-color .2s;
    }
    .cat-nav a:hover { color: var(--green); }
    .cat-nav a.active {
      color: var(--green-dark);
      border-bottom-color: var(--gold);
    }

    /* ── SEKCJA KATEGORII ── */
    .cat-section {
      padding: 52px 6%;
    }
    .cat-section + .cat-section {
      border-top: 2px solid #e8e4d8;
    }

    .cat-section-title {
      font-size: clamp(1.2rem, 2vw, 1.6rem);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--green-dark);
      margin-bottom: 32px;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .cat-section-title::after {
      content: '';
      flex: 1;
      height: 2px;
      background: linear-gradient(to right, var(--gold), transparent);
    }

    /* ── GRID PRODUKTÓW ── */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 24px;
    }

    /* ── KARTA PRODUKTU ── */
    .product-card {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,.06);
      transition: transform .25s, box-shadow .25s;
    }
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 28px rgba(0,0,0,.12);
    }

    /* zdjęcie */
    .product-img {
      width: 100%;
      aspect-ratio: 1 / 1;
      background: #e8e4d8;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      transition: transform .35s;
    }
    .product-card:hover .product-img img { transform: scale(1.06); }

    /* placeholder info dla handlowca */
    .img-placeholder {
      width: 100%;
      height: 100%;
      background: #ddd8cc;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 16px;
      text-align: center;
    }
    .img-placeholder svg { opacity: .4; }
    .img-placeholder .img-filename {
      font-size: .75rem;
      font-weight: 700;
      color: #666;
      font-family: monospace;
      background: rgba(255,255,255,.6);
      padding: 3px 8px;
      border-radius: 4px;
    }
    .img-placeholder .img-size {
      font-size: .7rem;
      color: #888;
    }

    /* treść karty */
    .product-body {
      padding: 18px 20px 20px;
    }
    .product-body h3 {
      font-size: .95rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .06em;
      color: var(--green-dark);
      margin-bottom: 10px;
    }
    .product-meta {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .product-meta li {
      font-size: .8rem;
      color: #555;
      display: flex;
      gap: 6px;
      align-items: baseline;
    }
    .product-meta li strong {
      color: var(--text);
      font-weight: 700;
      font-size: .75rem;
      text-transform: uppercase;
      letter-spacing: .05em;
      flex-shrink: 0;
    }

    /* ── KARTA SPECJALNA (Orzechy i owoce suszone) ── */
    .product-card-wide {
      grid-column: 1 / -1;
      background: var(--green-dark);
      border-radius: 16px;
      padding: 28px 32px;
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
    }
    .product-card-wide h3 {
      font-size: 1.1rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--white);
      margin-bottom: 8px;
    }
    .product-card-wide p {
      font-size: .88rem;
      color: rgba(255,255,255,.75);
      line-height: 1.6;
      max-width: 480px;
    }
    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }
    .tag {
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.2);
      color: var(--white);
      font-size: .78rem;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 20px;
    }
    .btn-inquiry {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--gold);
      color: var(--white);
      text-decoration: none;
      font-weight: 700;
      font-size: .88rem;
      padding: .65em 1.4em;
      border-radius: 30px;
      margin-top: 16px;
      transition: background .2s;
    }
    .btn-inquiry:hover { background: #a87420; }

    /* ── RESPONSIVE ── */
    @media (max-width: 600px) {
      .products-grid { grid-template-columns: 1fr 1fr; }
      .product-card-wide { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 400px) {
      .products-grid { grid-template-columns: 1fr; }
    }