  /* RESET DISABLED - inherits from layout */
  /* body reset removed */
  .pdp-v4,
  .pdp-v4 *,
  .pdp-v4 *::before,
  .pdp-v4 *::after { box-sizing: border-box; }
  .pdp-v4 img { max-width: 100%; display: block; height: auto; }
  .pdp-v4 a { text-decoration: none; }
  .pdp-v4 button { font-family: inherit; cursor: pointer; }
  .pdp-v4 ul { list-style: none; padding: 0; margin: 0; }
  .pdp-v4 h1, .pdp-v4 h2, .pdp-v4 h3, .pdp-v4 h4 { margin: 0; line-height: 1.25; }
  .pdp-v4 .is-hidden { display: none !important; }
  .pdp-v4 .rounded-media { border-radius: 16px; }

  :root {
    --teal: #ACE1D9;
    --teal-dark: #2a8a7e;
    --teal-bg: #f5fbfa;
    --dark: #1e1e1e;
    --gray-light: #f5f5f5;
    --gray: #888;
    --gray-mid: #555;
    --border: #eaeaea;
    --gold: #f5b945;
    --red-soft: #ffaaaa;
    --warn-bg: #fffaeb;
    --warn-border: #f5b945;
  }

  .pdp-v4 .pdp-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

  /* TOP BAR + HEADER */
  /* .top-bar removed - using Yii layout */
  /* .header removed - using Yii layout header */

  .breadcrumb { padding: 16px 0; font-size: 13px; color: var(--gray); }
  .breadcrumb a { color: var(--gray); }
  .breadcrumb-current { color: var(--dark); font-weight: 500; }

  /* HERO */
  .hero { padding: 16px 0 48px; }
  .hero__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
  .gallery { position: sticky; top: 90px; align-self: start; justify-self: center; width: 100%; max-width: 560px; }

  .pdp-v4 .gallery__main { background: var(--teal-bg); border-radius: 16px; overflow: hidden; aspect-ratio: 1; cursor: zoom-in; position: relative; display: flex; align-items: center; justify-content: center; }
  .pdp-v4 .gallery__main img { display: block; width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; object-position: center; transition: none; transform: none; }
  .gallery__main::after { content: '🔍'; position: absolute; bottom: 16px; right: 16px; background: rgba(255,255,255,0.9); padding: 8px 12px; border-radius: 100px; font-size: 14px; }
  .gallery__thumbs-wrap { position: relative; margin-top: 12px; }
  .gallery__thumbs { display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 8px; scrollbar-width: thin; scrollbar-color: var(--teal-dark) var(--gray-light); }
  .gallery__thumbs::-webkit-scrollbar { height: 6px; }
  .gallery__thumbs::-webkit-scrollbar-track { background: var(--gray-light); border-radius: 3px; }
  .gallery__thumbs::-webkit-scrollbar-thumb { background: var(--teal-dark); border-radius: 3px; }
  .gallery__thumb { flex: 0 0 calc((100% - 32px) / 5); padding: 0; border: 2px solid transparent; background: var(--teal-bg); border-radius: 12px; cursor: pointer; overflow: hidden; aspect-ratio: 1; scroll-snap-align: start; }
  .gallery__thumb:hover { border-color: var(--teal); }
  .gallery__thumb.active { border-color: var(--teal-dark); box-shadow: 0 0 0 2px rgba(42,138,126,0.2); }
  .gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

  /* TAGI PRODUKTU (Bestseller / Nowość / Promocja) - overlay top-left na zdjęciu hero gallery.
     Yii: $product->categories filter dla cat_id IN (47, 34, 57) → render odpowiednie tagi. */
  .product-tags { position: absolute; top: 16px; left: 16px; display: flex; flex-direction: column; gap: 6px; z-index: 5; pointer-events: none; }
  .product-tag { display: inline-flex; align-items: center; gap: 4px; padding: 5px 10px; border-radius: 6px; font-size: 11px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
  .product-tag--new { background: var(--teal-dark); color: #fff; }
  .product-tag--bestseller { background: #f5b945; color: #1e1e1e; }
  .product-tag--promo { background: #c0392b; color: #fff; }
  .product-tag--exclusive { background: var(--dark); color: #fff; }

  /* INFO LINE - dostępność + wysyłka w jednej linii pod CTA (oszczędność miejsca + visual flow) */
  .info-line { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 10px 0 8px; padding: 10px 14px; background: #f8f9fa; border-radius: 100px; font-size: 13px; }
  .info-line__sep { color: var(--gray); }
  .info-line .delivery-info { margin: 0; text-align: left; font-size: 13px; }

  /* STOCK INDICATOR - format "Dostępność: ▮▮▮▮ Wysoka" z barami pokazującymi poziom.
     Yii: na podstawie product.on_stock i product.pre_order. */
  .stock-indicator { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--dark); }
  .stock-indicator__label { color: var(--gray-mid); font-weight: 500; }
  .stock-indicator__bars { display: inline-flex; gap: 2px; }
  .stock-indicator__bar { width: 4px; height: 14px; background: #e0e0e0; border-radius: 2px; }
  .stock-indicator--in .stock-indicator__bar:nth-child(-n+4) { background: #2e7d32; }
  .stock-indicator--low .stock-indicator__bar:nth-child(-n+2) { background: #f57c00; }
  .stock-indicator--out .stock-indicator__bar { background: #ffcdd2; }
  .stock-indicator--preorder .stock-indicator__bar:nth-child(-n+1) { background: var(--teal-dark); }
  .stock-indicator__text { font-weight: 700; }
  .stock-indicator--in .stock-indicator__text { color: #2e7d32; }
  .stock-indicator--low .stock-indicator__text { color: #f57c00; }
  .stock-indicator--out .stock-indicator__text { color: #c62828; }
  .stock-indicator--preorder .stock-indicator__text { color: var(--teal-dark); }

  /* OUT OF STOCK: powiadom gdy wróci */
  .notify-stock { display: none; margin-top: 12px; padding: 14px 16px; background: #f8f9fa; border: 1px solid var(--border); border-radius: 12px; }
  .notify-stock--visible { display: block; }
  .notify-stock__title { font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
  .notify-stock__form { display: flex; gap: 8px; }
  .notify-stock__input { flex: 1; padding: 10px 14px; border: 1px solid var(--border); border-radius: 100px; font-size: 13px; outline: none; }
  .notify-stock__input:focus { border-color: var(--teal); }
  .notify-stock__btn { padding: 10px 18px; background: var(--teal-dark); color: #fff; border: none; border-radius: 100px; font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap; }
  .notify-stock__btn:hover { background: var(--dark); }
  .gallery__thumbs-arrow { position: absolute; top: calc(50% - 4px); transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; background: #fff; border: 1px solid var(--border); font-size: 20px; line-height: 1; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.1); z-index: 5; cursor: pointer; }
  .gallery__thumbs-arrow:hover { background: var(--teal); }
  .gallery__thumbs-arrow--prev { left: -10px; }
  .gallery__thumbs-arrow--next { right: -10px; }

  .info { display: flex; flex-direction: column; }
  .tags { display: flex; gap: 8px; flex-wrap: wrap; }
  .tag { padding: 4px 12px; border-radius: 100px; font-size: 11px; font-weight: 600; letter-spacing: 0.5px; }
  .tag--primary { background: var(--dark); color: #fff; text-transform: uppercase; }
  .tag--secondary { background: var(--teal-bg); color: var(--teal-dark); }
  .hero-meta-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
  .hero-meta-row .tag--formula { padding: 8px 16px; font-size: 13px; }
  .tag--cat { background: var(--gray-light); color: var(--dark); padding: 8px 14px; transition: all 0.2s; cursor: pointer; }
  .tag--cat:hover { background: var(--teal); color: var(--dark); transform: translateY(-1px); }
  .tag--formula { background: linear-gradient(90deg, var(--teal-bg), #fff); border: 1px solid var(--teal); color: var(--teal-dark); font-weight: 600; cursor: help; }
  .btn-recommend { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 100px; background: var(--teal); border: 0; font-size: 14px; font-weight: 600; color: var(--dark); cursor: pointer; transition: all 0.2s; }
  .pdp-v4 .hero-meta-row .btn-recommend { margin-left: auto; }
  .btn-recommend:hover { background: var(--teal-dark); color: #fff; }
  .btn-recommend svg { flex-shrink: 0; }

  .title { font-size: 36px; font-weight: 800; margin-bottom: 8px; line-height: 1.15; }

  .pdp-v4 .rating-row { display: flex; align-items: center; gap: 8px; margin: 0 0 16px; font-size: 14px; color: var(--gray-mid); }
  .pdp-v4 .rating-row .stars { color: #f5b400; letter-spacing: 1px; font-size: 16px; }
  .pdp-v4 .rating-row strong { color: var(--dark); font-weight: 700; font-size: 15px; }
  .pdp-v4 .rating-row__max { color: var(--gray); }
  .pdp-v4 .rating-row a { color: var(--teal-dark); text-decoration: underline; margin-left: 4px; }
  .pdp-v4 .price-omnibus { font-size: 12px; color: var(--gray); line-height: 1.4; margin-top: 6px; padding-top: 6px; border-top: 1px dashed var(--border); }
  .pdp-v4 .price-omnibus strong { color: var(--gray-mid); font-weight: 600; }
  .pdp-v4 .meta-line { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; font-size: 13px; color: var(--gray-mid); }
  .pdp-v4 .meta-line strong { color: var(--dark); font-weight: 700; }
  .pdp-v4 .meta-line .meta-sep { color: var(--gray); opacity: 0.5; }
  .pdp-v4 .meta-chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; background: var(--teal-bg, #f0f9f7); border: 1px solid var(--border); border-radius: 999px; font-size: 13px; line-height: 1.2; white-space: nowrap; }
  .pdp-v4 .meta-chip__icon { font-size: 14px; line-height: 1; }
  .rating-inline { display: inline-flex; align-items: center; gap: 6px; }
  .pdp-v4 .meta-line .rating-inline { margin-left: 8px; }
  .stars { color: var(--gold); letter-spacing: 1px; font-size: 14px; }
  .rating-inline a { color: var(--teal-dark); text-decoration: underline; }
  .slogan { font-size: 16px; font-weight: 600; margin-bottom: 24px; }

  .pdp-v4 .bullets-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 24px; padding: 0; list-style: none; }
  /* Tablet/maly laptop (do 1199px): bullets w hero 1-col, bo info-column ~423px / 2 = 200px to za waska
     przestrzen na "tytul + opis" w bullet - tekst lamie sie 1-2 slowa per linia. */
  @media (max-width: 1199px) {
    .pdp-v4 .bullets-grid { grid-template-columns: 1fr; }
  }
  .pdp-v4 .bullet { display: flex; gap: 14px; align-items: flex-start; }
  .pdp-v4 .bullet-icon { flex-shrink: 0; width: 44px; height: 44px; background: var(--teal-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; line-height: 1; }
  .pdp-v4 .bullet-text { font-size: 15px; line-height: 1.5; padding-top: 4px; }
  .pdp-v4 .bullet-text strong { font-weight: 700; color: var(--dark); }

  /* CENA - z badge typu konta */
  .price-block { background: linear-gradient(135deg, var(--teal-bg), #fff); border: 1px solid var(--teal); border-radius: 16px; padding: 16px 20px; margin: 8px 0 16px; }
  .price-label { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 6px; }
  .price-label__type { font-size: 13px; font-weight: 700; color: var(--teal-dark); }
  .price-label__sub { font-size: 11px; color: var(--teal-dark); background: var(--teal); padding: 2px 10px; border-radius: 100px; font-weight: 600; }
  .pdp-v4 .price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
  .pdp-v4 .price-per-unit-inline { font-size: 13px; color: var(--gray-mid); align-self: center; line-height: 1.3; }
  .pdp-v4 .price-per-unit-inline strong { color: var(--dark); font-weight: 700; font-size: 15px; }
  .price-old { font-size: 18px; color: var(--gray); text-decoration: line-through; }
  .price-block .price { font-size: 32px; font-weight: 800; margin: 0; color: var(--dark); }
  .price-per-unit { font-size: 12px; color: var(--gray); margin-top: 4px; }
  .price-per-unit strong { color: var(--dark); font-weight: 700; }
  .price-guest-info { margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--teal); font-size: 13px; line-height: 1.45; color: var(--dark); }
  .price-guest-info__head { margin-bottom: 8px; }
  .price-guest-info__cta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 13px; }
  .price-guest-info__sep { color: var(--gray); font-size: 12px; }
  .link-register { display: inline-block; background: var(--teal-dark); color: #fff !important; padding: 6px 14px; border-radius: 100px; font-weight: 700; font-size: 13px; text-decoration: none; transition: all 0.2s; }
  .link-register:hover { background: var(--dark); transform: translateY(-1px); }
  .link-login { color: var(--teal-dark); font-weight: 700; text-decoration: underline; }
  .price-points-info { margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--teal); display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--dark); }
  .price-points-info__icon { font-size: 16px; }

  /* PROMO BANNER + cena z dodatkowym rabatem promocji */
  .promo-banner { display: flex; align-items: center; gap: 10px; margin: 24px 0 10px; padding: 10px 14px; border-radius: 12px; background: #FFE5BB; color: #D9AC64; font-size: 13px; font-weight: 700; line-height: 1.3; border: 1px solid rgba(217,172,100,0.3); }
  .promo-banner__icon { font-size: 18px; line-height: 1; }
  .promo-banner__title { flex: 1; }
  .promo-banner__title strong { color: #8B6914; }
  .promo-banner__until { font-size: 11px; color: #8B6914; font-weight: 600; opacity: 0.8; white-space: nowrap; }
  .price-promo-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
  .price-promo-row .price-base { font-size: 14px; color: var(--gray-mid); text-decoration: line-through; }
  .price-promo-row .price-base--small { font-size: 13px; }
  .price-promo-row .price-final { font-size: 32px; font-weight: 800; color: #c0392b; line-height: 1; letter-spacing: -0.01em; }
  .price-savings { font-size: 12px; color: #c0392b; font-weight: 700; margin-top: 4px; }

  .pdp-v4-add-to-cart-form { margin: 0; }
  .cta-row { display: flex; gap: 10px; align-items: stretch; margin: 14px 0 8px; }
  .cta-row .qty { flex-shrink: 0; }
  .cta-row .btn--primary { flex: 1; width: auto; padding: 14px 22px; font-size: 15px; }
  .qty { display: inline-flex; align-items: center; background: var(--gray-light); border-radius: 100px; padding: 4px; }
  .qty-btn { background: #fff; border: 0; width: 36px; height: 36px; border-radius: 50%; font-size: 18px; }
  .qty-input { background: transparent; border: 0; width: 40px; text-align: center; font-size: 16px; font-weight: 700; -moz-appearance: textfield; }
  .qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
  .price { font-size: 28px; font-weight: 800; margin-left: auto; }

  .btn { padding: 16px 32px; border-radius: 100px; border: 0; font-weight: 700; font-size: 15px; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; justify-content: center; gap: 10px; }
  .pdp-v4 button.btn--primary,
  .pdp-v4 .btn.btn--primary { background: var(--teal-dark) !important; color: #fff !important; width: 100%; padding: 18px 28px; font-size: 18px; font-weight: 700; box-shadow: 0 4px 12px rgba(42,138,126,0.22); gap: 12px; border: 0; }
  .pdp-v4 button.btn--primary:hover,
  .pdp-v4 .btn.btn--primary:hover { background: #1f6e64 !important; color: #fff !important; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(42,138,126,0.32); }
  .pdp-v4 button.btn--primary:active,
  .pdp-v4 .btn.btn--primary:active { background: #155248 !important; color: #fff !important; transform: translateY(0); box-shadow: 0 2px 6px rgba(42,138,126,0.32) inset; }
  .pdp-v4 button.btn--primary:focus,
  .pdp-v4 button.btn--primary:focus-visible { outline: 3px solid rgba(42,138,126,0.4); outline-offset: 2px; }
  .pdp-v4 button.btn--primary i,
  .pdp-v4 .btn.btn--primary i { font-size: 22px; color: #fff !important; }
  .pdp-v4 button.btn--primary span,
  .pdp-v4 .btn.btn--primary span { color: #fff !important; }
  .btn--primary .btn__divider { width: 1px; height: 18px; background: rgba(255,255,255,0.25); margin: 0 4px; }
  .btn--primary .btn__price { font-weight: 800; }
  .btn--secondary { background: #fff; color: var(--dark); border: 1px solid var(--border); }
  .btn--small { padding: 10px 20px; font-size: 13px; }

  .delivery-info { font-size: 14px; color: var(--gray-mid); margin: 12px 0 8px; text-align: center; }
  .delivery-info strong { color: var(--dark); }
  .payment-methods { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 0 0 20px; flex-wrap: wrap; font-size: 11px; color: var(--gray); }
  .payment-methods__label { font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
  .pdp-v4 .payment-methods__list { display: flex; gap: 5px; flex-wrap: wrap; align-items: center; justify-content: center; }
  .pdp-v4 .pm-logo { display: inline-flex; align-items: center; justify-content: center; height: 30px; min-width: 72px; padding: 4px 12px; background: #fff; border: 1px solid var(--border); border-radius: 6px; font-size: 14px; font-weight: 700; letter-spacing: 0; line-height: 1; white-space: nowrap; }
  .pdp-v4 .pm-logo--svg { padding: 2px 8px; }
  .pdp-v4 .pm-logo--svg img { height: 26px; width: auto; max-width: 74px; object-fit: contain; }
  .pdp-v4 .pm-logo--blik { min-width: 56px; padding: 0; background: transparent; border: 0; }
  .pdp-v4 .pm-logo--blik img { height: 30px; max-width: 64px; display: block; }
  .pdp-v4 .pm-logo--payu { min-width: 68px; padding: 0; background: transparent; border: 0; }
  .pdp-v4 .pm-logo--payu img { height: 30px; max-width: 74px; display: block; }
  .pdp-v4 .pm-logo--paypo { min-width: 84px; padding: 0; background: transparent; border: 0; }
  .pdp-v4 .pm-logo--paypo img { height: 31px; max-width: 88px; display: block; }
  .pdp-v4 .pm-logo--gpay { min-width: 56px; padding: 0; background: transparent; border: 0; }
  .pdp-v4 .pm-logo--gpay img { height: 30px; max-width: 58px; display: block; }
  .pdp-v4 .pm-logo--applepay { min-width: 72px; padding: 0; background: transparent; border: 0; }
  .pdp-v4 .pm-logo--applepay img { height: 30px; max-width: 76px; display: block; }
  .pdp-v4 .pm-logo--klarna { min-width: 78px; padding: 0; background: transparent; border: 0; }
  .pdp-v4 .pm-logo--klarna img { height: 30px; max-width: 82px; display: block; }
  .pdp-v4 .pm-logo--cod { color: var(--gray-mid); font-weight: 600; padding: 4px 10px; }

  /* Trust pills - kompaktowe (zamiast dużych kafelków) */
  .trust-pills { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin: 12px 0 16px; }
  .trust-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: var(--gray-light); border-radius: 100px; font-size: 12px; font-weight: 600; color: var(--gray-mid); }
  .trust-pill__icon { font-size: 14px; line-height: 1; }


  .hero-accordion { margin-top: 24px; }
  .pdp-v4 details.accordion-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 8px; box-shadow: 0 1px 2px rgba(30,30,30,0.04); transition: box-shadow 0.2s, border-color 0.2s; }
  .pdp-v4 details.accordion-item:hover { border-color: var(--teal-dark); box-shadow: 0 2px 8px rgba(42,138,126,0.08); }
  .pdp-v4 details.accordion-item[open] { background: var(--teal-bg); border-color: var(--teal-dark); }
  .pdp-v4 .accordion-summary { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; cursor: pointer; list-style: none; font-weight: 700; font-size: 16px; color: var(--dark); }
  .pdp-v4 .accordion-summary::-webkit-details-marker { display: none; }
  .pdp-v4 .accordion-summary::after { content: '+'; font-size: 22px; line-height: 1; color: var(--teal-dark); transition: transform 0.2s; flex-shrink: 0; margin-left: 12px; }
  .pdp-v4 details.accordion-item[open] .accordion-summary::after { transform: rotate(45deg); }
  .pdp-v4 .accordion-content { padding: 0 18px 16px; line-height: 1.7; color: var(--gray-mid); font-size: 14px; }

  /* H1 hero - jeden tytuł, wizualna hierarchia przez span subtitle */
  .pdp-v4 .title__sub { font-weight: 400; color: var(--gray-mid); font-size: 0.55em; display: block; margin-top: 4px; line-height: 1.3; }

  /* Section headings (H2) - wąska forma, centrowane, ograniczone do ~880px żeby długie tytuły z $product->title się nie rozjeżdżały */
  .pdp-v4 .section h2,
  .pdp-v4 .research__head h2,
  .pdp-v4 .compare h2,
  .pdp-v4 .story-imgs h2,
  .pdp-v4 .product__characteristics__indications__content h2 { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.3; max-width: 880px; margin-left: auto; margin-right: auto; text-align: center; }
  /* Lewostronne tytuły (np. "Magne+ jest dla Ciebie, jeśli:") zachowują left-align ale max-width */
  .pdp-v4 #dla-kogo h2 { text-align: left; max-width: 720px; margin-left: 0; }
  .pdp-v4 #sklad h2,
  .pdp-v4 #mechanizm h2,
  .pdp-v4 #3-formy h2 { text-align: left; max-width: 720px; margin-left: 0; }

  /* Reviews - dopasowanie tytułu (za długie nazwy produktów łamią się dziwnie) */
  .pdp-v4 .product__reviews__header__info__title { font-size: clamp(20px, 2.4vw, 28px); line-height: 1.3; max-width: 100%; }

  /* Mechanizm - sekcja "Jak działa..." */
  .pdp-v4 .mechanism-img-wrap { display: flex; align-items: flex-start; }
  .pdp-v4 .mechanism-img-wrap img { width: 100%; border-radius: 16px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); cursor: zoom-in; }
  .pdp-v4 .mechanism-content { display: flex; flex-direction: column; gap: 16px; }
  .pdp-v4 .mechanism-headline { font-size: 22px; line-height: 1.35; font-weight: 700; color: var(--dark); margin: 0; }
  .pdp-v4 .mechanism-headline strong { color: var(--teal-dark); }
  .pdp-v4 .mechanism-body { font-size: 15px; line-height: 1.65; color: var(--dark); }
  .pdp-v4 .mechanism-body p { margin: 0 0 12px; }
  .pdp-v4 .mechanism-body p:last-child { margin-bottom: 0; }
  .pdp-v4 .mechanism-lead { font-size: 15px; line-height: 1.6; color: var(--gray-mid); margin: 0; }
  .pdp-v4 .mechanism-pills { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 4px 0 8px; }
  .pdp-v4 .mech-pill { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; background: var(--teal-bg); border: 1px solid var(--teal); border-radius: 12px; font-size: 14px; line-height: 1.5; color: var(--dark); }
  .pdp-v4 .mech-pill__icon { flex-shrink: 0; width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; background: #fff; border-radius: 50%; font-size: 16px; }
  .pdp-v4 .mech-pill strong { color: var(--teal-dark); }
  .pdp-v4 .mechanism-list-title { font-size: 14px; font-weight: 600; color: var(--gray-mid); margin: 8px 0 4px; }
  .pdp-v4 .mechanism-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
  .pdp-v4 .mechanism-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.5; color: var(--dark); }
  .pdp-v4 .mech-check { flex-shrink: 0; color: var(--teal-dark); font-weight: 800; }

  /* Wskazania - Bootstrap accordion z v2 - dopasowanie do PDP v4 */
  .pdp-v4 .product__characteristics__indications .accordion-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 8px; box-shadow: 0 1px 2px rgba(30,30,30,0.04); overflow: hidden; transition: box-shadow 0.2s, border-color 0.2s; }
  .pdp-v4 .product__characteristics__indications .accordion-item:hover { border-color: var(--teal-dark); box-shadow: 0 2px 8px rgba(42,138,126,0.08); }
  .pdp-v4 .product__characteristics__indications .accordion-item:has(.accordion-button:not(.collapsed)) { background: var(--teal-bg); border-color: var(--teal-dark); }
  .pdp-v4 .product__characteristics__indications .accordion-button { background: transparent; padding: 14px 18px; font-weight: 700; font-size: 15px; color: var(--dark); border: 0; box-shadow: none; }
  .pdp-v4 .product__characteristics__indications .accordion-button:not(.collapsed) { background: transparent; color: var(--dark); box-shadow: none; }
  .pdp-v4 .product__characteristics__indications .accordion-button:focus { box-shadow: none; }
  .pdp-v4 .product__characteristics__indications .accordion-body { padding: 0 18px 16px; line-height: 1.6; color: var(--gray-mid); font-size: 14px; }
  .pdp-v4 .product__characteristics__indications__content__accordion-wrapper.rolled-up { height: auto; max-height: 320px; overflow: hidden; }
  .pdp-v4 .product__characteristics__indications__content__accordion-wrapper.rolled-up::after { display: none; }
  .pdp-v4 .product__characteristics__indications__content__accordion-wrapper.expanded { max-height: none; }
  .pdp-v4 #product-reviews + section, .pdp-v4 .product__characteristics + section { margin-top: 0; }

  /* TRUST BADGES - duże karty z ikonami (style image #34) */
  .pdp-v4 .trust-strip { background: #f8f9fa; padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .pdp-v4 .trust-strip__inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
  .pdp-v4 .trust-strip__inner--quality { margin-bottom: 12px; }
  .pdp-v4 .trust-badge { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: #fff; border: 1px solid var(--border); border-radius: 14px; font-size: 14px; font-weight: 600; color: var(--dark); transition: border-color 0.2s, box-shadow 0.2s; min-height: 96px; }
  .pdp-v4 .trust-badge:hover { border-color: var(--teal-dark); box-shadow: 0 4px 10px rgba(42,138,126,0.08); }
  .pdp-v4 .trust-badge--premium { border-color: var(--teal); }
  .pdp-v4 .trust-badge__circle { flex-shrink: 0; width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; }
  .pdp-v4 .trust-badge__circle img { width: 100%; height: 100%; object-fit: contain; }
  .pdp-v4 .trust-badge__circle svg { width: 36px; height: 36px; stroke-width: 2; }
  @media (max-width: 768px) {
    .pdp-v4 .hero-meta-row { gap: 6px; }
    .pdp-v4 .hero-meta-row .tag { font-size: 11px; padding: 5px 9px; white-space: nowrap; }
    .pdp-v4 .hero-meta-row .tag--formula { font-size: 11px; padding: 5px 9px; }
    .pdp-v4 .hero-meta-row .tag--cat:nth-of-type(n+2) { display: none; }
    .pdp-v4 .hero-meta-row .btn-recommend { font-size: 12px; padding: 6px 12px; }
    .pdp-v4 .trust-strip { padding: 24px 0; }
    .pdp-v4 .trust-strip__inner { grid-template-columns: 1fr; gap: 8px; }
    .pdp-v4 .trust-strip__inner--quality { margin-bottom: 8px; }
    .pdp-v4 .trust-badge { padding: 10px 12px; gap: 10px; font-size: 12px; line-height: 1.25; border-radius: 12px; min-height: 72px; }
    .pdp-v4 .trust-badge__circle { width: 44px; height: 44px; }
    .pdp-v4 .trust-badge__circle svg { width: 22px; height: 22px; }
    .trust-badge__icon { font-size: 16px; }
  }

  /* STICKY ANCHOR NAV - uniwersalny dla każdego suplementu, kompaktowy z scrollspy + ikonami */
  .anchor-nav { position: sticky; top: 108px; z-index: 1029; background: #fff; padding: 10px 0; border-bottom: 1px solid var(--border); box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
  .anchor-nav .container { display: flex; justify-content: center; }
  .anchor-nav__inner { display: flex; gap: 8px; align-items: center; }
  .anchor-nav__pills { display: flex; justify-content: center; gap: 4px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; padding: 2px 0; -webkit-overflow-scrolling: touch; width: 100%; }
  .anchor-nav__pills::-webkit-scrollbar { display: none; }
  .anchor-nav__pill { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 100px; border: 1px solid var(--border); background: #fff; font-size: 13px; font-weight: 600; transition: all 0.18s ease; white-space: nowrap; text-decoration: none; color: var(--dark); flex-shrink: 0; }
  .anchor-nav__pill:hover { background: var(--teal-bg); border-color: var(--teal); color: var(--teal-dark); }
  .anchor-nav__pill.is-active { background: var(--teal-dark); color: #fff; border-color: var(--teal-dark); box-shadow: 0 4px 12px rgba(42,138,126,0.25); transform: translateY(-1px); }
  .anchor-nav__pill__icon { font-size: 15px; line-height: 1; }

  /* MOBILE: anchor nav pełny zniknie, zamiast tego floating FAB "Spis treści" + drawer od dołu (spójne z hamburgerem oryginału) */
  .toc-fab { display: none; position: fixed; right: 16px; bottom: 84px; z-index: 80; width: 56px; height: 56px; border-radius: 50%; background: var(--teal-dark); color: #fff; border: none; box-shadow: 0 6px 20px rgba(42,138,126,0.4); cursor: pointer; align-items: center; justify-content: center; font-size: 22px; transition: transform 0.2s; }
  .toc-fab:hover { transform: scale(1.05); }
  .toc-drawer { display: none; position: fixed; inset: 0; z-index: 90; background: rgba(0,0,0,0.5); }
  .toc-drawer.is-open { display: block; }
  .toc-drawer__panel { position: absolute; left: 0; right: 0; bottom: 0; background: #fff; border-radius: 20px 20px 0 0; padding: 8px 0 24px; max-height: 75vh; overflow-y: auto; animation: tocSlide 0.25s ease; }
  @keyframes tocSlide { from { transform: translateY(100%); } to { transform: translateY(0); } }
  .toc-drawer__handle { width: 44px; height: 4px; background: #ddd; border-radius: 2px; margin: 12px auto 16px; }
  .toc-drawer__title { padding: 0 20px 12px; font-size: 14px; font-weight: 700; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--border); }
  .toc-drawer__list { list-style: none; margin: 0; padding: 8px 0; }
  .toc-drawer__list li a { display: flex; align-items: center; gap: 14px; padding: 14px 20px; text-decoration: none; color: var(--dark); font-size: 16px; font-weight: 500; transition: background 0.15s; }
  .toc-drawer__list li a:hover, .toc-drawer__list li a.is-active { background: var(--teal-bg); color: var(--teal-dark); }
  .toc-drawer__list li a span:first-child { font-size: 20px; flex-shrink: 0; }
  .toc-drawer__close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--gray-mid); }

  /* FLOATING CTA */
  .floating-cta { position: fixed; bottom: 24px; right: 24px; background: #fff; border: 1px solid var(--border); border-radius: 100px; padding: 6px 6px 6px 16px; display: none; align-items: center; gap: 12px; z-index: 90; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
  .floating-cta.is-visible { display: flex; }
  .floating-cta__thumb { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--teal-bg); }
  .floating-cta__thumb img { width: 100%; height: 100%; object-fit: cover; }
  .floating-cta__price { font-weight: 800; font-size: 16px; }
  .floating-cta__btn { background: var(--dark); color: #fff; padding: 10px 24px; border-radius: 100px; font-weight: 700; font-size: 14px; border: 0; }

  /* SECTIONS */
  .section { padding: 64px 0; scroll-margin-top: 130px; }
  .section--bg { background: var(--gray-light); }
  .section h2 { font-size: 32px; font-weight: 800; margin-bottom: 32px; text-align: center; }
  .section--left h2 { text-align: left; }
  .section-title-left { text-align: left !important; font-size: 28px !important; margin-bottom: 32px !important; }
  .section-title-left em { font-style: normal; font-weight: 400; color: var(--gray-mid); }
  .section__intro { text-align: center; max-width: 720px; margin: 0 auto 40px; color: var(--gray-mid); font-size: 16px; }

  /* TOP SLIDER (hero pattern Magne+) */
  .top-slider { padding: 48px 0; background: var(--gray-light); }
  .top-slider__viewport { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; scrollbar-width: thin; }
  .top-slider__viewport::-webkit-scrollbar { height: 6px; }
  .top-slider__viewport::-webkit-scrollbar-thumb { background: var(--teal-dark); border-radius: 3px; }
  .top-slider__card { flex: 0 0 280px; aspect-ratio: 9/14; border-radius: 16px; overflow: hidden; scroll-snap-align: start; }
  .top-slider__card img { width: 100%; height: 100%; object-fit: cover; }

  /* RESEARCH STATS - "Co mówią badania". Uniwersalny pattern.
     W Yii: include tylko gdy product.has_clinical_data = 1 ORAZ istnieje 3+ rekordów w product_research_lang.
     Treść per produkt z DB. Każda karta: stat_value + claim + footnote_refs (array URL). */
  .research { padding: 64px 0; background: #fff; }
  .research__head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
  .research__head h2 { margin-bottom: 12px; }
  .research__intro { color: var(--gray-mid); font-size: 16px; line-height: 1.5; }
  .research__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .research__card { background: var(--teal-bg); border: 1px solid var(--teal); border-radius: 16px; padding: 32px 24px 26px; text-align: center; }
  .research__category { display: inline-block; color: var(--teal-dark); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; opacity: 0.75; }
  .research__stat { font-size: 64px; font-weight: 800; color: var(--teal-dark); line-height: 1; margin-bottom: 14px; letter-spacing: -0.02em; }
  .research__claim { font-size: 15px; line-height: 1.45; color: var(--dark); font-weight: 600; margin-bottom: 14px; }
  .research__caveat { font-size: 12px; line-height: 1.4; color: var(--gray-mid); font-style: italic; margin-bottom: 12px; padding: 8px 12px; background: rgba(255,255,255,0.6); border-radius: 8px; }
  .research__refs { font-size: 11px; color: var(--gray-mid); line-height: 1.7; }
  .research__refs strong { color: var(--dark); font-style: normal; margin-right: 4px; }
  .research__ref-tag { display: inline-block; background: rgba(42,138,126,0.12); color: var(--teal-dark); font-size: 10px; font-weight: 700; padding: 1px 6px; border-radius: 100px; margin-left: 2px; vertical-align: middle; }
  .research__refs a { color: var(--gray-mid); text-decoration: underline; word-break: break-all; }
  .research__refs a:hover { color: var(--teal-dark); }
  .research__disclaimer { margin-top: 32px; padding: 18px 22px; background: #f8f9fa; border-left: 3px solid var(--gray); border-radius: 8px; font-size: 12px; color: var(--gray-mid); line-height: 1.6; max-width: 880px; margin-left: auto; margin-right: auto; }
  .research__disclaimer strong { color: var(--dark); }
  .research__bibliography-link { margin: 18px 0 0; text-align: center; }
  .research__bibliography-link a { color: var(--teal-dark); font-weight: 700; font-size: 14px; text-decoration: none; }
  .research__bibliography-link a:hover { text-decoration: underline; }
  @media (max-width: 768px) {
    .research { padding: 40px 0; }
    .research__grid { grid-template-columns: 1fr; gap: 14px; }
    .research__stat { font-size: 52px; }
  }

  /* COMPARISON - "Viloway vs typowy suplement". Uniwersalna sekcja statyczna (nie product-specific).
     Kryteria takie same dla każdego SKU - reusable Yii partial. */
  .compare { padding: 64px 0; background: #fff; }
  .compare__head { text-align: center; max-width: 720px; margin: 0 auto 32px; }
  /* Każda kolumna = jedna karta: zdjęcie + tytuł + kryteria w jednym kontenerze. */
  .compare__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1040px; margin: 0 auto; }
  .compare__col { background: #fff; border: 2px solid var(--border); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; }
  .compare__col--us { border-color: var(--teal-dark); }
  .compare__col--them { border-color: #c8c8c8; }
  .compare__col-photo { aspect-ratio: 16/10; background: #fff; display: flex; align-items: center; justify-content: center; padding: 20px; position: relative; overflow: hidden; }
  .compare__col-photo img { max-height: 90%; max-width: 90%; width: auto; height: auto; object-fit: contain; }
  .compare__col--them .compare__col-photo { background: #f5f5f5; }
  .compare__col-band { height: 6px; flex-shrink: 0; }
  .compare__col--us .compare__col-band { background: var(--teal-dark); }
  .compare__col--them .compare__col-band { background: #c8c8c8; }
  /* Sylwetka — kształt butelki Magne+: węższy ciemny kapsel na górze + jaśniejszy korpus poniżej, proporcje 2:3 portrait. */
  .compare__bottle-silhouette { height: 60%; aspect-ratio: 3/5; display: flex; flex-direction: column; align-items: center; }
  .compare__bottle-cap { width: 62%; height: 14%; background: #6e6e6e; border-radius: 6px 6px 0 0; flex-shrink: 0; }
  .compare__bottle-body { width: 100%; flex: 1; background: #989898; border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 18px rgba(0,0,0,0.1); }
  .compare__bottle-body span { color: #fff; font-weight: 700; font-size: 13px; line-height: 1.2; text-align: center; padding: 0 12px; }
  .compare__col-body { padding: 26px 28px; flex: 1; }
  .compare__col--us .compare__col-body { background: var(--teal-bg); }
  .compare__col--them .compare__col-body { background: #fafafa; }
  .compare__col-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .compare__col-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
  .compare__col--us .compare__col-icon { background: var(--teal-dark); color: #fff; }
  .compare__col--them .compare__col-icon { background: #f0f0f0; color: var(--gray-mid); }
  .compare__col-title { font-size: 16px; font-weight: 800; line-height: 1.2; }
  .compare__col-sub { font-size: 12px; color: var(--gray-mid); margin-top: 2px; }
  .compare__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
  .compare__item { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; line-height: 1.5; }
  .compare__item-icon { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; margin-top: 1px; }
  .compare__col--us .compare__item-icon { background: var(--teal-dark); color: #fff; }
  .compare__col--them .compare__item-icon { background: #ffe0e0; color: #c0392b; }
  .compare__item strong { display: block; margin-bottom: 2px; }
  @media (max-width: 768px) {
    .compare { padding: 40px 0; }
    .compare__grid { grid-template-columns: 1fr; gap: 14px; }
    .compare__col-photo { aspect-ratio: 3/2; padding: 14px; }
    .compare__col-body { padding: 22px 20px; }
    .compare__bottle-silhouette span { font-size: 12px; padding: 0 8px; }
  }

  /* RELATED PRODUCTS - browse cross-sell slider (different from "Z czym łączyć" curated synergy) */
  .related { padding: 64px 0; background: #fff; }
  .related__head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
  .related__head h2 { margin: 0; }
  .related__head a { color: var(--teal-dark); font-weight: 600; font-size: 14px; text-decoration: none; }
  .related__head a:hover { text-decoration: underline; }
  .related__wrap { position: relative; }
  .related__viewport { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding: 4px 0; }
  .related__viewport::-webkit-scrollbar { display: none; }
  /* Grid variant - 3-col bez scrolla, dla "Polecane produkty z kategorii" gdy zawsze 3 produkty.
     Mobile: zamieniamy grid na slider horizontal (jak "Moze Cie tez zainteresowac") - karty 62% szerokosci
     z scroll-snap. Bardziej angazujace niz dlugi stack pionowy. */
  .related__viewport--grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; overflow: visible; }
  .related__viewport--grid .related__card { flex: unset; }
  @media (max-width: 768px) {
    .related__viewport--grid { display: flex; grid-template-columns: none; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding: 4px 0; }
    .related__viewport--grid::-webkit-scrollbar { display: none; }
    .related__viewport--grid .related__card { flex: 0 0 78%; scroll-snap-align: start; }
  }
  .related__card { flex: 0 0 calc((100% - 32px) / 3); scroll-snap-align: start; background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: all 0.2s; text-decoration: none; color: inherit; display: flex; flex-direction: column; }
  .related__card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); border-color: var(--teal); }
  .related__img { position: relative; aspect-ratio: 1; background: var(--teal-bg); overflow: hidden; display: block; }
  .related__rating-pill { position: absolute; top: 14px; right: 14px; background: #fff; color: var(--dark); font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 100px; box-shadow: 0 1px 4px rgba(0,0,0,0.08); display: inline-flex; align-items: center; gap: 4px; z-index: 2; }
  .related__img img { width: 100%; height: 100%; object-fit: cover; }
  .related__body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
  .related__cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--gray); }
  .related__name { font-weight: 700; font-size: 15px; line-height: 1.3; margin: 0; }
  .related__price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; padding-top: 8px; flex-wrap: wrap; }
  .related__price-now { color: var(--dark); font-weight: 700; font-size: 17px; }
  .related__price-old { color: var(--gray); font-size: 13px; text-decoration: line-through; }
  .related__price-tag { background: var(--teal); color: var(--dark); font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.03em; }
  .related__arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid var(--border); font-size: 24px; line-height: 1; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.15); z-index: 10; cursor: pointer; transition: all 0.2s; }
  .related__arrow:hover { background: var(--teal); border-color: var(--teal); }
  .related__arrow--prev { left: -22px; }
  .related__arrow--next { right: -22px; }
  .related__arrow.is-hidden { opacity: 0; pointer-events: none; visibility: hidden; }
  /* Limit 3 produktow = nie potrzeba slider arrows na desktop (wszystkie widac od razu).
     Mobile zachowuje arrows + scroll-snap dla wezszego viewportu. */
  @media (min-width: 769px) { .related__arrow { display: none; } }
  .related__name-link { color: inherit; text-decoration: none; }
  .related__name-link:hover .related__name { color: var(--teal-dark); }
  .related__cta { display: flex; gap: 8px; margin-top: 10px; }
  .related__btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px; font-weight: 700; font-size: 13px; padding: 10px 12px; border-radius: 999px; text-decoration: none; cursor: pointer; transition: all 0.2s; border: 1px solid transparent; line-height: 1.2; text-align: center; }
  .related__btn-icon { display: inline-flex; align-items: center; justify-content: center; font-size: 17px; line-height: 1; color: currentColor; }
  .related__btn--primary { background: var(--teal-dark); color: #fff; }
  .related__btn--primary .related__btn-icon { color: #fff; }
  .related__btn--primary:hover { background: var(--dark); color: #fff; }
  .related__btn--secondary { background: transparent; color: var(--dark); border-color: var(--border); }
  .related__btn--secondary:hover { background: var(--teal-bg); border-color: var(--teal); color: var(--dark); }
  @media (max-width: 768px) {
    .related { padding: 40px 0; }
    .related__card { flex: 0 0 78%; }
    /* Mobile arrows: mniejsze (36x36) i wewnatrz kontenera (8px od kraw) zamiast wystajacych poza viewport. */
    .related__arrow { display: flex; width: 36px; height: 36px; font-size: 20px; }
    .related__arrow--prev { left: 8px; }
    .related__arrow--next { right: 8px; }
    .related__cta { flex-direction: column; gap: 6px; }
  }

  /* Related preview modal - cienki overlay z preview produktu z karty cross-sell. */
  .related-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; }
  .related-modal[hidden] { display: none; }
  .related-modal__backdrop { position: absolute; inset: 0; background: rgba(15, 23, 28, 0.55); backdrop-filter: blur(2px); }
  .related-modal__dialog { position: relative; background: #fff; border-radius: 20px; max-width: 720px; width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: 0 30px 60px rgba(0,0,0,0.25); animation: relatedModalIn 0.18s ease-out; }
  @keyframes relatedModalIn { from { opacity: 0; transform: translateY(8px) scale(0.98); } to { opacity: 1; transform: none; } }
  .related-modal__close { position: absolute; top: 12px; right: 14px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); background: #fff; font-size: 22px; line-height: 1; cursor: pointer; color: var(--dark); transition: all 0.15s; z-index: 2; }
  .related-modal__close:hover { background: var(--teal-bg); border-color: var(--teal); }
  .related-modal__body { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 28px; }
  .related-modal__media { background: var(--teal-bg); border-radius: 14px; overflow: hidden; aspect-ratio: 1; }
  .related-modal__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .related-modal__cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray); display: inline-block; margin-bottom: 6px; }
  .related-modal__title { margin: 0 0 8px 0; font-size: 22px; line-height: 1.25; font-weight: 700; color: var(--dark); }
  .related-modal__slogan { margin: 0 0 16px 0; font-size: 15px; line-height: 1.4; color: var(--teal-dark); font-style: italic; }
  .related-modal__section { margin: 16px 0 18px 0; padding-top: 14px; border-top: 1px solid var(--border); }
  .related-modal__section[hidden] { display: none; }
  .related-modal__section-title { margin: 0 0 8px 0; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-dark); }
  .related-modal__advantages,
  .related-modal__mustknow,
  .related-modal__composition { font-size: 14px; line-height: 1.55; color: var(--dark); }
  .related-modal__mustknow ul,
  .related-modal__composition ul { margin: 0; padding-left: 20px; }
  .related-modal__mustknow li,
  .related-modal__composition li { margin-bottom: 4px; }
  .related-modal__advantages p,
  .related-modal__mustknow p,
  .related-modal__composition p { margin: 0 0 8px 0; }
  .related-modal__advantages p:last-child,
  .related-modal__mustknow p:last-child,
  .related-modal__composition p:last-child { margin-bottom: 0; }
  /* Bullets w modalu - identyczna struktura jak w hero (.bullets-grid + .bullet + .bullet-icon + .bullet-text), tylko mniejsze. */
  .related-modal .bullets-grid--modal { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 0; padding: 0; list-style: none; }
  .related-modal .bullets-grid--modal .bullet { display: flex; gap: 10px; align-items: flex-start; }
  .related-modal .bullets-grid--modal .bullet-icon { flex-shrink: 0; width: 32px; height: 32px; background: var(--teal-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; line-height: 1; }
  .related-modal .bullets-grid--modal .bullet-text { font-size: 13px; line-height: 1.4; padding-top: 4px; }
  .related-modal .bullets-grid--modal .bullet-text strong { font-weight: 700; color: var(--dark); }
  @media (max-width: 600px) {
    .related-modal .bullets-grid--modal { grid-template-columns: 1fr; }
    .related-modal__actions { flex-direction: column; }
  }
  .related-modal__price { font-weight: 700; margin-bottom: 14px; display: flex; gap: 8px; align-items: baseline; flex-wrap: wrap; font-size: 16px; }
  .related-modal__price .modal-price-now { color: var(--dark); font-size: 20px; }
  .related-modal__price .modal-price-old { color: var(--gray); font-size: 13px; text-decoration: line-through; font-weight: 500; }
  .related-modal__actions { display: flex; gap: 8px; }
  @media (max-width: 600px) {
    .related-modal__body { grid-template-columns: 1fr; padding: 20px; }
    .related-modal__media { max-width: 200px; margin: 0 auto; }
  }

  /* WIDEO w story-imgs slider */
  .story-imgs__card { position: relative; }
  .story-imgs__video-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.4) 100%); pointer-events: none; transition: opacity 0.2s; }
  .story-imgs__video-play { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,0.95); color: var(--dark); display: flex; align-items: center; justify-content: center; font-size: 22px; padding-left: 4px; box-shadow: 0 6px 20px rgba(0,0,0,0.25); transition: transform 0.2s; }
  .story-imgs__card[data-video-url]:hover .story-imgs__video-play { transform: scale(1.08); }
  .story-imgs__card[data-video-url] { cursor: pointer; }

  /* STORY IMGS - storytelling slider z gotowymi grafikami (DOL/TOP) + strzałki po bokach */
  .story-imgs { padding: 56px 0; background: #fff; }
  .story-imgs__wrap { position: relative; }
  .story-imgs__viewport { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding: 4px 0; }
  .story-imgs__viewport::-webkit-scrollbar { display: none; }
  .story-imgs__card { flex: 0 0 calc((100% - 48px) / 4); aspect-ratio: 9/16; border-radius: 16px; overflow: hidden; scroll-snap-align: start; background: var(--dark); }
  .story-imgs__card img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .story-imgs__arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid var(--border); font-size: 24px; line-height: 1; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.15); z-index: 10; cursor: pointer; transition: all 0.2s; }
  .story-imgs__arrow:hover { background: var(--teal); border-color: var(--teal); }
  .story-imgs__arrow--prev { left: -22px; }
  .story-imgs__arrow--next { right: -22px; }
  .story-imgs__arrow.is-hidden { opacity: 0; pointer-events: none; visibility: hidden; }
  @media (max-width: 768px) {
    .story-imgs { padding: 36px 0; }
    /* Mobile: slider z 2 grafikami obok siebie (jak for-you-slider) - kazda 49% szerokosci
       z gap 12px. Zachowuje aspect 9/16 + scroll-snap dla kolejnych 2 grafik.
       Arrows wewnatrz kontenera (nad obrazkami) - umozliwiaja kontynuacje slajdowania bez swipe. */
    .story-imgs__viewport { gap: 12px; }
    .story-imgs__card { flex: 0 0 calc((100% - 12px) / 2); }
    .story-imgs__arrow { width: 36px; height: 36px; font-size: 20px; }
    .story-imgs__arrow--prev { left: 8px; }
    .story-imgs__arrow--next { right: 8px; }
  }

  /* DLA KOGO - 6 kafelków */

  /* WSKAZANIA - rozwijane pills, 3 kolumny (jak viloway.com) */
  .pdp-v4 .indications-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 1180px; margin: 0 auto; }
  .indication-acc-wrap { list-style: none; }
  .indication-acc-wrap.is-hidden { display: none; }
  .indication-acc, .indication-acc--static { background: #fff; border: 1px solid var(--border); border-radius: 100px; transition: border-radius 0.2s; }
  .indication-acc[open] { border-radius: 16px; }
  .indication-acc summary, .indication-acc--static .indication-acc__label { list-style: none; cursor: pointer; padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 14px; font-weight: 500; color: var(--dark); line-height: 1.3; }
  .indication-acc--static .indication-acc__label { cursor: default; padding: 12px 20px; }
  .indication-acc summary::-webkit-details-marker { display: none; }
  .indication-acc summary::after { content: '+'; font-size: 20px; color: var(--gray-mid); transition: transform 0.2s; flex-shrink: 0; line-height: 1; }
  .indication-acc[open] summary::after { transform: rotate(45deg); color: var(--teal-dark); }
  .indication-acc__body { padding: 0 20px 14px; font-size: 13px; line-height: 1.55; color: var(--gray-mid); }
  .indications-show-more { text-align: center; margin-top: 24px; }
  .indications-show-more button { background: #fff; border: 1px solid var(--dark); color: var(--dark); padding: 10px 28px; border-radius: 100px; font-size: 12px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; cursor: pointer; transition: all 0.2s; }
  .indications-show-more button:hover { background: var(--dark); color: #fff; }

  .ingredients-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
  .ingredients-img img { border-radius: 16px; }
  .clickable-zoom { cursor: zoom-in; transition: transform 0.2s; }
  .clickable-zoom:hover { transform: scale(1.02); }
  .ingredients-table { width: 100%; border-collapse: collapse; }
  .ingredients-table th, .ingredients-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
  .ingredients-table th { background: var(--teal-bg); font-weight: 700; }
  .ingredients-latin { display: block; font-size: 12px; color: var(--gray); }
  .ingredients-note { margin-top: 16px; font-size: 12px; color: var(--gray); }

  .forms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 32px 0; }
  .featured-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .featured-form-grid--many { grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.25fr); align-items: start; }
  .featured-form-media { align-self: start; }
  .featured-form-media img { width: 100%; height: auto; border-radius: 16px; }
  .forms-list { display: flex; flex-direction: column; gap: 20px; }
  .forms-list--grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
  .form-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
  .forms-list--grid .form-card { padding: 22px; }
  .form-card__num { width: 40px; height: 40px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 16px; }
  .form-card__title { font-weight: 800; font-size: 18px; margin-bottom: 8px; }
  .form-card__amount { font-size: 14px; color: var(--teal-dark); font-weight: 600; margin-bottom: 12px; }
  .form-card__desc { font-size: 14px; color: var(--gray-mid); line-height: 1.6; }

  .mechanism-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .mechanism-grid img { border-radius: 16px; }

  .specialist-card { display: grid; grid-template-columns: 200px 1fr; gap: 32px; max-width: 960px; margin: 0 auto; padding: 40px; background: var(--teal-bg); border-radius: 24px; align-items: center; }
  .specialist-photo { aspect-ratio: 1; border-radius: 50%; overflow: hidden; background: #fff; }
  .specialist-photo img { width: 100%; height: 100%; object-fit: cover; }
  .specialist-content blockquote { margin: 0 0 20px; font-size: 17px; line-height: 1.6; font-style: italic; }
  .specialist-name { font-weight: 800; font-size: 17px; margin-bottom: 4px; }
  .specialist-title { font-size: 13px; color: var(--gray-mid); }


  /* ŚRODKI OSTROŻNOŚCI - sekcja warning */
  .precautions { background: var(--warn-bg); border: 2px solid var(--warn-border); border-radius: 16px; padding: 32px; max-width: 960px; margin: 0 auto; }
  .precautions h3 { display: flex; align-items: center; gap: 12px; font-size: 22px; margin-bottom: 16px; }
  .precautions p { line-height: 1.7; margin: 0 0 12px; font-size: 15px; }
  .precautions ul { margin: 12px 0; padding-left: 0; }
  .precautions li { padding: 8px 0; padding-left: 24px; position: relative; }
  .precautions li::before { content: '⚠️'; position: absolute; left: 0; }

  /* OPINIE - header z prawej kolumną CTA "Posiadasz?" (jak viloway.com) */
  .reviews-header-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; max-width: 1080px; margin: 0 auto 40px; align-items: center; }
  .reviews-h2 { font-size: 32px; font-weight: 800; margin-bottom: 24px; line-height: 1.2; }
  .reviews-score-box { display: inline-flex; gap: 20px; align-items: center; padding: 20px 28px; background: var(--gray-light); border-radius: 16px; }
  .reviews-info-icon { color: var(--gray); font-size: 16px; cursor: help; margin-left: 4px; }
  .reviews-cta-box { background: var(--gray-light); border-radius: 16px; padding: 28px; text-align: center; }
  .reviews-cta-box__title { font-size: 12px; letter-spacing: 0.5px; text-transform: uppercase; line-height: 1.5; margin: 0 0 12px; color: var(--gray-mid); }
  .reviews-cta-box__title strong { color: var(--dark); font-weight: 700; }
  .reviews-cta-box__desc { font-size: 14px; line-height: 1.6; margin: 0 0 16px; color: var(--gray-mid); }
  .reviews-cta-box__btn { display: inline-block; width: auto; padding: 14px 28px; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; }

  /* OPINIE - rozbudowane (legacy) */
  .reviews-summary { display: grid; grid-template-columns: 240px 1fr; gap: 48px; max-width: 960px; margin: 0 auto 32px; align-items: center; }
  .reviews-summary__big { font-size: 64px; font-weight: 800; line-height: 1; }
  .reviews-summary__stars { font-size: 24px; color: var(--gold); margin: 8px 0; }
  .reviews-summary__count { color: var(--gray-mid); }
  .reviews-summary__bars { }
  .reviews-bar { display: grid; grid-template-columns: 60px 1fr 60px; align-items: center; gap: 12px; margin-bottom: 8px; font-size: 13px; }
  .reviews-bar__label { color: var(--gray-mid); }
  .reviews-bar__track { height: 8px; background: var(--gray-light); border-radius: 4px; overflow: hidden; }
  .reviews-bar__fill { height: 100%; background: var(--gold); }
  .reviews-bar__count { text-align: right; color: var(--gray-mid); }
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  /* PDP v4: zwezamy grid opinii z 4 do 3 kolumn (span 3 -> span 4 z 12-col) - karty szersze, bardziej czytelne. */
  .pdp-v4-reviews .product__reviews__content__grid__card { grid-column: auto / span 4 !important; }
  /* PDP v4: tytul "Co mowia o..." domyslnie kompresowany do 25% (1460px+) - rozszerzamy do polowy szerokosci
     zeby naglowek mial dwie linie zamiast szesciu. */
  @media (min-width: 1460px) {
    .pdp-v4-reviews .product__reviews__header__info { grid-column: 1/span 6 !important; }
    .pdp-v4-reviews .product__reviews__header__add-new { grid-column: 8/span 5 !important; }
  }
  @media (min-width: 992px) and (max-width: 1459px) {
    .pdp-v4-reviews .product__reviews__header__info { grid-column: 1/span 6 !important; }
    .pdp-v4-reviews .product__reviews__header__add-new { grid-column: 8/span 5 !important; }
  }
  .review-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
  .review-stars { color: var(--gold); margin-bottom: 12px; }
  .review-content p { margin: 0 0 16px; font-size: 14px; line-height: 1.6; }
  .review-author { font-size: 13px; color: var(--gray-mid); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
  .review-badge { color: var(--teal-dark); font-weight: 600; font-size: 12px; }
  .reviews-cta { text-align: center; margin-top: 32px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

  /* FAQ */
  .faq-list { max-width: 880px; margin: 0 auto; }
  .faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; }
  .faq-item[open] { border-color: var(--teal); }
  .faq-summary { padding: 20px 24px; font-weight: 600; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
  .faq-summary::-webkit-details-marker { display: none; }
  .faq-summary::after { content: '+'; font-size: 24px; color: var(--teal-dark); transition: transform 0.2s; flex-shrink: 0; }
  .faq-item[open] .faq-summary::after { transform: rotate(45deg); }
  .faq-content { padding: 0 24px 20px; line-height: 1.7; color: var(--gray-mid); font-size: 14px; }

  /* AVOID-BOX (sekcja "Czego unikac") */

  /* CERTYFIKATY POZIOMO + 3-stopniowy proces poniżej */
  .lab-certs-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1080px; margin: 0 auto 56px; }
  .lab-process-title { text-align: center; font-size: 22px; margin-bottom: 32px; }
  .lab-process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; }
  .lab-step-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px 24px; text-align: center; transition: all 0.2s; }
  .lab-step-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
  .lab-step__num { width: 48px; height: 48px; border-radius: 50%; background: var(--teal); color: var(--dark); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; margin: 0 auto 16px; }
  .lab-step__title { font-weight: 800; font-size: 17px; margin-bottom: 10px; }
  .lab-step__desc { font-size: 14px; line-height: 1.6; color: var(--gray-mid); }
  .lab-conclusion { font-size: 16px; padding: 18px; background: var(--teal-bg); border-radius: 12px; margin: 32px auto 0; text-align: center; max-width: 700px; }
  .lab-pdfs { max-width: 1080px; margin: 40px auto 0; }
  .lab-pdfs h3 { text-align: center; font-size: 22px; margin: 0 0 22px; }
  .lab-pdfs__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .lab-pdf-card { display: grid; grid-template-columns: 94px minmax(0, 1fr) auto; align-items: center; gap: 18px; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 16px; color: var(--dark); text-decoration: none; transition: all 0.2s; }
  .lab-pdf-card:hover { border-color: var(--teal); color: var(--dark); box-shadow: 0 8px 24px rgba(0,0,0,0.06); transform: translateY(-2px); }
  .lab-pdf-card__thumb { width: 94px; aspect-ratio: 3 / 4; border-radius: 10px; background: var(--teal-bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; overflow: hidden; }
  .lab-pdf-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
  .lab-pdf-card__icon { color: var(--teal-dark); font-weight: 800; font-size: 18px; letter-spacing: 0; }
  .lab-pdf-card__body { min-width: 0; display: flex; flex-direction: column; gap: 5px; }
  .lab-pdf-card__type { color: var(--teal-dark); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0; }
  .lab-pdf-card__title { font-size: 16px; line-height: 1.3; font-weight: 800; }
  .lab-pdf-card__desc { color: var(--gray-mid); font-size: 13px; line-height: 1.45; }
  .lab-pdf-card__meta { color: var(--gray-mid); font-size: 12px; }
  .lab-pdf-card__cta { background: var(--teal); border-radius: 999px; color: var(--dark); font-size: 13px; font-weight: 800; padding: 9px 14px; white-space: nowrap; }
  @media (max-width: 768px) {
    .lab-certs-row, .lab-process-steps { grid-template-columns: 1fr; gap: 12px; }
    .lab-pdfs__grid { grid-template-columns: 1fr; }
    .lab-pdf-card { grid-template-columns: 76px minmax(0, 1fr); }
    .lab-pdf-card__thumb { width: 76px; }
    .lab-pdf-card__cta { grid-column: 1 / -1; text-align: center; }
  }
  .cert-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 28px 20px; text-align: center; transition: all 0.2s; }
  .cert-icon { font-size: 48px; margin-bottom: 12px; }
  .cert-title { font-weight: 800; font-size: 16px; margin-bottom: 6px; }
  .cert-desc { font-size: 13px; color: var(--gray-mid); margin-bottom: 12px; }

  /* TRANSPARENCY mosaic z K cards */
  .transparency-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 1080px; margin: 0 auto; }
  .transparency-mosaic img { border-radius: 12px; aspect-ratio: 1; object-fit: cover; }

  /* STORYTELLING SLIDER - cards 9:14 z różnymi typami (dark + photo + video) */
  .story-slider-wrap { position: relative; }
  .story-slider { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding-bottom: 8px; }
  .story-slider::-webkit-scrollbar { display: none; }
  .story-card { flex: 0 0 calc((100% - 64px) / 5); aspect-ratio: 9/14; border-radius: 16px; overflow: hidden; scroll-snap-align: start; position: relative; padding: 28px 22px; display: flex; flex-direction: column; justify-content: space-between; }
  .story-card--dark { background: var(--dark); color: #fff; }
  .story-card--photo { background-size: cover; background-position: center; color: #fff; padding: 0; }
  .story-card__title { font-size: 22px; font-weight: 800; line-height: 1.2; margin: 0; color: #fff; }
  .story-card__body { font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.7); margin: 0; }
  .story-card__body--white { color: #fff; }
  .story-card__pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; margin-bottom: 16px; }
  .story-pill { background: rgba(255,255,255,0.95); color: var(--dark); padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 600; }
  .story-card--photo .story-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%); }
  .story-card__content { position: absolute; left: 22px; right: 22px; }
  .story-card__content--bottom { bottom: 22px; }
  .story-card--video { cursor: pointer; }
  .story-card__play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,0.95); color: var(--dark); display: flex; align-items: center; justify-content: center; z-index: 5; transition: all 0.2s; }
  .story-card__play-btn svg { width: 24px; height: 24px; margin-left: 3px; }
  .story-card--video:hover .story-card__play-btn { transform: translate(-50%, -50%) scale(1.1); background: #fff; }
  .story-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid var(--border); font-size: 24px; line-height: 1; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.1); z-index: 10; cursor: pointer; }
  .story-arrow:hover { background: var(--teal); border-color: var(--teal); }
  .story-arrow--prev { left: -22px; }
  .story-arrow--next { right: -22px; }
  @media (max-width: 768px) {
    .story-card { flex: 0 0 80%; padding: 20px; }
    .story-card__title { font-size: 20px; }
    .story-arrow { display: none; }
  }

  /* "Dla kogo" - grafiki po lewej + lista punktów */
  .for-you-content { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr); gap: 56px; align-items: start; max-width: 1120px; }
  .for-you-copy,
  .for-you-list-wrap { min-width: 0; }
  .for-you-copy h3,
  .for-you-list-wrap h3 { margin: 0 0 18px; font-size: 22px; line-height: 1.25; font-weight: 700; color: var(--dark); }
  .for-you-copy p { margin: 0 0 16px; font-size: 17px; line-height: 1.75; color: var(--dark); }
  .for-you-copy p:last-child { margin-bottom: 0; }
  .for-you-copy strong { font-weight: 700; color: var(--dark); }
  .pdp-v4 .for-you-image { margin-top: 24px; }
  .pdp-v4 .for-you-image img { width: 100%; display: block; border-radius: 16px; }
  .for-you-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 48px; align-items: center; }
  .for-you-slider-wrap { position: relative; min-width: 0; }
  .for-you-slider { display: flex; gap: 12px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; min-width: 0; }
  .for-you-slider::-webkit-scrollbar { display: none; }
  /* 2 pełne grafiki + peek 3-ciego. Zachowujemy naturalne proporcje, żeby K-grafiki z tekstem nie były kadrowane. */
  .for-you-slider { align-items: flex-start; }
  .for-you-slider img { width: 49%; flex: 0 0 49%; height: auto; object-fit: contain; border-radius: 16px; scroll-snap-align: start; max-width: none; }
  .for-you-slider--single img { width: 100%; flex-basis: 100%; }
  /* Strzałki - po bokach slidera (absolute), z auto-hide na krańcach */
  .for-you-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid var(--border); font-size: 24px; line-height: 1; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.15); z-index: 10; cursor: pointer; transition: all 0.2s; }
  .for-you-arrow:hover { background: var(--teal); border-color: var(--teal); }
  .for-you-arrow--prev { left: -22px; }
  .for-you-arrow--next { right: -22px; }
  .for-you-arrow.is-hidden { opacity: 0; pointer-events: none; visibility: hidden; }
  .pdp-v4 .for-you-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); align-items: center; }
  .pdp-v4 .for-you-bullets { display: flex; flex-direction: column; gap: 16px; padding: 0; margin: 0; list-style: none; min-width: 0; max-width: 100%; }
  .pdp-v4 .for-you-bullets li { display: flex; gap: 14px; align-items: flex-start; font-size: 17px; line-height: 1.55; color: var(--dark); overflow-wrap: break-word; word-wrap: break-word; }
  .pdp-v4 .for-you-text { flex: 1; min-width: 0; }
  .pdp-v4 .for-you-text strong { font-weight: 700; color: var(--dark); }
  .pdp-v4 .for-you-check { flex-shrink: 0; width: 28px; height: 28px; border: 2px solid var(--teal); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--teal-dark); font-size: 16px; margin-top: 2px; }
  .pdp-v4 .for-you-check::before { content: '✓'; font-weight: 800; }
  .pdp-v4 .for-you-check i { display: none; }

  /* FOOTER */
  .footer { background: var(--dark); color: #fff; padding: 40px 0; text-align: center; font-size: 14px; }

  /* LIGHTBOX MODAL */
  .lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 11000; align-items: center; justify-content: center; padding: 24px; }
  .lightbox.is-open { display: flex; }
  .lightbox__img { max-width: 90vw; max-height: 90vh; border-radius: 8px; }
  .lightbox__close { position: absolute; top: 24px; right: 24px; background: rgba(255,255,255,0.1); border: 0; color: #fff; width: 48px; height: 48px; border-radius: 50%; font-size: 24px; cursor: pointer; }
  .lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: 0; color: #fff; width: 56px; height: 56px; border-radius: 50%; font-size: 28px; cursor: pointer; }
  .lightbox__nav--prev { left: 24px; }
  .lightbox__nav--next { right: 24px; }

  /* STICKY MOBILE */
  .sticky-mobile { display: none; }
  @media (max-width: 768px) {
    /* SPOJNY PADDING LEWO/PRAWO: 16px wszedzie - .container, .pdp-container i sekcje
       bez .container (reviews, story-imgs slider, related slider). Nic nie dotyka krawedzi viewportu. */
    .pdp-v4 .pdp-container,
    .pdp-v4 .container { width: 100%; max-width: 100%; padding: 0 16px; box-sizing: border-box; }
    .pdp-v4 { overflow-x: hidden; }
    .pdp-v4-reviews .product__reviews__header,
    .pdp-v4-reviews .product__reviews__content { padding-left: 16px; padding-right: 16px; }
    .pdp-v4 .hero__grid { grid-template-columns: minmax(0, 1fr); gap: 24px; width: 100%; max-width: 100%; }
    .pdp-v4 .info { width: 100%; max-width: 100%; min-width: 0; overflow: hidden; }
    .pdp-v4 .info > * { max-width: 100%; }
    .pdp-v4 .gallery { position: static; top: auto; }
    .pdp-v4 .title { font-size: 28px; }
    .pdp-v4 .title__sub { font-size: 0.58em; overflow-wrap: anywhere; word-break: normal; }
    .pdp-v4 .meta-line { gap: 6px; }
    .pdp-v4 .meta-chip { max-width: 100%; white-space: normal; }
    .pdp-v4 .rating-inline { flex-wrap: wrap; min-width: 0; }
    .pdp-v4 .bullet { min-width: 0; }
    .pdp-v4 .bullet-text { min-width: 0; overflow-wrap: anywhere; }
    .pdp-v4 .price-block { width: 100%; max-width: 100%; padding: 14px 16px; border-radius: 14px; overflow: hidden; }
    .pdp-v4 .price-label { justify-content: flex-start; align-items: flex-start; flex-wrap: wrap; gap: 8px; }
    .pdp-v4 .price-label__type,
    .pdp-v4 .price-label__sub { max-width: 100%; white-space: normal; }
    .pdp-v4 .price-row { gap: 8px; }
    .pdp-v4 .price-old { font-size: 16px; }
    .pdp-v4 .price-block .price { font-size: 30px; }
    .pdp-v4 .price-per-unit-inline { font-size: 12px; }
    .pdp-v4 .cta-row { width: 100%; max-width: 100%; display: grid; grid-template-columns: 104px minmax(0, 1fr); gap: 8px; align-items: stretch; }
    .pdp-v4 .cta-row .qty { width: 104px; justify-content: space-between; }
    .pdp-v4 .cta-row .btn--primary { min-width: 0; padding: 14px 10px; font-size: 15px; gap: 6px; white-space: nowrap; }
    .pdp-v4 .cta-row .btn--primary i { font-size: 18px; }
    .pdp-v4 .info-line { width: 100%; max-width: 100%; border-radius: 18px; align-items: flex-start; gap: 8px; padding: 10px 12px; }
    .pdp-v4 .info-line__sep { display: none; }
    .pdp-v4 .delivery-info { flex: 1 1 160px; min-width: 0; line-height: 1.35; }
    .pdp-v4 .payment-methods { width: 330px; max-width: calc(100vw - 32px); margin: 8px auto 16px; overflow: hidden; }
    .pdp-v4 .payment-methods__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px 6px; width: 100%; max-width: 100%; }
    .pdp-v4 .payment-methods__list .pm-logo { width: 100%; min-width: 0; height: 30px; padding: 0; }
    .pdp-v4 .pm-logo--blik img { height: 28px; max-width: 60px; }
    .pdp-v4 .pm-logo--svg:not(.pm-logo--blik):not(.pm-logo--payu):not(.pm-logo--klarna):not(.pm-logo--paypo):not(.pm-logo--gpay):not(.pm-logo--applepay) img { height: 26px; max-width: 68px; }
    .pdp-v4 .pm-logo--payu img { height: 28px; max-width: 68px; }
    .pdp-v4 .pm-logo--klarna img { height: 27px; max-width: 74px; }
    .pdp-v4 .pm-logo--paypo img { height: 27px; max-width: 78px; }
    .pdp-v4 .pm-logo--gpay img { height: 27px; max-width: 56px; }
    .pdp-v4 .pm-logo--applepay img { height: 27px; max-width: 70px; }
    .pdp-v4 .trust-pills { display: grid; grid-template-columns: 1fr; justify-content: stretch; width: 100%; }
    .pdp-v4 .trust-pill { width: 100%; max-width: 100%; justify-content: center; text-align: center; overflow-wrap: anywhere; }
    .pdp-v4 .hero-accordion,
    .pdp-v4 details.accordion-item,
    .pdp-v4 .accordion-content,
    .pdp-v4 .accordion-content p { max-width: 100%; min-width: 0; overflow-wrap: break-word; word-wrap: break-word; }
    /* Mobile spacing - wszystkie sekcje 36px gory/dolu zamiast 64px (43% redukcja).
       Naglowki h2 mniejsze (24px zamiast 32px) i mniej oddech (20px zamiast 32px). */
    .pdp-v4 .section { padding: 36px 0; }
    .pdp-v4 .section h2 { font-size: 24px; line-height: 1.25; margin-bottom: 20px; }
    .pdp-v4 #wskazania h2 { max-width: 100%; font-size: 22px; line-height: 1.3; text-align: left; }
    .pdp-v4 #wskazania h2 b { display: block; }
    .pdp-v4 .indications-list { grid-template-columns: 1fr; gap: 8px; max-width: 100%; }
    .pdp-v4 .indication-acc,
    .pdp-v4 .indication-acc--static { border-radius: 18px; }
    .pdp-v4 .indication-acc summary,
    .pdp-v4 .indication-acc--static .indication-acc__label { min-height: 48px; padding: 12px 16px; font-size: 15px; line-height: 1.3; }
    .pdp-v4 .indication-acc__body { padding: 0 16px 14px; font-size: 14px; line-height: 1.55; }
    .pdp-v4 .indications-show-more { margin-top: 18px; }
    .pdp-v4 .indications-show-more button { width: 100%; min-height: 44px; padding: 12px 18px; font-size: 12px; }
    .pdp-v4 .section__intro,
    .pdp-v4 .section > .container > p { margin-bottom: 20px; }
    /* !important nadpisuje base `.pdp-v4 .X` ktore ma wyzsza specyficzność niz sam `.X` w media query. */
    .pdp-v4 .bullets-grid { grid-template-columns: 1fr !important; }
    /* Mobile 1-col stack dla wszystkich grid layoutow uzywanych w product4 v4. */
    .pdp-v4 .for-you-content,
    .pdp-v4 .for-you-grid { grid-template-columns: 1fr !important; gap: 24px; }
    .pdp-v4 .for-you-slider img { flex: 0 0 calc((100% - 12px) / 2); width: calc((100% - 12px) / 2); }
    .pdp-v4 .for-you-arrow { display: none; }
    .pdp-v4 .ingredients-grid,
    .pdp-v4 .mechanism-grid,
    .pdp-v4 .featured-form-grid { grid-template-columns: 1fr; }
    .pdp-v4 .forms-list--grid { grid-template-columns: 1fr; }
    .pdp-v4 .reviews-grid { grid-template-columns: 1fr; }
    .pdp-v4 .specialist-card { grid-template-columns: 1fr; padding: 24px; text-align: center; }
    .pdp-v4 .specialist-photo { max-width: 140px; margin: 0 auto; }
    .pdp-v4 .header__nav { display: none; }
    .pdp-v4 .floating-cta { display: none !important; }
    /* Mobile: anchor sticky bar HIDDEN, zamiast tego floating "Spis treści" FAB - spójne z hamburgerem oryginału viloway.com */
    .pdp-v4 .anchor-nav { display: none; }
    .pdp-v4 .toc-fab { display: flex; }

    .pdp-v4 .sticky-mobile { display: flex; align-items: center; justify-content: space-between; gap: 12px; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100; padding: 12px 16px; background: #fff; box-shadow: 0 -4px 12px rgba(0,0,0,0.08); border-top: 1px solid var(--border); }
    .pdp-v4 .sticky-mobile__info strong { font-size: 14px; }
    .pdp-v4 .sticky-mobile__info span { font-size: 18px; font-weight: 800; display: block; }

    .pdp-v4 { padding-bottom: 76px; }
  }
  @media (max-width: 480px) {
    .pdp-v4 .trust-strip__inner {
      grid-template-columns: 1fr;
    }
    .pdp-v4 .trust-badge {
      min-height: 64px;
    }
  }

  /* === REPLIKA HEADERA viloway.com === */
  @font-face {
    font-family: 'villo-font';
    src: url('font/vilo-font.woff2') format('woff2'),
         url('font/vilo-font.woff') format('woff');
    font-weight: normal; font-style: normal; font-display: swap;
  }
  [class^="icon-vilo-"]:before, [class*=" icon-vilo-"]:before { font-family: "villo-font"; font-style: normal; font-weight: normal; display: inline-block; speak: none; text-decoration: inherit; text-align: center; font-variant: normal; text-transform: none; line-height: 1em; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
  .icon-vilo-search:before { content: '\e801'; }
  .icon-vilo-user:before { content: '\e802'; }
  .icon-vilo-shopping-bag:before { content: '\e804'; }
  .icon-vilo-heart:before { content: '\e80b'; }
  .icon-vilo-menu:before { content: '\e818'; }

  /* Pasek górny zielony - "Przeglądasz jako" + Język */
  .vw-navbar-top { width: 100%; background: linear-gradient(90deg, rgb(172,225,217) 0%, rgb(90,206,150) 100%); padding: 10px 24px; font-size: 13px; color: var(--dark); position: relative; z-index: 1031; }
  .vw-navbar-top__wrapper { width: 100%; display: flex; justify-content: flex-end; gap: 24px; }
  .vw-navbar-top__wrapper li { display: flex; gap: 8px; align-items: center; list-style: none; }
  .vw-navbar-top__wrapper ul { display: flex; gap: 24px; margin: 0; padding: 0; }
  .vw-navbar-top__wrapper b { font-weight: 700; }
  .vw-flag { display: inline-block; width: 20px; height: 20px; border-radius: 50%; background: linear-gradient(180deg, #fff 0 50%, #DC143C 50% 100%); border: 1px solid rgba(0,0,0,0.1); }

  /* Główny header z logo, search, ikonkami */
  .vw-header { background: #fff; box-shadow: 0 2px 4px rgba(0,0,0,0.08); }
  .vw-navbar-main { width: 100%; }
  .vw-navbar-main__wrapper { display: flex; justify-content: space-between; align-items: center; padding: 12px 24px; min-height: 66px; gap: 24px; max-width: 1440px; margin: 0 auto; }
  .vw-brand { display: flex; align-items: center; gap: 18px; }
  .vw-brand img { height: 30px; width: auto; }
  .vw-brand__separator { width: 1px; height: 28px; background: var(--border); }
  .vw-brand__sklep { font-size: 14px; font-weight: 700; letter-spacing: 0.04em; color: var(--dark); text-transform: uppercase; text-decoration: none; }
  .vw-search { flex: 1; max-width: 720px; position: relative; }
  .vw-search input { width: 100%; padding: 12px 18px 12px 46px; border: 1px solid var(--border); border-radius: 100px; font-size: 14px; outline: none; transition: border-color 0.2s; }
  .vw-search input:focus { border-color: var(--teal); }
  .vw-search .icon-vilo-search { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--gray-mid); font-size: 16px; }
  .vw-actions { display: flex; gap: 4px; align-items: center; }
  .vw-action { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 6px 10px; text-decoration: none; color: var(--dark); font-size: 11px; line-height: 1.2; position: relative; transition: color 0.2s; }
  .vw-action:hover { color: var(--teal-dark); }
  .vw-action i { font-size: 22px; line-height: 1; }
  .vw-action--vilo i { color: var(--teal-dark); }
  .vw-badge { position: absolute; top: 0; right: 4px; background: #e74c3c; color: #fff; font-size: 10px; font-weight: 700; min-width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 0 4px; }
  .vw-rabat { display: flex; flex-direction: column; align-items: center; padding: 6px 10px; font-size: 11px; line-height: 1.2; color: var(--dark); }
  .vw-rabat span:first-child { font-weight: 700; }
  .vw-rabat span:last-child { font-size: 14px; font-weight: 800; color: var(--teal-dark); }

  /* Menu poziome pod headerem - desktop */
  .vw-menu-wrap { background: #fff; border-bottom: 1px solid var(--border); }
  .vw-menu { display: flex; gap: 8px; align-items: center; justify-content: center; padding: 8px 24px; max-width: 1440px; margin: 0 auto; list-style: none; }
  .vw-menu li { position: relative; }
  .vw-menu a { display: block; padding: 14px 16px; text-decoration: none; color: var(--dark); font-size: 14px; font-weight: 500; transition: color 0.2s; }
  .vw-menu a:hover { color: var(--teal-dark); }
  .vw-menu .has-submenu > a::after { content: ' ▾'; font-size: 10px; color: var(--gray-mid); }

  @media (max-width: 991px) {
    .vw-navbar-top { padding: 8px 16px; font-size: 12px; }
    .vw-navbar-main__wrapper { padding: 10px 16px; gap: 12px; }
    .vw-brand img { height: 26px; }
    .vw-brand__separator, .vw-brand__sklep { display: none; }
    .vw-search { display: none; }
    .vw-actions { gap: 2px; }
    .vw-action span { display: none; }
    .vw-rabat { display: none; }
    .vw-menu-wrap { display: none; }
  }
