/* ═══════════════════════════════════════════════════
   Lucide Product Card — CSS v1.2
   All selectors scoped to .lpc-wrap to avoid theme conflicts
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&family=DM+Mono:wght@300;400&display=swap');

/* ── Reset for our wrapper only ── */
.lpc-wrap *,
.lpc-wrap *::before,
.lpc-wrap *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Defenzívne pravidlá (v1.7.5 — refined) — proti wpautop() poškodeniu výstupu ──
   POZN: V 1.7.5 plugin bypassuje wpautop pre svoj výstup cez placeholder swap
   (the_content filter priorita 11). Tieto CSS pravidlá sú DRUHÁ obranná línia
   pre prípady keď shortcode beží mimo the_content (napr. priamo z WC template).

   POZOR: Selektory cielia VÝLUČNE na <p> elementy bez triedy ako *direct children*
   top-level karty kontajnerov (.lpc-wrap, .lpc-grid). Vyhýbame sa cieliť hlbšie
   (.lpc-cart-row, .lpc-price-block, atď.) — tam by wpautop mohol obaliť aj
   naše interaktívne elementy a tieto pravidlá by ich potom zničili. */
.lpc-wrap > p:not([class]),
.lpc-grid > p:not([class]) {
  display: none !important;
}
/* Reálne prázdne <p> kdekoľvek v scope sú vždy bezpečné na skrytie */
.lpc-wrap p:empty {
  display: none !important;
}

/* ── Design tokens ── */
.lpc-wrap {
  --lpc-bg:        #0a0a0b;
  --lpc-surface:   #111114;
  --lpc-surface2:  #16161c;
  --lpc-border:    #1e1e24;
  --lpc-border2:   #2a2a32;
  --lpc-text:      #e8e6e0;
  --lpc-muted:     #7a7880;
  --lpc-muted2:    #4a4850;
  --lpc-accent:    #c8a96e;
  --lpc-accent2:   #8a6f3f;
  --lpc-acglow:    rgba(200,169,110,.12);
  --lpc-white:     #f5f3ee;
  --lpc-green:     #3d9e6a;
  --lpc-green-bg:  rgba(61,158,106,.08);
  --lpc-red:       #c05050;
  --lpc-head:      'Cormorant Garamond', Georgia, serif;
  --lpc-body:      'DM Sans', sans-serif;
  --lpc-mono:      'DM Mono', monospace;
  --lpc-r:         4px;

  background: var(--lpc-bg);
  color: var(--lpc-text);
  font-family: var(--lpc-body);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 80px;  /* top=0, topbar má vlastný padding */
}

/* ── Topbar with back button — STICKY ── */
.lpc-topbar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--lpc-bg);
  padding: 14px 32px;
  border-bottom: 1px solid var(--lpc-border);
  margin-left: -32px;
  margin-right: -32px;
}
/* Logged-in WP admin bar is 32px on desktop */
.admin-bar .lpc-topbar { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .lpc-topbar { top: 46px; }
}
.lpc-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--lpc-mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lpc-muted);
  background: var(--lpc-surface);
  border: 1px solid var(--lpc-border2);
  border-radius: var(--lpc-r);
  padding: 7px 14px;
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.lpc-btn-back:hover {
  color: var(--lpc-accent);
  border-color: var(--lpc-accent2);
  background: var(--lpc-surface2);
}

/* ── Breadcrumb ── */
.lpc-breadcrumb {
  font-family: var(--lpc-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lpc-muted);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lpc-breadcrumb a  { color: var(--lpc-muted); text-decoration: none; transition: color .2s; }
.lpc-breadcrumb a:hover { color: var(--lpc-accent); }
.lpc-breadcrumb i  { color: var(--lpc-border2); font-style: normal; }

/* ── Main grid ── */
.lpc-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 48px;
  align-items: start;  /* oba stĺpce začínajú od vrchu */
}

.lpc-product-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  grid-column: 2;
  grid-row: 1;
  align-self: start;   /* info začína od vrchu, nie stretnutý */
}
.lpc-media-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  grid-column: 1;
  grid-row: 1;
  align-self: start;   /* media tiež od vrchu */
}

/* Tablet/Mobile */
@media (max-width: 1024px) {
  .lpc-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .lpc-product-info {
    grid-column: 1;
    grid-row: 1;
  }
  .lpc-media-panel {
    grid-column: 1;
    grid-row: 2;
  }
}

/* ═══════════════════════════════════════
   LEFT — MEDIA PANEL
═══════════════════════════════════════ */

/* Tab bar */
.lpc-media-tabs {
  display: flex;
  gap: 2px;
  background: var(--lpc-surface);
  border: 1px solid var(--lpc-border);
  border-radius: var(--lpc-r);
  padding: 3px;
  width: fit-content;
}
.lpc-tab {
  font-family: var(--lpc-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 3px;
  cursor: pointer;
  color: var(--lpc-muted);
  background: none;
  border: none;
  transition: all .2s;
}
.lpc-tab.active {
  background: var(--lpc-surface2);
  color: var(--lpc-accent);
  border: 1px solid var(--lpc-border2);
}
.lpc-tab:not(.active):hover { color: var(--lpc-text); }

/* Viewer container */
.lpc-media-viewer {
  background: var(--lpc-surface);
  border: 1px solid var(--lpc-border);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  width: 100%;
  /* Fixed height instead of aspect-ratio for reliable cross-browser rendering */
  height: 480px;
}

/* Views — fill parent completely */
.lpc-view { display: none; width: 100%; height: 100%; }
.lpc-view.active { display: block; }

/* Image view — flex column fills full height */
.lpc-view-images.active {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.lpc-main-img-wrap {
  flex: 1;
  min-height: 300px;    /* prevents collapse to 0 = black */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: #ffffff !important;   /* white always, override any theme */
  position: relative;
  cursor: zoom-in;
  overflow: hidden;
}
.lpc-main-img-wrap img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  transition: transform .35s;
}
.lpc-main-img-wrap:hover img { transform: scale(1.05); }

.lpc-badge-stock {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--lpc-green-bg);
  border: 1px solid var(--lpc-green);
  color: var(--lpc-green);
  font-family: var(--lpc-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}
.lpc-badge-stock::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lpc-green);
  animation: lpcPulse 2s infinite;
}
@keyframes lpcPulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .3; }
}

/* Thumbnails strip — grid wraps all photos */
.lpc-thumb-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
  gap: 6px;
  padding: 10px;
  background: var(--lpc-surface2);
  border-top: 1px solid var(--lpc-border);
  flex-shrink: 0;
}
.lpc-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--lpc-border);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  transition: border-color .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lpc-thumb.active, .lpc-thumb:hover { border-color: var(--lpc-accent); }
.lpc-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

/* 3D view */
.lpc-view-3d { position: relative; }
.lpc-canvas3d { width: 100% !important; height: 100% !important; display: block; }

.lpc-model-loading {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  background: var(--lpc-surface);
  z-index: 5;
}
.lpc-spinner {
  width: 32px; height: 32px;
  border: 2px solid var(--lpc-border2);
  border-top-color: var(--lpc-accent);
  border-radius: 50%;
  animation: lpcSpin .8s linear infinite;
}
@keyframes lpcSpin { to { transform: rotate(360deg); } }
.lpc-model-loading p {
  font-family: var(--lpc-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lpc-muted);
}

.lpc-model-hint {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--lpc-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lpc-muted);
  background: rgba(10,10,11,.85);
  border: 1px solid var(--lpc-border);
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 1s;
}
.lpc-model-hint.lpc-hidden { opacity: 0; }

.lpc-3d-note {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--lpc-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lpc-muted);
  background: rgba(10,10,11,.85);
  border: 1px solid var(--lpc-border);
  padding: 5px 10px;
  border-radius: 3px;
  pointer-events: none;
}

/* Video view */
.lpc-view-video video { width: 100%; height: 100%; object-fit: cover; }

/* Extras row */
.lpc-media-extras {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
/* When only manual card is shown */
.lpc-media-extras-single {
  grid-template-columns: 1fr;
  max-width: 240px;
}
.lpc-extra-card {
  background: var(--lpc-surface);
  border: 1px solid var(--lpc-border);
  border-radius: var(--lpc-r);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: border-color .2s, background .2s;
  cursor: pointer;
}
.lpc-extra-card:hover { border-color: var(--lpc-accent2); background: var(--lpc-surface2); }
.lpc-extra-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--lpc-acglow);
  border: 1px solid var(--lpc-accent2);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.lpc-extra-label {
  font-family: var(--lpc-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lpc-muted);
  margin-bottom: 2px;
}
.lpc-extra-name { font-size: 12px; color: var(--lpc-text); font-weight: 500; }

/* ═══════════════════════════════════════
   RIGHT — PRODUCT INFO
═══════════════════════════════════════ */

/* Header */
.lpc-product-header {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--lpc-border);
  margin-bottom: 24px;
}
.lpc-collection {
  font-family: var(--lpc-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lpc-accent2);
  margin-bottom: 8px;
}
.lpc-name {
  font-family: var(--lpc-head);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 300;
  color: var(--lpc-white);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 12px;
}
.lpc-short-desc {
  font-size: 13.5px;
  color: var(--lpc-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.lpc-sku-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.lpc-sku {
  font-family: var(--lpc-mono);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--lpc-muted);
}
.lpc-sku span { color: var(--lpc-text); }

/* Stock badges */
.lpc-stock-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.lpc-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--lpc-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--lpc-r);
  border: 1px solid var(--lpc-border);
}
.lpc-badge span { font-size: 13px; }
.lpc-badge-in    { background: var(--lpc-green-bg); border-color: var(--lpc-green); color: var(--lpc-green); }
.lpc-badge-out   { background: rgba(192,80,80,.08); border-color: var(--lpc-red);   color: var(--lpc-red); }
.lpc-badge-order { background: rgba(200,169,110,.08); border-color: var(--lpc-accent2); color: var(--lpc-accent); }
.lpc-badge-in::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lpc-green);
  animation: lpcPulse 2s infinite;
}

/* Price */
.lpc-price-block { margin-bottom: 24px; position: relative; }
.lpc-price-label {
  font-family: var(--lpc-mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lpc-muted);
  margin-bottom: 4px;
}
.lpc-price-main {
  font-family: var(--lpc-head);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--lpc-white);
  line-height: 1;
  letter-spacing: -.02em;
}
.lpc-price-vat { font-size: 11px; color: var(--lpc-muted); margin-top: 4px; }

/* ── B2B + Sale rozšírenia (v1.6.0) ── */

/* Stĺpcový layout — aktivuje sa keď je B2B partner */
.lpc-price-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.lpc-price-block.lpc-has-b2b .lpc-price-cols {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.lpc-price-col {
  position: relative;
  min-width: 0;
}

/* Vertikálny oddeľovač medzi stĺpcami */
.lpc-price-block.lpc-has-b2b .lpc-price-col-b2b {
  padding-left: 24px;
  border-left: 1px solid var(--lpc-border);
}

/* Katalógový stĺpec keď existuje B2B → muted (B2B je hlavná info) */
.lpc-price-block.lpc-has-b2b .lpc-price-col-catalog .lpc-price-main {
  color: var(--lpc-muted);
  font-size: 1.6rem;
}
.lpc-price-block.lpc-has-b2b .lpc-price-col-catalog .lpc-price-vat {
  opacity: .7;
}

/* B2B stĺpec — zlatý akcent, hlavný */
.lpc-price-col-b2b .lpc-price-label {
  color: var(--lpc-accent);
}
.lpc-price-col-b2b .lpc-price-main {
  color: var(--lpc-white);
}

/* Prečiarknutá regular cena (pri WC sale) */
.lpc-price-strike {
  font-family: var(--lpc-head);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--lpc-muted2);
  text-decoration: line-through;
  text-decoration-color: var(--lpc-red);
  text-decoration-thickness: 1px;
  margin-bottom: 2px;
  line-height: 1;
}

/* Úspora badge */
.lpc-price-savings {
  display: inline-flex;
  align-items: center;
  font-family: var(--lpc-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--lpc-r);
  border: 1px solid;
  margin-top: 8px;
}
.lpc-price-savings-sale {
  color: var(--lpc-red);
  border-color: var(--lpc-red);
  background: rgba(192,80,80,.08);
}
.lpc-price-savings-b2b {
  color: var(--lpc-accent);
  border-color: var(--lpc-accent2);
  background: var(--lpc-acglow);
}

/* ── 3-stavový mode toggle (eye icon) ── */
.lpc-mode-toggle {
  position: absolute;
  top: -2px;
  right: 0;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--lpc-border2);
  border-radius: var(--lpc-r);
  color: var(--lpc-muted);
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
  padding: 0;
  z-index: 2;
}
.lpc-mode-toggle:hover {
  color: var(--lpc-accent);
  border-color: var(--lpc-accent2);
  background: var(--lpc-surface);
}
.lpc-mode-toggle svg {
  width: 16px;
  height: 16px;
  display: block;
}
.lpc-mode-icon {
  display: none;
  align-items: center;
  justify-content: center;
}
.lpc-mode-label {
  position: absolute;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--lpc-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lpc-muted);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.lpc-mode-toggle:hover .lpc-mode-label { opacity: 1; }

/* Default = full mode (oba stĺpce viditeľné) */
.lpc-wrap .lpc-mode-icon-full     { display: inline-flex; }

/* Client mode — skry B2B stĺpec */
.lpc-wrap.lpc-mode-client .lpc-mode-icon-full   { display: none; }
.lpc-wrap.lpc-mode-client .lpc-mode-icon-client { display: inline-flex; }
.lpc-wrap.lpc-mode-client .lpc-price-col-b2b,
.lpc-wrap.lpc-mode-client .lpc-bulb-price-col-b2b {
  display: none;
}
/* V client mode už nie je B2B viditeľný → katalóg sa správa ako keby B2B nebol */
.lpc-wrap.lpc-mode-client .lpc-price-block.lpc-has-b2b .lpc-price-cols {
  grid-template-columns: 1fr;
}
.lpc-wrap.lpc-mode-client .lpc-price-block.lpc-has-b2b .lpc-price-col-catalog .lpc-price-main {
  color: var(--lpc-white);
  font-size: 2.4rem;
}
.lpc-wrap.lpc-mode-client .lpc-price-block.lpc-has-b2b .lpc-price-col-catalog .lpc-price-vat {
  opacity: 1;
}
.lpc-wrap.lpc-mode-client .lpc-price-block.lpc-has-b2b .lpc-price-col-catalog .lpc-price-label::after {
  content: ' (zobrazené ako pre koncového zákazníka)';
  font-size: 8px;
  letter-spacing: .1em;
  color: var(--lpc-muted2);
  text-transform: none;
}

/* Empty mode — skry úplne všetky ceny */
.lpc-wrap.lpc-mode-empty .lpc-mode-icon-full   { display: none; }
.lpc-wrap.lpc-mode-empty .lpc-mode-icon-empty  { display: inline-flex; }
.lpc-wrap.lpc-mode-empty .lpc-price-cols,
.lpc-wrap.lpc-mode-empty .lpc-bulb-prices {
  display: none;
}
.lpc-wrap.lpc-mode-empty .lpc-price-block::after {
  content: 'Ceny skryté · katalógový režim';
  display: block;
  font-family: var(--lpc-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lpc-muted2);
  padding: 18px 0;
  border-top: 1px solid var(--lpc-border);
  border-bottom: 1px solid var(--lpc-border);
  text-align: center;
}

/* ── Bulb (žiarovka) — kompaktná B2B verzia ── */
.lpc-bulb-prices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 6px;
}
.lpc-bulb-prices.lpc-has-b2b {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lpc-bulb-price-col {
  min-width: 0;
}
.lpc-bulb-prices.lpc-has-b2b .lpc-bulb-price-col-b2b {
  padding-left: 14px;
  border-left: 1px solid var(--lpc-border);
}
.lpc-bulb-price-label {
  font-family: var(--lpc-mono);
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lpc-muted);
  margin-bottom: 2px;
}
.lpc-bulb-price-col-b2b .lpc-bulb-price-label {
  color: var(--lpc-accent);
}
.lpc-bulb-prices.lpc-has-b2b .lpc-bulb-price-col-catalog .lpc-bulb-price {
  color: var(--lpc-muted);
  font-size: 1.2rem;
}
.lpc-bulb-price-strike {
  font-family: var(--lpc-head);
  font-size: .95rem;
  color: var(--lpc-muted2);
  text-decoration: line-through;
  text-decoration-color: var(--lpc-red);
  text-decoration-thickness: 1px;
  line-height: 1;
}

/* Energy label block (v1.7.0) — thumbnail + click → modal popup
   Nahrádza starý lpc-energy-strip. Staré classy ponechané pre spätnú kompatibilitu nižšie. */
.lpc-energy-block {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: var(--lpc-surface);
  border: 1px solid var(--lpc-border);
  border-radius: var(--lpc-r);
  margin-bottom: 24px;
}
.lpc-energy-thumb {
  position: relative;
  width: 60px;
  height: 90px;
  background: white;
  border: 1px solid var(--lpc-border);
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  flex-shrink: 0;
  transition: border-color .2s, transform .2s;
  font-family: inherit;
}
.lpc-energy-thumb:hover {
  border-color: var(--lpc-accent);
  transform: scale(1.04);
}
.lpc-energy-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.lpc-energy-pdf-icon {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--lpc-surface2);
}
.lpc-energy-pdf-letter {
  font-family: var(--lpc-head);
  font-size: 1.8rem;
  color: var(--lpc-accent);
  line-height: 1;
}
.lpc-energy-pdf-text {
  font-family: var(--lpc-mono);
  font-size: 8px;
  letter-spacing: .14em;
  color: var(--lpc-muted);
}
.lpc-energy-zoom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,.78);
  color: var(--lpc-accent);
  font-family: var(--lpc-mono);
  font-size: 8px;
  letter-spacing: .1em;
  padding: 3px 0;
  text-align: center;
  opacity: 0;
  transition: opacity .2s;
}
.lpc-energy-thumb:hover .lpc-energy-zoom { opacity: 1; }

.lpc-energy-meta { flex: 1; min-width: 0; }
.lpc-energy-meta-label {
  font-family: var(--lpc-mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lpc-muted);
  margin-bottom: 4px;
}
.lpc-energy-meta-rating {
  font-family: var(--lpc-head);
  font-size: 1.1rem;
  color: var(--lpc-text);
  line-height: 1.2;
}

/* ── Univerzálny modal overlay (v1.7.0) ──
   Po triggeri z .lpc-modal-trigger sa do <body> vloží overlay so zobrazeným obrázkom alebo iframe-om.
   Použiteľný aj pre iné typy obsahu, nielen energy label. */
.lpc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
  cursor: zoom-out;
  padding: 60px 24px 24px;
}
.lpc-modal-overlay.active { opacity: 1; }
.lpc-modal-content {
  position: relative;
  max-width: min(90vw, 720px);
  max-height: 90vh;
  background: white;
  border-radius: 6px;
  cursor: default;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
}
.lpc-modal-content img {
  display: block;
  max-width: 100%;
  max-height: 86vh;
  height: auto;
  border-radius: 6px;
}
.lpc-modal-content iframe {
  display: block;
  width: min(90vw, 720px);
  height: 86vh;
  border: 0;
  border-radius: 6px;
}
.lpc-modal-close {
  position: absolute;
  top: -42px;
  right: 0;
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--lpc-r);
  color: var(--lpc-white);
  font-family: var(--lpc-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 12px;
  transition: color .2s, border-color .2s;
}
.lpc-modal-close:hover {
  color: var(--lpc-accent);
  border-color: var(--lpc-accent2);
}

/* Lock body scroll keď je modal otvorený */
body.lpc-modal-open { overflow: hidden; }

/* ── Legacy: lpc-energy-strip (v1.6.x — stále podporované pre prípad že sa to niekde používa) ── */
.lpc-energy-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--lpc-surface);
  border: 1px solid var(--lpc-border);
  border-radius: var(--lpc-r);
  margin-bottom: 24px;
  text-decoration: none;
}
.lpc-energy-strip.lpc-energy-clickable:hover {
  border-color: var(--lpc-accent2);
  background: var(--lpc-surface2);
}
.lpc-energy-rating {
  font-family: var(--lpc-head);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--lpc-green);
  line-height: 1;
  width: 36px;
  text-align: center;
}
.lpc-energy-bar {
  flex: 1;
  height: 6px;
  background: var(--lpc-border);
  border-radius: 3px;
  overflow: hidden;
}
.lpc-energy-fill {
  height: 100%;
  width: 88%;
  background: linear-gradient(90deg, var(--lpc-green), #7acc88);
  border-radius: 3px;
}
.lpc-energy-lbl {
  font-family: var(--lpc-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lpc-muted);
  white-space: nowrap;
}

/* Cart row */
.lpc-cart-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: stretch;
}
.lpc-qty-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--lpc-border2);
  border-radius: var(--lpc-r);
  overflow: hidden;
  background: var(--lpc-surface);
}
.lpc-qty-btn {
  width: 40px; height: 48px;
  background: none;
  border: none;
  color: var(--lpc-muted);
  font-size: 18px;
  cursor: pointer;
  transition: color .2s, background .2s;
  display: flex; align-items: center; justify-content: center;
}
.lpc-qty-btn:hover { color: var(--lpc-accent); background: var(--lpc-surface2); }
.lpc-qty-input {
  width: 48px;
  text-align: center;
  background: none;
  border: none;
  color: var(--lpc-white);
  font-family: var(--lpc-mono);
  font-size: 14px;
  outline: none;
  -moz-appearance: textfield;
}
.lpc-qty-input::-webkit-inner-spin-button,
.lpc-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.lpc-btn-cart {
  flex: 1;
  height: 48px;
  background: var(--lpc-accent);
  color: var(--lpc-bg);
  border: none;
  border-radius: var(--lpc-r);
  font-family: var(--lpc-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.lpc-btn-cart:hover  { opacity: .88; }
.lpc-btn-cart:active { transform: scale(.98); }
.lpc-btn-cart.lpc-loading { opacity: .6; pointer-events: none; }
.lpc-btn-wish {
  width: 48px; height: 48px;
  background: var(--lpc-surface);
  border: 1px solid var(--lpc-border2);
  border-radius: var(--lpc-r);
  color: var(--lpc-muted);
  font-size: 18px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  display: flex; align-items: center; justify-content: center;
}
.lpc-btn-wish:hover { border-color: var(--lpc-accent2); color: var(--lpc-accent); }

.lpc-cart-msg {
  font-family: var(--lpc-mono);
  font-size: 11px;
  letter-spacing: .08em;
  padding: 8px 14px;
  border-radius: var(--lpc-r);
  margin-bottom: 12px;
}
.lpc-cart-msg.ok  { background: var(--lpc-green-bg); border: 1px solid var(--lpc-green); color: var(--lpc-green); }
.lpc-cart-msg.err { background: rgba(192,80,80,.08); border: 1px solid var(--lpc-red);   color: var(--lpc-red); }

/* Properties accordion */
.lpc-props-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--lpc-border);
  cursor: pointer;
  user-select: none;
  font-family: var(--lpc-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lpc-text);
}
.lpc-arrow { color: var(--lpc-muted); transition: transform .25s; font-size: 12px; }
.lpc-arrow.open { transform: rotate(180deg); }

/* ── Desktop: always open ── */
@media (min-width: 1025px) {
  .lpc-props-grid.lpc-desktop-open     { max-height: 1000px !important; margin-bottom: 4px; }
  .lpc-full-specs-body.lpc-desktop-open{ max-height: 3000px !important; }
  .lpc-arrow-desktop-open              { transform: rotate(180deg); }
  /* Hide toggle cursor on desktop — not needed */
  .lpc-props-toggle                    { cursor: default; }
}

.lpc-props-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--lpc-border);
  border: 1px solid var(--lpc-border);
  border-radius: var(--lpc-r);
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease;
  margin-bottom: 0;
}
.lpc-props-grid.open { max-height: 1000px; margin-bottom: 4px; }

.lpc-prop { background: var(--lpc-surface); padding: 10px 14px; display: flex; flex-direction: column; gap: 2px; }
.lpc-pk {
  font-family: var(--lpc-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lpc-muted);
}
.lpc-pv { font-size: 12.5px; color: var(--lpc-white); font-weight: 400; }

.lpc-desc-block { border-top: 1px solid var(--lpc-border); }
.lpc-desc-content {
  padding: 16px 0;
  font-size: 13.5px;
  color: var(--lpc-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.lpc-desc-content.open { max-height: 600px; }

/* Full specs accordion body */
.lpc-full-specs-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease;
}
.lpc-full-specs-body.open { max-height: 3000px; }

/* Full spec table toggle heading */
.lpc-full-specs-toggle {
  border-top: 1px solid var(--lpc-border);
  margin-bottom: 0;
  padding: 20px 0 16px;
}
.lpc-full-specs-toggle .lpc-section-title {
  margin-bottom: 0;
  pointer-events: none;
}

/* ═══════════════════════════════════════
   BOTTOM — FULL SPEC TABLE
═══════════════════════════════════════ */
.lpc-bottom {
  margin-top: 64px;
  border-top: 1px solid var(--lpc-border);
  padding-top: 48px;
}
.lpc-section-title {
  font-family: var(--lpc-head);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--lpc-white);
  margin-bottom: 24px;
}
.lpc-section-title em { font-style: italic; color: var(--lpc-accent); }
.lpc-full-desc {
  font-size: 14px;
  color: var(--lpc-text);
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 40px;
}

.lpc-full-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--lpc-border);
  border: 1px solid var(--lpc-border);
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 800px) { .lpc-full-props { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .lpc-full-props { grid-template-columns: 1fr; } }

.lpc-fp { background: var(--lpc-surface); padding: 16px 18px; transition: background .2s; }
.lpc-fp:hover { background: var(--lpc-surface2); }
.lpc-fk {
  font-family: var(--lpc-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lpc-muted);
  margin-bottom: 4px;
}
.lpc-fv { font-size: 13.5px; color: var(--lpc-white); font-weight: 400; }
.lpc-fv a { color: var(--lpc-accent); text-decoration: none; }
.lpc-fv a:hover { text-decoration: underline; }

/* ── Not found ── */
.lpc-not-found {
  padding: 32px;
  text-align: center;
  color: var(--lpc-muted);
  font-family: var(--lpc-mono);
  font-size: 11px;
  letter-spacing: .1em;
}

/* ── Single product page body override ── */
body.lpc-active .site-main { max-width: 100%; padding: 0; }
body.lpc-active .woocommerce-notices-wrapper { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ═══════════════════════════════════════
   MOBILE — max 640px
═══════════════════════════════════════ */
@media (max-width: 640px) {
  .lpc-wrap {
    padding: 0 0 60px;
  }

  /* Topbar */
  .lpc-topbar {
    padding: 10px 16px;
    gap: 10px;
  }
  .lpc-breadcrumb {
    display: none; /* skryť na mobile — len Späť tlačidlo */
  }

  /* Grid — single column, info first */
  .lpc-grid {
    padding: 0 16px;
    gap: 24px;
  }

  /* Product header */
  .lpc-name {
    font-size: 1.7rem;
  }
  .lpc-short-desc {
    font-size: 13px;
  }

  /* Media viewer — na mobile pevná výška cez vw jednotky */
  .lpc-media-viewer {
    height: auto;
    overflow: visible;   /* ← neorezávaj thumbnaily */
    border-radius: 6px 6px 0 0;  /* zaoblenie len hore */
  }
  /* Views na mobile - height auto */
  .lpc-view {
    height: auto;
  }
  .lpc-view-images.active {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  /* Hlavný obrázok — square-ish na mobile */
  .lpc-main-img-wrap {
    flex: none;
    width: 100%;
    height: 80vw;
    max-height: 400px;
    padding: 16px;
    min-height: 0;
    aspect-ratio: unset;
    border-radius: 5px 5px 0 0;
  }
  .lpc-main-img-wrap img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  /* Thumb strip — OUTSIDE viewer box on mobile, no clipping */
  .lpc-thumb-strip {
    grid-template-columns: repeat(auto-fill, minmax(52px, 1fr));
    gap: 5px;
    padding: 8px;
    border-radius: 0 0 6px 6px;
    border: 1px solid var(--lpc-border);
    border-top: none;
  }
  /* 3D canvas — rovnaká výška ako obrázok */
  .lpc-view-3d {
    height: 80vw;
    max-height: 400px;
    border-radius: 5px;
  }
  .lpc-canvas3d {
    height: 100% !important;
    border-radius: 5px;
  }
  /* Video */
  .lpc-view-video {
    height: 80vw;
    max-height: 400px;
  }

  /* Manual karta — full width */
  .lpc-media-extras-single {
    max-width: 100%;
  }

  /* Props grid — 1 stĺpec na mobile */
  .lpc-props-grid {
    grid-template-columns: 1fr;
  }

  /* Cart row */
  .lpc-cart-row {
    flex-wrap: wrap;
    gap: 8px;
  }
  .lpc-btn-cart {
    flex: 1;
    min-width: 0;
    height: 52px;
    font-size: 12px;
  }
  .lpc-qty-wrap {
    flex-shrink: 0;
  }
  .lpc-btn-wish {
    flex-shrink: 0;
  }

  /* Price */
  .lpc-price-main {
    font-size: 2rem;
  }

  /* B2B stĺpce na mobile pod seba */
  .lpc-price-block.lpc-has-b2b .lpc-price-cols {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .lpc-price-block.lpc-has-b2b .lpc-price-col-b2b {
    padding-left: 0;
    padding-top: 16px;
    border-left: none;
    border-top: 1px solid var(--lpc-border);
  }
  .lpc-price-block.lpc-has-b2b .lpc-price-col-catalog .lpc-price-main {
    font-size: 1.4rem;
  }
  /* Žiarovka — stĺpce na mobile pod seba */
  .lpc-bulb-prices.lpc-has-b2b {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .lpc-bulb-prices.lpc-has-b2b .lpc-bulb-price-col-b2b {
    padding-left: 0;
    padding-top: 8px;
    border-left: none;
    border-top: 1px solid var(--lpc-border);
  }
  /* Skry hover label tooltip na mobile (tap-only) */
  .lpc-mode-label { display: none; }

  /* Stock badges */
  .lpc-badge {
    font-size: 9px;
    padding: 4px 8px;
  }

  /* Bottom spec table */
  .lpc-bottom {
    padding: 0 16px 0;
    margin-top: 40px;
  }
  .lpc-full-props {
    grid-template-columns: 1fr 1fr;
  }

  /* Energy strip */
  .lpc-energy-strip {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Extras */
  .lpc-extra-card {
    padding: 10px 12px;
  }
}

/* ── Small phones (≤ 390px) ── */
@media (max-width: 390px) {
  .lpc-main-img-wrap,
  .lpc-view-3d,
  .lpc-view-video { height: 88vw; max-height: 340px; }
  .lpc-thumb-strip {
    grid-template-columns: repeat(auto-fill, minmax(44px, 1fr));
    gap: 4px;
  }
  .lpc-full-props { grid-template-columns: 1fr; }
  .lpc-name { font-size: 1.5rem; }
}

/* ═══════════════════════════════════════
   ODPORÚČANÁ ŽIAROVKA
═══════════════════════════════════════ */
.lpc-bulb-section {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--lpc-border);
}

.lpc-bulb-card {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  grid-template-rows: auto auto;
  gap: 0 32px;
  background: var(--lpc-surface);
  border: 1px solid var(--lpc-border);
  border-radius: 8px;
  overflow: hidden;
  max-width: 860px;
}

/* Image */
.lpc-bulb-img-wrap {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  padding: 24px;
  transition: opacity .2s;
}
.lpc-bulb-img-wrap:hover { opacity: .88; }
.lpc-bulb-img-wrap img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
}

/* Info */
.lpc-bulb-info {
  grid-column: 2;
  grid-row: 1;
  padding: 24px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lpc-bulb-sku {
  font-family: var(--lpc-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lpc-muted);
}
.lpc-bulb-sku span { color: var(--lpc-text); }
.lpc-bulb-name {
  font-family: var(--lpc-head);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--lpc-white);
  text-decoration: none;
  line-height: 1.2;
  transition: color .2s;
}
.lpc-bulb-name:hover { color: var(--lpc-accent); }
.lpc-bulb-stock { margin-top: 4px; }
.lpc-bulb-price {
  font-family: var(--lpc-head);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--lpc-white);
  line-height: 1;
  margin-top: 6px;
}
.lpc-bulb-vat {
  font-size: 11px;
  color: var(--lpc-muted);
}

/* Cart */
.lpc-bulb-cart {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 24px 0;
  align-items: flex-end;
  justify-content: flex-start;
}
.lpc-bulb-cart .lpc-qty-wrap { width: 130px; }
.lpc-bulb-cart .lpc-btn-cart {
  width: 100%;
  white-space: nowrap;
  font-size: 10px;
  padding: 0 16px;
}

/* Cart msg spans full bottom */
.lpc-bulb-cart-msg {
  grid-column: 2 / 4;
  grid-row: 2;
  margin: 0 24px 16px 0;
}

/* ── Bulb mobile ── */
@media (max-width: 640px) {
  .lpc-bulb-card {
    grid-template-columns: 120px 1fr;
    grid-template-rows: auto auto auto;
    gap: 0 16px;
  }
  .lpc-bulb-img-wrap {
    grid-column: 1;
    grid-row: 1;
    padding: 16px;
  }
  .lpc-bulb-info {
    grid-column: 2;
    grid-row: 1;
    padding: 16px 16px 8px 0;
  }
  .lpc-bulb-cart {
    grid-column: 1 / 3;
    grid-row: 2;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 16px 16px;
    align-items: center;
    justify-content: flex-start;
  }
  .lpc-bulb-cart .lpc-qty-wrap { flex-shrink: 0; }
  .lpc-bulb-cart .lpc-btn-cart { flex: 1; }
  .lpc-bulb-cart-msg {
    grid-column: 1 / 3;
    grid-row: 3;
    margin: 0 16px 12px;
  }
}

/* ═══════════════════════════════════════
   LOGIN PROMPT FOR GUESTS (B2B)
═══════════════════════════════════════ */
.lpc-login-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.lpc-btn-login {
  height: 48px;
  background: var(--lpc-accent);
  color: var(--lpc-bg);
  border: none;
  border-radius: var(--lpc-r);
  font-family: var(--lpc-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
}
.lpc-btn-login:hover  { opacity: .88; color: var(--lpc-bg); }
.lpc-btn-login:active { transform: scale(.98); }

.lpc-login-note {
  font-family: var(--lpc-mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lpc-muted);
  text-align: center;
  line-height: 1.6;
}

/* Compact variant for bulb section */
.lpc-login-row-bulb {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lpc-btn-login-compact {
  width: 100%;
  height: 38px;
  font-size: 10px;
  padding: 0 16px;
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 640px) {
  .lpc-btn-login {
    height: 52px;
    font-size: 12px;
  }
  .lpc-login-note {
    font-size: 9px;
  }
}


/* ═══════════════════════════════════════
   MOBILE — additional fixes v1.4
═══════════════════════════════════════ */
@media (max-width: 640px) {
  /* Grid padding */
  .lpc-grid {
    padding: 0 16px;
  }
  /* Topbar full width */
  .lpc-topbar {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  /* Name smaller on very narrow */
  .lpc-product-header {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  /* SKU row wrap */
  .lpc-sku-row {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
  /* Wish button full row on mobile */
  .lpc-btn-wish {
    width: 52px;
    height: 52px;
  }
  /* Bottom section padding */
  .lpc-bottom,
  .lpc-bulb-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  /* Section title smaller */
  .lpc-section-title {
    font-size: 1.4rem;
  }
}

/* ═══════════════════════════════════════════════════
   v1.5 — variation selector + sklad SK + button states
   ═══════════════════════════════════════════════════ */

/* ── Variation selektor (variable produkty) ── */
.lpc-wrap .lpc-variations {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  margin: 12px 0;
  background: var(--lpc-surface);
  border: 1px solid var(--lpc-border);
  border-radius: var(--lpc-r);
}
.lpc-wrap .lpc-variation-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lpc-wrap .lpc-variation-label {
  font-family: var(--lpc-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lpc-muted);
}
.lpc-wrap .lpc-variation-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--lpc-surface2);
  color: var(--lpc-text);
  border: 1px solid var(--lpc-border2);
  border-radius: var(--lpc-r);
  padding: 10px 36px 10px 12px;
  font-family: var(--lpc-body);
  font-size: 14px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='%237a7880' d='M2 4l4 4 4-4z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color .15s ease;
}
.lpc-wrap .lpc-variation-select:hover,
.lpc-wrap .lpc-variation-select:focus {
  outline: none;
  border-color: var(--lpc-accent);
}
.lpc-wrap .lpc-variation-msg {
  margin-top: 4px;
  padding: 8px 10px;
  font-size: 13px;
  border-radius: var(--lpc-r);
}
.lpc-wrap .lpc-variation-msg.err {
  background: rgba(192, 80, 80, .08);
  color: var(--lpc-red);
  border: 1px solid rgba(192, 80, 80, .25);
}

/* ── Disabled cart button (variable bez výberu) ── */
.lpc-wrap .lpc-btn-cart:disabled,
.lpc-wrap .lpc-btn-cart[disabled] {
  opacity: .45;
  cursor: not-allowed;
  filter: grayscale(.5);
}
.lpc-wrap .lpc-btn-cart:disabled:hover,
.lpc-wrap .lpc-btn-cart[disabled]:hover {
  transform: none;
}

/* ── Sklad SK badge (vedľa BE) ── */
.lpc-wrap .lpc-badge-sk {
  background: var(--lpc-green-bg);
  color: var(--lpc-green);
  border: 1px solid rgba(61, 158, 106, .25);
}
