
  html, body { background: var(--slate-50); }

  .container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
  main.container { padding-bottom: 32px; }

  /* ============================================================
     PAGE HERO — title strip (matches companies.html)
     ============================================================ */
  .page-hero {
    margin-top: 24px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-xl);
    padding: 28px 32px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
  }
  .page-hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -60px;
    width: 360px; height: 360px;
    background-image: url('https://fairbusiness.mpulse.ge/wp-content/uploads/2024/11/Icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .07;
    pointer-events: none;
    transform: rotate(-12deg);
  }
  .page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 600px 200px at 100% 0%, var(--green-50), transparent 70%);
    pointer-events: none;
  }
  .page-hero-content { position: relative; z-index: 1; }

  .breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: var(--fs-base); color: var(--slate-500);
    margin-bottom: 14px;
  }
  .breadcrumb a { transition: color .15s var(--ease); }
  .breadcrumb a:hover { color: var(--green-600); }
  .breadcrumb svg.home {
    width: 14px; height: 14px;
    stroke: currentColor; fill: none; stroke-width: 2;
    stroke-linecap: round; stroke-linejoin: round;
  }
  .breadcrumb .sep { color: var(--slate-300); font-size: var(--fs-xs); }
  .breadcrumb .current { color: var(--slate-900); font-weight: 500; }

  .page-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -.025em;
    line-height: 1.1;
    margin-bottom: 8px;
  }
  .page-subtitle {
    font-size: var(--fs-md);
    color: var(--slate-600);
    line-height: 1.5;
    max-width: 540px;
  }

  .hero-stats {
    display: flex; align-items: center; flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 20px;
  }
  .hero-stat {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    font-size: var(--fs-base);
    color: var(--slate-700);
    box-shadow: var(--shadow-sm);
  }
  .hero-stat strong {
    color: var(--slate-900);
    font-weight: 700;
    font-feature-settings: 'tnum';
  }
  .hero-stat .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px var(--green-50);
  }
  .hero-stat svg {
    width: 13px; height: 13px;
    stroke: var(--slate-500); fill: none; stroke-width: 2;
    stroke-linecap: round; stroke-linejoin: round;
  }

  /* ============================================================
     LAYOUT (sidebar + main)
     ============================================================ */
  .layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 24px;
    margin: 24px 0 80px;
  }
  @media (max-width: 1024px) { .layout { grid-template-columns: 1fr; } }

  /* ============================================================
     FILTERS SIDEBAR (matches companies.html)
     ============================================================ */
  .filters {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    align-self: start;
    overflow: hidden;
  }
  .filters-head {
    display: flex; align-items: center;
    gap: 8px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--slate-100);
  }
  .filters-title {
    flex: 1; min-width: 0;
    font-size: var(--fs-base); font-weight: 700;
    color: var(--slate-900);
    display: flex; align-items: center; gap: 8px;
  }
  .filters-title svg {
    width: 14px; height: 14px;
    stroke: currentColor; fill: none; stroke-width: 2;
    color: var(--slate-600);
  }
  .filter-count-badge {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 20px; height: 20px; padding: 0 6px;
    background: var(--green); color: var(--white);
    border-radius: 999px;
    font-size: var(--fs-xs); font-weight: 700;
  }
  .clear-filters {
    background: transparent;
    border: none;
    font-size: var(--fs-xs); font-weight: 500;
    color: var(--slate-500);
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px 6px;
    border-radius: var(--radius-xs);
    transition: all .15s var(--ease);
  }
  .clear-filters:hover { background: var(--slate-100); color: var(--slate-900); }
  .clear-filters svg {
    width: 12px; height: 12px;
    stroke: currentColor; fill: none; stroke-width: 2;
  }

  .filter-group {
    padding: 16px 18px;
    border-bottom: 1px solid var(--slate-100);
  }
  .filter-group:last-child { border-bottom: none; }
  .filter-group-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 12px;
  }
  .filter-group-label {
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--slate-500);
    display: flex; align-items: center; gap: 6px;
  }

  /* Info tooltip on filter labels */
  .label-tip {
    position: relative;
    display: inline-flex; align-items: center;
    cursor: help;
    color: var(--slate-300);
    transition: color .15s var(--ease);
  }
  .label-tip:hover { color: var(--slate-600); }
  .label-tip svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }
  .label-tip::before {
    content: attr(data-tip);
    position: absolute;
    top: calc(100% + 8px);
    left: -8px;
    background: var(--slate-900);
    color: var(--white);
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    font-size: var(--fs-xs);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.45;
    white-space: normal;
    width: max-content;
    max-width: 220px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .15s var(--ease), visibility .15s var(--ease);
    z-index: 20;
    box-shadow: 0 8px 24px -6px rgba(0,0,0,.25);
  }
  .label-tip::after {
    content: '';
    position: absolute;
    top: calc(100% + 3px);
    left: 0;
    border: 5px solid transparent;
    border-bottom-color: var(--slate-900);
    opacity: 0;
    visibility: hidden;
    transition: opacity .15s var(--ease), visibility .15s var(--ease);
  }
  .label-tip:hover::before, .label-tip:hover::after {
    opacity: 1; visibility: visible;
  }

  /* Categories hierarchical navigation */
  .cat-back {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 10px;
    margin: 0 -8px 8px;
    border-radius: var(--radius-sm);
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--slate-600);
    transition: all .15s var(--ease);
    border: 1px dashed var(--slate-200);
  }
  .cat-back:hover {
    background: var(--slate-50);
    color: var(--slate-900);
    border-color: var(--slate-300);
    border-style: solid;
  }
  .cat-back svg {
    width: 13px; height: 13px;
    stroke: currentColor; fill: none; stroke-width: 2;
    stroke-linecap: round; stroke-linejoin: round;
    flex-shrink: 0;
    transition: transform .2s var(--ease);
  }
  .cat-back:hover svg { transform: translateX(-2px); }
  .cat-back .back-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--slate-400);
    line-height: 1;
    margin-bottom: 2px;
  }
  .cat-back .back-name { display: block; line-height: 1.2; }

  .cat-list {
    display: flex; flex-direction: column;
    gap: 1px;
    margin: 0 -8px;
  }
  .cat-item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    font-size: var(--fs-base);
    color: var(--slate-700);
    transition: all .15s var(--ease);
    position: relative;
  }
  .cat-item:hover {
    background: var(--slate-50);
    color: var(--slate-900);
  }
  .cat-item .cat-name { flex: 1; min-width: 0; }
  .cat-item .cat-count {
    font-size: var(--fs-xs);
    color: var(--slate-500);
    background: var(--slate-100);
    padding: 2px 7px;
    border-radius: 999px;
    font-feature-settings: 'tnum';
    font-weight: 500;
  }
  .cat-item .cat-arrow {
    width: 13px; height: 13px;
    stroke: var(--slate-400); fill: none; stroke-width: 2;
    stroke-linecap: round; stroke-linejoin: round;
    flex-shrink: 0;
    transition: transform .2s var(--ease);
    opacity: 0;
  }
  .cat-item:hover .cat-arrow { opacity: 1; transform: translateX(2px); }
  .cat-item.is-active {
    color: var(--green-dark);
    font-weight: 700;
  }

  /* Search input within sidebar */
  .filter-search-wrap {
    position: relative;
  }
  .filter-search-wrap input {
    width: 100%; height: 38px;
    padding: 0 36px 0 12px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    background: var(--slate-50);
    font-family: inherit; font-size: var(--fs-base);
    color: var(--slate-900);
    transition: all .15s var(--ease);
  }
  .filter-search-wrap input::placeholder { color: var(--slate-400); }
  .filter-search-wrap input:focus {
    outline: none; background: var(--white);
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(56,173,78,.12);
  }
  .filter-search-wrap svg {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    width: 14px; height: 14px;
    stroke: var(--slate-400); fill: none; stroke-width: 2;
    pointer-events: none;
  }

  /* Star rating filter */
  .star-filter {
    display: flex; flex-direction: column; gap: 6px;
  }
  .star-filter-row {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    cursor: pointer;
    transition: all .15s var(--ease);
  }
  .star-filter-row:hover { border-color: var(--slate-300); background: var(--slate-50); }
  .star-filter-row input { display: none; }
  .star-filter-row .stars { display: inline-flex; gap: 1px; }
  .star-filter-row .stars svg { width: 13px; height: 13px; fill: var(--amber-500); }
  .star-filter-row .stars svg.empty { fill: var(--slate-200); }
  .star-filter-row .label {
    font-size: var(--fs-xs);
    color: var(--slate-700);
    flex: 1;
  }
  .star-filter-row .count {
    font-size: var(--fs-xs);
    color: var(--slate-500);
    font-feature-settings: 'tnum';
  }
  .star-filter-row.is-active {
    border-color: var(--green);
    background: var(--green-50);
  }
  .star-filter-row.is-active .label { color: var(--green-dark); font-weight: 600; }

  /* Checkbox list */
  .check-list {
    display: flex; flex-direction: column;
    gap: 2px;
    margin: 0 -6px;
  }
  .check-item {
    display: flex; align-items: center; gap: 10px;
    padding: 7px 8px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background .15s var(--ease);
    user-select: none;
  }
  .check-item:hover { background: var(--slate-50); }
  .check-item input { display: none; }
  .check-box {
    width: 16px; height: 16px;
    border: 1.5px solid var(--slate-300);
    border-radius: var(--radius-xs);
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all .15s var(--ease);
  }
  .check-box svg {
    width: 10px; height: 10px;
    stroke: var(--white); fill: none; stroke-width: 3;
    stroke-linecap: round; stroke-linejoin: round;
    opacity: 0;
    transition: opacity .12s var(--ease);
  }
  .check-item input:checked + .check-box {
    background: var(--green);
    border-color: var(--green);
  }
  .check-item input:checked + .check-box svg { opacity: 1; }
  .check-item .check-label {
    font-size: var(--fs-base);
    color: var(--slate-700);
    flex: 1;
  }
  .check-item input:checked ~ .check-label { color: var(--slate-900); font-weight: 500; }
  .check-item .check-count {
    font-size: var(--fs-xs);
    color: var(--slate-500);
    font-feature-settings: 'tnum';
    background: var(--slate-100);
    padding: 2px 7px;
    border-radius: 999px;
  }

  /* ============================================================
     RESULTS TOOLBAR (matches companies.html)
     ============================================================ */
  .results-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }
  .results-count {
    font-size: var(--fs-base);
    color: var(--slate-600);
  }
  .results-count strong {
    color: var(--slate-900);
    font-weight: 700;
    font-feature-settings: 'tnum';
  }
  .toolbar-right {
    display: flex; align-items: center; gap: 8px;
    flex-wrap: wrap;
  }

  .sort-select {
    appearance: none;
    height: 36px;
    padding: 0 32px 0 14px;
    background: var(--white)
      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke="%2364748B" stroke-width="2.2" fill="none" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"/></svg>')
      no-repeat right 10px center / 12px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-family: inherit; font-size: var(--fs-base);
    color: var(--slate-700);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
  }
  .sort-select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(56,173,78,.15);
  }

  /* ============================================================
     FILTERS — MOBILE BOTTOM SHEET
     ============================================================ */
  .filters-trigger {
    display: none;
    align-items: center; justify-content: center; gap: 8px;
    height: 40px;
    padding: 0 16px;
    background: var(--slate-900);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: var(--fs-base); font-weight: 600;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    cursor: pointer;
    transition: background .15s var(--ease);
  }
  .filters-trigger:hover { background: var(--slate-800); }
  .filters-trigger svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .filters-trigger .trigger-count {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 20px; height: 20px;
    padding: 0 6px;
    background: var(--green); color: var(--white);
    border-radius: 999px;
    font-size: var(--fs-xs); font-weight: 700;
  }

  .filters-mobile-close {
    display: none;
    width: 36px; height: 36px;
    background: var(--slate-100); border: none;
    border-radius: 50%;
    color: var(--slate-700);
    align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .15s var(--ease);
  }
  .filters-mobile-close:hover { background: var(--slate-200); }
  .filters-mobile-close svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

  .filters-grab {
    display: none;
    width: 40px; height: 4px;
    background: var(--slate-300);
    border-radius: 999px;
    margin: 10px auto 6px;
  }

  .filters-mobile-foot {
    display: none;
    position: sticky; bottom: 0;
    background: var(--white);
    border-top: 1px solid var(--slate-100);
    padding: 12px 16px;
    gap: 8px;
  }
  .filters-apply-btn {
    flex: 1;
    height: 44px;
    background: var(--green);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: var(--fs-base); font-weight: 600;
    box-shadow: 0 4px 14px -2px rgba(56,173,78,.30);
    cursor: pointer;
    transition: background .15s var(--ease);
  }
  .filters-apply-btn:hover { background: var(--green-hover); }

  .filters-backdrop {
    position: fixed; inset: 0;
    background: rgba(15,23,42,.55);
    -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
    z-index: 999;
    opacity: 0; visibility: hidden;
    transition: opacity .3s var(--ease), visibility 0s linear .3s;
  }
  .filters-backdrop.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }

  @media (max-width: 1024px) {
    .filters {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      top: auto;
      width: 100%; max-width: none;
      max-height: 88vh;
      border-radius: 18px 18px 0 0;
      transform: translateY(100%);
      visibility: hidden;
      pointer-events: none;
      z-index: 1000;
      transition: transform .35s var(--ease-out), visibility 0s linear .35s;
      overflow-y: auto;
      overscroll-behavior: contain;
      box-shadow: 0 -20px 60px -10px rgba(15,23,42,.25);
      display: flex; flex-direction: column;
    }
    .filters.is-open {
      transform: translateY(0);
      visibility: visible;
      pointer-events: auto;
      transition: transform .35s var(--ease-out), visibility 0s linear 0s;
    }
    .filters-grab { display: block; }
    .filters-head {
      position: sticky; top: 0;
      background: var(--white); z-index: 5;
      padding: 14px 22px 16px;
    }
    .filters-mobile-close { display: inline-flex; }
    .filters-mobile-foot { display: flex; }
    .filters-trigger { display: inline-flex; }
    body.has-filters-open { overflow: hidden; }
    .results-toolbar { gap: 8px; flex-wrap: wrap; }
    .results-count { width: 100%; order: -1; }
    .toolbar-right { width: 100%; gap: 8px; }
    .toolbar-right .sort-select { flex: 1; min-width: 0; }
  }

  /* Active filter chips */
  .active-filters {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-bottom: 16px;
  }
  .active-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 6px 5px 10px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    font-size: var(--fs-xs); font-weight: 500;
    color: var(--slate-700);
    box-shadow: var(--shadow-sm);
  }
  .active-chip .chip-key {
    color: var(--slate-500);
    font-weight: 400;
  }
  .active-chip .chip-x {
    width: 18px; height: 18px;
    background: var(--slate-100);
    border: none; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--slate-500);
    transition: all .15s var(--ease);
    cursor: pointer;
  }
  .active-chip .chip-x:hover { background: var(--slate-900); color: var(--white); }
  .active-chip .chip-x svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2.5; }

  /* ============================================================
     PRODUCT CARD GRID
     ============================================================ */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  @media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
  /* Keep 2 columns on phones too — 1-col made the square thumbnails huge. */
  @media (max-width: 600px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }

  .product-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: all .2s var(--ease);
    text-decoration: none;
    color: inherit;
  }
  .product-card:hover {
    border-color: var(--green-200);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
  }

  .pc-image {
    aspect-ratio: 1 / 1;
    background: var(--slate-100);
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    margin: 12px 12px 0;
  }
  .pc-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .35s var(--ease-out);
  }
  .product-card:hover .pc-image img { transform: scale(1.05); }
  .pc-cat-badge {
    position: absolute;
    top: 10px; left: 10px;
    padding: 4px 10px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    color: var(--slate-700);
    text-transform: uppercase;
    letter-spacing: .04em;
  }

  .pc-body {
    padding: 16px 18px 14px;
    display: flex; flex-direction: column; gap: 8px;
    flex: 1;
  }
  .pc-title {
    font-size: var(--fs-lg); font-weight: 700;
    color: var(--slate-900);
    line-height: 1.35;
    letter-spacing: -.005em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .product-card:hover .pc-title { color: var(--green-dark); }

  .pc-excerpt {
    font-size: var(--fs-base);
    color: var(--slate-600);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Meta row: stars + numeric rating | review count */
  .pc-meta-row {
    display: flex; align-items: center; gap: 8px;
    flex-wrap: wrap;
    font-size: var(--fs-base);
    color: var(--slate-500);
    margin-top: auto;
    padding-top: 6px;
  }
  .pc-rating-stars {
    display: inline-flex; gap: 1px;
  }
  .pc-rating-stars svg {
    width: 14px; height: 14px;
    fill: var(--amber-400);
  }
  .pc-rating-stars svg.is-empty { fill: var(--slate-200); }
  .pc-rating-num {
    font-weight: 700;
    color: var(--slate-900);
    font-feature-settings: 'tnum';
  }
  .pc-meta-divider {
    color: var(--slate-300);
    font-weight: 500;
  }
  .pc-review-count {
    color: var(--slate-500);
  }

  /* ============================================================
     PRODUCT CARD FOOTER — VENDOR STACK
     ============================================================ */
  .pc-foot {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 18px;
    background: var(--slate-50);
    border-top: 1px solid var(--slate-100);
  }
  .pc-foot-label {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: .04em;
  }

  /* Vendor stack — 1, multiple, or +overflow */
  .vendor-stack {
    display: inline-flex; align-items: center;
  }
  .vendor-avatar {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: var(--white);
    margin-left: -6px;
    overflow: hidden;
    position: relative;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 0 0 1px rgba(15,23,42,.06);
    cursor: pointer;
    transition: transform .15s var(--ease);
    z-index: 1;
    flex-shrink: 0;
  }
  .vendor-stack > .vendor-avatar:first-child { margin-left: 0; }
  .vendor-avatar:hover {
    transform: translateY(-2px);
    z-index: 5;
  }
  .vendor-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .vendor-avatar.is-overflow {
    background: var(--green);
    color: var(--white);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: .02em;
    border-color: var(--white);
  }

  /* Tooltip on vendor avatar (hover) */
  .vendor-avatar::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(2px);
    background: var(--slate-900);
    color: var(--white);
    font-size: var(--fs-xs);
    font-weight: 600;
    padding: 5px 9px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity .15s var(--ease), transform .15s var(--ease);
    z-index: 100;
    box-shadow: 0 4px 12px -2px rgba(15,23,42,.20);
  }
  .vendor-avatar::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(2px);
    border: 4px solid transparent;
    border-top-color: var(--slate-900);
    pointer-events: none;
    opacity: 0;
    transition: opacity .15s var(--ease), transform .15s var(--ease);
    z-index: 100;
  }
  .vendor-avatar:hover::after,
  .vendor-avatar:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  .vendor-avatar[data-tooltip=""] ::after,
  .vendor-avatar[data-tooltip=""] ::before { display: none; }

  /* ============================================================
     PAGINATION
     ============================================================ */
  .pagination {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 28px; padding: 18px 0;
    border-top: 1px solid var(--slate-200);
    flex-wrap: wrap; gap: 12px;
  }
  .pagination-info { font-size: var(--fs-base); color: var(--slate-600); }
  .pagination-info b { color: var(--slate-900); font-weight: 700; }
  .pager { display: flex; gap: 4px; }
  .pager-btn {
    height: 36px; min-width: 36px; padding: 0 12px;
    background: var(--white); border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-family: inherit; font-size: var(--fs-base); color: var(--slate-700);
    cursor: pointer;
    transition: all .15s var(--ease);
    display: inline-flex; align-items: center; gap: 4px;
  }
  .pager-btn:hover:not(:disabled) {
    border-color: var(--slate-300);
    color: var(--slate-900);
  }
  .pager-btn:disabled { opacity: .5; cursor: not-allowed; }
  .pager-btn.is-active {
    background: var(--slate-900);
    border-color: var(--slate-900);
    color: var(--white);
  }
  .pager-btn svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  /* ============================================================
     MOBILE — comprehensive padding/gap pass
     ============================================================
     Same rhythm as the other archive pages. The grid already collapses
     to 1 column at 600px; this block tightens the surrounding chrome. */
  @media (max-width: 600px) {
    .container { padding: 0 16px; }
    .page-hero { padding: 28px 16px 24px; }
    .page-title { font-size: 26px; }
    .page-subtitle { font-size: var(--fs-base); }
    .hero-stats { gap: 14px; flex-wrap: wrap; }

    .results-toolbar { padding: 12px 0; gap: 8px; }
    .results-count { font-size: var(--fs-base); }
    .toolbar-right { gap: 8px; }
    .sort-select { height: 36px; font-size: var(--fs-xs); }
    .filters-trigger { height: 36px; padding: 0 12px; font-size: var(--fs-xs); }

    .active-filters { gap: 6px; padding: 8px 0; }
    .active-chip { font-size: var(--fs-xs); padding: 4px 8px; }

    /* 2-column compact cards on phones (was 1 col — thumbnails were huge). */
    .product-grid { gap: 10px; }
    .pc-image { margin: 8px 8px 0; border-radius: 10px; }
    .pc-cat-badge { font-size: 9px; padding: 3px 7px; }
    .pc-body { padding: 10px 11px 11px; gap: 5px; }
    .pc-title { font-size: var(--fs-base); -webkit-line-clamp: 2; }
    .pc-excerpt { display: none; }
    .pc-meta-row { font-size: var(--fs-xs); gap: 5px; padding-top: 4px; }
    .pc-rating-stars svg { width: 12px; height: 12px; }
    .pc-foot { padding: 8px 11px; }
    .pc-foot-label { font-size: 9px; }
    .vendor-avatar { width: 26px; height: 26px; }

    .pager { gap: 4px; padding: 18px 0 8px; }
    .pager-btn { height: 32px; min-width: 32px; padding: 0 10px; font-size: var(--fs-xs); }
  }
  /* Legacy site-footer / footer-grid block removed — same reason as in
     public.css and public-company.css. The shared footer in
     assets/css/footer.css is the single source of truth; these overrides
     were tinting the bg with var(--slate-900) and clobbering the layout. */

