/* =========================================================
   ZERRA CLOUD - assets/css/index-enhance.css
   Upgrade index: dark mode, toolbar pricelist, badge,
   compare, why-us, FAQ, floating chat, scroll progress.
   Dibuat additive — tidak menimpa logika style.css lama.
   ========================================================= */

/* ---------------------------------------------------------
   DARK MODE — override CSS variable + permukaan hardcoded
   --------------------------------------------------------- */
html[data-theme="dark"] {
  --bg:         #0b0f1a;
  --surface:    #131a2b;
  --border:     #25304a;
  --text:       #e8ecf6;
  --text-muted: #9aa6c0;
  --accent:     #3b82f6;
  --accent-dk:  #2563eb;
  --accent-lt:  #16233f;
  --success:    #34d399;
  --warning:    #fbbf24;
  --danger:     #f87171;
  --shadow:     0 2px 10px rgba(0,0,0,.4);
  --shadow-md:  0 6px 24px rgba(0,0,0,.5);
}
html[data-theme="dark"] body { background: var(--bg); color: var(--text); }

/* Navbar putih hardcoded → gelap */
html[data-theme="dark"] #navbar {
  background: rgba(15,20,33,.92);
  border-bottom-color: var(--border);
}
html[data-theme="dark"] .logo { color: var(--text); }

/* Badge stok yang warnanya hardcoded terang */
html[data-theme="dark"] .price-stock.slot-ok    { background: rgba(52,211,153,.12); color: #34d399; }
html[data-theme="dark"] .price-stock.slot-warn  { background: rgba(251,191,36,.12);  color: #fbbf24; }
html[data-theme="dark"] .price-stock.slot-empty { background: rgba(248,113,113,.12); color: #f87171; }

/* Skeleton shimmer agar tetap kelihatan di gelap */
html[data-theme="dark"] .skeleton-card {
  background: linear-gradient(90deg, #131a2b 25%, #1b2440 37%, #131a2b 63%);
  background-size: 400% 100%;
}

/* Btn outline & ghost di gelap */
html[data-theme="dark"] .btn-ghost { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); }

/* Transisi halus saat ganti tema */
body, #navbar, .price-card, .testimoni-card, .surface,
.faq-item, .pl-toolbar, .price-card { transition: background .25s ease, color .25s ease, border-color .25s ease; }

/* ---------------------------------------------------------
   SCROLL PROGRESS BAR
   --------------------------------------------------------- */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--accent), #22d3ee);
  z-index: 200; transition: width .1s linear;
  box-shadow: 0 0 8px rgba(26,109,255,.6);
}

/* ---------------------------------------------------------
   THEME TOGGLE (di navbar)
   --------------------------------------------------------- */
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent-lt); color: var(--accent);
  border: 1px solid var(--border); cursor: pointer;
  font-size: 13px; transition: all .2s ease; flex-shrink: 0;
}
.theme-toggle:hover { transform: rotate(20deg) scale(1.08); }
.theme-toggle:active { transform: scale(.92); }

/* ---------------------------------------------------------
   PRICELIST TOOLBAR — search, sort, filter RAM
   --------------------------------------------------------- */
.pl-toolbar {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  justify-content: center; margin: 0 auto 20px;
  max-width: 760px;
}
.pl-search {
  position: relative; flex: 1 1 240px; min-width: 200px;
}
.pl-search i {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); font-size: 12px; pointer-events: none;
}
.pl-search input {
  width: 100%; padding: 9px 14px 9px 32px;
  border: 1px solid var(--border); border-radius: 100px;
  background: var(--surface); color: var(--text);
  font-family: var(--font-body); font-size: 12px; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.pl-search input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-lt); }
.pl-select {
  position: relative; display: inline-flex; align-items: center;
}
.pl-select select {
  appearance: none; -webkit-appearance: none;
  padding: 9px 30px 9px 14px;
  border: 1px solid var(--border); border-radius: 100px;
  background: var(--surface); color: var(--text);
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  cursor: pointer; outline: none; transition: border-color .2s;
}
.pl-select select:focus { border-color: var(--accent); }
.pl-select::after {
  content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; right: 12px; font-size: 10px; color: var(--text-muted);
  pointer-events: none;
}
.pl-result-count {
  width: 100%; text-align: center; font-size: 11px; color: var(--text-muted);
  margin: -6px 0 14px;
}

/* ---------------------------------------------------------
   BADGE PADA KARTU PRICELIST — Paling Laris & Hemat
   --------------------------------------------------------- */
.price-card { position: relative; }
.pop-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 12px; border-radius: 100px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff; font-size: 9px; font-weight: 700; letter-spacing: .4px;
  text-transform: uppercase; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(245,158,11,.4); z-index: 3;
}
.featured-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 12px; border-radius: 100px;
  background: linear-gradient(135deg, var(--accent), #06b6d4);
  color: #fff; font-size: 9px; font-weight: 700; letter-spacing: .4px;
  text-transform: uppercase; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(26,109,255,.4); z-index: 3;
}
.price-card.is-popular { border-color: #f59e0b; box-shadow: 0 4px 20px rgba(245,158,11,.18); }
.price-card.is-featured { border-color: var(--accent); }

.save-badge {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 9px; font-weight: 700; color: var(--success);
  background: rgba(16,185,129,.1); padding: 1px 6px; border-radius: 100px;
  margin-left: 6px; white-space: nowrap;
}
html[data-theme="dark"] .save-badge { background: rgba(52,211,153,.14); }

/* Compare checkbox di kartu */
.cmp-check {
  display: flex; align-items: center; gap: 6px; justify-content: center;
  margin-top: 10px; font-size: 10px; color: var(--text-muted);
  cursor: pointer; user-select: none;
}
.cmp-check input { width: 14px; height: 14px; accent-color: var(--accent); cursor: pointer; }

/* ---------------------------------------------------------
   COMPARE TRAY + MODAL
   --------------------------------------------------------- */
.cmp-tray {
  position: fixed; left: 50%; bottom: -120px; transform: translateX(-50%);
  width: calc(100% - 24px); max-width: 720px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; box-shadow: 0 -6px 30px rgba(0,0,0,.18);
  padding: 12px 16px; z-index: 150;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  transition: bottom .35s cubic-bezier(.2,.8,.2,1);
}
.cmp-tray.show { bottom: 16px; }
.cmp-tray-label { font-size: 11px; font-weight: 700; color: var(--text); }
.cmp-tray-chips { display: flex; gap: 6px; flex: 1; flex-wrap: wrap; }
.cmp-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--accent-lt); color: var(--accent);
  padding: 4px 10px; border-radius: 100px; font-size: 10px; font-weight: 600;
}
.cmp-chip button { background: none; border: none; color: inherit; cursor: pointer; font-size: 11px; line-height: 1; }
.cmp-tray-actions { display: flex; gap: 8px; }

.cmp-overlay {
  position: fixed; inset: 0; background: rgba(8,13,26,.6);
  backdrop-filter: blur(4px); z-index: 250;
  display: none; align-items: center; justify-content: center; padding: 16px;
}
.cmp-overlay.show { display: flex; }
.cmp-box {
  background: var(--surface); border-radius: 16px; width: 100%;
  max-width: 680px; max-height: 86vh; overflow: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.4); animation: bannerIn .3s ease;
}
.cmp-box-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--surface); z-index: 2;
}
.cmp-box-head h3 { font-size: 1rem; }
.cmp-box-close { background: none; border: none; font-size: 18px; cursor: pointer; color: var(--text-muted); }
.cmp-table { width: 100%; border-collapse: collapse; }
.cmp-table th, .cmp-table td {
  padding: 11px 12px; text-align: center; font-size: 12px;
  border-bottom: 1px solid var(--border);
}
.cmp-table th { background: var(--accent-lt); color: var(--text); font-weight: 700; }
.cmp-table td:first-child, .cmp-table th:first-child {
  text-align: left; font-weight: 600; color: var(--text-muted);
  position: sticky; left: 0; background: var(--surface);
}
.cmp-table th:first-child { background: var(--accent-lt); }
.cmp-best { color: var(--success); font-weight: 700; }
.cmp-price-cell { color: var(--accent); font-weight: 700; }

/* ---------------------------------------------------------
   FAQ SECTION (accordion)
   --------------------------------------------------------- */
.faq-section { padding: 52px 0; background: var(--bg); }
.faq-wrap { max-width: 720px; margin: 8px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 15px 18px; cursor: pointer; font-weight: 600;
  font-size: 13px; color: var(--text); font-family: var(--font-head);
}
.faq-q .faq-ic { color: var(--accent); transition: transform .25s ease; flex-shrink: 0; }
.faq-item.open .faq-q .faq-ic { transform: rotate(180deg); }
/* Animasi buka/tutup mulus dengan grid-template-rows (tanpa lag max-height) */
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s cubic-bezier(.4, 0, .2, 1);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-in {
  overflow: hidden;
  padding: 0 18px;
  font-size: 12px; color: var(--text-muted); line-height: 1.7;
  transition: padding .32s cubic-bezier(.4, 0, .2, 1);
}
.faq-item.open .faq-a-in { padding: 2px 18px 16px; }

/* ---------------------------------------------------------
   FLOATING CHAT BUTTON
   --------------------------------------------------------- */
.float-chat { position: fixed; right: 18px; bottom: 18px; z-index: 160; }
.float-chat-btn {
  width: 54px; height: 54px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent-dk));
  color: #fff; font-size: 22px; box-shadow: 0 8px 24px rgba(26,109,255,.45);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease;
}
.float-chat-btn:hover { transform: scale(1.08); }
.float-chat-btn.active { transform: rotate(90deg); }
.float-menu {
  position: absolute; right: 0; bottom: 66px;
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
}
.float-menu.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.float-link {
  display: flex; align-items: center; gap: 9px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); padding: 9px 15px 9px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 600; white-space: nowrap;
  box-shadow: var(--shadow); transition: transform .15s ease;
}
.float-link:hover { transform: translateX(-3px); }
.float-link i { font-size: 16px; }
.float-link.tg i { color: #0088cc; }
.float-link.wa i { color: #25d366; }

/* ---------------------------------------------------------
   REVEAL animation untuk section baru
   --------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */
@media (max-width: 600px) {
  .pl-toolbar { gap: 8px; }
  .pl-search { flex: 1 1 100%; }
  .cmp-tray { padding: 10px 12px; gap: 8px; }
  .cmp-tray-label { width: 100%; }
  .float-chat { right: 14px; bottom: 14px; }
}

/* =========================================================
   KATALOG DETAIL (kartu produk lebih lengkap) + RESPONSIF
   ========================================================= */

/* Tab kategori dengan label rapi */
.cat-tab { display: inline-flex; flex-direction: column; align-items: center; line-height: 1.15; gap: 1px; }
.cat-tab-main { font-weight: 700; }
.cat-tab-sub  { font-size: 8px; font-weight: 600; opacity: .7; letter-spacing: .3px; }

/* Header kartu: brand + nomor paket */
.pc-brandline { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-bottom: 4px; }
.pc-brand {
  font-size: 9px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase;
  color: var(--accent); background: var(--accent-lt);
  padding: 2px 8px; border-radius: 100px;
}
.pc-paket {
  font-size: 8px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase;
  color: var(--text-muted); border: 1px solid var(--border);
  padding: 2px 7px; border-radius: 100px;
}
.pc-desc { font-size: 10.5px; color: var(--text-muted); line-height: 1.5; margin-top: 4px; }

/* Spesifikasi dalam grid jelas berlabel */
.pc-specgrid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin: 12px 0; padding: 10px; border-radius: 10px;
  background: var(--accent-lt);
}
.pc-spec { display: flex; align-items: center; gap: 7px; min-width: 0; }
.pc-spec > i { color: var(--accent); font-size: 13px; width: 14px; text-align: center; flex-shrink: 0; }
.pc-spec > div { display: flex; flex-direction: column; min-width: 0; }
.pc-spec-lbl { font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; color: var(--text-muted); }
.pc-spec-val { font-size: 11px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Daftar info tersusun rapi (ikon + label + nilai) — menggantikan chip mengambang */
.pc-infolist {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 12px; padding: 10px 12px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
}
.pc-inforow {
  display: grid; grid-template-columns: 15px 62px minmax(0, 1fr); align-items: start; gap: 8px;
  font-size: 10.5px; line-height: 1.45;
}
.pc-inforow > i { color: var(--accent); font-size: 11px; margin-top: 1px; text-align: center; }
.pc-info-k { color: var(--text-muted); font-weight: 600; }
.pc-info-v { color: var(--text); font-weight: 600; min-width: 0; white-space: normal; word-break: break-word; overflow-wrap: anywhere; }
.pc-inforow.row-ok .pc-info-v,
.pc-inforow.row-ok > i { color: #059669; }
.pc-inforow.row-no .pc-info-v,
.pc-inforow.row-no > i { color: #dc2626; }
html[data-theme="dark"] .pc-inforow.row-ok .pc-info-v,
html[data-theme="dark"] .pc-inforow.row-ok > i { color: #34d399; }
html[data-theme="dark"] .pc-inforow.row-no .pc-info-v,
html[data-theme="dark"] .pc-inforow.row-no > i { color: #f87171; }

.price-row-na { opacity: .6; }

/* --- KATALOG SWIPE HORIZONTAL (list ke samping, bukan ke bawah) --- */
.pl-scroll-wrap { position: relative; }
.pricelist .pricelist-grid {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto;
  overflow-y: visible;
  gap: 14px;
  padding: 8px 2px 14px;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  justify-content: flex-start !important;
}
.pricelist .pricelist-grid > .price-card,
.pricelist .pricelist-grid > .skeleton-card {
  flex: 0 0 286px !important;
  width: 286px !important;
  max-width: 286px !important;
  scroll-snap-align: start;
  scroll-margin-left: 2px;
}
.pricelist .pricelist-grid::-webkit-scrollbar { height: 8px; }
.pricelist .pricelist-grid::-webkit-scrollbar-track { background: transparent; }
.pricelist .pricelist-grid::-webkit-scrollbar-thumb { background: var(--border); border-radius: 100px; }
.pricelist .pricelist-grid::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* Tombol panah geser (desktop/tablet) */
.pl-arrow {
  position: absolute; top: calc(50% - 8px); transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-md); color: var(--text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 6; transition: background .15s, color .15s, opacity .2s; font-size: 15px;
}
.pl-arrow:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.pl-arrow.prev { left: -14px; }
.pl-arrow.next { right: -14px; }
.pl-arrow.hide { opacity: 0; pointer-events: none; }
/* Hint geser */
.pl-swipe-hint {
  text-align: center; font-size: 11px; color: var(--text-muted);
  margin: 2px 0 0; display: flex; align-items: center; justify-content: center; gap: 6px;
}
.pl-swipe-hint i { animation: plSwipe 1.6s ease-in-out infinite; }
@keyframes plSwipe { 0%,100%{transform:translateX(0)} 50%{transform:translateX(5px)} }

/* Tablet */
@media (max-width: 900px) {
  .pricelist .pricelist-grid > .price-card { flex-basis: 270px !important; width: 270px !important; }
}
/* Mobile: kartu lebih sempit, tetap swipe ke samping, panah disembunyikan */
@media (max-width: 768px) {
  .pl-arrow { display: none; }
}
@media (max-width: 640px) {
  .pricelist .pricelist-grid > .price-card,
  .pricelist .pricelist-grid > .skeleton-card {
    flex-basis: 82vw !important; width: 82vw !important; max-width: 320px !important;
  }
  .pc-specgrid { grid-template-columns: repeat(3, 1fr); }
  .price-card.pc-rich { padding: 13px; }
  .cat-tab-sub { display: none; }
}
@media (max-width: 380px) {
  .pricelist .pricelist-grid > .price-card { flex-basis: 86vw !important; width: 86vw !important; }
}
/* Tabel perbandingan bisa discroll di layar sempit */
.cmp-box { max-width: 720px; }
#cmpBody { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp-table { min-width: 420px; }

/* ============================================================
   UPDATE 1 — Card katalog lebih kecil & ringkas (semua device)
   Override final: ditaruh di akhir agar menang atas aturan di atas.
   ============================================================ */
.pricelist .pricelist-grid { gap: 11px; }
.pricelist .pricelist-grid > .price-card,
.pricelist .pricelist-grid > .skeleton-card {
  flex: 0 0 244px !important;
  width: 244px !important;
  max-width: 244px !important;
}
.price-card.pc-rich { padding: 13px !important; }
.pc-specgrid { margin: 9px 0 !important; padding: 8px !important; gap: 6px !important; }
.pc-spec > i { font-size: 12px; }
.pc-spec-val { font-size: 10.5px; }
.pc-infolist { gap: 5px; margin-bottom: 9px; padding: 8px 10px; }
.pc-inforow { font-size: 10px; }
.pc-desc { font-size: 10px; margin-top: 3px; }
.price-card .pc-brand { font-size: 8.5px; padding: 2px 7px; }

/* Tablet */
@media (max-width: 900px) {
  .pricelist .pricelist-grid > .price-card {
    flex-basis: 232px !important; width: 232px !important; max-width: 232px !important;
  }
}
/* Mobile sedang */
@media (max-width: 640px) {
  .pricelist .pricelist-grid > .price-card,
  .pricelist .pricelist-grid > .skeleton-card {
    flex-basis: 74vw !important; width: 74vw !important; max-width: 280px !important;
  }
  .price-card.pc-rich { padding: 12px !important; }
}
/* Mobile kecil (iOS/Android sempit) */
@media (max-width: 380px) {
  .pricelist .pricelist-grid > .price-card {
    flex-basis: 80vw !important; width: 80vw !important; max-width: 280px !important;
  }
}

/* ===========================================================
   UPDATE: label pemilih kategori + filter bintang testimoni
   =========================================================== */

/* Label "Pilih server/kategori" agar user baru paham */
.cat-picker-label {
  display: flex; align-items: center; gap: 10px;
  max-width: 760px; margin: 4px auto 14px;
  padding: 11px 16px;
  background: var(--accent-lt);
  border: 1px dashed var(--accent);
  border-radius: var(--radius-lg);
  color: var(--text);
  font-size: 13px; line-height: 1.5;
}
.cat-picker-label i { color: var(--accent); font-size: 15px; flex-shrink: 0; }
.cat-picker-label b { color: var(--accent); font-weight: 700; }

/* Pertegas tampilan tab kategori agar terlihat "bisa diklik" */
#categoryTabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 22px; }
#categoryTabs .cat-tab {
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  padding: 10px 18px; min-width: 120px;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); cursor: pointer;
  transition: border-color .2s, background .2s, transform .12s, box-shadow .2s;
}
#categoryTabs .cat-tab:hover { border-color: var(--accent); transform: translateY(-1px); box-shadow: var(--shadow-md); }
#categoryTabs .cat-tab.active { border-color: var(--accent); background: var(--accent-lt); }
#categoryTabs .cat-tab-main { font-weight: 700; font-size: 13px; color: var(--text); font-family: var(--font-head); }
#categoryTabs .cat-tab.active .cat-tab-main { color: var(--accent); }
#categoryTabs .cat-tab-sub { font-size: 10px; color: var(--text-muted); letter-spacing: .3px; }

/* Filter bintang testimoni 1-5 */
.testi-star-filter {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  margin: 6px auto 20px;
}
.testi-star-filter .tsf-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 14px;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 100px; cursor: pointer;
  font-size: 12px; font-weight: 600; color: var(--text);
  transition: border-color .2s, background .2s, color .2s, transform .12s;
}
.testi-star-filter .tsf-btn i { color: #f5a623; font-size: 11px; }
.testi-star-filter .tsf-btn:hover { border-color: var(--accent); transform: translateY(-1px); }
.testi-star-filter .tsf-btn.active { border-color: var(--accent); background: var(--accent); color: #fff; }
.testi-star-filter .tsf-btn.active i { color: #fff; }
.testi-star-filter .tsf-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--accent-lt); color: var(--accent);
  border-radius: 100px; font-size: 10px; font-weight: 700;
}
.testi-star-filter .tsf-btn.active .tsf-count { background: rgba(255,255,255,.25); color: #fff; }
