/* ==========================================================================
   BAKKAR PRINTING — THEME "MOMENTUM"
   pages/products.css — products.html ONLY.
   --------------------------------------------------------------------------
   The catalogue. Mirrors Laravel /products and /products/{cat}.

   Everything here is namespaced `pl-` (products listing) so it can never
   collide with another page agent's stylesheet. Components that already exist
   in components.css / base.css (.page-head--slim, .p-card, .pager, .empty,
   .tag, .btn, .badge) are REUSED — only the shell around them is new:

     .pl-layout    sidebar + results, two columns >= 1024px
     .pl-side      category tree / tag cloud / quote nudge
                   -> off-canvas drawer below 1024px
     .pl-toolbar   sticky glass bar: sort, per-page, grid|list
     .pl-active    the active-filter chip row
     .pl-grid      the results grid (and its list variant)
     .pl-spec      the spec chips on a card / the spec row in list view
     .pl-empty     the composed no-results / made-to-order block

   THE PAGE HEAD IS THE SHARED .page-head--slim — there is no `.pl-head`. The
   old head (eyebrow + giant H1 + metric pills + a category chip row that just
   repeated the sidebar) ate the whole first screen. The catalogue leads now.

   NOTHING JS-POPULATED MAY RENDER AS AN EMPTY STYLED BOX. Every such container
   here (#plGrid, #plPager, #plActive, #plCloud/#plTagPanel, #plTree/#plCatPanel)
   is either filled or [hidden] outright.

   RTL: logical properties only. No mirrored blocks.
   ========================================================================== */

/* ==========================================================================
   1. LAYOUT
   The slim head is a thin band, so the catalogue starts right under it — this
   is deliberately a small gap, not a section-sized one.
   ========================================================================== */
.pl-body { padding-block-start: var(--sp-6); }

.pl-layout {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 1024px) {
  .pl-layout {
    grid-template-columns: 292px minmax(0, 1fr);
    gap: clamp(1.5rem, 0.9rem + 1.8vw, 2.75rem);
    align-items: start;
  }
}
.pl-main { min-inline-size: 0; }

/* ==========================================================================
   2. SIDEBAR
   ========================================================================== */
.pl-side {
  display: flex;
  flex-direction: column;
  min-inline-size: 0;
}
.pl-side__scroll {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  min-block-size: 0;
}

/* The drawer head is a mobile-only affordance. */
.pl-side__head { display: none; }

.pl-panel {
  padding: var(--sp-5);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--sh-2), var(--sh-ring);
}
/* A panel whose painter had nothing to put in it is removed outright — a
   heading over a void is the "empty, broken section" bug. */
.pl-panel[hidden] { display: none; }
.pl-panel__h {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-block-end: var(--sp-4);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-heavy);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--text-faint);
}
[dir="rtl"] .pl-panel__h { text-transform: none; font-size: var(--fs-xs); }
.pl-panel__h svg { inline-size: 14px; block-size: 14px; color: var(--brand); flex: none; }

/* ---- category tree ---- */
.pl-tree { display: flex; flex-direction: column; gap: 2px; }

.pl-tree__row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  min-block-size: 42px;
  padding-inline: var(--sp-3);
  padding-block: var(--sp-2);
  border-radius: var(--r-md);
  color: var(--text-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  transition:
    background var(--d-fast) var(--e-soft),
    color var(--d-fast) var(--e-soft),
    transform var(--d-quick) var(--e-spring);
}
.pl-tree__row:hover {
  background: var(--overlay-1);
  color: var(--text);
  transform: translateX(2px);
}
[dir="rtl"] .pl-tree__row:hover { transform: translateX(-2px); }
.pl-tree__row[aria-current="true"] {
  background: var(--grad-hot-soft);
  box-shadow: inset 0 0 0 1px var(--brand-soft-line);
  color: var(--brand-ink);
}
.pl-tree__row--all {
  margin-block-end: var(--sp-2);
  padding-block-end: var(--sp-3);
  border-block-end: var(--border);
  border-end-start-radius: 0;
  border-end-end-radius: 0;
}

.pl-tree__name {
  flex: 1 1 auto;
  min-inline-size: 0;
  line-height: 1.35;
}
.pl-tree__n {
  flex: none;
  min-inline-size: 26px;
  padding: 2px 7px;
  border-radius: var(--r-pill);
  background: var(--surface-3);
  color: var(--text-2);
  font-family: var(--font-num);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-bold);
  text-align: center;
}
.pl-tree__row[aria-current="true"] .pl-tree__n { background: var(--grad-cta); color: #fff; }

/* 'labels-sleeves' has zero photographed samples — say so, never show a 0. */
.pl-tree__badge {
  flex: none;
  padding: 2px var(--sp-2);
  border-radius: var(--r-pill);
  background: var(--amber-100);
  color: var(--amber-800);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-heavy);
  white-space: nowrap;
}

/* children sit on a hairline rail that reads as a tree, in both directions */
.pl-tree__kids {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-block: 2px var(--sp-2);
  margin-inline-start: var(--sp-4);
  padding-inline-start: var(--sp-3);
  border-inline-start: 2px solid var(--line);
}
.pl-tree__kids .pl-tree__row {
  min-block-size: 38px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--text-3);
}
.pl-tree__kids .pl-tree__row[aria-current="true"] { color: var(--brand-ink); font-weight: var(--fw-bold); }

/* ---- tag cloud ---- */
.pl-cloud { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.pl-cloud__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  min-block-size: 32px;
  padding-inline: var(--sp-3);
  border-radius: var(--r-pill);
  background: var(--surface-3);
  box-shadow: inset 0 0 0 1px var(--line);
  color: var(--text-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  white-space: nowrap;
  transition:
    background var(--d-fast) var(--e-soft),
    color var(--d-fast) var(--e-soft),
    box-shadow var(--d-fast) var(--e-soft),
    transform var(--d-quick) var(--e-spring);
}
.pl-cloud__tag:hover {
  background: var(--brand-soft);
  box-shadow: inset 0 0 0 1px var(--brand-soft-line);
  color: var(--brand-ink);
  transform: translateY(-2px);
}
.pl-cloud__tag[aria-current="true"] {
  background: var(--grad-cta);
  box-shadow: var(--glow-brand);
  color: #fff;
}
.pl-cloud__n {
  font-family: var(--font-num);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-bold);
  color: var(--text-faint);
}
.pl-cloud__tag[aria-current="true"] .pl-cloud__n { color: rgba(255, 255, 255, .8); }

/* ---- "need a custom size?" quote nudge ---- */
.pl-nudge {
  position: relative;
  display: flex;
  /* `overflow: hidden` (needed to clip the ::before glow) drops this item's
     automatic minimum size from `auto` to 0, so as a flex item in the
     height-capped .pl-side rail it was the ONLY child that could shrink — it
     absorbed all the compression and collapsed to a 48px sliver, clipping its
     own title, body and BOTH CTAs (incl. the site's only funnel). `flex: none`
     pins it to its content height so the rail scrolls instead. */
  flex: none;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-6) var(--sp-5);
  border-radius: var(--r-xl);
  background: var(--grad-ink);
  color: var(--text-on-ink);
  box-shadow: var(--sh-3);
  overflow: hidden;
  isolation: isolate;
}
.pl-nudge::before {
  content: '';
  position: absolute;
  z-index: -1;
  inline-size: 16rem;
  block-size: 16rem;
  inset-block-start: -55%;
  inset-inline-end: -25%;
  border-radius: var(--r-circle);
  background: radial-gradient(circle, rgba(249, 115, 22, .38) 0%, rgba(237, 28, 36, 0) 68%);
  pointer-events: none;
}
.pl-nudge__icon {
  display: grid;
  place-items: center;
  inline-size: 42px;
  block-size: 42px;
  border-radius: var(--r-md);
  background: var(--grad-cta);
  color: #fff;
  box-shadow: var(--glow-brand);
}
.pl-nudge__icon svg { inline-size: 20px; block-size: 20px; }
.pl-nudge__title {
  font-size: var(--fs-md);
  font-weight: var(--fw-heavy);
  letter-spacing: var(--ls-tight);
  color: #fff;
}
.pl-nudge__body {
  font-size: var(--fs-xs);
  line-height: 1.65;
  color: var(--text-on-ink-2);
}
.pl-nudge__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-block-start: var(--sp-2);
}

/* ---- desktop: a sticky rail that scrolls independently ---- */
@media (min-width: 1024px) {
  .pl-side {
    position: sticky;
    inset-block-start: calc(var(--header-h-condensed) + var(--sp-4));
    max-block-size: calc(100vh - var(--header-h-condensed) - var(--sp-8));
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--ink-200) transparent;
    /* room for focus rings inside the scroll container */
    padding: 3px;
    margin: -3px;
  }
  .pl-side::-webkit-scrollbar { inline-size: 6px; }
  .pl-side::-webkit-scrollbar-track { background: transparent; }
  .pl-side::-webkit-scrollbar-thumb { background: var(--ink-200); border-radius: var(--r-pill); }
  .pl-side::-webkit-scrollbar-thumb:hover { background: var(--ink-300); }
}

/* ---- below 1024px: an off-canvas drawer ---- */
.pl-scrim { display: none; }

@media (max-width: 1023px) {
  /* Sits UNDER the panel (--z-drawer), over everything else incl. the FAB. */
  .pl-scrim {
    display: block;
    position: fixed;
    inset: 0;
    z-index: calc(var(--z-drawer) - 1);
    background: var(--backdrop);
    -webkit-backdrop-filter: var(--backdrop-blur);
    backdrop-filter: var(--backdrop-blur);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--d-base) var(--e-soft), visibility var(--d-base);
  }
  .pl-scrim.is-open { opacity: 1; visibility: visible; }

  .pl-side {
    position: fixed;
    inset-block: 0;
    inset-inline-start: 0;
    z-index: var(--z-drawer);
    inline-size: min(360px, 90vw);
    max-block-size: 100vh;
    background: var(--surface);
    box-shadow: var(--sh-5);
    border-start-end-radius: var(--r-2xl);
    border-end-end-radius: var(--r-2xl);
    /* closed: off-canvas AND out of the a11y tree / tab order */
    transform: translateX(-102%);
    visibility: hidden;
    transition: transform var(--d-slow) var(--e-out), visibility var(--d-slow);
  }
  [dir="rtl"] .pl-side { transform: translateX(102%); }
  .pl-side.is-open { transform: none; visibility: visible; }

  .pl-side__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    flex: none;
    padding: var(--sp-5);
    border-block-end: var(--border);
  }
  .pl-side__title { font-size: var(--fs-lg); font-weight: var(--fw-heavy); }
  .pl-side__close {
    display: grid;
    place-items: center;
    inline-size: 40px;
    block-size: 40px;
    border-radius: var(--r-pill);
    background: var(--surface-3);
    color: var(--text-2);
    flex: none;
    transition: background var(--d-fast) var(--e-soft), color var(--d-fast) var(--e-soft), transform var(--d-base) var(--e-spring);
  }
  .pl-side__close:hover { background: var(--ink-900); color: #fff; transform: rotate(90deg); }
  .pl-side__close svg { inline-size: 15px; block-size: 15px; }

  .pl-side__scroll {
    flex: 1 1 auto;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: var(--sp-5);
    padding-block-end: calc(var(--sp-8) + env(safe-area-inset-bottom, 0px));
  }
  /* Inside the drawer the panels are already on a white sheet — flatten them. */
  .pl-panel {
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
  .pl-panel + .pl-panel { padding-block-start: var(--sp-5); border-block-start: var(--border); }
}

@media (prefers-reduced-motion: reduce) {
  .pl-side { transition: none; }
  .pl-scrim { transition: none; }
}

/* ==========================================================================
   3. TOOLBAR — sticky, glassy, condenses under the header
   ========================================================================== */
.pl-toolbar {
  position: sticky;
  inset-block-start: calc(var(--header-h-condensed) + var(--sp-2));
  z-index: var(--z-sticky);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
  padding: var(--sp-3);
  border-radius: var(--r-xl);
  background: var(--glass-bg-solid);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--sh-2), var(--sh-ring);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .pl-toolbar { background: var(--surface); }
}

.pl-toolbar__filters { flex: none; }
@media (min-width: 1024px) { .pl-toolbar__filters { display: none; } }
.pl-toolbar__filters .pl-badge-n {
  display: inline-grid;
  place-items: center;
  min-inline-size: 18px;
  block-size: 18px;
  padding-inline: 5px;
  border-radius: var(--r-pill);
  background: var(--grad-cta);
  color: #fff;
  font-family: var(--font-num);
  font-size: 11px;
  font-weight: var(--fw-heavy);
}
/* An author-origin `display` beats the UA's [hidden] rule — restate it. */
.pl-toolbar__filters .pl-badge-n[hidden] { display: none; }

.pl-toolbar__count {
  flex: 1 1 auto;
  min-inline-size: 0;
  padding-inline: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-2);
}
.pl-toolbar__count .num { color: var(--text); font-weight: var(--fw-bold); }
.pl-toolbar__count strong { color: var(--text); font-weight: var(--fw-bold); }

.pl-toolbar__controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-inline-start: auto;
  min-inline-size: 0;   /* let it wrap instead of forcing the toolbar wide */
}

.pl-field { display: inline-flex; align-items: center; gap: var(--sp-2); }
.pl-field__label {
  font-size: var(--fs-2xs);
  font-weight: var(--fw-heavy);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
}
[dir="rtl"] .pl-field__label { text-transform: none; font-size: var(--fs-xs); }

/* Compact variant of the kit's .select — same arrow, same focus ring. */
.pl-select {
  min-block-size: 40px;
  inline-size: auto;
  max-inline-size: 100%;   /* a <select> is sized by its longest option — cap it */
  padding-block: 0;
  padding-inline: var(--sp-4) var(--sp-10);
  border-radius: var(--r-pill);
  background-color: var(--surface);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  background-position: right var(--sp-3) center;
}
[dir="rtl"] .pl-select { background-position: left var(--sp-3) center; }

/* segmented grid | list switch */
.pl-view {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  border-radius: var(--r-pill);
  background: var(--overlay-1);
  flex: none;
}
.pl-view__btn {
  display: grid;
  place-items: center;
  inline-size: 36px;
  block-size: 34px;
  border-radius: var(--r-pill);
  color: var(--text-3);
  transition:
    background var(--d-quick) var(--e-soft),
    color var(--d-quick) var(--e-soft),
    box-shadow var(--d-quick) var(--e-out),
    transform var(--d-quick) var(--e-spring);
}
.pl-view__btn:hover { color: var(--text); }
.pl-view__btn svg { inline-size: 16px; block-size: 16px; }
.pl-view__btn[aria-pressed="true"] {
  background: var(--surface-4);
  color: var(--text);
  box-shadow: var(--sh-2);
}
.pl-view__btn:active { transform: scale(.94); }

@media (max-width: 559px) {
  .pl-toolbar { gap: var(--sp-2); }
  /* Row 1: [Filters] …………… [Showing x of y].  The count grows to fill and
     right-aligns beside the button instead of forcing a third row. */
  .pl-toolbar__count {
    order: 1;
    flex: 1 1 auto;
    text-align: end;
    padding-block-start: 0;
  }
  /* Row 2: the two selects + the grid|list switch get a full-width row of
     their own so they stop overflowing off the right edge. */
  .pl-toolbar__controls {
    order: 2;
    flex: 1 1 100%;
    margin-inline-start: 0;
    gap: var(--sp-2);
  }
  /* Basis 0 so the two selects only split the space left after the view
     switch — they share the row instead of pushing it onto a new line. */
  .pl-field { flex: 1 1 0%; min-inline-size: 0; }
  .pl-field__label { display: none; }
  .pl-select {
    inline-size: 100%;
    max-inline-size: none;
    padding-inline: var(--sp-3) var(--sp-8);
    font-size: var(--fs-xs);
  }
  .pl-view { flex: none; }
}

/* ==========================================================================
   4. ACTIVE FILTER CHIPS
   ========================================================================== */
.pl-active {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-block-start: var(--sp-5);
}
.pl-active[hidden] { display: none; }
.pl-active__label {
  font-size: var(--fs-2xs);
  font-weight: var(--fw-heavy);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--text-faint);
  margin-inline-end: var(--sp-1);
}
[dir="rtl"] .pl-active__label { text-transform: none; font-size: var(--fs-xs); }

.pl-active__chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  min-block-size: 34px;
  padding-inline: var(--sp-3) var(--sp-2);
  border-radius: var(--r-pill);
  background: var(--brand-soft);
  box-shadow: inset 0 0 0 1px var(--brand-soft-line);
  color: var(--brand-ink);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  white-space: nowrap;
  max-inline-size: 100%;
  transition: background var(--d-fast) var(--e-soft), transform var(--d-quick) var(--e-spring);
}
.pl-active__chip:hover { background: var(--brand-soft); transform: translateY(-2px); }
.pl-active__k { color: var(--text-3); font-weight: var(--fw-semibold); }
.pl-active__v { overflow: hidden; text-overflow: ellipsis; min-inline-size: 0; }
.pl-active__x {
  display: grid;
  place-items: center;
  inline-size: 20px;
  block-size: 20px;
  border-radius: var(--r-circle);
  background: rgba(196, 19, 26, .12);
  flex: none;
}
.pl-active__x svg { inline-size: 10px; block-size: 10px; }
.pl-active__chip:hover .pl-active__x { background: var(--brand); color: #fff; }

.pl-active__clear {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  min-block-size: 34px;
  padding-inline: var(--sp-4);
  border-radius: var(--r-pill);
  color: var(--text-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line-strong);
  transition: color var(--d-fast) var(--e-soft), background var(--d-fast) var(--e-soft);
}
/* The raw icon string has no intrinsic size — constrain it or it renders huge. */
.pl-active__clear svg { inline-size: 12px; block-size: 12px; flex: none; }
.pl-active__clear:hover { background: var(--overlay-1); color: var(--text); }

/* ==========================================================================
   5. RESULTS
   ========================================================================== */
.pl-results { margin-block-start: var(--sp-6); }

.pl-grid {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 262px), 1fr));
}
.pl-grid--list {
  grid-template-columns: minmax(0, 1fr);
  gap: var(--sp-4);
}
/* The empty state is one full-width panel — never a 262px column of it. */
.pl-grid--empty { grid-template-columns: minmax(0, 1fr); }

/* --- spec chips on a grid card (structure / material) --- */
.pl-spec {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-block-start: var(--sp-1);
}
.pl-spec__chip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  max-inline-size: 100%;
  min-inline-size: 0;
  padding: 4px var(--sp-3);
  border-radius: var(--r-pill);
  background: var(--surface-3);
  box-shadow: inset 0 0 0 1px var(--line);
  color: var(--text-2);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-bold);
  line-height: 1.5;
}
[dir="rtl"] .pl-spec__chip { font-size: var(--fs-xs); }
.pl-spec__chip svg { inline-size: 12px; block-size: 12px; flex: none; color: var(--brand); }
.pl-spec__v {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-inline-size: 0;
}

/* --- spec row in list view --- */
.pl-specrow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: var(--sp-3) var(--sp-5);
  margin-block-start: var(--sp-3);
  padding-block: var(--sp-3);
  border-block: var(--border);
}
.pl-specrow__k {
  font-size: var(--fs-2xs);
  font-weight: var(--fw-heavy);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--text-faint);
}
[dir="rtl"] .pl-specrow__k { text-transform: none; font-size: var(--fs-xs); }
.pl-specrow__v {
  margin-block-start: 3px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  line-height: 1.45;
  color: var(--text);
}

/* List rows get a longer excerpt than the grid card. */
.pl-grid--list .p-card__excerpt {
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
.pl-grid--list .p-card { block-size: auto; }

/* --- pagination ---
   The painter hides this container whenever there is nothing to page through
   (0 or 1 page), so it can never leave a styled void at the end of the results.
   An author-origin `display` would beat the UA's [hidden] rule — restate it. */
.pl-pager .pager { margin-block-start: var(--sp-10); }
.pl-pager[hidden] { display: none; }

/* --- empty state ------------------------------------------------------------
   The last thing in the results column when nothing matches, and a block that
   has to read as INTENTIONAL rather than as a failure: a card of its own, tall
   enough to hold the column, with the quote route inside it. Nothing renders
   after it.
   -------------------------------------------------------------------------- */
/* Tall enough to carry the results column on its own — otherwise the sidebar
   (which is always tall) dictates the row height and leaves a hollow well
   beside it. */
.pl-empty {
  display: grid;
  align-content: center;
  min-block-size: clamp(300px, 46vh, 520px);
  padding: var(--sp-8) var(--sp-5);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--sh-1), var(--sh-ring);
}
/* The kit's .empty already centres its own contents — do not double-pad it. */
.pl-empty .empty { padding: 0; background: none; box-shadow: none; }

/* A production line we really do make but have not photographed yet
   ('labels-sleeves'). Warm it up so it reads as an offer, not a dead end. */
.pl-empty--line {
  background: var(--grad-hot-soft);
  box-shadow: inset 0 0 0 1px var(--brand-soft-line);
}
.pl-empty--line .empty__icon { background: var(--surface); color: var(--brand); }
.pl-empty--line .empty__title { color: var(--brand-ink); }

/* ==========================================================================
   6. CLOSING CTA
   ========================================================================== */
.pl-cta { padding-block-start: var(--sp-section-s); }
