/* ============================================================
   product.css — Levante Corner product page
   Luxury design system: Cormorant + DM Sans
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --p-cream:        #F7F3EE;
  --p-cream-alt:    #EDE7DF;
  --p-warm:         #FDFCFA;
  --p-sand:         #E8E0D4;
  --p-charcoal:     #1E1E1E;
  --p-muted:        #6B6560;
  --p-muted-light:  #9B9590;
  --p-gold:         #B8965A;
  --p-gold-light:   #D4B87A;
  --p-olive:        #5C6B4F;
  --p-olive-dark:   #3E4A35;
  --p-font-display: 'DM Serif Display', Georgia, serif;
  --p-section-gap:  clamp(80px, 10vw, 140px);
}

/* ── Reveal animation utility ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Keyframes ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: none; }
}

@keyframes prodImgReveal {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  background: var(--p-warm);
  border-bottom: 1px solid var(--p-sand);
  padding: 14px 0;
}
.breadcrumb .container,
.breadcrumb__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
  color: var(--p-muted);
}
.breadcrumb__list li {
  display: flex;
  align-items: center;
}
.breadcrumb__list li + li::before {
  content: '\00b7';
  margin: 0 8px;
  opacity: 0.4;
}
.breadcrumb__list a {
  color: var(--p-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb__list a:hover {
  color: var(--p-gold);
}
.breadcrumb__list li:last-child span {
  color: var(--p-charcoal);
  font-weight: 500;
}

/* ── Breadcrumb: wyjmij z flow gdy jest bezpośrednim rodzeństwem .prod-hero ── */
/* Dotyczy levante-corner gdzie .breadcrumb jest przed .prod-hero w dokumencie  */
main:has(.prod-hero) {
  position: relative;
}
main:has(.prod-hero) > .breadcrumb {
  position: absolute;
  top: var(--nav-height, 80px);
  left: 0;
  right: 0;
  z-index: 20;
}

/* ── Product Hero ───────────────────────────────────────────── */
.prod-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  margin-top: 0;
}

/* Media side — sticky: klei się do góry okna, prawa kolumna scrolluje niezależnie */
.prod-hero__media {
  position: sticky;
  top: 0;
  overflow: hidden;
  background: var(--p-cream);
  height: 100svh;
  align-self: start;
  cursor: zoom-in;
}

/* Slajdy — długie, płynne crossfade ─────────────────────────── */
.gallery-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.gallery-slide.is-active {
  opacity: 1;
}

/* Bottom vignette — thumbnails i dots czytają się nad każdym zdjęciem */
.prod-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(0, 0, 0, 0.18) 30%,
    transparent         55%);
  z-index: 2;
  pointer-events: none;
}

/* Badge overlays */
.prod-hero__badge-wrap {
  position: absolute;
  top: 32px;
  left: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
}
.prod-hero__badge--gold {
  background: var(--p-gold);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
  font-weight: 600;
  animation: fadeDown 0.6s ease 0.8s both;
  display: inline-block;
}
.prod-hero__badge--dark {
  background: rgba(20, 20, 20, 0.7);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
  font-weight: 500;
  animation: fadeDown 0.6s ease 1s both;
  display: inline-block;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Thumbnails — scrollable horizontal strip */
.prod-hero__thumbs {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  z-index: 3;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px; /* room for active ring */
}
.prod-hero__thumbs::-webkit-scrollbar { display: none; }
.prod-hero__thumb {
  width: 66px;
  height: 66px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.25);
  opacity: 0.55;
  cursor: pointer;
  transition: border-color 0.35s ease, opacity 0.35s ease,
              transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
  padding: 0;
  background: none;
}
.prod-hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.prod-hero__thumb.active {
  border-color: var(--p-gold);
  opacity: 1;
  box-shadow: 0 0 0 1px var(--p-gold), 0 4px 16px rgba(184,150,90,0.35);
}
.prod-hero__thumb:hover:not(.active) {
  border-color: rgba(255,255,255,0.7);
  opacity: 0.85;
  transform: translateY(-2px);
}

/* Gallery arrows — gold premium */
.prod-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 52px;
  height: 52px;
  background: rgba(0, 0, 0, 0.22);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.35s ease, border-color 0.35s ease,
              transform 0.35s ease, opacity 0.35s ease, color 0.35s ease;
  opacity: 0.3;  /* zawsze lekko widoczne */
}
.prod-hero__media:hover .prod-gallery__arrow { opacity: 0.85; }
.prod-gallery__arrow:hover {
  background: rgba(184, 150, 90, 0.85);
  border-color: var(--p-gold);
  color: #fff;
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
}
.prod-gallery__arrow:active { transform: translateY(-50%) scale(0.96); }
.prod-gallery__arrow:focus-visible { opacity: 1; outline: 2px solid var(--p-gold); outline-offset: 3px; }
.prod-gallery__arrow--prev { left: 20px; }
.prod-gallery__arrow--next { right: 20px; }
.prod-gallery__arrow svg {
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}

.prod-hero__main-img.fading {
  opacity: 0 !important;
  transition: opacity 0.7s ease !important;
}

/* ── Slide indicator dots ───────────────────────────────────── */
.gallery-dots {
  display: none !important;
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
  padding: 7px 10px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
}

.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.45s ease,
              opacity 0.45s ease;
  opacity: 0.65;
  flex-shrink: 0;
}

.gallery-dot.is-active {
  width: 22px;
  background: var(--p-gold);
  opacity: 1;
}

/* Info side */
.prod-hero__info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(40px, 5vw, 80px);
  padding-top: calc(var(--nav-height, 80px) + clamp(20px, 3vw, 40px));
  gap: 18px;
  /* Bez overflow-y: auto i max-height — strona scrolluje normalnie,
     co pozwala na działanie position: sticky na lewej kolumnie */
}

/* Staggered entrance animations */
.prod-hero__label      { animation: fadeUp 0.7s ease 0.5s both; }
.prod-hero__title      { animation: fadeUp 0.7s ease 0.65s both; }
.prod-hero__subtitle   { animation: fadeUp 0.7s ease 0.78s both; }
.prod-hero__rating     { animation: fadeUp 0.7s ease 0.88s both; }
.prod-hero__specs-strip { animation: fadeUp 0.7s ease 0.98s both; }
.prod-hero__variants   { animation: fadeUp 0.7s ease 1.06s both; }
.prod-hero__price-block { animation: fadeUp 0.7s ease 1.14s both; }
.prod-hero__qty-row    { animation: fadeUp 0.7s ease 1.22s both; }
.prod-hero__consult-btn { animation: fadeUp 0.7s ease 1.28s both; }
.prod-hero__trust      { animation: fadeUp 0.7s ease 1.3s both; }
.prod-hero__allegro    { animation: fadeUp 0.7s ease 1.35s both; }

.prod-hero__label {
  font-size: 0.7rem;
  color: var(--p-gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.prod-hero__title {
  font-family: var(--p-font-display);
  font-size: var(--fs-display);
  font-weight: var(--fw-heading);
  letter-spacing: -0.03em;
  color: var(--p-charcoal);
  line-height: 1.05;
  margin: 0;
}
.prod-hero__title em {
  font-style: italic;
  font-weight: var(--fw-heading-em);
  color: var(--p-gold);
}

.prod-hero__subtitle {
  font-size: 1rem;
  color: var(--p-muted);
  line-height: 1.8;
  margin: 0;
}

.prod-hero__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--p-muted);
}
.prod-hero__stars {
  color: var(--p-gold);
  font-size: 1rem;
}
.prod-hero__stars--empty {
  color: var(--p-gold-light);
  opacity: 0.55;
  letter-spacing: 2px;
}
.prod-hero__rating a,
.prod-hero__rating-note--link {
  color: var(--p-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 0.85rem;
}
.prod-hero__rating-note--link:hover {
  color: var(--p-gold);
}

/* Specs strip */
.prod-hero__specs-strip {
  display: flex;
  border: 1px solid var(--p-sand);
  border-radius: 4px;
  overflow: hidden;
}
.prod-hero__spec {
  flex: 1;
  padding: 12px 16px;
  text-align: center;
  border-right: 1px solid var(--p-sand);
}
.prod-hero__spec:last-child {
  border-right: none;
}
.prod-hero__spec-value {
  display: block;
  font-family: var(--p-font-display);
  font-size: clamp(0.7rem, 1.3vw, 1.1rem);
  font-weight: 700;
  color: var(--p-charcoal);
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.prod-hero__spec-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--p-muted-light);
  margin-top: 2px;
}

/* Variants */
.prod-hero__variants {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prod-hero__variants-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--p-charcoal);
  letter-spacing: 0.04em;
}
.prod-hero__variants-label #selectedColor {
  font-weight: 400;
  color: var(--p-gold);
}
.prod-hero__variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.variant-btn {
  padding: 8px 18px;
  border: 1.5px solid var(--p-sand);
  border-radius: 2px;
  font-size: 13px;
  color: var(--p-muted);
  cursor: pointer;
  background: transparent;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  font-family: inherit;
}
.variant-btn.active {
  background: var(--p-charcoal);
  border-color: var(--p-charcoal);
  color: #fff;
}
.variant-btn:hover:not(.active) {
  border-color: var(--p-gold);
  color: var(--p-charcoal);
}

/* Price block */
.prod-hero__price-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.prod-hero__price-main {
  font-family: var(--p-font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--p-charcoal);
  letter-spacing: -0.02em;
  line-height: 1;
}
.prod-hero__price-note {
  font-size: 12px;
  color: var(--p-muted);
}
.prod-hero__price-roi {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--p-gold);
  background: rgba(184, 150, 90, 0.08);
  padding: 5px 12px;
  border-radius: 100px;
  width: fit-content;
}

/* Qty + add to cart */
.prod-hero__qty-row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.prod-hero__qty-stepper {
  display: flex;
  border: 1.5px solid var(--p-sand);
  border-radius: 2px;
  overflow: hidden;
}
.prod-hero__qty-btn {
  width: 40px;
  height: 48px;
  background: transparent;
  border: none;
  font-size: 18px;
  color: var(--p-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prod-hero__qty-btn:hover {
  background: var(--p-cream);
  color: var(--p-charcoal);
}
.prod-hero__qty-input {
  width: 48px;
  height: 48px;
  border: none;
  border-left: 1.5px solid var(--p-sand);
  border-right: 1.5px solid var(--p-sand);
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--p-charcoal);
  outline: none;
  background: transparent;
  font-family: inherit;
  -moz-appearance: textfield;
}
.prod-hero__qty-input::-webkit-outer-spin-button,
.prod-hero__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.prod-hero__add-cart {
  flex: 1;
  height: 48px;
  background: var(--p-charcoal);
  color: #fff;
  border: none;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: inherit;
}
.prod-hero__add-cart:hover {
  background: #000;
  transform: translateY(-1px);
}

/* Consult button */
.prod-hero__consult-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border: 1.5px solid var(--p-sand);
  border-radius: 2px;
  font-size: 13px;
  color: var(--p-charcoal);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  font-family: inherit;
  text-align: center;
  padding: 0 16px;
  margin-left: 143px; /* align with add-cart: stepper (131px) + gap (12px) */
}
.prod-hero__consult-btn:hover {
  border-color: var(--p-gold);
  color: var(--p-gold);
}

/* Trust icons */
.prod-hero__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--p-sand);
}
.prod-hero__trust-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.prod-hero__trust-icon {
  width: 52px;
  height: 52px;
  background: rgba(184, 150, 90, 0.10);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p-gold);
  flex-shrink: 0;
}
.prod-hero__trust-icon svg {
  width: 28px;
  height: 28px;
}
.prod-hero__trust-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--p-charcoal);
  line-height: 1.3;
}
.prod-hero__trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: center;
}
.prod-hero__trust-desc {
  font-size: 12px;
  color: var(--p-muted-light);
  line-height: 1.4;
  word-break: break-word;
}
.prod-hero__adam-block {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}
.prod-hero__adam-bubble {
  position: relative;
  background: var(--p-warm);
  border: 1px solid var(--p-sand);
  border-radius: 12px 12px 2px 12px;
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--p-muted);
  line-height: 1.6;
  white-space: nowrap;
}
.prod-hero__adam-bubble::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: -8px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid var(--p-warm);
}
.prod-hero__adam-bubble::before {
  content: '';
  position: absolute;
  bottom: 11px;
  left: -9px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 9px solid var(--p-sand);
}
.prod-hero__adam-photo {
  display: block;
  width: 72px;
  height: auto;
  border-radius: 4px;
  border: 2px solid var(--p-gold);
  flex-shrink: 0;
}

/* ── Inline breadcrumb in hero info ────────────────────────── */
.prod-hero__breadcrumb {
  margin-bottom: -4px;
}
.prod-hero__breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
  color: var(--p-muted-light);
}
.prod-hero__breadcrumb-list li {
  display: flex;
  align-items: center;
}
.prod-hero__breadcrumb-list li + li::before {
  content: '/';
  margin: 0 6px;
  opacity: 0.35;
}
.prod-hero__breadcrumb-list a {
  color: var(--p-muted-light);
  text-decoration: none;
  transition: color 0.2s;
}
.prod-hero__breadcrumb-list a:hover { color: var(--p-gold); }
.prod-hero__breadcrumb-list li:last-child span { color: var(--p-muted); }

/* ── Rating note ────────────────────────────────────────────── */
.prod-hero__rating-note {
  font-size: 0.78rem;
  color: var(--p-muted-light);
}
.prod-hero__rating-note a {
  color: var(--p-gold);
  text-decoration: none;
  text-underline-offset: 2px;
}
.prod-hero__rating-note a:hover { text-decoration: underline; }

/* ── Color placeholder ──────────────────────────────────────── */
.prod-hero__color-placeholder {
  color: var(--p-muted-light);
  font-style: italic;
  font-weight: 400;
}

/* ── Color error message ────────────────────────────────────── */
.prod-hero__color-error {
  font-size: 0.78rem;
  color: #c0392b;
  background: rgba(192, 57, 43, 0.06);
  border: 1px solid rgba(192, 57, 43, 0.18);
  border-radius: 3px;
  padding: 7px 12px;
  margin-top: -6px;
}

/* ── Variant btn required state ─────────────────────────────── */
.variant-btn--required {
  border-color: #c0392b !important;
  animation: shake 0.35s ease;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25%       { transform: translateX(-4px); }
  75%       { transform: translateX(4px); }
}

/* ── Variant btn — stany magazynowe ────────────────────────── */

/* Wspólny styl badge pod przyciskiem */
.variant-btn {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.variant-btn__badge {
  display: block;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-top: 3px;
  white-space: nowrap;
}

/* Niedostępny — wyszarzony, przekreślony */
.variant-btn--unavailable {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: auto;
  text-decoration: line-through;
  text-decoration-color: var(--p-muted);
}
.variant-btn--unavailable:hover {
  border-color: var(--p-sand) !important;
  color: var(--p-muted) !important;
}
.variant-btn--unavailable.active {
  background: transparent;
  border-color: var(--p-sand);
  color: var(--p-muted);
}
.variant-btn__badge--unavail {
  color: #c0392b;
  font-weight: 600;
  text-decoration: none;
}

/* Wkrótce / Rezerwacja — złota ramka, badge z datą */
.variant-btn--preorder {
  border-color: var(--p-gold);
  border-style: dashed;
}
.variant-btn--preorder:hover {
  border-color: var(--p-gold) !important;
  background: rgba(184, 150, 90, 0.06);
}
.variant-btn--preorder.active {
  background: rgba(184, 150, 90, 0.12);
  border-color: var(--p-gold);
  border-style: solid;
  color: var(--p-charcoal);
}
.variant-btn__badge--preorder {
  color: var(--p-gold);
  font-weight: 600;
}

/* Przycisk koszyka — tryb rezerwacji */
.prod-hero__add-cart--reserve {
  background: #1C2B1A !important;
  border-color: #1C2B1A !important;
  color: #fff !important;
}
.prod-hero__add-cart--reserve:hover {
  background: #243821 !important;
}

/* ── Add to cart — green variant ───────────────────────────── */
.prod-hero__add-cart--green {
  background: #1C2B1A;
}
.prod-hero__add-cart--green:hover {
  background: #243821;
}

/* ── Consult button — gold variant ─────────────────────────── */
.prod-hero__consult-btn--gold {
  background: var(--p-gold);
  border-color: var(--p-gold);
  color: var(--p-olive-dark);
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
}
.prod-hero__consult-btn--gold:hover {
  background: var(--p-gold-light);
  border-color: var(--p-gold-light);
  color: var(--p-olive-dark);
}


/* ── Opis produktu ──────────────────────────────────────────── */
.prod-desc__body {
  max-width: 100%;
}
.prod-desc__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .prod-desc__cols {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.prod-desc__body p {
  font-size: 1rem;
  color: var(--p-muted);
  line-height: 1.8;
  margin: 0 0 1.1em;
}
.prod-desc__body h3 {
  font-family: var(--p-font-display);
  font-size: 1.25rem;
  color: #1A2818;
  margin: 2em 0 0.5em;
  font-weight: 400;
}
.prod-desc__body ul {
  margin: 0 0 1.1em 1.2em;
  padding: 0;
}
.prod-desc__body ul li {
  font-size: 1rem;
  color: var(--p-muted);
  line-height: 1.8;
  margin-bottom: 0.2em;
}
.prod-desc__body ul li::marker {
  color: #1A2818;
}
.prod-desc__tip {
  background: rgba(184, 150, 90, 0.07);
  border-left: 3px solid var(--p-gold);
  padding: 14px 18px;
  border-radius: 0 4px 4px 0;
  font-size: 0.95rem !important;
}

/* ── Trust Bar ──────────────────────────────────────────────── */
.prod-trust-bar {
  background: #1C2B1A;
}
.prod-trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: 0 auto;
}
.prod-trust-bar__item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.prod-trust-bar__item:last-child {
  border-right: none;
}
.prod-trust-bar__item:hover {
  background: rgba(255, 255, 255, 0.03);
}
.prod-trust-bar__icon {
  color: var(--p-gold);
  opacity: 0.8;
}
.prod-trust-bar__icon svg {
  width: 20px;
  height: 20px;
}
.prod-trust-bar__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
}
.prod-trust-bar__value {
  font-family: var(--p-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

/* ── Section Commons ────────────────────────────────────────── */
.prod-section {
  padding: var(--p-section-gap) 0;
}
.prod-desc {
  background: #FAFAF8;
}
.prod-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}
.prod-section-label {
  display: block;
  font-size: 11px;
  color: var(--p-gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 12px;
}
.prod-section-title {
  font-family: var(--p-font-display);
  font-size: var(--fs-h2);
  font-weight: var(--fw-heading);
  line-height: 1.12;
  color: var(--p-charcoal);
  margin: 0 0 16px;
}
.prod-section-title--white {
  color: #fff;
}
.prod-section-subtitle {
  font-size: 1rem;
  color: var(--p-muted);
  max-width: 540px;
  line-height: 1.8;
  margin: 0;
}
.prod-section-subtitle--white {
  color: rgba(255, 255, 255, 0.55);
}

/* ── Features ───────────────────────────────────────────────── */
.prod-features {
  background: var(--p-cream-alt);
}
.prod-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: var(--p-sand);
  border-radius: 4px;
  overflow: hidden;
}
.prod-feature-card {
  background: var(--p-warm);
  padding: 44px 36px;
  position: relative;
  transition: background 0.25s;
  overflow: hidden;
}
.prod-feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--p-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.prod-feature-card:hover {
  background: #fff;
}
.prod-feature-card:hover::after {
  transform: scaleX(1);
  background: #1A2818;
}
.prod-feature-num {
  font-family: var(--p-font-display);
  font-size: var(--fs-display);
  font-weight: var(--fw-medium);
  color: var(--p-sand);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.25s;
  display: block;
}
.prod-feature-card:hover .prod-feature-num {
  color: rgba(184, 150, 90, 0.3);
}
.prod-feature-title {
  font-family: var(--p-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--p-charcoal);
  line-height: 1.3;
  margin: 0 0 12px;
}
.prod-feature-text {
  font-size: 0.9rem;
  color: var(--p-muted);
  line-height: 1.75;
  margin: 0;
}

/* ── Gallery scroll ─────────────────────────────────────────── */
.prod-gallery-section {
  background: #FAFAF8;
  padding: var(--p-section-gap) 0;
  overflow: hidden;
}
.prod-gallery-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  margin-bottom: 40px;
}
.prod-gallery-scroll {
  overflow: hidden;
  /* edge-to-edge: no padding — marquee runs full-width */
}
.prod-gallery-track {
  display: flex;
  gap: 14px;
  /* width is calculated to hold 2× items; animation set by JS */
  animation: gallery-marquee linear infinite;
  animation-play-state: paused; /* JS adds is-running to start */
  will-change: transform;
}
.prod-gallery-track.is-running {
  animation-play-state: running;
}
@keyframes gallery-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.prod-gallery-item {
  flex: 0 0 auto;
  width: 400px;
  height: 300px;
  border-radius: 4px;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  cursor: zoom-in;
}
.prod-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.prod-gallery-item:hover img {
  transform: scale(1.05);
  will-change: transform;
}
.prod-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.prod-gallery-item:hover .prod-gallery-caption {
  opacity: 1;
}

/* ── Specs ──────────────────────────────────────────────────── */
.prod-specs-section {
  background: #1C1C1C;
  color: #fff;
  position: relative;
  isolation: isolate;
}
.prod-specs-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 16 L16 0 L32 16 L16 32 Z' fill='none' stroke='%23B8965A' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.07;
  pointer-events: none;
  z-index: -1;
}
.prod-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
  margin-top: 56px;
}
.prod-spec-group-title {
  font-family: var(--p-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--p-gold-light);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 8px;
}
.prod-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
  gap: 16px;
}
.prod-spec-label {
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}
.prod-spec-value {
  font-weight: 700;
  color: #fff;
  text-align: right;
}

/* ── Expert / Guarantee ─────────────────────────────────────── */
.prod-expert-section {
  background: #1A2818;
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.prod-expert-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 16 L16 0 L32 16 L16 32 Z' fill='none' stroke='%23B8965A' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.07;
  pointer-events: none;
  z-index: -1;
}
.prod-expert-section::before {
  content: '\201C';
  font-family: var(--p-font-display);
  font-size: 28rem;
  color: var(--p-gold);
  position: absolute;
  top: -60px;
  right: 40px;
  pointer-events: none;
  opacity: 0.15;
  line-height: 1;
  z-index: 0;
}
.prod-expert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.prod-expert-solo {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.prod-expert-quote-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.prod-expert-quote {
  font-family: var(--p-font-display);
  font-size: var(--fs-h4);
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}
.prod-expert-source {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.prod-expert-section .prod-section-label {
  color: var(--p-gold);
  border-color: var(--p-gold);
}
.prod-expert-section .prod-section-subtitle {
  color: rgba(255,255,255,0.7);
}

/* Guarantee card */
.prod-guarantee-card {
  background: #fff;
  padding: 44px;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  border-left: 3px solid var(--p-gold);
}
.prod-guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--p-charcoal);
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 7px 16px;
  border-radius: 2px;
  font-weight: 600;
  margin-bottom: 20px;
}
.prod-guarantee-title {
  font-family: var(--p-font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--p-charcoal);
  margin: 0 0 14px;
}
.prod-guarantee-text {
  font-size: 0.9rem;
  color: var(--p-muted);
  line-height: 1.8;
  margin: 0 0 24px;
}
.prod-guarantee-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.prod-guarantee-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--p-charcoal);
  line-height: 1.5;
}
.prod-guarantee-list li::before {
  content: '\2713';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(184, 150, 90, 0.10);
  color: var(--p-gold);
  font-weight: 700;
  font-size: 11px;
  margin-top: 1px;
}

/* ── Math / ROI ─────────────────────────────────────────────── */
.prod-math-section {
  background: #1A2818;
  color: #fff;
}
.prod-math-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.prod-math-card {
  padding: 40px;
  border-radius: 4px;
  border: 1px solid transparent;
}
.prod-math-card--bad {
  background: rgba(160, 82, 45, 0.12);
  border-color: rgba(160, 82, 45, 0.28);
}
.prod-math-card--good {
  background: rgba(92, 107, 79, 0.15);
  border-color: rgba(92, 107, 79, 0.35);
}
.prod-math-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.5;
  margin-bottom: 16px;
}
.prod-math-big {
  font-family: var(--p-font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}
.prod-math-card--bad .prod-math-big {
  color: #D4896A;
}
.prod-math-card--good .prod-math-big {
  color: var(--p-gold-light);
}
.prod-math-detail {
  font-size: 0.88rem;
  opacity: 0.6;
  line-height: 1.65;
}

/* ── Wymiary elementów ──────────────────────────────────────── */
.prod-dims-section {
  background: var(--p-cream-alt);
}

.prod-dims-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.prod-dims-grid .prod-dims-card          { grid-column: span 2; }
.prod-dims-grid .prod-dims-card:nth-child(4) { grid-column: 2 / span 2; }
.prod-dims-grid .prod-dims-card:nth-child(5) { grid-column: 4 / span 2; }

@media (max-width: 860px) {
  .prod-dims-grid { grid-template-columns: repeat(4, 1fr); }
  .prod-dims-grid .prod-dims-card          { grid-column: span 2; }
  .prod-dims-grid .prod-dims-card:nth-child(4) { grid-column: 1 / span 2; }
  .prod-dims-grid .prod-dims-card:nth-child(5) { grid-column: 3 / span 2; }
}
@media (max-width: 520px) {
  .prod-dims-grid { grid-template-columns: 1fr; }
  .prod-dims-grid .prod-dims-card,
  .prod-dims-grid .prod-dims-card:nth-child(4),
  .prod-dims-grid .prod-dims-card:nth-child(5) { grid-column: span 1; }
}

.prod-dims-card {
  background: #fff;
  border-radius: 6px;
  border-top: 3px solid var(--p-gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 28px 24px 24px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.prod-dims-card:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.prod-dims-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.prod-dims-card__icon {
  width: 36px;
  height: 36px;
  background: rgba(184,150,90,0.10);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prod-dims-card__name {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--p-charcoal);
  line-height: 1.3;
  margin: 0;
}

.prod-dims-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.prod-dims-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.prod-dims-row:last-child { border-bottom: none; }
.prod-dims-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--p-gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 3px;
  margin-right: 5px;
  flex-shrink: 0;
  font-style: normal;
}

.prod-dims-row dt {
  font-size: 12px;
  color: var(--p-muted);
  font-weight: 400;
  letter-spacing: 0.03em;
}

.prod-dims-row dd {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--p-gold);
  margin: 0;
  line-height: 1;
}

/* ── Grafiki wymiarów ───────────────────────────────────────── */
.prod-dims-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.prod-dims-figure {
  margin: 0;
}
.prod-dims-figure img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  border: 1px solid var(--p-sand);
}
.prod-dims-figure figcaption {
  font-size: 0.78rem;
  color: var(--p-muted);
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .prod-dims-images { grid-template-columns: 1fr; }
}

/* ── Całkowite wymiary zestawu ──────────────────────────────── */
.prod-dims-total {
  margin-top: 40px;
  background: #fff;
  border-radius: 8px;
  border: 1.5px solid var(--p-sand);
  border-left: 4px solid var(--p-gold);
  padding: 32px 36px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.prod-dims-total__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
}

.prod-dims-total__icon {
  width: 42px;
  height: 42px;
  background: rgba(184,150,90,0.10);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prod-dims-total__title {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--p-charcoal);
  margin: 0 0 4px;
  line-height: 1.2;
}

.prod-dims-total__note {
  font-size: 0.8rem;
  color: var(--p-muted);
  margin: 0;
  line-height: 1.6;
}

.prod-dims-total__configs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prod-dims-config {
  background: var(--p-cream);
  border-radius: 6px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.prod-dims-config__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--p-gold);
  font-weight: 700;
  white-space: nowrap;
  min-width: 160px;
}

.prod-dims-config__modules {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  flex: 1;
}

.prod-dims-config__module {
  background: #fff;
  border: 1.5px solid var(--p-sand);
  border-radius: 4px;
  padding: 7px 12px;
  font-size: 11px;
  color: var(--p-muted);
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
}
.prod-dims-config__module em {
  font-style: normal;
  font-weight: 700;
  color: var(--p-charcoal);
  display: block;
}
.prod-dims-config__module--corner {
  border-color: var(--p-gold);
  background: rgba(184,150,90,0.06);
}
.prod-dims-config__module--mid {
  border-color: rgba(184,150,90,0.4);
}

.prod-dims-config__plus {
  font-size: 14px;
  color: var(--p-muted-light);
  font-weight: 400;
}

.prod-dims-config__result {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  margin-left: auto;
}

.prod-dims-config__dim {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--p-gold);
  line-height: 1;
  white-space: nowrap;
}

.prod-dims-config__area {
  font-size: 11px;
  color: var(--p-muted-light);
}

.prod-dims-total__tip {
  margin: 20px 0 0;
  font-size: 0.8rem;
  color: var(--p-muted);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.6;
}
.prod-dims-total__tip svg { flex-shrink: 0; margin-top: 2px; color: var(--p-gold); }

@media (max-width: 768px) {
  .prod-dims-total { padding: 22px 20px; }
  .prod-dims-config { flex-direction: column; align-items: flex-start; gap: 12px; }
  .prod-dims-config__result { align-items: flex-start; margin-left: 0; }
  .prod-dims-config__label { min-width: 0; }
}

/* ── Colors ─────────────────────────────────────────────────── */
.prod-colors-section {
  background: var(--p-cream-alt);
}
.prod-colors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.prod-color-card {
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.prod-color-card:hover {
  border-color: var(--p-gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.10);
}
.prod-color-image {
  height: 240px;
  overflow: hidden;
}
.prod-color-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.prod-color-card:hover .prod-color-image img {
  transform: scale(1.05);
}
.prod-color-info {
  padding: 20px;
  background: #fff;
}
.prod-color-swatch {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  vertical-align: middle;
  margin-right: 8px;
}
.prod-color-name {
  font-family: var(--p-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: inline;
  vertical-align: middle;
  color: var(--p-charcoal);
}
.prod-color-cushion {
  font-size: 15px;
  color: var(--p-muted-light);
  display: block;
  margin-top: 6px;
  line-height: 1.5;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.prod-faq-section {
  background: #1C1C1C;
  color: #fff;
}
.prod-faq-section .prod-section-label {
  color: var(--p-gold);
  border-color: var(--p-gold);
}
.prod-faq-section .prod-section-title {
  color: #fff;
}
.prod-faq-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
  align-items: center;
  margin-bottom: 48px;
}
.prod-faq-header__left .prod-section-title {
  margin-bottom: 0;
}
.prod-faq-header__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin: 0;
  border-left: 2px solid var(--p-gold);
  padding-left: 22px;
}
.prod-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}
.prod-faq-list details {
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  border-top: 3px solid transparent;
  padding: 0 24px;
  transition: border-color 0.2s, background 0.2s;
}
.prod-faq-list details[open] {
  border-top-color: var(--p-gold);
  background: rgba(255,255,255,0.08);
}
.prod-faq-list details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  list-style: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.2s;
  gap: 16px;
}
.prod-faq-list details summary::-webkit-details-marker {
  display: none;
}
.prod-faq-list details summary:hover {
  color: var(--p-gold);
}
.prod-faq-list details[open] summary {
  color: var(--p-gold-light);
}
.prod-faq-arrow {
  font-size: 14px;
  color: var(--p-gold);
  opacity: 1;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.prod-faq-list details[open] .prod-faq-arrow {
  transform: rotate(180deg);
}
.prod-faq-answer {
  padding-top: 16px;
  padding-bottom: 22px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.prod-faq-answer p {
  margin: 0;
}

/* ── Reviews ────────────────────────────────────────────────── */
.prod-reviews-section {
  background: var(--p-warm);
}
.reviews-header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 36px;
}
.reviews-header .prod-section-title {
  margin: 0;
}
.reviews-allegro-link {
  font-size: 13px;
  color: var(--p-gold);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.reviews-allegro-link:hover { text-decoration: underline; }
.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.reviews-col--form {
  background: #fff;
  border: 1px solid var(--p-sand);
  border-radius: 8px;
  padding: 28px 24px;
  position: sticky;
  top: 100px;
}
.reviews-form-title {
  font-family: var(--p-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--p-charcoal);
  margin: 0 0 20px;
}
.reviews-form-note {
  font-size: 11px;
  color: var(--p-muted);
  margin: 10px 0 0;
  text-align: center;
}
.review-field__note {
  font-weight: 400;
  text-transform: none;
  font-size: 11px;
  color: var(--p-muted);
}
.reviews-loading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 32px 0;
  color: var(--p-muted);
  font-size: 14px;
}
.reviews-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--p-sand);
  border-top-color: var(--p-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}
.reviews-error,
.reviews-empty {
  padding: 32px 0;
  color: var(--p-muted);
  font-size: 14px;
  line-height: 1.7;
}
.reviews-grid {
  display: flex;
  flex-direction: column;
}
.review-card {
  padding: 28px 0;
  border-bottom: 1px solid var(--p-sand);
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--p-charcoal);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.review-card__meta-wrap {
  flex: 1;
}
.review-card__name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--p-charcoal);
}
.review-card__date,
.review-card__meta {
  display: block;
  font-size: 12px;
  color: var(--p-muted-light);
  margin-top: 2px;
}
.review-card__stars {
  color: var(--p-gold);
  font-size: 13px;
  margin-bottom: 8px;
}
.review-card__text {
  font-size: 0.92rem;
  color: var(--p-muted);
  line-height: 1.75;
  margin: 0;
  font-style: normal;
}
.review-card__source {
  font-size: 10px;
  background: var(--p-sand);
  color: var(--p-muted);
  padding: 3px 8px;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-left: auto;
}

/* Pagination */
.reviews-pagination {
  display: flex;
  gap: 6px;
  padding: 28px 0 0;
  flex-wrap: wrap;
}
.reviews-pagination__btn {
  padding: 8px 14px;
  border: 1.5px solid var(--p-sand);
  border-radius: 2px;
  background: transparent;
  font-size: 13px;
  color: var(--p-muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  font-family: inherit;
}
.reviews-pagination__btn:hover:not(:disabled) {
  border-color: var(--p-gold);
  color: var(--p-gold);
}
.reviews-pagination__btn.active {
  background: var(--p-charcoal);
  border-color: var(--p-charcoal);
  color: #fff;
}
.reviews-pagination__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Allegro link */
/* Review form */

/* Star picker */
.star-picker {
  margin-bottom: 24px;
}
.star-picker__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--p-charcoal);
  margin-bottom: 10px;
}
.star-picker__stars {
  display: flex;
  gap: 4px;
}
.star-pick {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--p-sand);
  cursor: pointer;
  transition: color 0.15s, transform 0.15s;
  padding: 0;
  line-height: 1;
}
.star-pick:hover,
.star-pick.hover,
.star-pick.active {
  color: var(--p-gold);
  transform: scale(1.15);
}
.star-picker__value {
  font-size: 12px;
  color: var(--p-gold);
  font-weight: 600;
  margin-top: 8px;
  min-height: 18px;
}

/* Form fields */
.review-msg {
  padding: 12px 16px;
  border-radius: 3px;
  font-size: 13px;
  margin-bottom: 16px;
  display: none;
}
.review-msg.success {
  display: block;
  background: rgba(92, 107, 79, 0.12);
  color: #3a5c2e;
  border: 1px solid rgba(92, 107, 79, 0.3);
}
.review-msg.error {
  display: block;
  background: rgba(160, 40, 30, 0.08);
  color: #922;
  border: 1px solid rgba(160, 40, 30, 0.2);
}
.review-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.review-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.review-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--p-charcoal);
  letter-spacing: 0.02em;
}
.review-field input,
.review-field textarea {
  border: 1.5px solid var(--p-sand);
  border-radius: 2px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--p-charcoal);
  font-family: inherit;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.review-field input:focus,
.review-field textarea:focus {
  border-color: var(--p-gold);
}
.review-field input.error,
.review-field textarea.error {
  border-color: #c0392b;
}
.review-field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}
.review-hp {
  display: none;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}
.review-submit {
  padding: 14px 32px;
  background: var(--p-charcoal);
  color: #fff;
  border: none;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: inherit;
}
.review-submit:hover:not(:disabled) {
  background: #000;
  transform: translateY(-1px);
}
.review-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ── Related products ───────────────────────────────────────── */
/* ============================================================
   PDC — Product Discover (Może Cię zainteresować)
   Trzy bloki: podobne produkty / cross-sell / artykuły blogowe
   Nowy produkt: kopiuj bloki HTML, podmień treści. CSS = zero zmian.
   ============================================================ */

.pdc-section {
  background: #FAFAF8;
}

/* Nagłówek sekcji */
.pdc-header {
  margin-bottom: 48px;
}
.pdc-title {
  font-family: var(--p-font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--p-charcoal);
  margin: 8px 0 0;
  line-height: 1.2;
}

/* Bloki — separator między sekcjami */
.pdc-block {
  padding-top: 40px;
  border-top: 1px solid var(--p-sand);
  margin-top: 40px;
}
.pdc-block:first-of-type {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

/* Nagłówek bloku: tag + link "wszystkie" */
.pdc-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.pdc-block__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--p-gold);
  background: rgba(184,150,90,0.10);
  border: 1px solid rgba(184,150,90,0.25);
  border-radius: 20px;
  padding: 5px 12px;
}
.pdc-block__all {
  font-size: 13px;
  font-weight: 600;
  color: var(--p-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  white-space: nowrap;
}
.pdc-block__all:hover { color: var(--p-gold); }

/* ── Carousel wrapper ─────────────────────────────────────── */
.pdc-carousel {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pdc-carousel__track {
  flex: 1;
  display: flex;
  gap: 20px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.pdc-carousel__track::-webkit-scrollbar { display: none; }
.pdc-carousel__btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--p-sand);
  background: #fff;
  color: var(--p-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s, opacity 0.2s;
}
.pdc-carousel__btn:hover {
  border-color: var(--p-gold);
  background: var(--p-gold);
  color: #fff;
}
.pdc-carousel__btn:disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ── Blok 1: Produkty ─────────────────────────────────────── */
.pdc-product {
  flex: 0 0 calc(33.333% - 14px);
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}
.pdc-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.11);
}
.pdc-product__img {
  display: block;
  height: 220px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.pdc-product__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.pdc-product:hover .pdc-product__img img { transform: scale(1.04); }

/* Badge "Kategoria" dla kart-linków do kategorii nadrzędnej */
.pdc-product__category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--p-charcoal);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}
.pdc-product__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pdc-product__name {
  font-family: var(--p-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--p-charcoal);
  margin: 0 0 8px;
  line-height: 1.3;
}
.pdc-product__name a {
  color: inherit;
  text-decoration: none;
}
.pdc-product__name a:hover { color: var(--p-gold); }
.pdc-product__desc {
  font-size: 0.85rem;
  color: var(--p-muted);
  line-height: 1.7;
  margin: 0 0 16px;
  flex: 1;
}
.pdc-product__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--p-sand);
  margin-top: auto;
}
.pdc-product__price {
  font-family: var(--p-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--p-charcoal);
}
.pdc-product__price strong { font-weight: 700; }
.pdc-product__cta {
  padding: 7px 14px;
  border: 1.5px solid var(--p-sand);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--p-charcoal);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.pdc-product__cta:hover {
  background: var(--p-charcoal);
  border-color: var(--p-charcoal);
  color: #fff;
}

/* ── Blok 2: Artykuły ─────────────────────────────────────── */
.pdc-article {
  flex: 0 0 calc(33.333% - 14px);
  border-left: 3px solid var(--p-gold);
  background: #fff;
  border-radius: 0 6px 6px 0;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  scroll-snap-align: start;
}
.pdc-article:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}
.pdc-article__link {
  display: block;
  padding: 22px 20px;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.pdc-article__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.pdc-article__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--p-gold);
  background: rgba(184,150,90,0.10);
  padding: 2px 8px;
  border-radius: 20px;
}
.pdc-article__time {
  font-size: 11px;
  color: var(--p-muted);
}
.pdc-article__title {
  font-family: var(--p-font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--p-charcoal);
  line-height: 1.4;
  margin: 0 0 10px;
  transition: color 0.2s;
}
.pdc-article:hover .pdc-article__title { color: var(--p-gold); }
.pdc-article__excerpt {
  font-size: 0.83rem;
  color: var(--p-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Hero mode switcher ─────────────────────────────────────── */
.hero-mode-switcher {
  display: flex;
  gap: 3px;
  background: var(--p-sand);
  border-radius: 6px;
  padding: 4px;
  margin: 18px 0 0;
}
.hero-mode-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 10px;
  border: none;
  border-radius: 4px;
  background: transparent;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--p-muted);
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  white-space: nowrap;
}
.hero-mode-tab.is-active {
  background: #fff;
  color: var(--p-charcoal);
  box-shadow: 0 1px 5px rgba(0,0,0,0.10);
}
.hero-mode-tab:not(.is-active):hover { color: var(--p-charcoal); }
.hero-mode-tab svg { flex-shrink: 0; }

/* ── Hero mode panels ────────────────────────────────────────── */
.hero-mode-panels {
  display: grid;
  grid-template-areas: "panel";
  margin-top: 18px;
}
.hero-mode-panel {
  grid-area: panel;
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0s;
}
.hero-mode-panel[aria-hidden="true"] {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0s 0.32s;
}

/* ── Installment panel content ───────────────────────────────── */
.hero-installment {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-installment__intro {
  font-size: 0.83rem;
  color: var(--p-muted);
  line-height: 1.6;
  margin: 0;
}
.hero-installment__options {
  display: flex;
  gap: 8px;
}
.hero-installment__option {
  flex: 1;
  background: var(--p-cream);
  border: 1px solid var(--p-sand);
  border-radius: 6px;
  padding: 11px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hero-installment__n {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--p-muted);
}
.hero-installment__amount {
  font-family: var(--p-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--p-charcoal);
  line-height: 1.1;
}
.hero-installment__amount small {
  font-family: inherit;
  font-size: 0.65em;
  font-weight: 400;
  color: var(--p-muted);
}
.hero-installment__plugin {
  background: #fff;
  border: 1px solid var(--p-sand);
  border-radius: 6px;
  overflow: hidden;
}
.hero-installment__plugin-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: var(--p-cream);
  border-bottom: 1px solid var(--p-sand);
}
.hero-installment__plugin-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--p-muted);
}
.hero-installment__plugin-body {
  padding: 14px;
  min-height: 54px;
  display: flex;
  align-items: center;
}
.hero-installment__plugin-placeholder {
  font-size: 0.78rem;
  color: var(--p-muted-light);
  font-style: italic;
  margin: 0;
}
.hero-installment__plugin-body--p24 {
  padding: 0;
  display: block;
  min-height: 0;
}
.hero-installment__plugin-body--p24 p24-installment,
.hero-installment__plugin-body--p24 #p24_installments {
  display: block;
  width: 100%;
}
.hero-installment__checkout-note {
  font-size: 0.85rem;
  color: var(--p-muted-light);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}
.hero-installment__checkout-note--alert {
  color: #C0392B;
  font-weight: 600;
}

/* ── Price ROI hint ──────────────────────────────────────────── */
.prod-hero__price-roi {
  display: block;
  font-size: 11px;
  color: var(--p-muted);
  margin-top: 2px;
  font-style: italic;
}

/* ── Lead magnet section ─────────────────────────────────────── */
.prod-lead-section {
  background: var(--p-cream);
}
.prod-lead-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 767px) {
  .prod-lead-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.prod-lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.prod-lead-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1C2B1A;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 13px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.prod-lead-btn:hover {
  background: #243821;
}
.prod-lead-note {
  font-size: 11px;
  color: var(--p-muted);
  margin: 0;
  text-align: center;
}

/* ── CTA final ──────────────────────────────────────────────── */
.prod-cta-section {
  background: var(--p-olive-dark);
  color: #fff;
  padding: clamp(40px, 5vw, 72px) 0;
  position: relative;
  isolation: isolate;
}
.prod-cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 16 L16 0 L32 16 L16 32 Z' fill='none' stroke='%23B8965A' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.07;
  pointer-events: none;
  z-index: -1;
}
.prod-cta-section .prod-section-label {
  color: var(--p-gold);
  border-color: var(--p-gold);
}
.prod-cta-section .prod-section-title,
.prod-cta-section .prod-section-subtitle {
  color: #fff;
}
.prod-cta-section .prod-section-inner {
  /* block container — layout handled by prod-cta-inner */
}

/* ── 2-kolumnowy layout CTA ── */
.prod-cta-inner {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  justify-content: center;
}
.prod-cta-left {
  flex: 1 1 auto;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  transition: max-width 0.4s ease, align-items 0.2s;
}
.prod-cta-section.form-open .prod-cta-left {
  align-items: flex-start;
  text-align: left;
  max-width: 440px;
}
.prod-cta-section.form-open .prod-cta-section .prod-section-subtitle {
  text-align: left;
}

/* ── Panel formularza ── */
.prod-cta-form-panel {
  flex: 0 0 auto;
  width: 440px;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateX(28px);
  transition: max-width 0.45s ease, opacity 0.35s ease 0.12s, transform 0.35s ease 0.12s;
}
.prod-cta-section.form-open .prod-cta-form-panel {
  max-width: 440px;
  opacity: 1;
  transform: translateX(0);
}
.prod-cta-form-inner {
  width: 440px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 4px;
  padding: 32px 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.prod-cta-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.prod-cta-form-title {
  font-family: var(--p-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--p-charcoal);
  margin: 0;
}
.prod-cta-form-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--p-muted);
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.prod-cta-form-close:hover {
  color: var(--p-charcoal);
}
/* Przycisk submit w formularzu CTA */
.prod-cta-form-inner .btn-primary {
  width: 100%;
  justify-content: center;
}

/* ── Responsive: mobile stack ── */
@media (max-width: 900px) {
  .prod-cta-inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .prod-cta-left {
    max-width: 100% !important;
  }
  .prod-cta-form-panel {
    width: 100%;
    max-width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) !important;
    transition: max-height 0.45s ease, opacity 0.35s ease 0.12s, transform 0.35s ease 0.12s;
  }
  .prod-cta-section.form-open .prod-cta-form-panel {
    max-height: 900px;
    opacity: 1;
    transform: translateY(0) !important;
  }
  .prod-cta-form-inner {
    width: 100%;
  }
}
.prod-cta-price {
  font-family: var(--p-font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--p-charcoal);
  letter-spacing: -0.02em;
  line-height: 1;
}
.prod-cta-price-note {
  font-size: 13px;
  color: var(--p-muted);
  margin-top: -12px;
}
.prod-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-top: 8px;
  width: 100%;
  max-width: 340px;
}
/* Wyrównaj przycisk koszyka z hero do wysokości i stylu przycisków CTA */
.prod-cta-actions .prod-hero__add-cart {
  flex: 0 0 auto;
  height: auto;
  width: 100%;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.prod-cta-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--p-charcoal);
  color: #fff;
  text-decoration: none;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.2s, transform 0.2s;
}
.prod-cta-btn-primary:hover {
  background: #000;
  transform: translateY(-1px);
}
.prod-cta-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border: 1.5px solid var(--p-sand);
  color: var(--p-charcoal);
  text-decoration: none;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: border-color 0.2s, color 0.2s;
}
.prod-cta-btn-secondary:hover {
  border-color: var(--p-gold);
  color: var(--p-gold);
}

/* Kolory przycisków CTA na ciemnym tle sekcji "Następny krok" */
.prod-cta-section .prod-cta-btn-primary {
  background: var(--p-gold);
  color: #1C1C1C;
}
.prod-cta-section .prod-cta-btn-primary:hover {
  background: var(--p-gold-light);
  color: #1C1C1C;
}
.prod-cta-section .prod-cta-btn-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.prod-cta-section .prod-cta-btn-secondary:hover {
  border-color: var(--p-gold);
  color: var(--p-gold);
}

.prod-stock-note {
  font-size: 0.65rem;
  color: var(--p-muted-light);
  line-height: 1.6;
  margin-top: 12px;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .prod-hero {
    grid-template-columns: 1fr;
  }
  .prod-hero__adam-bubble { white-space: normal; }
  .prod-hero__media {
    position: relative;
    height: 50vh;
    min-height: 320px;
    top: auto;
    margin-top: var(--nav-height, 80px);
  }
  .prod-gallery__arrow { opacity: 1; width: 38px; height: 38px; }
  .prod-gallery__arrow--prev { left: 10px; }
  .prod-gallery__arrow--next { right: 10px; }
  .prod-hero__info {
    max-height: none;
    overflow-y: visible;
    padding-top: clamp(24px, 4vw, 48px);
  }
  .prod-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prod-specs-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .prod-expert-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .prod-faq-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }
  .prod-faq-header__desc {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid var(--p-gold);
    padding-top: 16px;
  }
  .prod-faq-list details {
    padding: 0 16px;
  }
  .prod-math-grid {
    grid-template-columns: 1fr;
  }
  .prod-colors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pdc-product,
  .pdc-article {
    flex: 0 0 calc(50% - 10px);
  }
  .pdc-carousel__btn { display: none; }
  .prod-trust-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .prod-trust-bar__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 768px) {
  .prod-hero__trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .prod-hero__info {
    padding: 24px 20px;
  }
  .prod-hero__consult-btn {
    margin-left: 0;
  }
  .prod-features-grid {
    grid-template-columns: 1fr;
  }
  .prod-colors-grid {
    grid-template-columns: 1fr;
  }
  .pdc-product,
  .pdc-article {
    flex: 0 0 80vw;
  }
  /* Gallery — snap scroll on mobile */
  .prod-gallery-section { overflow: visible; }
  .prod-gallery-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 20px 20px;
    scrollbar-width: none;
  }
  .prod-gallery-scroll::-webkit-scrollbar { display: none; }
  .prod-gallery-item {
    flex: 0 0 85vw;
    width: 85vw;
    height: 64vw;
    scroll-snap-align: center;
  }
  .prod-gallery-caption {
    opacity: 1;
    padding: 28px 16px 14px;
    font-size: 11px;
  }
  .prod-guarantee-card {
    padding: 28px 24px;
  }
  .prod-section-inner {
    padding: 0 24px;
  }
  .prod-specs-grid {
    gap: 32px;
  }
  .prod-expert-section::before {
    font-size: 14rem;
    top: -20px;
    right: 16px;
  }
  .review-form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .prod-trust-bar__inner {
    grid-template-columns: 1fr;
  }
  .prod-trust-bar__item {
    border-right: none;
  }
  .prod-hero__specs-strip {
    flex-wrap: wrap;
  }
  .prod-hero__spec {
    flex: 0 0 50%;
    border-bottom: 1px solid var(--p-sand);
  }
  .prod-hero__spec:nth-child(2n) {
    border-right: none;
  }
  .prod-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .prod-cta-btn-primary,
  .prod-cta-btn-secondary {
    justify-content: center;
  }
  .prod-cta-price {
    font-size: 2.6rem;
  }
}


/* ============================================================
   LIGHTBOX
   ============================================================ */

.prod-lb {
  position: fixed;
  inset: 0;
  z-index: 9900;
  display: flex;
  flex-direction: column;
  background: rgba(10, 10, 10, 0.97);
  opacity: 0;
  transition: opacity 0.25s ease;
  outline: none;
}
.prod-lb[hidden] { display: none; }
.prod-lb.is-open  { opacity: 1; }

/* ── Toolbar ── */
.prod-lb__toolbar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.prod-lb__counter {
  font-family: var(--p-font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}
.prod-lb__toolbar-actions {
  display: flex;
  gap: 8px;
}
.prod-lb__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.prod-lb__btn:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.prod-lb__zoom-toggle.is-active {
  background: var(--p-gold);
  border-color: var(--p-gold);
  color: #fff;
}

/* ── Stage ── */
.prod-lb__stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

/* ── Nav arrows ── */
.prod-lb__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.6rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  border-radius: 50%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  line-height: 1;
}
.prod-lb__nav:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.prod-lb__nav:active { transform: translateY(-50%) scale(0.95); }
.prod-lb__prev { left: 16px; }
.prod-lb__next { right: 16px; }
.prod-lb__nav[style*="hidden"] { pointer-events: none; opacity: 0.2; }

/* ── Image wrapper ── */
.prod-lb__img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 120px);
  height: 100%;
  overflow: hidden;
  cursor: zoom-in;
}
.prod-lb__img-wrap.is-zoomed { cursor: zoom-out; }

.prod-lb__img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform-origin 0s;
  transform-origin: center center;
}
.prod-lb__img-wrap.is-zoomed .prod-lb__img {
  transform: scale(2.8);
  transition: transform 0.25s ease;
}
.prod-lb__img-wrap.is-zoomed--fast .prod-lb__img {
  transition: none; /* instant tracking after initial zoom */
}

/* Zoom hint */
.prod-lb__zoom-hint {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.65);
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.prod-lb__zoom-hint.is-visible { opacity: 1; }

/* ── Caption ── */
.prod-lb__caption {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
  min-height: 54px;
}

.prod-lb__caption-inner {
  position: relative;
  font-family: var(--p-font-display);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.52);
  letter-spacing: 0.025em;
  text-align: center;
  padding: 0 28px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Złote kreski po bokach */
.prod-lb__caption-inner::before,
.prod-lb__caption-inner::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background: var(--p-gold);
  opacity: 0.45;
  transform: translateY(-50%);
}
.prod-lb__caption-inner::before { right: 100%; }
.prod-lb__caption-inner::after  { left:  100%; }

/* Stan przejściowy (fading) */
.prod-lb__caption-inner.is-fading {
  opacity: 0;
  transform: translateY(6px);
}

/* Ukryj gdy brak tekstu */
.prod-lb__caption:empty,
.prod-lb__caption-inner:empty {
  display: none;
}

/* ── Thumbstrip ── */
.prod-lb__thumbstrip {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow-x: auto;
  scrollbar-width: none;
}
.prod-lb__thumbstrip::-webkit-scrollbar { display: none; }

.prod-lb__thumb-btn {
  flex-shrink: 0;
  width: 56px;
  height: 42px;
  border-radius: 3px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.15s, border-color 0.15s;
  background: #222;
}
.prod-lb__thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.prod-lb__thumb-btn:hover { opacity: 0.8; }
.prod-lb__thumb-btn.is-active {
  border-color: var(--p-gold);
  opacity: 1;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .prod-lb__nav { display: none; }
  .prod-lb__img-wrap { width: 100%; }
  .prod-lb__thumb-btn { width: 46px; height: 34px; }
  .prod-lb__toolbar { padding: 10px 14px; }
}

@media (max-width: 900px) {
  .reviews-layout {
    grid-template-columns: 1fr;
  }
  .reviews-col--form {
    position: static;
  }
}

/* ============================================================
   VR-STRIP — Kompaktowy pasek na stronach produktowych
   Dwa CTA obok siebie, ciemne tło, ~140px wysokości
   ============================================================ */

.vr-strip {
  background: var(--p-olive-dark);
}
.vr-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.vr-strip__col {
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.vr-strip__col--visit {
  border-right: 1px solid rgba(255,255,255,0.08);
}
.vr-strip__text { flex: 1; }
.vr-strip__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 6px;
}
.vr-strip__col--reserve .vr-strip__label,
.vr-strip__col--visit .vr-strip__label {
  color: var(--p-gold);
}
.vr-strip__heading {
  font-family: var(--p-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 4px;
}
.vr-strip__sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.52);
  margin: 0;
  line-height: 1.55;
}
.vr-strip__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.3s, transform 0.25s, box-shadow 0.25s;
}
.vr-strip__cta--meet {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}
.vr-strip__cta--meet:hover {
  background: rgba(255,255,255,0.16);
}
.vr-strip__cta--reserve {
  background: var(--p-gold);
  color: var(--p-charcoal);
}
.vr-strip__cta--reserve:hover {
  background: var(--p-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,150,90,0.35);
}

@media (max-width: 900px) {
  .vr-strip__inner { grid-template-columns: 1fr; }
  .vr-strip__col--visit {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .vr-strip__col { padding: 28px 24px; }
}
/* Mobile toggle button — hidden on desktop */
.vr-strip__mobile-toggle { display: none; }

@media (max-width: 640px) {
  /* Show toggle, hide inner by default */
  .vr-strip__mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    gap: 12px;
  }
  .vr-strip__mobile-toggle svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--gold, #B8965A);
  }
  .vr-strip--open .vr-strip__mobile-toggle svg {
    transform: rotate(180deg);
  }

  /* Collapse inner content */
  .vr-strip__inner {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .vr-strip--open .vr-strip__inner {
    max-height: 800px;
  }

  .vr-strip__col { flex-direction: column; align-items: center; gap: 20px; text-align: center; }
  .vr-strip__cta { width: 100%; text-align: center; justify-content: center; }
}

/* ============================================================
   VISIT + RESERVE — Universal product page component
   Cel 1: zaufanie / możliwość wizyty w magazynie (Wrocław)
   Cel 2: urgency / dostępność ograniczona, sezon meblowy
   ============================================================ */

.visit-reserve {
  background: var(--p-cream);
  padding: var(--p-section-gap) 40px;
}
.visit-reserve__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ── Shared tile ── */
.vr-tile {
  padding: clamp(40px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 2px;
}
.vr-tile--visit {
  background: var(--p-warm);
  border: 1px solid var(--p-sand);
}
.vr-tile--reserve {
  background: var(--p-olive-dark);
  color: #fff;
}

/* ── Label ── */
.vr-tile__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--p-olive);
}
.vr-tile--reserve .vr-tile__label {
  color: var(--p-gold);
}

/* ── Title ── */
.vr-tile__title {
  font-family: var(--p-font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--p-charcoal);
  margin: 0;
}
.vr-tile--reserve .vr-tile__title { color: #fff; }

.vr-tile__title em {
  font-style: italic;
  color: var(--p-olive);
  display: block;
}
.vr-tile--reserve .vr-tile__title em { color: var(--p-gold-light); }

/* ── Body text ── */
.vr-tile__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.vr-tile__body p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--p-muted);
  margin: 0;
}
.vr-tile--reserve .vr-tile__body p { color: rgba(255,255,255,0.72); }

/* ── Highlight (left border) ── */
.vr-highlight {
  border-left: 3px solid var(--p-olive);
  padding-left: 18px;
  color: var(--p-charcoal) !important;
  font-weight: 500 !important;
  font-size: 0.92rem !important;
  line-height: 1.75 !important;
}

/* ── Stock indicator ── */
.vr-stock {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.80rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}
.vr-stock__dot {
  width: 8px;
  height: 8px;
  background: #7ECF8F;
  border-radius: 50%;
  flex-shrink: 0;
  animation: vr-pulse 2.2s ease-in-out infinite;
}
@keyframes vr-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(1.4); }
}

/* ── CTA buttons ── */
.vr-tile__cta {
  align-self: flex-start;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: background 0.3s, transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}
.vr-tile__cta--meet {
  background: var(--p-olive);
  color: #fff;
}
.vr-tile__cta--meet:hover {
  background: var(--p-olive-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(92, 107, 79, 0.25);
}
.vr-tile__cta--reserve {
  background: var(--p-gold);
  color: var(--p-charcoal);
}
.vr-tile__cta--reserve:hover {
  background: var(--p-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 150, 90, 0.35);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .visit-reserve { padding: var(--p-section-gap) 24px; }
  .visit-reserve__inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .visit-reserve { padding: 60px 20px; }
}

/* ─────────────────────────────────────────
   HERO BRAND LOGO
───────────────────────────────────────── */
.prod-hero__brand-logo {
  display: block;
  height: 28px;
  width: auto;
  max-width: 160px;
  margin-top: 10px;
  margin-bottom: 4px;
}

/* ─────────────────────────────────────────
   BRAND BANNER — Bel Giardino
───────────────────────────────────────── */
.brand-banner {
  background: var(--bg-alt, #F4F0E8);
  border-top: 1px solid var(--border, #E4DDD0);
  border-bottom: 1px solid var(--border, #E4DDD0);
}
.brand-banner__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 40px;
}
.brand-banner__logo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brand-banner__logo img {
  height: 52px;
  width: auto;
  display: block;
  opacity: 0.88;
}
.brand-banner__divider {
  width: 1px;
  height: 52px;
  background: var(--gold, #B8965A);
  opacity: 0.35;
  flex-shrink: 0;
}
.brand-banner__text {
  flex: 1;
}
.brand-banner__tagline {
  font-family: 'Cormorant', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text, #1a1a1a);
  margin-bottom: 5px;
  line-height: 1.35;
}
.brand-banner__tagline em {
  color: var(--gold, #B8965A);
  font-style: italic;
}
.brand-banner__desc {
  font-size: 13px;
  color: var(--text-2, #4a4a4a);
  line-height: 1.65;
  max-width: 680px;
}

@media (max-width: 900px) {
  .brand-banner__inner { gap: 28px; }
}
@media (max-width: 640px) {
  .brand-banner__inner {
    flex-direction: column;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 24px;
    gap: 16px;
  }
  .brand-banner__text {
    text-align: center;
  }
  .brand-banner__divider { display: none; }
  .brand-banner__logo img { height: 40px; }
  .brand-banner__tagline { font-size: 16px; }
}

/* ═══ LOGO LOCK ═══ */
.nav__logo     { flex-shrink: 0; }
.nav__logo img { flex-shrink: 0; min-width: max-content; }

