  /* Product listing overrides; shared palette in av_tokens.css + layout shell in av_style.css. */
  :root {
    --serif: "Fraunces", Georgia, serif;
    --container: 1480px;
    --gutter: clamp(20px, 4vw, 56px);
    --sidebar-w: 280px;
    --header-h: 78px;
  }
  *, *::before, *::after { box-sizing: border-box; }
  html {
    scroll-behavior: smooth;
    /* clip avoids horizontal bleed without breaking descendant position:sticky like overflow:hidden often does */
    overflow-x: clip;
  }
  body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 14.5px;
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: visible;
  }
  body::before {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none; z-index: 1;
    opacity: .15; mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.10 0 0 0 0 0.08 0 0 0 0 0.06 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
  input, select { font: inherit; color: inherit; }
  ::selection { background: var(--terracotta); color: var(--ivory); }

  .container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative; z-index: 2;
  }
  /* position:sticky fails if any ancestor has overflow != visible; scope fix to this listing only */
  .av-product-list-container {
    overflow-x: visible;
    overflow-y: visible;
  }

  /* ---------- TICKER ---------- */
  .ticker {
    background: #1a1612;
    color: var(--ivory-warm);
    font-size: 10.5px;
    letter-spacing: .28em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 11px 0;
    overflow: hidden;
    position: relative; z-index: 5;
  }
  .ticker-track {
    display: flex; gap: 70px;
    white-space: nowrap;
    animation: scroll 50s linear infinite;
    width: max-content;
  }
  .ticker span { display: inline-flex; align-items: center; gap: 18px; }
  .ticker .dot {
    width: 3px; height: 3px;
    background: var(--gold);
    border-radius: 50%;
    transform: rotate(45deg);
  }
  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }


  /* ---------- COMPACT HERO ---------- */
  .cat-hero {
    padding: 16px 0 36px;
    border-bottom: 1px solid var(--rule-soft);
  }
  .cat-hero-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: end;
  }
  .cat-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 10px;
    letter-spacing: .32em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 16px;
  }
  .cat-eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--terracotta);
  }
  .cat-hero h1 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(40px, 5.4vw, 72px);
    line-height: .96;
    letter-spacing: -0.035em;
    margin: 0;
    color: var(--ink);
  }
  .cat-hero h1 em { font-style: italic; color: var(--terracotta); font-weight: 400; }
  .cat-hero p.lede {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0;
    max-width: 380px;
    font-weight: 300;
  }
  .cat-hero p.lede em { font-style: italic; color: var(--terracotta); }

  /* ---------- MAIN LAYOUT ---------- */
  .main {
    display: grid;
    grid-template-columns: var(--sidebar-w) minmax(0, 1fr);
    gap: clamp(28px, 3vw, 48px);
    padding: 0 0 100px;
    max-width: 100%;
    align-items: start;
  }

  /* ---------- SIDEBAR FILTERS ---------- */
  .sidebar {
    position: sticky;
    top: calc(var(--header-h) + 20px);
    align-self: start;
    width: var(--sidebar-w);
    max-height: calc(100vh - var(--header-h) - 40px);
    overflow-y: auto;
    overflow-x: hidden;
	margin-top: 10px;
    padding-right: 8px;
    z-index: 4;
    /* Custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--rule) transparent;
  }
  .sidebar::-webkit-scrollbar { width: 4px; }
  .sidebar::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 4px; }
  .sidebar::-webkit-scrollbar-track { background: transparent; }
  
  .sidebar-head {
    display: flex;
    justify-content: space-between;
    /*align-items: baseline;*/
    padding-bottom: 14px;
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--rule-soft);
    position: sticky;
    top: 0;
    background: var(--ivory);
    z-index: 1;
  }
  .sidebar-head h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 19px;
    margin: 0;
    letter-spacing: -0.01em;
  }
  .sidebar-clear {
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--muted);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: color .25s var(--ease-luxe), border-color .25s var(--ease-luxe);
    cursor: pointer;
  }
  .sidebar-clear:hover {
    color: var(--terracotta);
    border-bottom-color: var(--terracotta);
  }
  .sidebar-clear.disabled {
    opacity: .35;
    cursor: not-allowed;
    pointer-events: none;
  }
  a.sidebar-clear {
    text-decoration: none;
  }

  .av-refine-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  label.shape-tile,
  label.size-row,
  label.color-tile,
  label.theme-row {
    cursor: pointer;
  }
  .av-refine-actions {
    padding: 16px 0 8px;
    /*border-top: 1px solid var(--rule-soft);*/
    margin-top: 8px;
  }
  .av-refine-submit {
    width: 100%;
    padding: 12px 16px;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 500;
    background: var(--ink);
    color: var(--ivory);
    border: 0;
    cursor: pointer;
  }

  .filter-group {
    border-bottom: 1px solid var(--rule-soft);
    padding: 18px 0;
  }
  .filter-group:last-child { border-bottom: 0; }
  .filter-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    user-select: none;
    margin-bottom: 0;
    transition: margin-bottom .35s var(--ease-luxe);
  }
  .filter-group.open .filter-group-head { margin-bottom: 16px; }
  .filter-group-title {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-family: var(--serif);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -0.005em;
  }
  .filter-group-title .ct {
    font-style: italic;
    font-size: 12px;
    color: var(--terracotta);
    font-weight: 400;
  }
  .filter-group-toggle {
    width: 14px; height: 14px;
    position: relative;
    flex-shrink: 0;
  }
  .filter-group-toggle::before,
  .filter-group-toggle::after {
    content: "";
    position: absolute;
    background: var(--ink);
    transition: transform .35s var(--ease-luxe);
  }
  .filter-group-toggle::before {
    top: 50%; left: 0; right: 0;
    height: 1px;
    transform: translateY(-50%);
  }
  .filter-group-toggle::after {
    left: 50%; top: 0; bottom: 0;
    width: 1px;
    transform: translateX(-50%);
  }
  .filter-group.open .filter-group-toggle::after { transform: translateX(-50%) scaleY(0); }

  .filter-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .4s var(--ease-luxe);
    overflow: hidden;
  }
  .filter-group.open .filter-body { grid-template-rows: 1fr; }
  .filter-body-inner { min-height: 0; overflow: hidden; }

  /* Filter row checkbox-style */
  .filter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 0;
    cursor: pointer;
    transition: color .25s var(--ease-luxe);
  }
  .filter-row:hover { color: var(--terracotta); }
  .filter-row .check {
    width: 16px; height: 16px;
    border: 1px solid var(--rule);
    flex-shrink: 0;
    position: relative;
    transition: all .25s var(--ease-luxe);
    background: transparent;
  }
  .filter-row.selected .check {
    background: var(--ink);
    border-color: var(--ink);
  }
  .filter-row.selected .check::after {
    content: "";
    position: absolute;
    left: 4px; top: 1px;
    width: 5px; height: 9px;
    border-right: 1.5px solid var(--ivory);
    border-bottom: 1.5px solid var(--ivory);
    transform: rotate(45deg);
  }
  .filter-row .label {
    flex: 1;
    font-size: 13.5px;
    color: var(--ink);
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .filter-row .ct {
    font-family: var(--serif);
    font-style: italic;
    font-size: 11.5px;
    color: var(--muted);
    transition: color .25s var(--ease-luxe);
  }
  .filter-row:hover .ct { color: var(--terracotta); }
  .filter-row.selected { color: var(--ink); }
  .filter-row.selected .label { font-weight: 500; }

  /* Shape filter — visual diagram */
  .shape-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .shape-tile {
    aspect-ratio: 1;
    border: 1px solid var(--rule);
    background: var(--ivory);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 8px;
    cursor: pointer;
    transition: all .3s var(--ease-luxe);
    position: relative;
  }
  .shape-tile:hover {
    border-color: var(--ink);
    background: var(--paper);
  }
  .shape-tile.selected {
    border-color: var(--terracotta);
    background: rgba(168,74,48,.05);
  }
  .shape-tile .shape-vis {
    background: var(--ink);
    transition: background .3s var(--ease-luxe);
  }
  .shape-tile.selected .shape-vis { background: var(--terracotta); }
  .shape-tile.shape-h .shape-vis { width: 32px; height: 22px; }
  .shape-tile.shape-v .shape-vis { width: 22px; height: 32px; }
  .shape-tile.shape-sq .shape-vis { width: 28px; height: 28px; }
  .shape-tile.shape-sh .shape-vis { width: 36px; height: 12px; }
  .shape-tile.shape-sv .shape-vis { width: 12px; height: 36px; }
  .shape-tile.shape-any .shape-vis {
    width: 28px; height: 28px;
    background: transparent;
    border: 1.5px dashed var(--ink);
  }
  .shape-tile.shape-any.selected .shape-vis { border-color: var(--terracotta); }
  .shape-tile .label {
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink);
    text-align: center;
    line-height: 1.2;
  }

  /* Color swatches */
  .colors {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
  }
  .color-tile {
    aspect-ratio: 1;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform .25s var(--ease-luxe), border-color .25s var(--ease-luxe);
    position: relative;
    background-clip: content-box;
    padding: 2px;
  }
  .color-tile:hover { transform: scale(1.1); }
  .color-tile.selected { border-color: var(--ink); }
  .color-tile.selected::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    border: 1px solid var(--ivory);
  }
  .color-tile-multi {
    background: conic-gradient(from 0deg, #d8443c, #f0b03d, #4a8a52, #2c6da3, #6a3a8a, #d8443c);
  }
  .color-tile-bw {
    background: linear-gradient(135deg, #1a1612 50%, #f4eee2 50%);
  }
  .color-tooltip {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: var(--ivory);
    font-size: 9.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 4px 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s var(--ease-luxe);
    z-index: 5;
    font-weight: 500;
  }
  .color-tile:hover .color-tooltip { opacity: 1; }

  /* Size filter */
  .sizes {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .size-row {
    padding: 12px 14px;
    border: 1px solid var(--rule-soft);
    background: var(--ivory);
    cursor: pointer;
    transition: all .3s var(--ease-luxe);
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .size-row:hover {
    border-color: var(--rule);
    background: var(--paper);
  }
  .size-row.selected {
    border-color: var(--terracotta);
    background: rgba(168,74,48,.05);
  }
  .size-row .size-name {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 14px;
    color: var(--ink);
  }
  .size-row.selected .size-name { color: var(--terracotta); }
  .size-row .size-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
  }
  .size-row .size-dim {
    font-family: var(--serif);
    font-style: italic;
    font-size: 11.5px;
    color: var(--muted);
  }
  .size-row .ct {
    font-family: var(--serif);
    font-style: italic;
    font-size: 11px;
    color: var(--muted);
  }

  /* Price range slider */
  .price-range {
    padding: 10px 4px 4px;
  }
  .price-vals {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 500;
  }
  .price-vals em {
    font-family: var(--sans);
    font-size: 11px;
    color: var(--muted);
    margin-right: 4px;
    font-style: normal;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .price-slider {
    position: relative;
    height: 4px;
    background: var(--rule);
    margin: 6px 0 18px;
  }
  .price-slider .slider-fill {
    position: absolute;
    top: 0; bottom: 0;
    background: var(--ink);
    left: 8%;
    right: 18%;
  }
  .price-slider .slider-thumb {
    position: absolute;
    top: 50%;
    width: 16px; height: 16px;
    background: var(--ink);
    border: 2px solid var(--ivory);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: grab;
    box-shadow: 0 2px 6px rgba(26,22,18,.2);
  }
  .price-slider .slider-thumb.thumb-min { left: 8%; }
  .price-slider .slider-thumb.thumb-max { left: 82%; }
  .price-quickset {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .price-pill {
    padding: 6px 12px;
    border: 1px solid var(--rule);
    font-size: 10.5px;
    letter-spacing: .08em;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all .3s var(--ease-luxe);
    font-weight: 500;
  }
  .price-pill:hover { border-color: var(--ink); }
  .price-pill.selected {
    background: var(--ink);
    color: var(--ivory);
    border-color: var(--ink);
  }

  /* Search within filter (artists) */
  .filter-search {
    width: 100%;
    padding: 9px 12px 9px 32px;
    border: 1px solid var(--rule);
    background: var(--ivory);
    font-size: 12.5px;
    color: var(--ink);
    margin-bottom: 12px;
    outline: none;
    transition: border-color .25s var(--ease-luxe);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a7e6e' stroke-width='1.5'><circle cx='11' cy='11' r='7'/><line x1='21' y1='21' x2='16.5' y2='16.5'/></svg>");
    background-repeat: no-repeat;
    background-position: 10px 50%;
    background-size: 14px 14px;
  }
  .filter-search::placeholder { color: var(--muted); font-style: italic; }
  .filter-search:focus { border-color: var(--ink); }
  .filter-list-scroll {
    max-height: 220px;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: var(--rule) transparent;
  }
  .filter-list-scroll::-webkit-scrollbar { width: 3px; }
  .filter-list-scroll::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 4px; }

  /* ---------- RIGHT CONTENT ---------- */
  .results-area { min-width: 0; }

  /* Active filters bar */
  .active-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding-bottom: 18px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--rule-soft);
  }
  .active-bar.is-empty {
    display: none;
  }
  .active-label {
    font-family: var(--serif);
    font-style: italic;
    font-size: 12.5px;
    color: var(--muted);
    margin-right: 4px;
  }
  .active-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px 6px 12px;
    background: var(--paper);
    border: 1px solid var(--rule);
    font-size: 11.5px;
    letter-spacing: .04em;
    color: var(--ink);
    cursor: pointer;
    transition: all .25s var(--ease-luxe);
  }
  .active-pill .x {
    width: 16px; height: 16px;
    background: var(--ink);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    line-height: 1;
    transition: background .25s var(--ease-luxe);
  }
  .active-pill:hover { border-color: var(--terracotta); color: var(--terracotta); }
  .active-pill:hover .x { background: var(--terracotta); }
  .active-clear-all {
    font-size: 10.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--terracotta);
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    cursor: pointer;
    margin-left: auto;
  }

  /* Toolbar (results count + sort) */
  .toolbar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
	margin-top: 5px;
  }
  .toolbar-left {
    display: flex;
    align-items: baseline;
    gap: 10px;
  }
  .results-text {
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px;
    color: var(--muted);
  }
  .results-text em {
    color: var(--ink);
    font-style: italic;
    font-weight: 500;
    margin-right: 2px;
  }
  .toolbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .density {
    display: inline-flex;
    border: 1px solid var(--rule);
    overflow: hidden;
  }
  .density button {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    transition: all .25s var(--ease-luxe);
  }
  .density button:hover { background: var(--paper); }
  .density button.active { background: var(--ink); color: var(--ivory); }
  .density button svg { width: 14px; height: 14px; }
  .density button + button { border-left: 1px solid var(--rule); }
  .density button.active + button,
  .density button + button.active { border-left-color: var(--ink); }
  .sort-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px 8px 16px;
    border: 1px solid var(--rule);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--ink);
    transition: border-color .25s var(--ease-luxe);
    cursor: pointer;
  }
  .sort-wrap:hover { border-color: var(--ink); }
  .sort-wrap select {
    border: 0;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 4px;
    font: inherit;
    color: inherit;
    text-transform: uppercase;
    letter-spacing: .14em;
  }
  .sort-wrap::after {
    content: "";
    width: 6px; height: 6px;
    border-right: 1px solid var(--muted);
    border-bottom: 1px solid var(--muted);
    transform: rotate(45deg);
    margin-top: -2px;
  }

  /* Mobile filters trigger */
  .mobile-filters-trigger {
    display: none;
  }
  .mobile-filters-sticky {
    display: none;
  }

  /* ---------- PRODUCT GRID ---------- */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(28px, 3vw, 44px) clamp(16px, 1.8vw, 28px);
    max-width: 100%;
    overflow-x: hidden;
  }
  .product-grid.density-comfortable { grid-template-columns: repeat(3, 1fr); }
  .product-grid.density-compact { grid-template-columns: repeat(4, 1fr); }
  .product { cursor: pointer; max-width: 100%; min-width: 0; }
  .product-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    margin-bottom: 16px;
    background: #f5f5f0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: filter .5s var(--ease-luxe);
    max-width: 100%;
    width: 100%;
  }
  .product:hover .product-img { filter: brightness(1.02); }
  .product-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 120px;
    background: linear-gradient(135deg, #f5f5f0, rgba(26, 22, 18, 0.06));
  }
  .product-img::after {
    content: none;
  }
  .product-img::before {
    content: none;
  }

  .product-art {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .8s var(--ease-luxe);
    overflow: hidden;
    box-sizing: border-box;
  }
  .product-art-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
  }
  .product:hover .product-art {
    transform: scale(1.04);
  }
  .product-art img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  .product-img .badges {
    position: absolute;
    top: 14px; left: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 5;
  }
  .badge {
    background: var(--ivory);
    padding: 5px 10px;
    font-size: 8.5px;
    letter-spacing: .26em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink);
    box-shadow: 0 2px 8px rgba(26,22,18,.08);
  }
  .badge.dark { background: var(--ink); color: var(--ivory); }
  .badge.terracotta { background: var(--terracotta); color: var(--ivory); }
  .badge.gold { background: var(--gold); color: var(--ink); }

  .product-img .wish {
    position: absolute;
    top: 14px; right: 14px;
    width: 34px; height: 34px;
    background: var(--ivory);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted);
    transition: all .35s var(--ease-luxe);
    z-index: 5;
    opacity: 0;
    box-shadow: 0 2px 8px rgba(26,22,18,.08);
  }
  .product:hover .product-img .wish { opacity: 1; }
  .product-img .wish svg { width: 14px; height: 14px; }
  .product-img .wish:hover {
    color: var(--ivory);
    background: var(--terracotta);
    transform: scale(1.08);
  }
  .product-img .wish.active {
    color: var(--ivory);
    background: var(--terracotta);
    opacity: 1;
  }

  .product-img .preview-actions {
    position: absolute;
    inset: auto 14px 14px 14px;
    display: flex;
    gap: 8px;
    transform: translateY(120%);
    transition: transform .55s var(--ease-luxe);
    z-index: 5;
  }
  .product:hover .preview-actions { transform: translateY(0); }
  .preview-actions .pa {
    flex: 1;
    background: var(--ink);
    color: var(--ivory);
    text-align: center;
    padding: 11px 8px;
    font-size: 9.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 600;
    transition: background .35s var(--ease-luxe);
    box-shadow: 0 4px 12px rgba(26,22,18,.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .preview-actions .pa:hover { background: var(--terracotta); }
  .preview-actions .pa.icon {
    flex: 0 0 42px;
    padding: 11px 0;
  }
  .preview-actions .pa svg { width: 14px; height: 14px; }

  .product-info { padding: 0 2px; }
  .product-artist {
    font-family: var(--serif);
    font-style: italic;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 2px;
    letter-spacing: .02em;
  }
  .product-name {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
    color: var(--ink);
  }
  .product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 8px;
    border-top: 1px solid var(--rule-soft);
    gap: 12px;
  }
  .product-price {
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.005em;
    white-space: nowrap;
  }
  .product-price .from {
    font-style: italic;
    font-weight: 400;
    color: var(--muted);
    margin-right: 4px;
    font-size: 11px;
  }
  .product-price .rupee {
    font-family: var(--sans);
    font-size: 13px;
    margin-right: 1px;
  }
  .product-size {
    font-family: var(--serif);
    font-style: italic;
    font-size: 11px;
    color: var(--muted);
  }

  /* ---------- LOAD MORE / PAGINATION ---------- */
  .load-section {
    margin-top: clamp(60px, 7vw, 100px);
    padding-top: clamp(40px, 5vw, 60px);
    border-top: 1px solid var(--rule-soft);
    text-align: center;
  }
  .btn-load {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 38px;
    background: var(--ink);
    color: var(--ivory);
    font-size: 11px;
    letter-spacing: .26em;
    text-transform: uppercase;
    font-weight: 500;
    transition: background .55s var(--ease-luxe), transform .55s var(--ease-luxe);
  }
  .btn-load:hover { background: var(--terracotta); transform: translateY(-2px); }
  .btn-load .arr { font-family: var(--serif); font-style: italic; transition: transform .5s var(--ease-luxe); }
  .btn-load:hover .arr { transform: translateX(4px); }
  .pagination {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
  }
  a.page-btn {
    text-decoration: none;
    color: var(--ink-soft);
  }
  .page-btn {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-size: 13.5px;
    color: var(--ink-soft);
    transition: all .3s var(--ease-luxe);
    border: 1px solid transparent;
    cursor: pointer;
  }
  .page-btn:hover { background: var(--paper); border-color: var(--rule); }
  .page-btn.current {
    background: var(--ink);
    color: var(--ivory);
    border-color: var(--ink);
  }
  .page-btn.disabled { color: var(--muted); cursor: not-allowed; opacity: .4; }
  .page-btn .arr {
    font-family: var(--serif);
    font-size: 1.5em;
    line-height: 1;
  }

  /* ---------- MOBILE FILTERS (legacy menu bottom sheet) ---------- */
  #filter-sheet-modal.menu-box-bottom {
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
  }
  #filter-sheet-modal .filter-sheet-menu-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  #filter-sheet-modal .filter-sheet-body {
    overflow-y: auto;
    padding: 0 24px;
    flex: 1;
    min-height: 0;
  }
  #filter-sheet-modal .filter-sheet-foot {
    padding: 16px 24px calc(20px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--rule-soft);
    display: flex;
    gap: 10px;
    background: var(--ivory);
    flex-shrink: 0;
  }
  #filter-sheet-modal .filter-sheet-foot button,
  #filter-sheet-modal .filter-sheet-foot a.clear {
    flex: 1;
    padding: 14px;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
  }
  #filter-sheet-modal .filter-sheet-foot a.clear {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-sizing: border-box;
    border: 1px solid var(--rule);
    color: var(--ink-soft);
  }
  #filter-sheet-modal .filter-sheet-foot .apply {
    background: var(--ink);
    color: var(--ivory);
    border: 0;
    cursor: pointer;
  }

  /* Legacy custom overlay sheet (unused on AV product list) */
  .filter-sheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,12,8,.55);
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease-luxe);
  }
  .filter-sheet-overlay.open { opacity: 1; pointer-events: auto; }

  .filter-sheet {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 100;
    background: var(--ivory);
    max-height: 88vh;
    border-radius: 18px 18px 0 0;
    transform: translateY(100%);
    transition: transform .45s var(--ease-luxe);
    display: flex;
    flex-direction: column;
    box-shadow: 0 -10px 40px rgba(15,12,8,.18);
  }
  .filter-sheet.open { transform: translateY(0); }
  .filter-sheet-handle {
    width: 44px; height: 4px;
    background: var(--rule);
    border-radius: 999px;
    margin: 12px auto 4px;
  }
  .filter-sheet-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    border-bottom: 1px solid var(--rule-soft);
  }
  .filter-sheet-head h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 22px;
    margin: 0;
  }
  .filter-sheet-head h3 em { font-style: italic; color: var(--terracotta); }
  .filter-sheet-close {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }
  .filter-sheet-body {
    overflow-y: auto;
    padding: 0 24px;
    flex: 1;
  }
  .filter-sheet-foot {
    padding: 16px 24px calc(20px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--rule-soft);
    display: flex;
    gap: 10px;
    background: var(--ivory);
  }
  .filter-sheet-foot button,
  .filter-sheet-foot a.clear {
    flex: 1;
    padding: 14px;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .filter-sheet-foot a.clear {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-sizing: border-box;
  }
  .filter-sheet-foot .clear {
    border: 1px solid var(--rule);
    color: var(--ink-soft);
  }
  .filter-sheet-foot .apply {
    background: var(--ink);
    color: var(--ivory);
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 1100px) {
    :root { --sidebar-w: 240px; }
    .main { grid-template-columns: 240px minmax(0, 1fr); }
    .sidebar {
      width: 240px;
    }
    .product-grid.density-comfortable { grid-template-columns: repeat(2, 1fr); }
    .product-grid.density-compact { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 900px) {
    .crumbs { padding: 14px 0 6px; font-size: 9px; letter-spacing: .14em; }

    .cat-hero { padding: 14px 0 24px; }
    .cat-hero-top { grid-template-columns: 1fr; gap: 16px; align-items: start; }
    .cat-hero h1 { font-size: clamp(36px, 10vw, 50px); }
    .cat-hero p.lede { font-size: 13.5px; max-width: 100%; }

    .main { padding: 20px 0 80px; grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .mobile-filters-trigger {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 14px 18px;
      border: 1px solid var(--ink);
      background: var(--ivory);
      font-size: 11.5px;
      letter-spacing: .18em;
      text-transform: uppercase;
      font-weight: 500;
      margin-bottom: 16px;
      cursor: pointer;
    }
    .mobile-filters-trigger .count-pill {
      background: var(--terracotta);
      color: var(--ivory);
      font-size: 10px;
      padding: 2px 8px;
      border-radius: 999px;
      font-weight: 600;
      letter-spacing: .04em;
    }
    /* Sticky filter bar that appears on scroll */
    .mobile-filters-sticky {
      display: flex;
      position: fixed;
      top: var(--header-h);
      left: 0; right: 0;
      z-index: 25;
      background: rgba(245,243,240,.96);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--rule-soft);
      padding: 10px var(--gutter);
      transform: translateY(-100%);
      transition: transform .35s var(--ease-luxe);
      pointer-events: none;
    }
    .mobile-filters-sticky.visible {
      transform: translateY(0);
      pointer-events: auto;
    }
    .mobile-filters-sticky button {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 11px 16px;
      border: 1px solid var(--ink);
      background: var(--ivory);
      font-size: 11px;
      letter-spacing: .18em;
      text-transform: uppercase;
      font-weight: 500;
      cursor: pointer;
    }
    .mobile-filters-sticky .count-pill {
      background: var(--terracotta);
      color: var(--ivory);
      font-size: 10px;
      padding: 2px 8px;
      border-radius: 999px;
      font-weight: 600;
      letter-spacing: .04em;
    }

    .toolbar { margin-bottom: 22px; }
    .toolbar-left { width: 100%; }
    .density { display: none; }
    .results-text { font-size: 13px; }
    .sort-wrap { padding: 8px 12px; font-size: 10.5px; }

    .product-grid,
    .product-grid.density-comfortable,
    .product-grid.density-compact { grid-template-columns: repeat(2, 1fr); gap: 24px 14px; }
    .product-img { padding: 0; }
    .product-img .wish { opacity: 1; width: 30px; height: 30px; top: 10px; right: 10px; }
    .product-img .wish svg { width: 12px; height: 12px; }
    .product-name { font-size: 14px; }
    .product-price { font-size: 13px; }
    .product-artist { font-size: 11px; }

  }
  @media (max-width: 560px) {
    .pagination .page-btn { width: 32px; height: 32px; font-size: 12.5px; }
  }