/* ============================================================
   Phorestrokes Archive — archive.css
   Full-width bg bands · 1400px content · SeekIT Development
   ============================================================ */

:root {
  --a-orange:   #e8550a;
  --a-oh:       #f06020;
  --a-olt:      #fff2ec;
  --a-odk:      #b53f05;
  --a-dark:     #1a1a1a;
  --a-mid:      #666;
  --a-light:    #f7f7f7;
  --a-border:   #e8e8e8;
  --a-white:    #fff;
  --a-width:    1400px;
  --a-px:       48px;
}

/* ── CONTAINER ──────────────────────────────────────────────── */
.pfa-container {
  max-width: var(--a-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--a-px);
  padding-right: var(--a-px);
}

/* ── HEADER BAND ─────────────────────────────────────────────── */
.pfa-header-band {
  background: var(--a-white);
  border-bottom: 1px solid var(--a-border);
  padding: 56px 0 0;
  position: relative;
  overflow: hidden;
}
.pfa-header-band::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: radial-gradient(ellipse 80% 80% at 80% 40%, #fff5f0 0%, transparent 70%);
  pointer-events: none;
}

.pfa-header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.pfa-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--a-orange);
  background: var(--a-olt);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.pfa-page-title {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--a-dark);
  line-height: 1.1;
  margin: 0 0 12px;
  font-family: Georgia, 'Times New Roman', serif;
  max-width: 520px;
}
.pfa-page-sub {
  font-size: 15px;
  color: var(--a-mid);
  line-height: 1.7;
  max-width: 520px;
  margin: 0;
}

/* Search box in header */
.pfa-header-search { flex-shrink: 0; width: 360px; margin-top: 6px; }
.pfa-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--a-white);
  border: 1.5px solid var(--a-border);
  border-radius: 10px;
  padding: 0 14px;
  height: 52px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pfa-search-box:focus-within {
  border-color: var(--a-orange);
  box-shadow: 0 2px 16px rgba(232,85,10,0.12);
}
.pfa-search-ico { flex-shrink: 0; }
.pfa-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14.5px;
  color: var(--a-dark);
  background: transparent;
  font-family: inherit;
}
.pfa-search-input::placeholder { color: #bbb; }
.pfa-search-clear {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--a-light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--a-mid);
  transition: background 0.2s;
}
.pfa-search-clear:hover { background: var(--a-border); }

/* Category rail — category-only archive with circular artwork */
.pfa-cat-rail-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 18px;
}
.pfa-cat-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  padding: 2px 4px 2px 0;
}
.pfa-cat-rail::-webkit-scrollbar { display: none; }
.pfa-rail-fade-r {
  position: absolute;
  top: 0; right: 0; bottom: 18px;
  width: 58px;
  background: linear-gradient(to right, transparent, var(--a-white));
  pointer-events: none;
}

.pfa-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 180px;
  max-width: 230px;
  min-height: 66px;
  padding: 7px 14px 7px 8px;
  border: 1.5px solid var(--a-border);
  border-radius: 38px;
  background: var(--a-white);
  color: var(--a-dark);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  white-space: nowrap;
  scroll-snap-align: start;
  box-shadow: 0 3px 12px rgba(0,0,0,0.04);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.pfa-cat-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(232,85,10,.45);
  background: #fffaf7;
  box-shadow: 0 7px 18px rgba(26,26,26,.08);
}
.pfa-cat-pill.active {
  border-color: var(--a-orange);
  background: var(--a-olt);
  color: var(--a-dark);
  box-shadow: 0 6px 18px rgba(232,85,10,.12);
}
.pfa-cat-thumb {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 50%;
  overflow: hidden;
  background: #f4f1ee;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--a-border);
}
.pfa-cat-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pfa-cat-pill.active .pfa-cat-thumb {
  box-shadow: 0 0 0 2px var(--a-orange);
}
.pfa-cat-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.pfa-cat-name {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--a-dark);
}
.pfa-pill-count {
  padding: 0;
  border: 0;
  background: transparent !important;
  font-size: 10.5px;
  line-height: 1.25;
  font-weight: 600;
  color: #999;
}
.pfa-cat-pill.active .pfa-pill-count { color: var(--a-orange); }
.pfa-cat-child { opacity: .88; }
.pfa-cat-child.active { opacity: 1; }

/* ── TOOLBAR BAND ─────────────────────────────────────────────── */
.pfa-toolbar-band {
  background: var(--a-white);
  border-bottom: 1px solid var(--a-border);
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 2px 12px rgba(0,0,0,0);
  transition: box-shadow 0.3s;
}
.pfa-toolbar-band.stuck {
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.pfa-toolbar-inner {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.pfa-result-info {
  font-size: 13.5px;
  color: var(--a-mid);
  flex-shrink: 0;
  white-space: nowrap;
}
#pfa-result-count {
  font-weight: 700;
  color: var(--a-dark);
}

.pfa-toolbar-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Filter toggle button */
.pfa-filter-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--a-dark);
  background: var(--a-white);
  border: 1.5px solid var(--a-border);
  padding: 7px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  position: relative;
}
.pfa-filter-toggle:hover { border-color: var(--a-orange); color: var(--a-orange); }
.pfa-filter-toggle.open { background: var(--a-olt); border-color: var(--a-orange); color: var(--a-orange); }

.pfa-filter-badge {
  background: var(--a-orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Sort select */
.pfa-sort-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pfa-sort-label { font-size: 13px; color: var(--a-mid); }
.pfa-select-wrap { position: relative; }
.pfa-select {
  appearance: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--a-dark);
  background: var(--a-white);
  border: 1.5px solid var(--a-border);
  padding: 7px 32px 7px 12px;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}
.pfa-select:focus { border-color: var(--a-orange); }
.pfa-select-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--a-mid);
}

/* View toggle */
.pfa-view-toggle {
  display: flex;
  border: 1.5px solid var(--a-border);
  border-radius: 8px;
  overflow: hidden;
}
.pfa-view-btn {
  width: 36px; height: 34px;
  border: none;
  background: var(--a-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--a-mid);
  transition: background 0.15s, color 0.15s;
  border-right: 1px solid var(--a-border);
}
.pfa-view-btn:last-child { border-right: none; }
.pfa-view-btn:hover { background: var(--a-light); color: var(--a-dark); }
.pfa-view-btn.active { background: var(--a-orange); color: #fff; }

/* ── FILTER PANEL ─────────────────────────────────────────────── */
.pfa-filter-panel {
  background: var(--a-light);
  border-bottom: 1px solid var(--a-border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, border-color 0.2s;
}
.pfa-filter-panel.open { max-height: 600px; }

.pfa-filter-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 280px;
  gap: 32px;
  padding: 32px 0 24px;
}

.pfa-fpanel-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--a-orange);
  margin-bottom: 14px;
}

.pfa-fpanel-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pfa-fpanel-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--a-dark);
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--a-border);
  background: var(--a-white);
  transition: all 0.15s;
}
.pfa-fpanel-check:hover { border-color: var(--a-orange); color: var(--a-orange); }
.pfa-fpanel-check input[type="radio"] { accent-color: var(--a-orange); }
.pfa-fpanel-child { font-size: 12px; opacity: 0.8; }

/* Licenses table */
.pfa-fpanel-licenses {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pfa-license-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 5px 0;
  border-bottom: 1px solid var(--a-border);
}
.pfa-license-item:last-of-type { border-bottom: none; }
.pfa-li-name { color: var(--a-dark); }
.pfa-li-price { font-weight: 600; color: var(--a-orange); }
.pfa-license-note {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 11.5px;
  color: var(--a-mid);
  margin-top: 8px;
  line-height: 1.5;
}

/* Artist blurb */
.pfa-artist-blurb {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--a-white);
  border-radius: 10px;
  padding: 16px;
  border: 1px solid var(--a-border);
}
.pfa-ab-avatar {
  width: 48px; height: 48px;
  background: var(--a-olt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pfa-artist-blurb > div:last-child { display: flex; flex-direction: column; gap: 3px; }
.pfa-artist-blurb strong { font-size: 14px; color: var(--a-dark); }
.pfa-artist-blurb span { font-size: 12px; color: var(--a-mid); }

.pfa-fpanel-footer {
  padding: 0 0 20px;
  display: flex;
  justify-content: flex-end;
}
.pfa-fpanel-close {
  font-size: 13px;
  font-weight: 500;
  color: var(--a-mid);
  background: none;
  border: 1px solid var(--a-border);
  padding: 8px 18px;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.pfa-fpanel-close:hover { border-color: var(--a-orange); color: var(--a-orange); }

/* ── ACTIVE FILTER CHIPS BAND ─────────────────────────────────── */
.pfa-active-band {
  background: var(--a-olt);
  border-bottom: 1px solid rgba(232,85,10,0.15);
  padding: 10px 0;
}
.pfa-active-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pfa-active-label {
  font-size: 12px;
  color: var(--a-odk);
  font-weight: 500;
}
.pfa-chips { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; }
.pfa-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--a-odk);
  background: rgba(232,85,10,0.12);
  border: 1px solid rgba(232,85,10,0.25);
  padding: 4px 10px 4px 12px;
  border-radius: 20px;
}
.pfa-chip-remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  color: var(--a-orange);
  padding: 0;
  width: 16px; height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s;
}
.pfa-chip-remove:hover { background: rgba(232,85,10,0.2); }
.pfa-clear-all {
  font-size: 12px;
  font-weight: 600;
  color: var(--a-orange);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.15s;
  font-family: inherit;
  white-space: nowrap;
  text-decoration: underline;
}
.pfa-clear-all:hover { background: rgba(232,85,10,0.08); }

/* ── GRID BAND ────────────────────────────────────────────────── */
.pfa-grid-band {
  background: var(--a-white);
  padding: 40px 0 0;
  min-height: 400px;
  position: relative;
}

/* Loading */
.pfa-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.8);
  z-index: 10;
  border-radius: 8px;
}
.pfa-spinner {
  width: 40px; height: 40px;
  border: 3px solid var(--a-border);
  border-top-color: var(--a-orange);
  border-radius: 50%;
  animation: pfa-spin 0.7s linear infinite;
}
@keyframes pfa-spin { to { transform: rotate(360deg); } }

/* Masonry grid */
.pfa-grid {
  columns: 4;
  column-gap: 18px;
  position: relative;
  transition: opacity 0.25s;
}
.pfa-grid.fading { opacity: 0.35; }
.pfa-cols-2 { columns: 2; }
.pfa-cols-3 { columns: 3; }
.pfa-cols-4 { columns: 4; }

/* Product card */
.pfa-card {
  break-inside: avoid;
  margin-bottom: 18px;
  background: var(--a-white);
  border: 1px solid var(--a-border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
  position: relative;
}
.pfa-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}


.pfa-card-img {
  position: relative;
  overflow: hidden;
  background: var(--a-light);
  font-size: 0;
  line-height: 0;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}
.pfa-card-img-link { display: block; font-size: 0; line-height: 0; }
.pfa-card-img img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  vertical-align: top !important;
  transition: transform 0.5s ease;
  pointer-events: none;
}
.pfa-card:hover .pfa-card-img img { transform: scale(1.05); }

/* Watermark */
.pfa-card-wm {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.pfa-card:hover .pfa-card-wm { opacity: 1; }
.pfa-card-wm span {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.2);
  padding: 5px 14px;
  border-radius: 3px;
  transform: rotate(-18deg);
  border: 1px solid rgba(255,255,255,0.2);
  user-select: none;
}

/* Category badge */
.pfa-card-cat-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.45);
  padding: 3px 10px;
  border-radius: 20px;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
  z-index: 2;
}
.pfa-card-cat-badge:hover { background: var(--a-orange); color: #fff; }

/* Hover overlay */
.pfa-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 3;
}
.pfa-card:hover .pfa-card-overlay { opacity: 1; }
.pfa-card-view-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--a-orange);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transform: translateY(6px);
  transition: transform 0.25s, background 0.2s;
  letter-spacing: 0.02em;
}
.pfa-card:hover .pfa-card-view-btn { transform: translateY(0); }
.pfa-card-view-btn:hover { background: var(--a-oh); color: #fff; }

/* Card meta */
.pfa-card-meta {
  padding: 12px 14px 14px;
  border-top: 1px solid var(--a-border);
  background: var(--a-white);
}
.pfa-card-title {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--a-dark);
  text-decoration: none;
  line-height: 1.4;
  margin-bottom: 9px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}
.pfa-card-title:hover { color: var(--a-orange); }
.pfa-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.pfa-card-price {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--a-orange);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.pfa-card-price span {
  font-size: 11px;
  font-weight: 400;
  color: var(--a-mid);
}
.pfa-card-license-btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: var(--a-orange);
  padding: 5px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.pfa-card-license-btn:hover { background: var(--a-oh); color: #fff; }

/* Empty state */
.pfa-empty {
  text-align: center;
  padding: 80px 24px;
}
.pfa-empty-icon { margin-bottom: 20px; }
.pfa-empty h3 { font-size: 22px; font-weight: 600; color: var(--a-dark); margin-bottom: 8px; }
.pfa-empty p { font-size: 14.5px; color: var(--a-mid); margin-bottom: 24px; }
.pfa-btn-clear-empty {
  background: var(--a-orange);
  color: #fff;
  border: none;
  padding: 10px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.pfa-btn-clear-empty:hover { background: var(--a-oh); }

/* Load more */
.pfa-load-more-wrap {
  padding: 48px 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--a-border);
  margin-top: 40px;
}
.pfa-load-progress { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 100%; max-width: 380px; }
.pfa-load-bar { width: 100%; height: 4px; background: var(--a-border); border-radius: 20px; overflow: hidden; }
.pfa-load-fill { height: 100%; background: var(--a-orange); border-radius: 20px; transition: width 0.4s ease; }
.pfa-load-text { font-size: 13px; color: var(--a-mid); }
.pfa-load-text strong { color: var(--a-dark); }

.pfa-load-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--a-orange);
  background: var(--a-white);
  border: 2px solid var(--a-orange);
  padding: 12px 36px;
  border-radius: 9px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.pfa-load-btn:hover { background: var(--a-orange); color: #fff; }
.pfa-load-btn:disabled { opacity: 0.5; cursor: default; }

/* ── FOOTER BAND ──────────────────────────────────────────────── */
.pfa-footer-band {
  background: var(--a-dark);
  padding: 52px 0;
  margin-top: 0;
}
.pfa-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.pfa-footer-stats { display: flex; gap: 52px; }
.pfa-fstat { text-align: center; }
.pfa-fstat-n {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--a-white);
  font-family: Georgia, serif;
}
.pfa-fstat-l {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.pfa-footer-cta { text-align: right; }
.pfa-footer-cta p { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.pfa-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  background: var(--a-orange);
  padding: 11px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.pfa-contact-btn:hover { background: var(--a-oh); transform: translateY(-1px); color: #fff; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --a-width: 100%; --a-px: 32px; }
  .pfa-grid, .pfa-cols-4 { columns: 3; }
  .pfa-filter-panel-inner { grid-template-columns: 1fr 1fr; }
  .pfa-filter-panel-inner > div:last-child { grid-column: span 2; }
}
@media (max-width: 860px) {

  .pfa-cat-pill { min-width: 168px; min-height: 62px; }
  .pfa-cat-thumb { width: 46px; height: 46px; flex-basis: 46px; }
  :root { --a-px: 20px; }
  .pfa-header-inner { flex-direction: column; gap: 20px; }
  .pfa-header-search { width: 100%; }
  .pfa-grid, .pfa-cols-4, .pfa-cols-3 { columns: 2; }
  .pfa-footer-inner { flex-direction: column; text-align: center; }
  .pfa-footer-stats { gap: 24px; flex-wrap: wrap; justify-content: center; }
  .pfa-footer-cta { text-align: center; }
  .pfa-sort-label { display: none; }
  .pfa-filter-panel-inner { grid-template-columns: 1fr; }
  .pfa-filter-panel-inner > div:last-child { grid-column: auto; }
  .pfa-toolbar-inner { gap: 10px; }
}
@media (max-width: 540px) {

  .pfa-cat-rail-wrap { margin-left: calc(var(--a-px) * -1); margin-right: calc(var(--a-px) * -1); }
  .pfa-cat-rail { padding-left: var(--a-px); padding-right: var(--a-px); gap: 8px; }
  .pfa-cat-pill { min-width: 158px; max-width: 190px; min-height: 58px; padding: 6px 12px 6px 7px; }
  .pfa-cat-thumb { width: 44px; height: 44px; flex-basis: 44px; }
  .pfa-cat-name { max-width: 120px; font-size: 12.5px; }
  :root { --a-px: 16px; }
  .pfa-grid, .pfa-cols-4, .pfa-cols-3, .pfa-cols-2 { columns: 2; }
  .pfa-page-title { font-size: 26px; }
  .pfa-result-info { display: none; }
  .pfa-view-toggle { display: none; }
}
