/* ==========================================================================
   PolarLabs — Build-a-Kit configurator (DR-BUILD-KIT-001)
   Route-scoped stylesheet, enqueued ONLY on the Build-a-Kit page template.
   Presentation only. Namespaced .pl-bak* (distinct from the Shop promo .pl-buildkit),
   so it cannot bleed onto any other surface. Tokens from main.css :root; literal
   fallbacks mirror the shipped values. Hero art: assets/images/build-a-kit/.
   ========================================================================== */

.pl-bak {
	display: block;
	background: var(--pl-surface, #fff);
}
/* The configurator toggles product rows, the totals block, the load-more button and the
   no-results notice via the [hidden] attribute. Several of those carry an explicit
   display (grid/flex/inline-flex) that would otherwise defeat [hidden] — this scoped
   guard makes the attribute authoritative for hide/show. Route-scoped, so !important is
   contained to this page. */
.pl-bak [hidden] {
	display: none !important;
}

/* ==========================================================================
   HERO — approved artwork right, text-safe left (content never fights artwork).
   ========================================================================== */
/* rc.6.57 (DR-KIT-MOBILE-GRID-001): the hero product/scene visual (.pl-bak-hero__art background
   image + its reserved mobile band) was removed. The hero is now a compact editorial block on a
   calm ice field — no media, no reserved media space, everything pulled upward so the product
   selector starts much sooner. */
.pl-bak .pl-bak-hero {
	position: relative;
	background: var(--pl-icy, #F4F8FF);
	border-bottom: 1px solid var(--pl-line, #DCE6F2);
}
.pl-bak .pl-bak-hero__inner {
	position: relative;
	z-index: 2;
	padding-block: clamp(18px, 2.4vw, 30px);
}
.pl-bak .pl-bak-hero__content {
	max-width: 580px;
}
.pl-bak .pl-bak-hero__eyebrow {
	margin: 0 0 10px;
	font-family: var(--pl-mono, ui-monospace, monospace);
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--pl-blue-600, #0039CC);
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.pl-bak .pl-bak-hero__eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	background: var(--pl-blue, #004EFF);
	border-radius: 2px;
}
.pl-bak .pl-bak-hero__title {
	margin: 0 0 12px;
	font-family: var(--pl-font-heading, "Manrope", sans-serif);
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.02;
	font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem);
	color: var(--pl-navy, #07182D);
}
.pl-bak .pl-bak-hero__intro {
	margin: 0 0 10px;
	max-width: 44ch;
	font-size: clamp(1rem, .96rem + .3vw, 1.16rem);
	line-height: 1.6;
	color: var(--pl-muted, #42526A);
}
/* Rule line: human instructions, not a data readout — Inter, restrained navy, subtle
   middot separators (DR-BUILD-KIT-REDESIGN-001 polish; not monospace, not pills/badges). */
.pl-bak .pl-bak-hero__rule { margin: 0; font-family: var(--pl-font); font-size: .85rem; font-weight: 600; line-height: 1.5; color: var(--pl-navy, #07182D); }

/* ==========================================================================
   WORKSPACE — two columns (main + sticky summary) on desktop.
   ========================================================================== */
.pl-bak .pl-bak-workspace {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 372px;
	gap: clamp(20px, 2.6vw, 40px);
	align-items: start;
	padding-block: clamp(16px, 2.4vw, 28px) clamp(40px, 6vw, 80px);
}
.pl-bak .pl-bak-main {
	min-width: 0;
	display: grid;
	gap: clamp(20px, 2.4vw, 32px);
}

/* Progress bar + fill — shared by the desktop summary rail (the standalone 0/10 progress card was removed, DR-BUILD-KIT-REDESIGN-001). */
.pl-bak .pl-bak-progress__bar {
	height: 8px;
	border-radius: 999px;
	background: var(--pl-blue-050, #EAF0FF);
	overflow: hidden;
}
.pl-bak .pl-bak-progress__fill {
	display: block;
	height: 100%;
	width: 0;
	border-radius: 999px;
	background: var(--pl-blue, #004EFF);
	transition: width var(--pl-dur, .2s) var(--pl-ease, ease);
}
/* ==========================================================================
   CONFIGURATOR — search, filters, product table.
   ========================================================================== */
.pl-bak .pl-bak-search {
	position: relative;
	margin-bottom: 14px;
}
.pl-bak .pl-bak-search__icon {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--pl-muted, #42526A);
	display: inline-flex;
	pointer-events: none;
}
.pl-bak .pl-bak-search__input {
	width: 100%;
	height: 48px;
	padding: 0 16px 0 46px;
	border: 1px solid var(--pl-field-border, #6E8098);
	border-radius: var(--pl-radius-pill, 999px);
	background: var(--pl-surface-2, #F6F9FD);
	font-size: 1rem;
	color: var(--pl-navy, #07182D);
	-webkit-appearance: none;
	appearance: none;
}
.pl-bak .pl-bak-search__input:focus {
	outline: none;
	border-color: var(--pl-blue, #004EFF);
	box-shadow: 0 0 0 3px rgba(0, 78, 255, .18);
}
.pl-bak .pl-bak-search__input::placeholder {
	color: var(--pl-muted-soft, #718096);
}
.pl-bak .pl-bak-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
}
.pl-bak .pl-bak-filter {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 40px;
	padding: 0 14px;
	border: 1px solid var(--pl-line, #DCE6F2);
	border-radius: var(--pl-radius-pill, 999px);
	background: var(--pl-surface, #fff);
	font-family: var(--pl-font-heading, "Manrope", sans-serif);
	font-weight: 600;
	font-size: .86rem;
	color: var(--pl-navy, #07182D);
	cursor: pointer;
	transition: border-color var(--pl-dur, .2s) var(--pl-ease, ease), background var(--pl-dur, .2s) var(--pl-ease, ease);
}
.pl-bak .pl-bak-filter:hover {
	border-color: var(--pl-blue, #004EFF);
}
.pl-bak .pl-bak-filter.is-active {
	background: var(--pl-blue, #004EFF);
	border-color: var(--pl-blue, #004EFF);
	color: #fff;
}
.pl-bak .pl-bak-filter__n {
	font-size: .74rem;
	color: var(--pl-muted, #42526A);
}
.pl-bak .pl-bak-filter.is-active .pl-bak-filter__n {
	color: rgba(255, 255, 255, .85);
}

/* ---- kit-price clarity note (one global explanation, not per-product) ---- */
.pl-bak .pl-bak-kitnote {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	font-size: .82rem;
	line-height: 1.4;
	color: var(--pl-muted, #42526A);
}
.pl-bak .pl-bak-kitnote__ic {
	flex: none;
	color: var(--pl-blue-600, #0039CC);
}

/* ---- product table ---- */
.pl-bak .pl-bak-table {
	border: 1px solid var(--pl-line, #DCE6F2);
	border-radius: var(--pl-radius-lg, 18px);
	overflow: hidden;
	background: var(--pl-surface, #fff);
}
.pl-bak .pl-bak-table__head,
.pl-bak .pl-bak-prod {
	display: grid;
	grid-template-columns: 56px minmax(0, 1.5fr) minmax(96px, .9fr) minmax(70px, .6fr) minmax(70px, .6fr) 128px;
	align-items: center;
	gap: 14px;
	padding: 11px clamp(16px, 1.8vw, 22px); /* DR-BAK-COMPACT-001 (owner 2026-08-19): tighter rows. */
}
.pl-bak .pl-bak-table__head {
	background: var(--pl-surface-2, #F6F9FD);
	border-bottom: 1px solid var(--pl-line, #DCE6F2);
}
.pl-bak .pl-bak-col {
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--pl-muted, #42526A);
}
.pl-bak .pl-bak-col--product { grid-column: 1 / 3; }
.pl-bak .pl-bak-col--kit { color: var(--pl-blue-600, #0039CC); }
.pl-bak .pl-bak-prod {
	border-top: 1px solid var(--pl-line, #DCE6F2);
	transition: background var(--pl-dur, .2s) var(--pl-ease, ease);
}
.pl-bak .pl-bak-prod:first-of-type { border-top: 0; }
.pl-bak .pl-bak-prod.is-selected { background: var(--pl-blue-050, #EAF0FF); }
.pl-bak .pl-bak-prod__media {
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	border-radius: var(--pl-radius, 12px);
	background: var(--pl-surface-2, #F6F9FD);
	border: 1px solid var(--pl-line, #DCE6F2);
	overflow: hidden;
}
/* Media fills the frame (matches the shop/PDP/cart media treatment): the square vial master
   reaches the frame edges via object-fit:contain with no inner padding — no tiny floating image,
   no frame-inside-frame. contain (not cover) keeps the vial aspect and never crops. */
.pl-bak .pl-bak-prod__img { width: 100%; height: 100%; object-fit: contain; padding: 0; }
.pl-bak .pl-bak-prod__ph { width: 100%; height: 100%; background: var(--pl-blue-050, #EAF0FF); }
.pl-bak .pl-bak-prod__identity { min-width: 0; }
.pl-bak .pl-bak-prod__name {
	display: block;
	font-family: var(--pl-font-heading, "Manrope", sans-serif);
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1.25;
	color: var(--pl-navy, #07182D);
	text-decoration: none;
	overflow-wrap: break-word;
}
.pl-bak .pl-bak-prod__name:hover { color: var(--pl-blue-600, #0039CC); }
.pl-bak .pl-bak-prod__cat { display: block; margin-top: 2px; font-size: .74rem; color: var(--pl-muted, #42526A); }
/* Mobile-only field micro-labels (Strength / Regular / Kit / Quantity) — hidden on the
   desktop/tablet table where the column header provides the labels. */
.pl-bak .pl-bak-prod__ml,
.pl-bak .pl-bak-prod__plabel { display: none; }
.pl-bak .pl-bak-prod__select {
	width: 100%;
	min-height: 40px;
	padding: 0 30px 0 12px;
	border: 1px solid var(--pl-field-border, #6E8098);
	border-radius: var(--pl-radius-sm, 8px);
	background: var(--pl-surface, #fff) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2342526A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 10px center / 15px no-repeat;
	font-size: .9rem;
	color: var(--pl-navy, #07182D);
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
}
.pl-bak .pl-bak-prod__select:focus { outline: none; border-color: var(--pl-blue, #004EFF); box-shadow: 0 0 0 3px rgba(0, 78, 255, .18); }
.pl-bak .pl-bak-prod__strength-static { font-family: var(--pl-mono, ui-monospace, monospace); font-size: .9rem; color: var(--pl-navy, #07182D); }
.pl-bak .pl-bak-prod__price-reg { font-size: .88rem; color: var(--pl-muted, #42526A); text-decoration: line-through; }
.pl-bak .pl-bak-prod__price-kit { font-family: var(--pl-font-heading, "Manrope", sans-serif); font-weight: 800; font-size: 1.05rem; color: var(--pl-blue, #004EFF); }
.pl-bak .pl-bak-prod__price-reg .amount,
.pl-bak .pl-bak-prod__price-kit .amount { font-variant-numeric: tabular-nums; }

/* ---- quantity stepper (kit-scoped, mirrors the PDP stepper look) ---- */
.pl-bak .pl-bak-qty {
	display: inline-flex;
	align-items: stretch;
	border: 1px solid var(--pl-field-border, #6E8098);
	border-radius: var(--pl-radius-pill, 999px);
	overflow: hidden;
	background: var(--pl-surface, #fff);
}
.pl-bak .pl-bak-qty__btn {
	width: 40px;
	min-height: 44px;
	border: 0;
	background: var(--pl-surface, #fff);
	color: var(--pl-navy, #07182D);
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	transition: background var(--pl-dur, .2s) var(--pl-ease, ease);
}
.pl-bak .pl-bak-qty__btn:hover:not(:disabled) { background: var(--pl-blue-050, #EAF0FF); color: var(--pl-blue-600, #0039CC); }
.pl-bak .pl-bak-qty__btn:disabled { opacity: .4; cursor: not-allowed; }
.pl-bak .pl-bak-qty__val {
	min-width: 40px;
	display: grid;
	place-items: center;
	font-family: var(--pl-font-heading, "Manrope", sans-serif);
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	color: var(--pl-navy, #07182D);
	border-inline: 1px solid var(--pl-line, #DCE6F2);
}

.pl-bak .pl-bak-more { text-align: center; margin-top: 18px; }
.pl-bak .pl-bak-noresults { text-align: center; margin: 18px 0 0; color: var(--pl-muted, #42526A); }

/* ==========================================================================
   FAIL-CLOSED EMPTY STATE
   ========================================================================== */
.pl-bak .pl-bak-empty {
	display: grid;
	justify-items: center;
	text-align: center;
	gap: 10px;
	padding: clamp(40px, 7vw, 80px) 20px;
	background: var(--pl-surface-2, #F6F9FD);
	border: 1px solid var(--pl-line, #DCE6F2);
	border-radius: var(--pl-radius-lg, 18px);
}
.pl-bak .pl-bak-empty__text { margin: 0; font-family: var(--pl-font-heading, "Manrope", sans-serif); font-weight: 700; font-size: 1.15rem; color: var(--pl-navy, #07182D); }
.pl-bak .pl-bak-empty__sub { margin: 0; max-width: 46ch; color: var(--pl-muted, #42526A); }

/* ==========================================================================
   SUMMARY — sticky "Your kit" (desktop right column).
   ========================================================================== */
.pl-bak .pl-bak-summary { position: sticky; top: clamp(16px, 3vw, 28px); min-width: 0; }
.pl-bak .pl-bak-summary__inner {
	background: var(--pl-surface, #fff);
	border: 1px solid var(--pl-line, #DCE6F2);
	border-radius: var(--pl-radius-lg, 18px);
	box-shadow: var(--pl-shadow-sm, 0 1px 2px rgba(2, 11, 22, .06), 0 1px 3px rgba(2, 11, 22, .05));
	padding: clamp(18px, 2vw, 24px);
}
.pl-bak .pl-bak-summary__title {
	margin: 0 0 4px;
	font-family: var(--pl-font-heading, "Manrope", sans-serif);
	font-weight: 800;
	font-size: 1.25rem;
	color: var(--pl-blue, #004EFF);
}
.pl-bak .pl-bak-summary__count { color: var(--pl-navy, #07182D); font-size: 1rem; font-weight: 700; }
.pl-bak .pl-bak-summary__hint { margin: 0 0 10px; font-size: .86rem; color: var(--pl-muted, #42526A); }
.pl-bak .pl-bak-summary__items { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.pl-bak .pl-bak-summary__item { display: grid; grid-template-columns: 40px minmax(0, 1fr) auto auto; align-items: center; gap: 10px; }
.pl-bak .pl-bak-summary__thumb { width: 40px; height: 40px; border-radius: var(--pl-radius-sm, 8px); background: var(--pl-surface-2, #F6F9FD); border: 1px solid var(--pl-line, #DCE6F2); overflow: hidden; display: grid; place-items: center; }
.pl-bak .pl-bak-summary__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.pl-bak .pl-bak-summary__meta { min-width: 0; display: grid; gap: 1px; }
.pl-bak .pl-bak-summary__name { font-weight: 700; font-size: .9rem; color: var(--pl-navy, #07182D); overflow-wrap: anywhere; }
.pl-bak .pl-bak-summary__strength { font-family: var(--pl-mono, ui-monospace, monospace); font-size: .76rem; color: var(--pl-muted, #42526A); }
.pl-bak .pl-bak-summary__each { font-size: .76rem; color: var(--pl-muted, #42526A); }
.pl-bak .pl-bak-summary__qtybadge { font-family: var(--pl-mono, ui-monospace, monospace); font-weight: 600; font-size: .82rem; color: var(--pl-navy, #07182D); }
.pl-bak .pl-bak-summary__remove {
	width: 28px; height: 28px; border: 0; border-radius: 50%;
	background: transparent; color: var(--pl-muted, #42526A); font-size: 1.2rem; line-height: 1; cursor: pointer;
}
.pl-bak .pl-bak-summary__remove:hover { background: var(--pl-error-bg, #FDEAEA); color: var(--pl-error, #C43D3D); }
.pl-bak .pl-bak-summary__totals { margin: 16px 0 0; padding: 16px 0 0; border-top: 1px solid var(--pl-line, #DCE6F2); display: grid; gap: 8px; }
.pl-bak .pl-bak-summary__row { display: flex; justify-content: space-between; gap: 12px; font-size: .95rem; color: var(--pl-navy, #07182D); font-variant-numeric: tabular-nums; }
.pl-bak .pl-bak-summary__row--save { color: var(--pl-success, #177A54); font-weight: 600; }
.pl-bak .pl-bak-summary__row--total { margin-top: 4px; padding-top: 10px; border-top: 1px solid var(--pl-line, #DCE6F2); font-family: var(--pl-font-heading, "Manrope", sans-serif); font-weight: 800; font-size: 1.15rem; }
.pl-bak .pl-bak-summary__row--total span:last-child { color: var(--pl-blue, #004EFF); }
.pl-bak .pl-bak-summary__action { margin-top: 16px; }
.pl-bak .pl-bak-summary__action .pl-btn { min-height: 50px; }
.pl-bak .pl-bak-summary__note { margin: 10px 0 0; text-align: center; font-size: .82rem; color: var(--pl-muted, #42526A); }
.pl-bak .pl-bak-summary__note.is-error { color: var(--pl-error, #C43D3D); font-weight: 600; }
/* ==========================================================================
   FAQ
   ========================================================================== */
.pl-bak .pl-bak-faq__title { margin: 0 0 14px; font-family: var(--pl-font-heading, "Manrope", sans-serif); font-weight: 800; font-size: clamp(1.25rem, 1.1rem + .6vw, 1.6rem); color: var(--pl-navy, #07182D); }
.pl-bak .pl-bak-faq__grid { display: grid; gap: 0; border: 1px solid var(--pl-line, #DCE6F2); border-radius: var(--pl-radius-lg, 18px); overflow: hidden; background: var(--pl-surface, #fff); }
.pl-bak .pl-bak-faq__item { border: 0; border-top: 1px solid var(--pl-line, #DCE6F2); }
.pl-bak .pl-bak-faq__item:first-child { border-top: 0; }
.pl-bak .pl-bak-faq__q {
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	padding: 13px 16px; cursor: pointer; list-style: none;
	font-family: var(--pl-font-heading, "Manrope", sans-serif); font-weight: 700; font-size: .96rem; color: var(--pl-navy, #07182D);
}
.pl-bak .pl-bak-faq__q::-webkit-details-marker { display: none; }
.pl-bak .pl-bak-faq__chev { flex: none; color: var(--pl-muted, #42526A); transition: transform var(--pl-dur, .2s) var(--pl-ease, ease); }
.pl-bak .pl-bak-faq__item[open] .pl-bak-faq__chev { transform: rotate(180deg); }
.pl-bak .pl-bak-faq__a { padding: 0 16px 14px; }
.pl-bak .pl-bak-faq__a p { margin: 0; font-size: .9rem; line-height: 1.55; color: var(--pl-muted, #42526A); }

/* ==========================================================================
   MOBILE STICKY BAR (hidden on desktop)
   ========================================================================== */
.pl-bak .pl-bak-stickybar {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: var(--pl-z-pdp-sticky, 950);
	display: none;
	align-items: center;
	gap: 14px;
	padding: 10px clamp(16px, 4vw, 24px) calc(10px + env(safe-area-inset-bottom, 0px));
	background: var(--pl-surface, #fff);
	border-top: 1px solid var(--pl-line, #DCE6F2);
	box-shadow: 0 -6px 20px rgba(2, 11, 22, .08);
}
.pl-bak .pl-bak-stickybar__info { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.pl-bak .pl-bak-stickybar__count { font-family: var(--pl-font-heading, "Manrope", sans-serif); font-weight: 800; font-size: 1rem; color: var(--pl-navy, #07182D); }
.pl-bak .pl-bak-stickybar__count [data-pl-kit-count] { color: var(--pl-blue, #004EFF); }
.pl-bak .pl-bak-stickybar__hint { font-size: .8rem; color: var(--pl-muted, #42526A); }
.pl-bak .pl-bak-stickybar__action { flex: none; display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.pl-bak .pl-bak-stickybar__total { font-family: var(--pl-font-heading, "Manrope", sans-serif); font-weight: 800; font-size: 1.15rem; color: var(--pl-navy, #07182D); font-variant-numeric: tabular-nums; }
.pl-bak .pl-bak-stickybar__btn { min-height: 44px; }

/* Disabled Add-Kit state — a legible, clearly-inactive control instead of the site-wide
   0.5-opacity gradient (white text on a faded cobalt reads as low-contrast). Scoped to the
   kit page; the global .pl-btn:disabled is unchanged. DR-BUILD-KIT-REDESIGN-001 polish. */
.pl-bak .pl-btn--gradient:disabled { opacity: 1; background: var(--pl-line, #DCE6F2); color: var(--pl-muted, #42526A); box-shadow: none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1140px) {
	/* Below this the 2-column layout would squeeze the product table, so go single-column:
	   the sticky summary drops below the builder and the compact sticky bar becomes the
	   persistent CTA. The full-width product table then has ample room (no name-wrapping). */
	.pl-bak .pl-bak-workspace { grid-template-columns: 1fr; padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px)); }
	.pl-bak .pl-bak-summary { display: none; }
	.pl-bak .pl-bak-stickybar.is-visible { display: flex; }
	/* Hidden while the first-layer Cookie Notice card (z-1500) is showing, so the cookie
	   consent never covers the mobile Add-kit CTA (pl-cookiebar-open is set by theme.js). */
	html.pl-cookiebar-open .pl-bak .pl-bak-stickybar.is-visible { display: none; }
	.pl-bak .pl-bak-main { padding-bottom: 0; }
}

@media (max-width: 820px) {
	.pl-bak .pl-bak-hero__content { max-width: none; }

	/* Product selector: a 2-COLUMN grid of compact cards (rc.6.57), rebuilt into a
	   HORIZONTAL-INTERNAL card (rc.6.59, DR-KIT-CARD-HORIZONTAL-001). The image and the
	   strength + category share the TOP ROW — reclaiming the previously-empty upper-right
	   space beside the image — then the name sits on its own row, the Regular + Kit prices
	   share one row, and the compact stepper anchors the bottom. Materially shorter than the
	   rc.6.57 vertical stack. The desktop 6-column table (>820px) is untouched. Pure CSS:
	   the row markup + JS are unchanged; the name+category wrapper is dissolved for layout
	   with display:contents so the two can be placed in different rows without a markup change
	   (the <a>/<span> keep their semantics and the JS-read .pl-bak-prod__name/__media stay in
	   the DOM). */
	.pl-bak .pl-bak-table { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; background: transparent; border: 0; border-radius: 0; overflow: visible; }
	.pl-bak .pl-bak-table__head { display: none; }
	.pl-bak .pl-bak-prod {
		display: grid;
		grid-template-columns: 64px minmax(0, 1fr);
		grid-template-areas:
			"media strength"
			"media cat"
			"name  name"
			"price price"
			"kit   kit"
			"qty   qty";
		column-gap: 11px;
		row-gap: 5px;
		align-items: center;
		padding: 12px; border: 1px solid var(--pl-line, #DCE6F2); border-radius: 14px;
		background: var(--pl-surface, #fff);
	}
	.pl-bak .pl-bak-prod, .pl-bak .pl-bak-prod:first-of-type { border-top: 1px solid var(--pl-line, #DCE6F2); }
	.pl-bak .pl-bak-prod.is-selected { background: var(--pl-blue-050, #EAF0FF); border-color: var(--pl-blue, #004EFF); }
	/* Dissolve the name+category wrapper so the two land in different grid rows. */
	.pl-bak .pl-bak-prod__identity { display: contents; }
	.pl-bak .pl-bak-prod__media { grid-area: media; width: 64px; height: 64px; align-self: start; }
	/* Top-right metadata: strength (foot of row 1) then category (head of row 2), so the two
	   sit together, vertically centred against the image. */
	.pl-bak .pl-bak-prod__strength { grid-area: strength; align-self: end; min-width: 0; }
	.pl-bak .pl-bak-prod__cat { grid-area: cat; align-self: start; margin: 0; font-size: .72rem; line-height: 1.25; overflow-wrap: break-word; }
	/* Strength: compact — the block micro-label is hidden; the value/select carries it. */
	.pl-bak .pl-bak-prod__ml { display: none; }
	.pl-bak .pl-bak-prod__select { width: 100%; min-height: 38px; font-size: .88rem; }
	.pl-bak .pl-bak-prod__strength-static { display: inline-block; font-family: var(--pl-mono, ui-monospace, monospace); font-weight: 600; font-size: .92rem; color: var(--pl-navy, #07182D); }
	/* Name — its own row, directly under the image; up to two lines. */
	.pl-bak .pl-bak-prod__name { grid-area: name; font-size: .98rem; line-height: 1.2; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; overflow-wrap: anywhere; min-width: 0; }
	/* Prices — one row: Regular (small, struck) left, Kit (cobalt) right. Tiny inline labels. */
	.pl-bak .pl-bak-prod__price { grid-area: price; display: flex; align-items: baseline; gap: 5px; min-width: 0; }
	.pl-bak .pl-bak-prod__kit { grid-area: kit; display: flex; align-items: baseline; gap: 5px; justify-self: start; min-width: 0; }
	.pl-bak .pl-bak-prod__plabel { display: inline; font-size: .66rem; font-weight: 600; color: var(--pl-muted, #42526A); }
	.pl-bak .pl-bak-prod__price-reg { font-size: .8rem; }
	.pl-bak .pl-bak-prod__price-kit { font-size: 1.02rem; }
	/* Quantity: a compact stepper filling the card width (never a giant 90px-tall pill). */
	.pl-bak .pl-bak-prod__qty { grid-area: qty; }
	.pl-bak .pl-bak-qty { width: 100%; justify-content: space-between; margin-top: 2px; }
	.pl-bak .pl-bak-qty__btn { width: 40px; min-height: 42px; font-size: 1.25rem; }
	.pl-bak .pl-bak-qty__val { flex: 1; font-size: 1rem; }
}

@media (max-width: 400px) {
	/* Keep 2 columns even at 320px (owner preference); tighten the card, shrink the image, and
	   stack the two prices (Regular over Kit) — a labelled one-line price row cannot fit in a
	   ~131px 2-up card. The horizontal image + strength/category top row is kept. */
	.pl-bak .pl-bak-table { gap: 10px; }
	.pl-bak .pl-bak-prod {
		grid-template-columns: 46px minmax(0, 1fr);
		column-gap: 8px; row-gap: 5px; padding: 10px;
	}
	.pl-bak .pl-bak-prod__media { width: 46px; height: 46px; }
	.pl-bak .pl-bak-prod__name { font-size: .9rem; }
	.pl-bak .pl-bak-prod__strength-static { font-size: .86rem; }
	.pl-bak .pl-bak-prod__select { min-height: 36px; font-size: .82rem; }
	.pl-bak .pl-bak-prod__price-reg { font-size: .74rem; }
	.pl-bak .pl-bak-prod__price-kit { font-size: .96rem; }
	.pl-bak .pl-bak-qty__btn { width: 36px; min-height: 40px; }
	.pl-bak .pl-bak-summary__item { grid-template-columns: 36px minmax(0, 1fr) auto auto; }
}

/* ---- reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
	.pl-bak .pl-bak-progress__fill,
	.pl-bak .pl-bak-qty__btn,
	.pl-bak .pl-bak-filter,
	.pl-bak .pl-bak-faq__chev,
	.pl-bak .pl-bak-prod { transition: none; }
}
