:root {
  --pl-ink: #080a0e;
  --pl-panel: #10141a;
  --pl-card: #151a21;
  --pl-card-2: #1a2029;
  --pl-line: #29313c;
  --pl-paper: #f7f7f8;
  --pl-muted: #9ea6b2;
  --pl-red: #f0162d;
  --pl-red-dark: #b70c1e;
  --pl-amber: #f0a52b;
  --pl-green: #65d68f;
  --pl-radius: 18px;
  --pl-max: 1240px;
  --pl-safe-bottom: env(safe-area-inset-bottom, 0px);
  --pl-shadow: 0 20px 60px rgba(0, 0, 0, .32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--pl-ink); }
body {
  margin: 0;
  background:
    radial-gradient(circle at 75% 2%, rgba(240, 165, 43, .045), transparent 26rem),
    var(--pl-ink);
  color: var(--pl-paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.admin-bar .pl-site-header { top: 32px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.pl-container { width: min(calc(100% - 40px), var(--pl-max)); margin-inline: auto; }
.pl-main { min-height: 65vh; }

.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  clip: auto !important;
  clip-path: none;
  height: auto;
  width: auto;
  top: 8px;
  left: 8px;
  padding: 12px;
  z-index: 999999;
  background: #fff;
  color: #000;
}

/* Header and approved logo */
.pl-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 10, 14, .95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.pl-header-row {
  min-height: 88px;
  display: grid;
  grid-template-columns: 220px minmax(250px, 1fr) auto;
  align-items: center;
  gap: 28px;
}
.pl-logo-link { display: inline-flex; align-items: center; width: fit-content; }
.pl-brand { display: inline-flex; align-items: center; }
.pl-logo-image {
  display: block;
  width: 190px;
  max-height: 76px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 9px rgba(240, 22, 45, .22));
}
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo { width: auto; max-width: 200px; max-height: 74px; object-fit: contain; }
.pl-header-search { position: relative; display: block; }
.pl-header-search input {
  width: 100%;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--pl-line);
  background: #141920;
  color: #fff;
  padding: 0 58px 0 19px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
}
.pl-header-search input::placeholder { color: #a1a8b1; }
.pl-header-search input:focus {
  border-color: var(--pl-red);
  box-shadow: 0 0 0 3px rgba(240, 22, 45, .16);
}
.pl-search-button {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: var(--pl-red);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.pl-search-button:hover { background: #ff263d; }
.pl-search-suggestions {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background: #fff;
  color: #111;
  border-radius: 16px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .42);
  overflow: hidden;
  max-height: 480px;
  overflow-y: auto;
  z-index: 130;
}
.pl-search-suggestions a {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid #eceef1;
}
.pl-search-suggestions a:hover { background: #f7f8fa; }
.pl-search-suggestions img,
.pl-search-placeholder-mini {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 10px;
  background: #f1f2f4;
}
.pl-search-suggestions small { color: #667085; }
.pl-header-actions { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.pl-lang-toggle { font-size: 13px; color: #cfd4dc; }
.pl-lang-toggle.is-active { color: #fff; font-weight: 800; }
.pl-cart-link { font-size: 20px; margin-left: 10px; }
.pl-desktop-nav { border-top: 1px solid rgba(255, 255, 255, .045); }
.pl-desktop-nav .pl-container {
  height: 48px;
  display: flex;
  justify-content: center;
  gap: 38px;
  align-items: center;
  font-size: 14px;
}
.pl-desktop-nav a { color: #e6e8eb; }
.pl-desktop-nav a:hover { color: var(--pl-amber); }

/* Conversion hero */
.pl-hero {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid var(--pl-line);
  border-radius: 0 0 26px 26px;
  background: linear-gradient(135deg, #090b0f, #17110b);
  margin-top: 0;
  position: relative;
  box-shadow: var(--pl-shadow);
}
.pl-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, .25);
}
.pl-hero-copy {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.pl-eyebrow {
  color: var(--pl-amber);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.pl-hero h1 {
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: .99;
  letter-spacing: -.045em;
  margin: 8px 0 18px;
  max-width: 650px;
}
.pl-hero-copy > p:not(.pl-eyebrow) { color: #d4d7dc; max-width: 560px; margin: 0; font-size: 18px; }
.pl-hero-media { min-height: 410px; position: relative; overflow: hidden; }
.pl-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0b0d11 0%, rgba(11, 13, 17, .25) 36%, rgba(0, 0, 0, .06) 100%);
}
.pl-hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.94) contrast(1.05) brightness(.82); }
.pl-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.pl-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 13px;
  border: 1px solid var(--pl-line);
  background: #171c24;
  color: #fff;
  font-weight: 750;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.pl-button:hover { transform: translateY(-1px); border-color: #5a6573; }
.pl-button-primary { background: var(--pl-amber); color: #17120a; border-color: var(--pl-amber); }
.pl-button-primary:hover { background: #ffb33d; border-color: #ffb33d; }
.pl-button-red { background: var(--pl-red); border-color: var(--pl-red); }
.pl-button-red:hover { background: #ff263d; border-color: #ff263d; }

/* Store status */
.pl-status-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--pl-line);
  border: 1px solid var(--pl-line);
  border-radius: 18px;
  overflow: hidden;
  margin-top: 16px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .16);
}
.pl-status-item {
  background: var(--pl-panel);
  padding: 15px 18px;
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
a.pl-status-item:hover { background: #171c24; }
.pl-status-item strong, .pl-status-item span { display: block; }
.pl-status-item strong { font-size: 14px; }
.pl-status-item span { font-size: 13px; color: var(--pl-muted); margin-top: 3px; }
.pl-open-indicator { color: var(--pl-green); }

/* Sections */
.pl-section { padding-block: 34px; }
.pl-section-heading { display: flex; justify-content: space-between; align-items: end; gap: 18px; margin-bottom: 18px; }
.pl-section-heading h1, .pl-section-heading h2 { margin: 0; font-size: clamp(25px, 3vw, 36px); letter-spacing: -.025em; }
.pl-section-heading > a { color: var(--pl-amber); font-weight: 750; font-size: 14px; }

/* Categories */
.pl-category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.pl-category-card {
  min-height: 138px;
  border: 1px solid var(--pl-line);
  background: linear-gradient(145deg, #191f28, #10141a);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease;
}
.pl-category-card::before {
  content: "";
  position: absolute;
  width: 125px;
  height: 125px;
  top: -46px;
  right: -35px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 165, 43, .22), transparent 70%);
}
.pl-category-icon {
  position: absolute;
  top: 14px;
  left: 16px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, .055);
  color: var(--pl-amber);
  font-size: 24px;
  border: 1px solid rgba(255, 255, 255, .06);
}
.pl-category-name { font-weight: 850; font-size: 18px; position: relative; }
.pl-category-card small { color: var(--pl-muted); position: relative; }
.pl-category-card b { position: absolute; right: 18px; bottom: 18px; color: var(--pl-amber); font-size: 24px; }
.pl-category-card:hover { border-color: #56606d; transform: translateY(-2px); }
.pl-category-card.is-placeholder { opacity: .96; }

/* Product presentation */
.pl-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pl-product-card { background: var(--pl-card); border: 1px solid var(--pl-line); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; min-width: 0; }
.pl-product-image { aspect-ratio: 1 / 1; background: #f4f5f6; display: grid; place-items: center; padding: 14px; }
.pl-product-image img { width: 100%; height: 100%; object-fit: contain; }
.pl-product-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #111;
  padding: 16px;
  background: linear-gradient(145deg, #fff, #e9ebef);
}
.pl-product-placeholder strong { font-size: 16px; }
.pl-product-placeholder span { font-size: 12px; color: #555; margin-top: 6px; }
.pl-product-body { padding: 15px; display: flex; flex-direction: column; flex: 1; }
.pl-product-title { font-weight: 800; line-height: 1.25; margin: 0 0 6px; }
.pl-product-meta { font-size: 13px; color: var(--pl-muted); }
.pl-product-price { font-size: 19px; font-weight: 900; margin-top: auto; padding-top: 12px; }
.pl-product-action { margin-top: 12px; }
.pl-product-action .pl-button { width: 100%; }
.pl-catalog-intro {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--pl-line);
  border-radius: 20px;
  background: linear-gradient(120deg, #161b22, #0f1318);
}
.pl-catalog-intro-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 17px; background: rgba(240, 165, 43, .13); color: var(--pl-amber); font-size: 30px; }
.pl-catalog-intro strong { font-size: 20px; }
.pl-catalog-intro p { margin: 4px 0 0; color: var(--pl-muted); }

/* Compact spotlight slider */
.pl-badge { display: inline-flex; width: fit-content; padding: 5px 9px; border-radius: 999px; background: rgba(240, 165, 43, .16); color: var(--pl-amber); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.pl-spotlight { position: relative; border: 1px solid var(--pl-line); border-radius: 22px; overflow: hidden; background: #131821; }
.pl-slide { display: none; grid-template-columns: 1fr .9fr; min-height: 340px; }
.pl-slide.is-active { display: grid; }
.pl-slide-copy { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.pl-slide-copy h3 { font-size: clamp(30px, 4vw, 50px); line-height: 1.05; margin: 13px 0; letter-spacing: -.035em; }
.pl-slide-copy p { color: #c6ccd5; }
.pl-slide > img { width: 100%; height: 340px; object-fit: cover; }
.pl-slider-controls { position: absolute; bottom: 14px; left: 18px; right: 18px; display: flex; justify-content: center; gap: 12px; pointer-events: none; }
.pl-slider-controls button { pointer-events: auto; width: 38px; height: 38px; border: 1px solid var(--pl-line); border-radius: 50%; background: rgba(9, 11, 15, .84); color: #fff; font-size: 23px; }
.pl-slider-controls [data-pl-dots] { display: flex; align-items: center; gap: 7px; }
.pl-slider-dot { width: 8px; height: 8px; border-radius: 50%; border: 0; background: #6b7280; padding: 0; }
.pl-slider-dot.is-active { background: var(--pl-amber); width: 22px; border-radius: 8px; }

/* Editorial content */
.pl-content-split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.pl-editorial-card { display: grid; grid-template-columns: .9fr 1.1fr; background: var(--pl-card); border: 1px solid var(--pl-line); border-radius: 20px; overflow: hidden; min-height: 245px; }
.pl-editorial-card > img { width: 100%; height: 100%; min-height: 230px; object-fit: cover; }
.pl-editorial-card > div { padding: 22px; }
.pl-editorial-placeholder { min-height: 245px; padding: 28px; border-radius: 20px; border: 1px solid var(--pl-line); background: radial-gradient(circle at 78% 20%, rgba(240, 165, 43, .13), transparent 34%), var(--pl-card); display: flex; flex-direction: column; justify-content: flex-end; }
.pl-editorial-placeholder h3 { font-size: 30px; line-height: 1.08; margin: 14px 0 6px; }
.pl-editorial-placeholder p { color: var(--pl-muted); margin: 0; }
.pl-local-grid { display: grid; gap: 10px; }
.pl-local-card { background: var(--pl-card); border: 1px solid var(--pl-line); border-radius: 16px; padding: 18px; }
.pl-local-card:hover { border-color: #56606d; }
.pl-local-card h3 { margin: 0 0 5px; }
.pl-local-card p { margin: 0; color: var(--pl-muted); }
.pl-empty-state { border: 1px dashed #46505d; border-radius: 18px; padding: 25px; background: rgba(255, 255, 255, .02); color: var(--pl-muted); }
.pl-empty-state strong { color: #fff; }

/* Visit and footer */
.pl-visit { display: grid; grid-template-columns: 1fr 1.15fr; gap: 30px; align-items: center; border-top: 1px solid rgba(255, 255, 255, .06); }
.pl-visit h2 { font-size: clamp(32px, 4vw, 50px); line-height: 1.04; margin: 8px 0 16px; }
.pl-visit > div > p:not(.pl-eyebrow) { color: var(--pl-muted); }
.pl-visit img { width: 100%; max-height: 400px; object-fit: cover; border-radius: 22px; border: 1px solid var(--pl-line); }
.pl-site-footer { border-top: 1px solid var(--pl-line); background: #06080b; padding: 42px 0 36px; }
.pl-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 30px; }
.pl-footer-grid .pl-logo-image { width: 170px; }
.pl-footer-grid p { color: var(--pl-muted); font-size: 14px; }
.pl-footer-legal { border-top: 1px solid var(--pl-line); margin-top: 28px; padding-top: 18px; display: flex; gap: 18px; font-size: 13px; color: var(--pl-muted); }

/* App navigation */
.pl-mobile-nav { display: none; }
.pl-mobile-drawer {
  position: fixed;
  inset: auto 10px calc(78px + var(--pl-safe-bottom)) 10px;
  z-index: 150;
  background: #151a21;
  border: 1px solid var(--pl-line);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 60px #000;
  flex-direction: column;
  gap: 8px;
}
.pl-mobile-drawer:not([hidden]) { display: flex; }
.pl-mobile-drawer a { padding: 13px; border-bottom: 1px solid var(--pl-line); }
.pl-drawer-close { align-self: flex-end; width: 38px; height: 38px; border: 0; border-radius: 50%; background: #252b34; color: #fff; font-size: 24px; }

/* Generic page, archive and future catalog styles */
.pl-reading-layout { max-width: 820px; }
.pl-reading-layout h1 { font-size: clamp(36px, 6vw, 64px); line-height: 1.04; }
.pl-reading-layout p, .pl-reading-layout li { font-size: 18px; color: #d4d7dc; }
.pl-featured-image { border-radius: 22px; margin-block: 22px; }
.pl-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pl-article-card { padding: 22px; border: 1px solid var(--pl-line); border-radius: 18px; background: var(--pl-card); margin-bottom: 14px; }
.pl-catalog-layout { display: grid; grid-template-columns: 240px 1fr; gap: 24px; }
.pl-catalog-toolbar { display: flex; justify-content: space-between; gap: 14px; align-items: center; margin-bottom: 16px; }
.pl-catalog-toolbar input, .pl-catalog-toolbar select { background: #131821; color: #fff; border: 1px solid var(--pl-line); border-radius: 13px; padding: 12px 14px; }
.pl-filter-list { display: flex; flex-direction: column; gap: 7px; }
.pl-filter-list a { padding: 10px 12px; border-radius: 10px; color: #cdd2d9; }
.pl-filter-list a:hover, .pl-filter-list a.is-active { background: #1b222c; color: #fff; }
.pl-product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 38px; }
.pl-product-detail-media { background: #f4f5f6; border-radius: 22px; padding: 25px; min-height: 440px; display: grid; place-items: center; }
.pl-product-detail-media img { max-height: 520px; object-fit: contain; }
.pl-product-detail h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.05; }
.pl-spec-table { width: 100%; border-collapse: collapse; margin-top: 22px; }
.pl-spec-table td { padding: 11px 0; border-bottom: 1px solid var(--pl-line); }
.pl-spec-table td:first-child { color: var(--pl-muted); width: 40%; }
.woocommerce .button, .woocommerce button.button, .woocommerce input.button { border-radius: 12px; }

@media (max-width: 960px) {
  body.admin-bar .pl-site-header { top: 46px; }
  .pl-header-row { grid-template-columns: 165px minmax(220px, 1fr) auto; gap: 14px; }
  .pl-logo-image { width: 154px; }
  .pl-desktop-nav { display: none; }
  .pl-hero { grid-template-columns: 1fr; }
  .pl-hero-copy { padding: 42px 32px; }
  .pl-hero-media { min-height: 320px; }
  .pl-status-bar { grid-template-columns: repeat(2, 1fr); }
  .pl-category-grid { grid-template-columns: repeat(3, 1fr); }
  .pl-product-grid { grid-template-columns: repeat(3, 1fr); }
  .pl-content-split { grid-template-columns: 1fr; }
  .pl-post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  body { padding-bottom: calc(72px + var(--pl-safe-bottom)); }
  body.admin-bar .pl-site-header { top: 46px; }
  .pl-container { width: min(calc(100% - 20px), var(--pl-max)); }
  .pl-header-row { min-height: 64px; grid-template-columns: 126px 1fr auto; gap: 8px; padding-top: 5px; }
  .pl-logo-image { width: 122px; max-height: 55px; filter: drop-shadow(0 0 6px rgba(240, 22, 45, .18)); }
  .custom-logo { max-width: 122px; max-height: 54px; }
  .pl-header-actions span, .pl-header-actions .pl-lang-toggle:not(:last-child) { display: none; }
  .pl-header-actions .pl-lang-toggle { font-size: 11px; padding: 8px 0; }
  .pl-header-search { grid-row: 2; grid-column: 1 / -1; margin-bottom: 10px; }
  .pl-header-search input { height: 46px; border-radius: 14px; font-size: 16px; }
  .pl-search-button { width: 38px; height: 36px; top: 5px; border-radius: 11px; }

  .pl-hero { min-height: 320px; border-radius: 18px; grid-template-columns: 1fr; margin-top: 8px; }
  .pl-hero-copy { padding: 26px 20px; min-height: 320px; justify-content: flex-end; background: linear-gradient(180deg, rgba(8, 10, 14, .12) 0%, rgba(8, 10, 14, .82) 62%, rgba(8, 10, 14, .97) 100%); }
  .pl-hero-media { position: absolute; inset: 0; min-height: 0; }
  .pl-hero-media::after { background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.55)); }
  .pl-hero h1 { font-size: clamp(36px, 11vw, 46px); max-width: 340px; margin-bottom: 12px; }
  .pl-hero-copy > p:not(.pl-eyebrow) { font-size: 15px; max-width: 330px; }
  .pl-hero-actions { margin-top: 17px; }
  .pl-hero-actions .pl-button { flex: 1 1 135px; min-height: 44px; padding-inline: 13px; font-size: 14px; }

  .pl-status-bar { grid-template-columns: 1fr 1fr; border-radius: 15px; margin-top: 10px; }
  .pl-status-item { min-height: 66px; padding: 11px 12px; }
  .pl-status-item:nth-child(n + 5) { display: none; }
  .pl-status-item strong { font-size: 12px; }
  .pl-status-item span { font-size: 11px; }

  .pl-section { padding-block: 25px; }
  .pl-section-heading { margin-bottom: 13px; }
  .pl-section-heading h1, .pl-section-heading h2 { font-size: 27px; }
  .pl-category-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding: 2px 0 8px; scrollbar-width: none; }
  .pl-category-grid::-webkit-scrollbar { display: none; }
  .pl-category-card { flex: 0 0 148px; min-height: 126px; scroll-snap-align: start; padding: 14px; }
  .pl-category-icon { width: 42px; height: 42px; top: 12px; left: 13px; }
  .pl-category-name { font-size: 16px; }
  .pl-category-card small { font-size: 11px; padding-right: 14px; }
  .pl-category-card b { right: 13px; bottom: 14px; }

  .pl-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .pl-product-body { padding: 11px; }
  .pl-product-title { font-size: 14px; }
  .pl-product-meta { font-size: 12px; }
  .pl-product-price { font-size: 17px; }
  .pl-product-placeholder { min-height: 135px; padding: 10px; }
  .pl-catalog-intro { grid-template-columns: auto 1fr; padding: 18px; }
  .pl-catalog-intro .pl-button { grid-column: 1 / -1; width: 100%; }
  .pl-catalog-intro-icon { width: 48px; height: 48px; }
  .pl-catalog-intro strong { font-size: 17px; }

  .pl-slide, .pl-slide.is-active { grid-template-columns: 1fr; min-height: 0; }
  .pl-slide-copy { padding: 24px 19px; min-height: 260px; }
  .pl-slide-copy h3 { font-size: 34px; }
  .pl-slide > img { height: 190px; order: -1; }
  .pl-editorial-card { grid-template-columns: 1fr; }
  .pl-editorial-card > img { min-height: 190px; }
  .pl-editorial-placeholder { min-height: 220px; }
  .pl-editorial-placeholder h3 { font-size: 27px; }
  .pl-visit { grid-template-columns: 1fr; }
  .pl-visit img { order: -1; max-height: 300px; }
  .pl-footer-grid { grid-template-columns: 1fr; }
  .pl-footer-legal { flex-wrap: wrap; }
  .pl-site-footer { padding-bottom: 34px; }

  .pl-mobile-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    z-index: 140;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 7px 6px calc(7px + var(--pl-safe-bottom));
    background: rgba(8, 10, 14, .97);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--pl-line);
    box-shadow: 0 -12px 34px rgba(0, 0, 0, .28);
  }
  .pl-mobile-nav a, .pl-mobile-nav button {
    border: 0;
    background: transparent;
    color: #d9dde3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-height: 48px;
    padding: 0;
  }
  .pl-mobile-nav a:active, .pl-mobile-nav button:active { color: var(--pl-amber); }
  .pl-mobile-nav span { font-size: 20px; }
  .pl-mobile-nav small { font-size: 10px; }
  .pl-mobile-nav-primary { position: relative; }
  .pl-mobile-nav-primary span { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--pl-red); margin-top: -24px; border: 5px solid var(--pl-ink); }
  .pl-mobile-nav-primary small { margin-top: 2px; }

  .pl-catalog-layout { grid-template-columns: 1fr; }
  .pl-catalog-sidebar { display: none; }
  .pl-catalog-toolbar { align-items: stretch; flex-direction: column; }
  .pl-product-detail { grid-template-columns: 1fr; }
  .pl-product-detail-media { min-height: 300px; }
  .pl-post-grid { grid-template-columns: 1fr; }
  .pl-search-suggestions { position: fixed; left: 10px; right: 10px; top: 120px; max-height: 60vh; }
}

@media (max-width: 380px) {
  .pl-header-row { grid-template-columns: 112px 1fr auto; }
  .pl-logo-image { width: 108px; }
  .pl-hero-copy { padding-inline: 17px; }
  .pl-hero h1 { font-size: 36px; }
  .pl-status-item:nth-child(4) { display: none; }
  .pl-status-bar { grid-template-columns: 1fr 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* Approved mockup category visuals used until live catalog categories are imported. */
.pl-category-card.has-image {
  min-height: 154px;
  padding: 0;
  background: #10141a;
}
.pl-category-card.has-image::before { display: none; }
.pl-category-card.has-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.07) brightness(.82);
  transition: transform .3s ease, filter .3s ease;
}
.pl-category-card.has-image:hover > img { transform: scale(1.035); filter: saturate(1) contrast(1.08) brightness(.9); }
.pl-category-overlay {
  position: absolute;
  inset: auto 0 0;
  min-height: 58px;
  padding: 12px 42px 11px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, rgba(5,7,10,.08), rgba(5,7,10,.96) 38%);
}
.pl-category-card.has-image .pl-category-name { font-size: 17px; text-shadow: 0 1px 8px #000; }
.pl-category-card.has-image small { font-size: 11px; color: #c8ccd2; }
.pl-category-card.has-image b { right: 14px; bottom: 17px; }

@media (max-width: 680px) {
  .pl-category-card.has-image { min-height: 132px; padding: 0; }
  .pl-category-overlay { min-height: 52px; padding: 10px 34px 9px 11px; }
  .pl-category-card.has-image .pl-category-name { font-size: 15px; }
  .pl-category-card.has-image b { right: 10px; bottom: 13px; }
}
