/**
 * PDP component structure (neutral defaults).
 * Brand: storefront pdp-boosters/tokens.css
 */
.single-product,
.necta-pdp-bundle,
.necta-pdp-qu {
	--line: var(--necta-pdp-line, #e5e7eb);
	--paper-2: var(--necta-pdp-paper-2, #f9fafb);
	--orange: var(--necta-pdp-orange, #2563eb);
}

.necta-pdp-qu {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.necta-pdp-qu__head {
  padding: 10px 14px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.necta-pdp-qu__badge {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #fff;
  background: var(--orange);
  padding: 3px 7px; border-radius: 4px;
}
.necta-pdp-qu__sum {
  font-size: 12px; font-weight: 600;
}
.necta-pdp-qu__sum .js-qu-amount { color: var(--orange); }

.necta-pdp-qu__list { list-style: none; margin: 0; padding: 0; }
.necta-pdp-qu__item { border-top: 1px solid var(--line); }
.necta-pdp-qu__item:first-child { border-top: 0; }
.necta-pdp-qu__label {
  display: grid;
  grid-template-columns: 20px 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  background: #fff;
  transition: background .15s ease;
}
.necta-pdp-qu__label:hover { background: rgba(232,109,49,.04); }
/* Checkbox + tick share first cell (same grid area) — no absolute-to-viewport drift */
.necta-pdp-qu__cb {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px; border-radius: 4px;
  border: 1.5px solid var(--line-2);
  background: #fff; cursor: pointer; margin: 0;
  flex-shrink: 0;
  display: inline-grid; place-items: center;
  position: relative;
  z-index: 0;
}
.necta-pdp-qu__cb:checked {
  background: var(--orange);
  border-color: var(--orange);
}
.necta-pdp-qu__check {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
  position: relative;
  z-index: 1;
  opacity: 0;
}
.necta-pdp-qu__cb:checked ~ .necta-pdp-qu__check { opacity: 1; }
.necta-pdp-qu__thumb {
  grid-column: 2;
  grid-row: 1;
  width: 44px;
  height: 44px;
  min-height: 44px;
  border-radius: 6px;
  background: var(--paper-2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.necta-pdp-qu__body {
  grid-column: 3;
  grid-row: 1;
}
.necta-pdp-qu__price {
  grid-column: 4;
  grid-row: 1;
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.necta-pdp-qu__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  mix-blend-mode: darken;
}
.necta-pdp-qu__body { min-width: 0; }
.necta-pdp-qu__name {
  display: block;
  font-size: 13px; font-weight: 600; line-height: 1.25;
}
.necta-pdp-qu__sub {
  display: block;
  font-size: 11px; color: var(--muted); line-height: 1.3; margin-top: 2px;
}
.necta-pdp-qu__price-old {
  font-size: 11px; color: var(--muted); text-decoration: line-through; line-height: 1;
}
.necta-pdp-qu__price-now {
  font-size: 14px; font-weight: 700; color: var(--orange); line-height: 1.1;
}

/* ── Shipping countdown (plugin markup: .necta-pdp-ship) ─ */
.necta-pdp-ship {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px;
  background: var(--orange-tint);
  border: 1px solid var(--orange-soft);
  border-radius: 10px;
  font-size: 13px;
  color: var(--ink);
}
.necta-pdp-ship__icon { color: var(--orange); flex-shrink: 0; display: inline-flex; }
.necta-pdp-ship__msg { line-height: 1.5; color: var(--ink); }
.necta-pdp-ship__msg strong { font-weight: 700; color: var(--ink); }
/* Countdown chip — white pill with orange-soft outline + monospace digits */
.necta-pdp-ship__time {
  display: inline-block;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  background: #fff;
  color: var(--ink);
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid var(--orange-soft);
  margin: 0 2px;
  white-space: nowrap;
}

/* ── Bundle (kuracja): ciemna karta — beż TYLKO w kafelkach na zdjęcia ─ */
.necta-pdp-bundle {
  padding: 24px 0 32px;
}
.necta-pdp-bundle__card {
  position: relative;
  background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
  color: #fff;
  border-radius: 16px;
  padding: 28px 16px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  overflow: visible;
}
@media (min-width: 760px) {
  .necta-pdp-bundle__card {
    grid-template-columns: 45fr 55fr;
    padding: 24px 28px;
    gap: 24px;
  }
}

.necta-pdp-bundle__badge {
  position: absolute;
  top: -14px;
  left: 18px;
  z-index: 5;
  font-size: 11px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff; background: var(--orange);
  padding: 6px 12px; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.9);
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}

.necta-pdp-bundle__stack {
  position: relative;
  width: 100%;
  height: 140px;
  flex-shrink: 0;
  overflow: visible;
  isolation: isolate;
}
.necta-pdp-bundle__tile {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--paper, #fbf7f1) 0%, var(--paper-2, #f5efe5) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,.22);
  overflow: hidden;
  transform-origin: center center;
}
.necta-pdp-bundle__tile--0 { transform: translate(-30px, 8px) rotate(-8deg); z-index: 1; }
.necta-pdp-bundle__tile--1 { transform: translate(0, -6px) rotate(0deg); z-index: 3; }
.necta-pdp-bundle__tile--2 { transform: translate(30px, 8px) rotate(8deg); z-index: 2; }
.necta-pdp-bundle__tile--3 { transform: translate(-15px, 16px) rotate(-4deg); z-index: 0; }
.necta-pdp-bundle__tile--4 { transform: translate(15px, 16px) rotate(4deg); z-index: 0; }
.necta-pdp-bundle__stack[data-count="2"] .necta-pdp-bundle__tile--0 { transform: translate(-18px, 2px) rotate(-7deg); }
.necta-pdp-bundle__stack[data-count="2"] .necta-pdp-bundle__tile--1 { transform: translate(18px, 2px) rotate(7deg); }
.necta-pdp-bundle__stack[data-count="2"] .necta-pdp-bundle__tile--2,
.necta-pdp-bundle__stack[data-count="2"] .necta-pdp-bundle__tile--3,
.necta-pdp-bundle__stack[data-count="2"] .necta-pdp-bundle__tile--4 { display: none; }
.necta-pdp-bundle__stack[data-count="3"] .necta-pdp-bundle__tile--3,
.necta-pdp-bundle__stack[data-count="3"] .necta-pdp-bundle__tile--4 { display: none; }
.necta-pdp-bundle__stack[data-count="4"] .necta-pdp-bundle__tile--4 { display: none; }
.necta-pdp-bundle__tile img {
  width: 100%;
  height: 100%;
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
  object-position: center center;
  mix-blend-mode: darken;
  background: transparent;
}

.necta-pdp-bundle__tile img.ns-product-img--cutout {
  mix-blend-mode: normal;
}

.necta-pdp-bundle__main {
  display: flex; flex-direction: column; gap: 12px;
  min-width: 0;
}
.necta-pdp-bundle__eyebrow {
  font-size: 9px; font-weight: 700; letter-spacing: .14em;
  color: var(--orange); text-transform: uppercase; margin-bottom: 2px;
}
.necta-pdp-bundle__title {
  font-size: 16px; line-height: 1.2; margin: 0;
  color: #fff; font-weight: 600;
  letter-spacing: -0.01em;
}

.necta-pdp-bundle__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
}
.necta-pdp-bundle__row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12px;
  min-width: 0;
}
.necta-pdp-bundle__row:first-child { border-top: 0; }
.necta-pdp-bundle__num {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--orange);
  font-size: 10px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.necta-pdp-bundle__name {
  font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  color: rgba(255,255,255,.95);
}
.necta-pdp-bundle__vol {
  color: rgba(255,255,255,.5);
  font-size: 11px;
  white-space: nowrap;
}
.necta-pdp-bundle__price {
  font-weight: 600;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.necta-pdp-bundle__price-prefix {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.45);
}
.necta-pdp-bundle__price .woocommerce-Price-amount {
  color: rgba(255,255,255,.9);
}

.necta-pdp-bundle__total {
  padding: 6px 6px 6px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.necta-pdp-bundle__total-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  min-width: 0;
  line-height: 1.15;
}
.necta-pdp-bundle__total-sub {
  display: flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}
.necta-pdp-bundle__total-now {
  font-size: 17px; font-weight: 800; letter-spacing: -0.01em; color: #fff;
  white-space: nowrap;
}
.necta-pdp-bundle__total-now .woocommerce-Price-amount { color: #fff; }
.necta-pdp-bundle__total-old {
  font-size: 11px; color: rgba(255,255,255,.4); text-decoration: line-through;
}
.necta-pdp-bundle__total-old .woocommerce-Price-amount { color: rgba(255,255,255,.4); }
.necta-pdp-bundle__total-save {
  font-size: 11px; font-weight: 700; color: var(--orange);
}
.necta-pdp-bundle__total-save .woocommerce-Price-amount { color: var(--orange); }
.necta-pdp-bundle__cta {
  flex-shrink: 0; white-space: nowrap;
  height: 36px; padding: 0 16px; font-size: 12px;
  border-radius: 999px;
}

/* Bundle osadzony w prawej kolumnie PDP (buybox), nie pełna szerokość pod galerią. */
.ns-pdp-buybox .necta-pdp-bundle {
  width: 100%;
  padding: 22px 0 0;
  overflow: visible;
}

.ns-pdp-buybox .necta-pdp-bundle__card {
  width: 100%;
  max-width: none;
  margin: 0;
  box-shadow: 0 18px 36px rgba(0,0,0,.18);
  overflow: visible;
}

@media (min-width: 760px) {
  .ns-pdp-buybox .necta-pdp-bundle__stack {
    height: 160px;
  }

  .ns-pdp-buybox .necta-pdp-bundle__tile {
    width: 116px;
    height: 116px;
    margin: -58px 0 0 -58px;
  }

  .ns-pdp-buybox .necta-pdp-bundle__tile--0 { transform: translate(-36px, 8px) rotate(-8deg); }
  .ns-pdp-buybox .necta-pdp-bundle__tile--1 { transform: translate(0, -6px) rotate(0deg); }
  .ns-pdp-buybox .necta-pdp-bundle__tile--2 { transform: translate(36px, 8px) rotate(8deg); }
  .ns-pdp-buybox .necta-pdp-bundle__tile--3 { transform: translate(-18px, 16px) rotate(-4deg); }
  .ns-pdp-buybox .necta-pdp-bundle__tile--4 { transform: translate(18px, 16px) rotate(4deg); }
  .ns-pdp-buybox .necta-pdp-bundle__stack[data-count="2"] .necta-pdp-bundle__tile--0 { transform: translate(-22px, 2px) rotate(-7deg); }
  .ns-pdp-buybox .necta-pdp-bundle__stack[data-count="2"] .necta-pdp-bundle__tile--1 { transform: translate(22px, 2px) rotate(7deg); }
}

@media (min-width: 760px) {
  .necta-pdp-bundle__stack { height: 160px; }
  .necta-pdp-bundle__tile {
    width: 116px;
    height: 116px;
    margin: -58px 0 0 -58px;
  }
  .necta-pdp-bundle__tile--0 { transform: translate(-36px, 8px) rotate(-8deg); }
  .necta-pdp-bundle__tile--1 { transform: translate(0, -6px) rotate(0deg); }
  .necta-pdp-bundle__tile--2 { transform: translate(36px, 8px) rotate(8deg); }
  .necta-pdp-bundle__tile--3 { transform: translate(-18px, 16px) rotate(-4deg); }
  .necta-pdp-bundle__tile--4 { transform: translate(18px, 16px) rotate(4deg); }
  .necta-pdp-bundle__stack[data-count="2"] .necta-pdp-bundle__tile--0 { transform: translate(-22px, 2px) rotate(-7deg); }
  .necta-pdp-bundle__stack[data-count="2"] .necta-pdp-bundle__tile--1 { transform: translate(22px, 2px) rotate(7deg); }
}

.ns-pdp-buybox .necta-pdp-bundle__row {
  grid-template-columns: 18px minmax(0, 1fr) auto;
}

.ns-pdp-buybox .necta-pdp-bundle__total {
  margin-top: 2px;
}

/* ── Bundle modal — ciemne tło + trellis ze stopki ─────── */
body.necta-pdp-bundle-modal-open { overflow: hidden; }

.necta-pdp-bundle-modal {
  position: fixed;
  inset: 0;
  z-index: 100050;
  display: grid;
  place-items: center;
  padding: 16px;
  box-sizing: border-box;
}
.necta-pdp-bundle-modal[hidden] { display: none !important; }

.necta-pdp-bundle-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
}

.necta-pdp-bundle-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100vw - 32px));
  max-height: min(88vh, 720px);
  overflow: auto;
  background: #15110D;
  color: rgba(255,255,255,.92);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 24px 56px rgba(0,0,0,.5);
  padding: 0;
}

.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__title {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__anchor-wrap {
  padding: 16px 20px 0;
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__anchor {
  position: relative;
  background: linear-gradient(180deg, rgba(232,109,49,.14) 0%, rgba(232,109,49,.06) 100%);
  border: 1px solid rgba(232,109,49,.35);
  border-radius: 14px;
  padding: 12px;
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__anchor-tag {
  position: absolute;
  top: -8px;
  left: 14px;
  background: #15110D;
  padding: 2px 8px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--orange);
  text-transform: uppercase;
  border-radius: 4px;
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__anchor-row,
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__addon {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
/* Modal V1 — miniatury na ciemnym tle (nie beż jak na karcie PDP) */
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__thumb {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__thumb img {
  width: 100%;
  height: 100%;
  max-width: 52px;
  max-height: 52px;
  object-fit: contain;
  object-position: center center;
  mix-blend-mode: normal;
  background: transparent;
}

.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__thumb img.ns-product-img--cutout {
  max-width: 48px;
  max-height: 48px;
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__anchor-main,
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__addon-body {
  flex: 1;
  min-width: 0;
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__anchor-name,
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__addon-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__anchor-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__anchor-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__anchor-pill.is-empty {
  display: none;
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__anchor-pill-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__anchor-note {
  font-size: 11px;
  color: rgba(255,255,255,.55);
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__anchor-price,
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__addon-price {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__divider {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0 8px;
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__divider::before,
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.1);
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__divider span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__addons {
  padding: 0 20px 18px;
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__addon {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__addon:last-child {
  border-bottom: 0;
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__addon-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__addon-note {
  margin: 4px 0 0;
  font-size: 11px;
  color: rgba(255,255,255,.5);
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__foot {
  padding: 0 20px 18px;
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__submit {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  padding: 0 22px;
}
.necta-pdp-bundle-modal.is-submitting .necta-pdp-bundle-modal__backdrop {
  pointer-events: none;
}
.necta-pdp-bundle-modal.is-submitting .necta-pdp-bundle-modal__dialog {
  position: relative;
}
.necta-pdp-bundle-modal.is-submitting .necta-pdp-bundle-modal__dialog::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255,255,255,.55);
  pointer-events: none;
  z-index: 2;
}
.necta-pdp-bundle-modal.is-submitting .js-necta-pdp-bundle-modal-submit {
  cursor: wait;
  opacity: .88;
}
.necta-pdp-bundle-modal.is-submitting .js-necta-pdp-bundle-modal-submit[data-state="loading"]::before {
  content: '';
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: necta-pdp-bundle-spin .7s linear infinite;
  flex-shrink: 0;
  margin-right: 8px;
}
.necta-pdp-bundle-modal.is-submitting .js-necta-pdp-bundle-modal-submit[data-state="loading"] {
  justify-content: center;
}
@keyframes necta-pdp-bundle-spin {
  to { transform: rotate(360deg); }
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__submit-prices {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__submit-old {
  font-size: 12px;
  font-weight: 500;
  opacity: .65;
  text-decoration: line-through;
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__savings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  flex-wrap: wrap;
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__savings strong,
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__savings .js-necta-pdp-bundle-price-save,
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__savings .woocommerce-Price-amount {
  color: #fff;
  font-weight: 700;
}
.necta-pdp-bundle-modal--v1 .necta-pdp-bundle-modal__savings svg {
  color: var(--orange);
  flex-shrink: 0;
}

/* Variant chips (modal V1 + block V2) */
.necta-pdp-bundle-chips {
  display: grid;
  grid-template-columns: repeat(var(--necta-bundle-chip-cols, 2), minmax(0, 1fr));
  gap: 6px;
  margin-top: 10px;
}
.necta-pdp-bundle-block__row .necta-pdp-bundle-chips {
  padding-left: 0;
}
.necta-pdp-bundle-chip {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.03);
  cursor: pointer;
  text-align: left;
  transition: border-color .15s, background .15s;
}
.necta-pdp-bundle-chip.is-active {
  border: 1.5px solid var(--orange);
  background: rgba(232,109,49,.14);
}
.necta-pdp-bundle-chip.is-disabled {
  opacity: .45;
  cursor: not-allowed;
}
.necta-pdp-bundle-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.necta-pdp-bundle-chip__label {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  letter-spacing: -0.01em;
}
.necta-pdp-bundle-chip.is-active .necta-pdp-bundle-chip__label { color: #fff; }
.necta-pdp-bundle-chip__price {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
}
.necta-pdp-bundle-chip.is-active .necta-pdp-bundle-chip__price { color: var(--orange); }
.necta-pdp-bundle-chip__check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Block V2 — inline card */
.necta-pdp-bundle--block {
  overflow: visible;
}
.necta-pdp-bundle-block__card {
  position: relative;
  background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
  color: #fff;
  border-radius: 18px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  overflow: visible;
}
.necta-pdp-bundle-block__badge {
  position: absolute;
  top: -12px;
  left: 16px;
  z-index: 5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  padding: 5px 11px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.9);
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.necta-pdp-bundle-block__eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.necta-pdp-bundle-block__title {
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
  font-weight: 600;
  color: #fff;
}
.necta-pdp-bundle-block__header {
  margin-bottom: 12px;
}
.necta-pdp-bundle-block__rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.necta-pdp-bundle-block__row {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.necta-pdp-bundle-block__thumb {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
.necta-pdp-bundle-block__thumb img {
  width: 100%;
  height: 100%;
  max-width: 42px;
  max-height: 42px;
  object-fit: contain;
  mix-blend-mode: normal;
  background: transparent;
}
.necta-pdp-bundle-block__thumb img.ns-product-img--cutout {
  mix-blend-mode: normal;
}
.necta-pdp-bundle-block__row-main {
  flex: 1;
  min-width: 0;
}
.necta-pdp-bundle-block__row-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.necta-pdp-bundle-block__row-name {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}
.necta-pdp-bundle-block__row-note {
  font-size: 10px;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}
.necta-pdp-bundle-block__row-price {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
}
.necta-pdp-bundle-block__row-badge {
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(232,109,49,.18);
  color: var(--orange);
  text-transform: uppercase;
  white-space: nowrap;
}
.necta-pdp-bundle-block__foot {
  margin-top: 14px;
}
.necta-pdp-bundle-block__cta {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  padding: 0 20px;
}
.necta-pdp-bundle-block__cta-prices {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.necta-pdp-bundle-block__cta-old {
  font-size: 11px;
  font-weight: 500;
  opacity: .65;
  text-decoration: line-through;
}
.necta-pdp-bundle-block__savings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}
.necta-pdp-bundle-block__savings svg {
  color: var(--orange);
  flex-shrink: 0;
}
.ns-pdp-buybox .necta-pdp-bundle--block {
  padding-top: 22px;
  overflow: visible;
}

.necta-pdp-bundle-modal__pattern {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'><g fill='none' stroke='%23C49A4A' stroke-width='1.4' stroke-linecap='round'><path d='M0 22 Q11 0 22 22 Q33 44 44 22'/><path d='M0 22 Q11 44 22 22 Q33 0 44 22'/><path d='M22 0 Q44 11 22 22 Q0 33 22 44'/><path d='M22 0 Q0 11 22 22 Q44 33 22 44'/></g></svg>");
  background-size: 44px 44px;
  opacity: 0.07;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.35) 0%, black 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.35) 0%, black 100%);
}

.necta-pdp-bundle-modal__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.necta-pdp-bundle-modal__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #fff;
}

.necta-pdp-bundle-modal__close {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  line-height: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.necta-pdp-bundle-modal__close svg { display: block; }
.necta-pdp-bundle-modal__close:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(232,109,49,.45);
}

.necta-pdp-bundle-modal__intro {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,.62);
  position: relative;
  z-index: 1;
}

.necta-pdp-bundle-modal__body {
  position: relative;
  z-index: 1;
}

.necta-pdp-bundle-modal__slot {
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.necta-pdp-bundle-modal__slot:first-of-type { border-top: 0; padding-top: 0; }

.necta-pdp-bundle-modal__slot-head {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.necta-pdp-bundle-modal__slot--anchor {
  padding-bottom: 14px;
}

.necta-pdp-bundle-modal__anchor-name {
  display: block;
  color: #fff;
  font-weight: 700;
  margin-bottom: 4px;
}

.necta-pdp-bundle-modal__anchor-note {
  display: block;
  color: rgba(255,255,255,.58);
  font-weight: 400;
}

.necta-pdp-bundle-modal__details summary {
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  list-style: none;
}
.necta-pdp-bundle-modal__details summary::-webkit-details-marker { display: none; }

.necta-pdp-bundle-modal__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.necta-pdp-bundle-modal__opt {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  cursor: pointer;
  font-size: 13px;
}
.necta-pdp-bundle-modal__opt:hover { border-color: rgba(232,109,49,.45); }

.necta-pdp-bundle-modal__opt input {
  margin: 0;
  accent-color: var(--orange);
}

.necta-pdp-bundle-modal__opt-label { min-width: 0; color: rgba(255,255,255,.92); }
.necta-pdp-bundle-modal__opt-price {
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}
.necta-pdp-bundle-modal__opt-price .woocommerce-Price-amount { color: inherit; }

.necta-pdp-bundle-modal__opt-note {
  grid-column: 2 / -1;
  font-size: 11px;
  color: rgba(255,255,255,.5);
}

.necta-pdp-bundle-modal__fixed {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,.62);
}

.necta-pdp-bundle-modal__actions {
  display: flex;
  justify-content: stretch;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
  position: relative;
  z-index: 1;
}

.necta-pdp-bundle-modal__actions .js-necta-pdp-bundle-modal-submit {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.necta-pdp-bundle-modal__actions .js-necta-pdp-bundle-modal-price {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.necta-pdp-bundle-modal__actions .js-necta-pdp-bundle-modal-price .woocommerce-Price-amount {
  color: #fff;
}

/* ── Buybox rhythm (theme shell spacing hooks) ─────────── */
.ns-pdp-buybox .necta-pdp-qu { margin: 0 0 12px; }
.ns-pdp-buybox .necta-pdp-ship { margin: 0 0 12px; }
