/* Promation – wyszukiwarka stojaków v24
   Styl zawężony do .pm-stand-finder, żeby nie mieszać w wyglądzie sklepu. */

.pm-stand-finder,
.pm-stand-finder * {
  box-sizing: border-box;
}

.pm-stand-finder {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 26px;
  color: #24343a;
  font-family: inherit;
  line-height: 1.42;
  overflow: visible;
}

.pm-stand-finder a {
  text-decoration: none;
}

.pmf-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
  padding: 12px 14px;
  border: 1px solid #d7edf5;
  border-top: 4px solid #11add0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fcfe 100%);
  border-radius: 4px;
}

.pmf-hero h1,
.pmf-hero h2 {
  margin: 0 0 4px;
  color: #111827;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pmf-hero p {
  margin: 0;
  color: #4a5b63;
  font-size: 13px;
}

.pmf-mini-help {
  position: relative;
  flex: 0 0 auto;
  max-width: 290px;
  font-size: 12px;
  color: #4a5b63;
}

.pmf-mini-help summary {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid #cbdde5;
  border-radius: 4px;
  background: #fff;
  color: #0b7fa8;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.pmf-mini-help summary::-webkit-details-marker {
  display: none;
}

.pmf-mini-help[open] summary {
  border-color: #11add0;
  background: #f2fbfe;
}

.pmf-mini-help-body {
  position: absolute;
  right: 0;
  top: 36px;
  z-index: 15;
  width: 310px;
  padding: 11px 12px;
  border: 1px solid #cbdde5;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(36, 52, 58, .16);
}

.pmf-mini-help-body p {
  margin: 0 0 7px;
  font-size: 12px;
}

.pmf-mini-help-body p:last-child {
  margin-bottom: 0;
}

.pmf-status {
  display: none;
  margin: 0 0 10px;
  padding: 9px 11px;
  border: 1px solid #f1d39a;
  background: #fff8e9;
  color: #6f4b05;
  border-radius: 4px;
  font-size: 13px;
}

.pmf-status.is-visible {
  display: block;
}

.pmf-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 10px;
}

.pmf-group {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d9e8ee;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(36, 52, 58, .06);
}

.pmf-group-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 12px;
}

.pmf-group-head span:first-child {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background: rgba(255,255,255,.18);
  font-size: 13px;
}

.pmf-group--stand .pmf-group-head,
.pmf-choice-summary.pmf-group--stand { background: #0b94c6; }
.pmf-group--desk .pmf-group-head,
.pmf-choice-summary.pmf-group--desk { background: #279448; }
.pmf-group--wall .pmf-group-head,
.pmf-choice-summary.pmf-group--wall { background: #6952b5; }

.pmf-group-visual {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 6px;
  border-bottom: 1px solid #e3eef2;
  background: linear-gradient(180deg, #f9fdff 0%, #eef8fb 100%);
  overflow: hidden;
}

.pmf-group--stand .pmf-group-visual {
  background: linear-gradient(180deg, #f8fdff 0%, #e8f7fc 100%);
}

.pmf-group--desk .pmf-group-visual {
  background: linear-gradient(180deg, #fbfffc 0%, #eaf7ee 100%);
}

.pmf-group--wall .pmf-group-visual {
  background: linear-gradient(180deg, #fcfbff 0%, #f0ecfb 100%);
}

.pmf-group-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pmf-type-list {
  display: grid;
  gap: 7px;
  padding: 10px;
}

.pmf-type-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 66px;
  padding: 7px 8px;
  border: 1px solid #dce9ee;
  border-radius: 4px;
  background: #fff;
  color: #24343a;
  cursor: pointer;
  text-align: left;
  transition: border-color .15s ease, background .15s ease, transform .15s ease, box-shadow .15s ease;
}

.pmf-type-card:hover,
.pmf-type-card:focus-visible {
  border-color: #11add0;
  background: #f7fcfe;
  box-shadow: 0 2px 8px rgba(17,173,208,.12);
  transform: translateY(-1px);
  outline: none;
}

.pmf-type-img {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  border: 1px solid #e3eef2;
  background: #f4f8fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #0b94c6;
  font-size: 20px;
  font-weight: 800;
}

.pmf-type-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pmf-type-title {
  display: block;
  margin: 0 0 1px;
  font-size: 14px;
  line-height: 1.16;
  font-weight: 800;
  color: #111827;
}

.pmf-type-sub {
  display: block;
  color: #53656d;
  font-size: 11px;
  line-height: 1.22;
}

.pmf-check {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 1px solid #cfe2e9;
  color: transparent;
  font-size: 12px;
  font-weight: 900;
}

.pmf-choice-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
  padding: 9px 11px;
  border-radius: 4px;
  color: #fff;
  box-shadow: 0 1px 4px rgba(36, 52, 58, .09);
}

.pmf-choice-path {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  flex-wrap: wrap;
}

.pmf-choice-kicker,
.pmf-choice-sub {
  opacity: .9;
  font-size: 12px;
}

.pmf-choice-path strong {
  font-size: 14px;
  line-height: 1.2;
}

.pmf-choice-arrow {
  opacity: .75;
  font-size: 18px;
  line-height: 1;
}

.pmf-change-type {
  flex: 0 0 auto;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 4px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.pmf-change-type:hover,
.pmf-change-type:focus-visible {
  background: rgba(255,255,255,.22);
  outline: none;
}

.pmf-panel {
  border: 1px solid #d9e8ee;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(36, 52, 58, .05);
}

.pmf-panel--empty {
  margin-top: 2px;
}

.pmf-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-bottom: 1px solid #e5eef2;
  background: #fbfdfe;
}

.pmf-panel-head h2 {
  margin: 0;
  color: #111827;
  font-size: 15px;
  line-height: 1.2;
}

.pmf-clear {
  border: 0;
  background: transparent;
  color: #0b94c6;
  font-size: 12px;
  cursor: pointer;
  padding: 4px 0;
}

.pmf-clear:hover {
  text-decoration: underline;
}

.pmf-filter-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 0;
}

.pmf-filter-group {
  min-width: 0;
  padding: 8px 9px;
  border-right: 1px solid #edf3f5;
  border-bottom: 1px solid #edf3f5;
}

.pmf-filter-label {
  display: block;
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  color: #24343a;
}

.pmf-chip-row {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.pmf-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 27px;
  padding: 5px 8px;
  border: 1px solid #cbdde5;
  border-radius: 4px;
  background: #fff;
  color: #24343a;
  font-size: 12px;
  line-height: 1.15;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease, opacity .15s ease;
}

.pmf-chip:hover,
.pmf-chip:focus-visible {
  border-color: #11add0;
  background: #f2fbfe;
  outline: none;
}

.pmf-chip.is-active {
  border-color: #0b94c6;
  background: #0b94c6;
  color: #fff;
  font-weight: 800;
}

.pmf-chip.is-muted {
  opacity: .54;
}

.pmf-chip.is-unavailable {
  opacity: .28;
  background: #f4f4f4;
  cursor: not-allowed;
}

.pmf-range-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.pmf-input {
  width: 100%;
  height: 30px;
  padding: 6px 8px;
  border: 1px solid #cbdde5;
  border-radius: 4px;
  background: #fff;
  color: #24343a;
  font: inherit;
  font-size: 12px;
}

.pmf-input:focus {
  border-color: #11add0;
  outline: none;
}

.pmf-legend-dot {
  display: inline-flex;
  vertical-align: -3px;
  width: 14px;
  height: 14px;
  margin: 0 3px 0 8px;
  border-radius: 4px;
  border: 1px solid #cbdde5;
  background: #fff;
}

.pmf-legend-dot:first-child {
  margin-left: 0;
}

.pmf-legend-dot--active {
  border-color: #0b94c6;
  background: #0b94c6;
}

.pmf-legend-dot--muted {
  opacity: .35;
  background: #f4f4f4;
}

.pmf-results-wrap {
  margin-top: 10px;
  border: 1px solid #d9e8ee;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
}

.pmf-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-bottom: 1px solid #e5eef2;
  background: #fbfdfe;
}

.pmf-results-head h2 {
  margin: 0;
  color: #111827;
  font-size: 15px;
  line-height: 1.2;
}

.pmf-sort {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 12px;
  color: #53656d;
}

.pmf-sort select {
  height: 30px;
  border: 1px solid #cbdde5;
  border-radius: 4px;
  background: #fff;
  color: #24343a;
  font: inherit;
  font-size: 12px;
}

.pmf-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 10px;
  padding: 8px;
}

.pmf-product {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid #d9e8ee;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.pmf-product:hover {
  border-color: #11add0;
  box-shadow: 0 2px 8px rgba(17,173,208,.12);
  transform: translateY(-1px);
}

.pmf-product-img {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 2px;
  background: #fff;
  border-bottom: 1px solid #eef4f6;
}

.pmf-product-img.has-capacity {
  grid-template-columns: minmax(0, 1fr) 18px;
  gap: 3px;
}

.pmf-product-img-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
}

.pmf-product-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pmf-product-img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px dashed #cbdde5;
  border-radius: 4px;
  color: #0b94c6;
  font-size: 26px;
  font-weight: 800;
  background: #f7fcfe;
}

.pmf-product-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 8px;
}

.pmf-product-name {
  margin: 0 0 6px;
  color: #111827;
  font-size: 12.5px;
  line-height: 1.23;
  font-weight: 800;
}

.pmf-code-price {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 8px;
  margin-bottom: 7px;
  color: #53656d;
  font-size: 11px;
}

.pmf-badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin: 0 0 9px;
}

.pmf-badge {
  display: inline-flex;
  padding: 3px 5px;
  border-radius: 3px;
  background: #eef8fb;
  color: #0a6d88;
  font-size: 10.5px;
  line-height: 1.18;
}

.pmf-product-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  min-height: 32px;
  padding: 7px 9px;
  border-radius: 3px;
  background: #0b94c6;
  color: #fff !important;
  font-size: 12px;
  font-weight: 800;
}

.pmf-product-link:hover {
  background: #087ca6;
}


.pmf-capacity-meter {
  display: grid;
  grid-template-rows: 13px 1fr;
  align-items: stretch;
  gap: 2px;
  min-width: 16px;
  padding: 2px 1px;
  border-left: 1px solid #e8f1f4;
}

.pmf-capacity-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 13px;
  border-radius: 2px;
  color: #8aa0aa;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  background: #f3f7f9;
}

.pmf-capacity-plus.is-active {
  color: #fff;
  background: #23a455;
  box-shadow: 0 0 5px rgba(35,164,85,.45);
}

.pmf-capacity-bars {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2px;
}

.pmf-capacity-bar {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: #e4edf1;
}

.pmf-capacity-bar.is-active {
  background: linear-gradient(90deg, #43d06c, #159947);
  box-shadow: 0 0 4px rgba(21,153,71,.35);
}

.pmf-empty {
  padding: 12px 10px;
  color: #53656d;
  font-size: 13px;
}

.pmf-seo-note {
  margin-top: 10px;
  padding: 9px 10px;
  border: 1px solid #e3eef2;
  border-radius: 4px;
  background: #fbfdfe;
  color: #53656d;
  font-size: 12px;
}

.pmf-seo-note h2 {
  margin: 0 0 4px;
  color: #24343a;
  font-size: 13px;
  line-height: 1.25;
}

.pmf-seo-note p {
  margin: 0;
}

.pmf-hidden {
  display: none !important;
}

@media (max-width: 900px) {
  .pmf-hero {
    display: block;
  }

  .pmf-mini-help {
    margin-top: 9px;
  }

  .pmf-mini-help-body {
    left: 0;
    right: auto;
    max-width: calc(100vw - 32px);
  }

  .pmf-type-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pmf-hero {
    padding: 11px 10px;
  }

  .pmf-hero h1,
  .pmf-hero h2 {
    font-size: 21px;
  }

  .pmf-choice-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .pmf-group-visual {
    height: 96px;
    padding: 4px 6px;
  }

  .pmf-type-card {
    grid-template-columns: 50px minmax(0, 1fr) 20px;
    min-height: 64px;
    padding: 7px;
  }

  .pmf-type-img {
    width: 46px;
    height: 46px;
  }

  .pmf-filter-body {
    grid-template-columns: 1fr;
  }

  .pmf-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
  }

  .pmf-product-body {
    padding: 8px;
  }

  .pmf-product-name {
    font-size: 12.5px;
  }

  .pmf-results-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .pmf-results {
    grid-template-columns: 1fr;
  }
}


/* Wizualne próbki kolorów w filtrze „Kolor / wykończenie” */
.pmf-chip[data-pmf-color="czarny"] {
  background: #111;
  border-color: #111;
  color: #fff;
}
.pmf-chip[data-pmf-color="czarny"].is-active {
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.38);
}
.pmf-chip[data-pmf-color="srebrny"] {
  background: linear-gradient(135deg, #f7f7f7 0%, #b8c1c7 48%, #eef1f3 100%);
  border-color: #aeb8bf;
  color: #24343a;
}
.pmf-chip[data-pmf-color="biały"] {
  background: #fff;
  border-color: #9ca8af;
  color: #111827;
  box-shadow: inset 0 0 0 1px #eef1f3;
}
.pmf-chip[data-pmf-color="grafitowy"] {
  background: #424a50;
  border-color: #333b40;
  color: #fff;
}
.pmf-chip[data-pmf-color="transparentny"] {
  color: #24343a;
  border-color: #9fc9d4;
  background:
    linear-gradient(45deg, rgba(255,255,255,.75) 25%, rgba(210,232,239,.95) 25%, rgba(210,232,239,.95) 50%, rgba(255,255,255,.75) 50%, rgba(255,255,255,.75) 75%, rgba(210,232,239,.95) 75%);
  background-size: 10px 10px;
}
.pmf-chip[data-pmf-color].is-muted,
.pmf-chip[data-pmf-color].is-unavailable {
  filter: grayscale(.35);
}

.pmf-format-note {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-top: 6px;
  color: #53656d;
  font-size: 10.5px;
  line-height: 1.25;
}
.pmf-format-note span {
  display: inline-flex;
  padding: 2px 4px;
  border-radius: 3px;
  background: #f5fafc;
  border: 1px solid #e0edf2;
}


/* PMF v6 – mocniejsze próbki kolorów, żeby nie wyglądały jak zwykłe szare przyciski */
.pmf-chip[data-pmf-filter="colors"][data-pmf-color="czarny"] {
  background: #111 !important;
  border-color: #111 !important;
  color: #fff !important;
}
.pmf-chip[data-pmf-filter="colors"][data-pmf-color="srebrny"] {
  background: linear-gradient(135deg, #ffffff 0%, #b5bec5 48%, #eef1f3 100%) !important;
  border-color: #a5adb4 !important;
  color: #1f2d3d !important;
}
.pmf-chip[data-pmf-filter="colors"][data-pmf-color="biały"] {
  background: #fff !important;
  border-color: #87939b !important;
  color: #111827 !important;
  box-shadow: inset 0 0 0 1px #e0e6ea !important;
}
.pmf-chip[data-pmf-filter="colors"][data-pmf-color="grafitowy"] {
  background: #424a50 !important;
  border-color: #2f363b !important;
  color: #fff !important;
}
.pmf-chip[data-pmf-filter="colors"][data-pmf-color="transparentny"] {
  color: #24343a !important;
  border-color: #8fbfca !important;
  background: linear-gradient(45deg, rgba(255,255,255,.86) 25%, rgba(190,226,235,.95) 25%, rgba(190,226,235,.95) 50%, rgba(255,255,255,.86) 50%, rgba(255,255,255,.86) 75%, rgba(190,226,235,.95) 75%) !important;
  background-size: 10px 10px !important;
}
.pmf-chip[data-pmf-filter="colors"].is-active {
  outline: 2px solid #0b94c6;
  outline-offset: 1px;
  font-weight: 800;
}
.pmf-chip[data-pmf-filter="colors"].is-muted,
.pmf-chip[data-pmf-filter="colors"].is-unavailable {
  opacity: .38;
}


/* PMF v7/v8 – akcent pomarańczowy dla ścieżki wyboru i CTA */
.pmf-choice-summary,
.pmf-choice-summary.pmf-group--stand,
.pmf-choice-summary.pmf-group--desk,
.pmf-choice-summary.pmf-group--wall {
  background: #fa9918 !important;
}
.pmf-change-type {
  border-color: rgba(255,255,255,.75) !important;
  background: rgba(255,255,255,.18) !important;
}
.pmf-change-type:hover,
.pmf-change-type:focus-visible {
  background: rgba(255,255,255,.28) !important;
}
.pmf-product-link {
  background: #fa9918 !important;
}
.pmf-product-link:hover,
.pmf-product-link:focus-visible {
  background: #e98708 !important;
}


/* PMF v9 – stabilniejsze ładowanie miniatur i klikalny obrazek produktu */
.pmf-product-img-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: inherit;
}
.pmf-product-img-link:hover,
.pmf-product-img-link:focus-visible {
  outline: 2px solid rgba(11,148,198,.35);
  outline-offset: -2px;
}
.pmf-product-img img.pmf-lazy-img {
  background: #fff;
  opacity: .92;
  transition: opacity .15s ease;
}
.pmf-product-img img.pmf-lazy-img.is-loaded {
  opacity: 1;
}

/* PMF v9 – wskaźnik pojemności: 20 kresek na pełnej wysokości miniatury */
.pmf-product-img.has-capacity {
  grid-template-columns: minmax(0, 1fr) 22px;
  gap: 4px;
}
.pmf-capacity-meter {
  display: grid !important;
  grid-template-rows: 13px 12px minmax(0, 1fr) !important;
  align-items: stretch !important;
  gap: 2px !important;
  min-width: 20px !important;
  height: 100% !important;
  padding: 2px 1px !important;
  border-left: 1px solid #e8f1f4 !important;
}
.pmf-capacity-plus {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 13px !important;
  border-radius: 2px !important;
  color: #7d949e !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  background: #f3f7f9 !important;
}
.pmf-capacity-plus.is-active {
  color: #fff !important;
  background: #0b94c6 !important;
  box-shadow: 0 0 5px rgba(11,148,198,.45) !important;
}
.pmf-capacity-label {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b94c6;
  font-size: 9px;
  line-height: 1;
  font-weight: 800;
  text-transform: lowercase;
}
.pmf-capacity-bars {
  display: grid !important;
  grid-template-rows: repeat(20, minmax(2px, 1fr)) !important;
  gap: 1px !important;
  min-height: 0 !important;
}
.pmf-capacity-bar {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 2px !important;
  border-radius: 2px !important;
  background: #e4edf1 !important;
}
.pmf-capacity-bar.is-active {
  background: linear-gradient(90deg, #11add0, #0b94c6) !important;
  box-shadow: 0 0 4px rgba(11,148,198,.35) !important;
}


/* PMF v10 – utrzymanie wskaźnika pojemności i miniatur bez migania */
.pmf-product-img.has-capacity {
  grid-template-columns: minmax(0, 1fr) 24px !important;
  gap: 4px !important;
}
.pmf-product-img-main {
  position: relative;
}
.pmf-capacity-meter {
  grid-template-rows: 14px 12px minmax(0, 1fr) !important;
  min-width: 22px !important;
  height: 100% !important;
  min-height: 0 !important;
}
.pmf-capacity-bars {
  grid-template-rows: repeat(20, minmax(2px, 1fr)) !important;
  gap: 1px !important;
  min-height: 0 !important;
}
.pmf-capacity-bar.is-active {
  background: linear-gradient(90deg, #11add0, #0b94c6) !important;
  box-shadow: 0 0 4px rgba(11,173,208,.35) !important;
}
.pmf-lazy-img.is-loaded {
  opacity: 1 !important;
}

/* PMF v11 – poziomy wskaźnik pojemności + miniatura bez bocznego zwężania */
.pmf-product-img.has-capacity {
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: none !important;
  gap: 3px !important;
  padding: 3px !important;
}
.pmf-product-img.has-capacity .pmf-product-img-main {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  width: 100% !important;
}
.pmf-capacity-meter {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 2px 2px !important;
  border-left: 0 !important;
  border-bottom: 1px solid #e8f1f4 !important;
  box-sizing: border-box !important;
}
.pmf-capacity-line {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 12px !important;
  align-items: center !important;
  gap: 3px !important;
  height: 10px !important;
}
.pmf-capacity-bars {
  display: grid !important;
  grid-template-columns: repeat(16, minmax(2px, 1fr)) !important;
  grid-template-rows: none !important;
  gap: 1px !important;
  min-height: 0 !important;
  width: 100% !important;
}
.pmf-capacity-bar {
  display: block !important;
  width: auto !important;
  height: 5px !important;
  min-height: 0 !important;
  border-radius: 2px !important;
  background: #e4edf1 !important;
}
.pmf-capacity-bar.is-active {
  background: linear-gradient(180deg, #11add0, #0b94c6) !important;
  box-shadow: none !important;
}
.pmf-capacity-plus {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 10px !important;
  min-width: 10px !important;
  border-radius: 2px !important;
  color: #7d949e !important;
  font-size: 9px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  background: #f3f7f9 !important;
}
.pmf-capacity-plus.is-active {
  color: #fff !important;
  background: #0b94c6 !important;
  box-shadow: 0 0 4px rgba(11,148,198,.32) !important;
}
.pmf-capacity-label {
  display: block !important;
  margin-top: 1px !important;
  color: #53656d !important;
  font-size: 8.5px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  text-align: center !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}


/* PMF v12 – zielony, czytelniejszy wskaźnik pojemności stojaka */
.pmf-product-img.has-capacity {
  gap: 4px !important;
  padding: 4px !important;
}
.pmf-capacity-meter {
  padding: 0 2px 3px !important;
  border-bottom: 1px solid #e8f1f4 !important;
}
.pmf-capacity-line {
  grid-template-columns: minmax(0, 1fr) 13px !important;
  gap: 4px !important;
  height: 14px !important;
  align-items: center !important;
}
.pmf-capacity-bars {
  grid-template-columns: repeat(16, minmax(3px, 1fr)) !important;
  gap: 2px !important;
}
.pmf-capacity-bar {
  height: 8px !important;
  border-radius: 5px !important;
  background: #dce8e1 !important;
  box-shadow: inset 0 0 0 1px rgba(24, 99, 54, .08) !important;
}
.pmf-capacity-bar.is-active {
  background: linear-gradient(180deg, #8cff8a 0%, #35d65c 45%, #13a83d 100%) !important;
  box-shadow: 0 0 6px rgba(47, 214, 86, .72), inset 0 1px 0 rgba(255,255,255,.55) !important;
}
.pmf-capacity-plus {
  height: 14px !important;
  min-width: 13px !important;
  font-size: 10px !important;
  color: #7d949e !important;
  background: #f3f7f9 !important;
}
.pmf-capacity-plus.is-active {
  background: #13a83d !important;
  color: #fff !important;
  box-shadow: 0 0 6px rgba(47, 214, 86, .65) !important;
}
.pmf-capacity-label {
  margin-top: 2px !important;
  color: #53656d !important;
  font-size: 8.5px !important;
  line-height: 1.05 !important;
  font-weight: 700 !important;
}
.pmf-capacity-value {
  display: block !important;
  margin-top: 1px !important;
  color: #128337 !important;
  font-size: 9px !important;
  line-height: 1.05 !important;
  font-weight: 800 !important;
  text-align: center !important;
  white-space: nowrap !important;
}


/* PMF v13 – cena, nazewnictwo logo i prostszy wskaźnik pojemności */
.pmf-filter-group--logo .pmf-filter-label::after {
  content: "";
}
.pmf-filter-group--price {
  background: #fbfdfe !important;
}
.pmf-price-box {
  display: grid !important;
  gap: 5px !important;
}
.pmf-price-range {
  width: 100% !important;
  margin: 2px 0 0 !important;
  accent-color: #00aeca !important;
  cursor: pointer !important;
}
.pmf-price-value {
  display: block !important;
  color: #53656d !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
}
.pmf-price-value strong {
  color: #24343a !important;
  font-weight: 800 !important;
}
.pmf-capacity-meter {
  padding: 0 2px 4px !important;
  border-bottom: 1px solid #e8f1f4 !important;
}
.pmf-capacity-line {
  grid-template-columns: minmax(0, 1fr) 13px !important;
  gap: 4px !important;
  height: 16px !important;
  align-items: center !important;
}
.pmf-capacity-bars {
  grid-template-columns: repeat(16, minmax(5px, 1fr)) !important;
  gap: 2px !important;
}
.pmf-capacity-bar {
  height: 10px !important;
  border-radius: 1px !important;
  background: #e5f4f8 !important;
  box-shadow: none !important;
  border: 1px solid #cfe9f0 !important;
}
.pmf-capacity-bar.is-active {
  background: #00aeca !important;
  border-color: #0099b8 !important;
  box-shadow: none !important;
}
.pmf-capacity-plus {
  height: 15px !important;
  min-width: 13px !important;
  border-radius: 2px !important;
  font-size: 10px !important;
  color: #6b8790 !important;
  background: #edf6f8 !important;
  box-shadow: none !important;
}
.pmf-capacity-plus.is-active {
  background: #00aeca !important;
  color: #fff !important;
  box-shadow: none !important;
}
.pmf-capacity-label {
  display: block !important;
  margin-top: 2px !important;
  color: #0b7fa8 !important;
  font-size: 9px !important;
  line-height: 1.08 !important;
  font-weight: 800 !important;
  text-align: center !important;
  white-space: nowrap !important;
}
.pmf-capacity-value {
  display: none !important;
}


/* PMF v14 – progi cenowe zamiast suwaka, lepsza cena w kaflu i legenda pojemności */
.pmf-filter-group--price {
  background: #fbfdfe !important;
}
.pmf-filter-group--price .pmf-chip-row {
  gap: 5px !important;
}
.pmf-price-chip {
  min-height: 26px !important;
  font-size: 11.5px !important;
  padding: 5px 7px !important;
}
.pmf-code-price {
  align-items: baseline !important;
  gap: 4px 9px !important;
}
.pmf-product-code {
  color: #53656d !important;
}
.pmf-product-price {
  color: #0b7fa8 !important;
  font-weight: 900 !important;
  letter-spacing: .01em !important;
}
.pmf-capacity-note {
  padding: 7px 10px;
  border-top: 1px solid #edf3f5;
  background: #fbfdfe;
  color: #53656d;
  font-size: 11px;
  line-height: 1.35;
}
.pmf-capacity-note strong {
  color: #24343a;
}
.pmf-capacity-line {
  height: 15px !important;
}
.pmf-capacity-bars {
  grid-template-columns: repeat(16, minmax(5px, 1fr)) !important;
  gap: 2px !important;
}
.pmf-capacity-bar {
  height: 9px !important;
  border-radius: 1px !important;
  background: #e6f4f8 !important;
  border: 1px solid #cfe9f0 !important;
  box-shadow: none !important;
}
.pmf-capacity-bar.is-active {
  background: #00aeca !important;
  border-color: #0097b7 !important;
  box-shadow: none !important;
}
.pmf-capacity-plus.is-active {
  background: #00aeca !important;
  box-shadow: none !important;
}
.pmf-capacity-label {
  color: #0b7fa8 !important;
}


/* PMF v16 – grafiki w trzech głównych kaflach wyboru powiększone o ok. 30% */
.pmf-group-visual + .pmf-type-list {
  padding-top: 8px;
}


/* PMF v17 – semantyka grafik głównych kafli i lekka warstwa SEO/LLM bez zmiany wyglądu */
.pmf-group-visual img {
  color: transparent;
}


/* PMF v18 – równe proporcje kafli, margines grafik i czytelniejszy powrót */
.pmf-group-visual {
  padding: 8px 9px !important;
}
.pmf-group-visual img {
  max-width: 98% !important;
  max-height: 92% !important;
}
.pmf-choice-summary {
  align-items: center !important;
}
.pmf-change-type {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  min-height: 31px !important;
  padding: 6px 11px !important;
  border: 1px solid #0785ad !important;
  border-radius: 4px !important;
  background: #0b94c6 !important;
  color: #fff !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.13) !important;
}
.pmf-change-type span {
  font-size: 15px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}
.pmf-change-type:hover,
.pmf-change-type:focus-visible {
  background: #087ca6 !important;
  border-color: #087ca6 !important;
  outline: none !important;
}
.pmf-product-img.has-capacity {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  padding: 4px !important;
}
.pmf-product-img.has-capacity .pmf-product-img-main {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  width: 100% !important;
}
.pmf-capacity-meter--placeholder {
  visibility: hidden !important;
  pointer-events: none !important;
}
.pmf-capacity-meter--placeholder .pmf-capacity-line,
.pmf-capacity-meter--placeholder .pmf-capacity-label {
  visibility: hidden !important;
}


/* PMF v20 – tryb na ścianę: plakat, kieszenie, plakat + kieszenie */

/* PMF v21 – A4 poziom jako kieszeń uniwersalna, rotacja pojemności A4/A5/DL */
.pmf-capacity-label {
  white-space: nowrap !important;
}
.pmf-capacity-value {
  display: inline-block !important;
  position: relative !important;
  min-width: 82px !important;
  height: 1.1em !important;
  vertical-align: bottom !important;
  color: #0b7fa8 !important;
}
.pmf-capacity-text {
  white-space: nowrap !important;
}
.pmf-capacity-meter.is-rotating .pmf-capacity-value {
  min-width: 92px !important;
}
.pmf-capacity-meter.is-rotating .pmf-capacity-text {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  opacity: 0;
  animation: pmfCapacityRotate 9s infinite;
}
.pmf-capacity-meter.is-rotating .pmf-capacity-text--0 { animation-delay: 0s; }
.pmf-capacity-meter.is-rotating .pmf-capacity-text--1 { animation-delay: 3s; }
.pmf-capacity-meter.is-rotating .pmf-capacity-text--2 { animation-delay: 6s; }
@keyframes pmfCapacityRotate {
  0% { opacity: 0; transform: translateY(2px); }
  6% { opacity: 1; transform: translateY(0); }
  29% { opacity: 1; transform: translateY(0); }
  35% { opacity: 0; transform: translateY(-2px); }
  100% { opacity: 0; transform: translateY(-2px); }
}

/* PMF v22 – biurkowe: 1 kwadracik = 1 cm; ścienne: zakresy wysokości i szerokości */
.pmf-filter-group--wall-dimensions {
  background: #fbfdfe !important;
}
.pmf-dimension-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 6px !important;
}
.pmf-dimension-grid label {
  display: grid !important;
  gap: 3px !important;
  min-width: 0 !important;
  color: #53656d !important;
  font-size: 10.5px !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
}
.pmf-dimension-grid select {
  width: 100% !important;
  height: 28px !important;
  border: 1px solid #cbdde5 !important;
  border-radius: 4px !important;
  background: #fff !important;
  color: #24343a !important;
  font: inherit !important;
  font-size: 11.5px !important;
  padding: 4px 6px !important;
}
.pmf-dimension-grid select:focus {
  outline: none !important;
  border-color: #11add0 !important;
  box-shadow: 0 0 0 2px rgba(17,173,208,.13) !important;
}

/* PMF v23 – większa informacja o pojemności, rotacja kresek razem z formatem i wymiary ścienne zawsze po wyborze typu */
.pmf-capacity-meter {
  position: relative !important;
  min-height: 34px !important;
}
.pmf-capacity-stage {
  display: block !important;
}
.pmf-capacity-meter.is-rotating .pmf-capacity-stage {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  opacity: 0 !important;
  animation: pmfCapacityStageRotate 12s infinite !important;
}
.pmf-capacity-meter.is-rotating .pmf-capacity-stage--0 { animation-delay: 0s !important; }
.pmf-capacity-meter.is-rotating .pmf-capacity-stage--1 { animation-delay: 4s !important; }
.pmf-capacity-meter.is-rotating .pmf-capacity-stage--2 { animation-delay: 8s !important; }
@keyframes pmfCapacityStageRotate {
  0% { opacity: 0; transform: translateY(2px); }
  5% { opacity: 1; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(0); }
  36% { opacity: 0; transform: translateY(-2px); }
  100% { opacity: 0; transform: translateY(-2px); }
}
.pmf-capacity-label {
  font-size: 10px !important;
  line-height: 1.12 !important;
}
.pmf-capacity-value {
  display: inline-block !important;
  position: static !important;
  min-width: 0 !important;
  height: auto !important;
  color: #0b7fa8 !important;
  vertical-align: baseline !important;
}
.pmf-capacity-meter.is-rotating .pmf-capacity-value {
  min-width: 0 !important;
}
.pmf-capacity-meter.is-rotating .pmf-capacity-text,
.pmf-capacity-text {
  position: static !important;
  opacity: 1 !important;
  animation: none !important;
  transform: none !important;
}


/* PMF v24 – lżejszy nagłówek i odporniejszy wskaźnik pojemności */
.pm-stand-finder .pmf-hero h1,
.pm-stand-finder .pmf-hero h2 {
  font-size: 22px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}
.pm-stand-finder .pmf-capacity-label {
  font-size: 11px !important;
}
.pm-stand-finder .pmf-capacity-value {
  font-size: 11px !important;
}


/* PMF v25 – pewniejsza rotacja pojemności przy kieszeni A4 poziom / ruchomych przegródkach */
.pmf-capacity-meter.is-rotating {
  position: relative !important;
  min-height: 34px !important;
}
.pmf-capacity-meter.is-rotating .pmf-capacity-stage {
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  opacity: 0 !important;
  visibility: visible !important;
  animation-name: pmfCapacityStageRotateV25 !important;
  animation-duration: 12s !important;
  animation-iteration-count: infinite !important;
  animation-timing-function: linear !important;
}
.pmf-capacity-meter.is-rotating .pmf-capacity-stage--0 { animation-delay: 0s !important; }
.pmf-capacity-meter.is-rotating .pmf-capacity-stage--1 { animation-delay: 4s !important; }
.pmf-capacity-meter.is-rotating .pmf-capacity-stage--2 { animation-delay: 8s !important; }
@keyframes pmfCapacityStageRotateV25 {
  0% { opacity: 0; transform: translateY(2px); }
  4% { opacity: 1; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(0); }
  34% { opacity: 0; transform: translateY(-2px); }
  100% { opacity: 0; transform: translateY(-2px); }
}


/* PMF v26 – rotacja pojemności sterowana JS, żeby formaty A4/A5/DL faktycznie przełączały też kwadraciki */
.pmf-capacity-meter.is-rotating .pmf-capacity-stage {
  display: none !important;
  position: static !important;
  opacity: 0 !important;
  visibility: hidden !important;
  animation: none !important;
  transform: none !important;
}
.pmf-capacity-meter.is-rotating .pmf-capacity-stage.is-active {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* PMF v27 – lżejszy napis pojemności: większy, ale bez bolda jak w tagach produktu */
.pm-stand-finder .pmf-capacity-label,
.pm-stand-finder .pmf-capacity-value {
  font-size: 12px !important;
  line-height: 1.08 !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em !important;
  color: #0a6d88 !important;
  white-space: nowrap !important;
}
.pm-stand-finder .pmf-capacity-label {
  overflow: hidden !important;
  text-overflow: clip !important;
}
.pm-stand-finder .pmf-capacity-value {
  min-width: 0 !important;
}
