/* ============================================================
   Barbaro CMS Pages — stile unificato per tutte le pagine CMS
   File: /shop/themes/classic/assets/css/bb-pages.css
   Carica automaticamente bbjsonld v1.0.7+ su qualsiasi pagina CMS
   Mobile-first: media queries per <600px e <380px
   ============================================================ */

/* ---------- Variables (CSS custom properties) ---------- */
.bb-faq, .bb-page {
  --bb-primary: #0a3d62;
  --bb-primary-dark: #062a45;
  --bb-accent: #b8232b;
  --bb-accent-dark: #8a1a20;
  --bb-cream: #f7f4ee;
  --bb-cream-dark: #d4cfc4;
  --bb-ink: #1a1a1a;
  --bb-muted: #555;
  --bb-border: #e5e7eb;
  --bb-success: #25d366;
  --bb-success-dark: #1da855;
  --bb-radius: 10px;
  --bb-radius-sm: 6px;
}

/* ---------- Container base ---------- */
.bb-faq, .bb-page {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--bb-ink);
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 8px;
  box-sizing: border-box;
  line-height: 1.6;
}

/* ---------- Heading + intro ---------- */
.bb-faq h1, .bb-page h1 {
  font-size: clamp(1.4rem, 4vw + 0.4rem, 2rem);
  font-weight: 700;
  color: var(--bb-primary);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.2;
}

.bb-faq .bb-intro, .bb-page .bb-intro {
  font-size: clamp(0.95rem, 2vw + 0.3rem, 1.05rem);
  color: #444;
  margin-bottom: 24px;
}

.bb-faq .bb-intro a, .bb-page .bb-intro a,
.bb-qa-answer a, .bb-useful-links a, .bb-page p a {
  color: var(--bb-accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed var(--bb-accent);
  word-break: break-word;
}

.bb-faq .bb-intro a:hover, .bb-page .bb-intro a:hover,
.bb-qa-answer a:hover, .bb-useful-links a:hover, .bb-page p a:hover {
  color: var(--bb-accent-dark);
}

/* ---------- Table of contents (anchor links) ---------- */
.bb-toc {
  background: var(--bb-cream);
  border-left: 4px solid var(--bb-primary);
  padding: 14px 18px;
  border-radius: var(--bb-radius-sm);
  margin-bottom: 28px;
}

.bb-toc-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--bb-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.bb-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.bb-toc a {
  color: var(--bb-primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  border-bottom: 0 !important;
  font-size: 0.95rem;
}

.bb-toc a:hover {
  color: var(--bb-accent);
}

/* ---------- Section card (used for FAQ sections and page cards) ---------- */
.bb-section, .bb-card {
  background: #fff;
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius);
  padding: 22px 24px;
  margin-bottom: 22px;
  box-shadow: 0 1px 3px rgba(10, 61, 98, 0.04);
}

.bb-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}

.bb-section-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bb-primary);
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.bb-section h2, .bb-card h2 {
  font-size: clamp(1.1rem, 3vw + 0.3rem, 1.4rem);
  font-weight: 700;
  color: var(--bb-primary);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.bb-section h3, .bb-card h3, .bb-page h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bb-primary);
  margin: 18px 0 8px;
}

.bb-section p, .bb-card p, .bb-page p {
  margin: 0 0 12px;
}

.bb-section p:last-child, .bb-card p:last-child {
  margin-bottom: 0;
}

/* ---------- Q&A (FAQ) ---------- */
.bb-qa {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.bb-qa:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.bb-qa-question {
  font-weight: 700;
  color: var(--bb-primary);
  font-size: clamp(0.95rem, 2vw + 0.2rem, 1.05rem);
  margin: 0 0 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.bb-qa-question::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bb-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.bb-qa-answer {
  color: #333;
  margin: 0;
  padding-left: 30px;
}

.bb-qa-answer strong, .bb-page strong, .bb-card strong {
  color: var(--bb-primary);
}

/* ---------- Badges (payment methods, brands, etc.) ---------- */
.bb-payment-badges, .bb-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin-top: 10px;
  padding-left: 30px;
}

.bb-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bb-cream);
  border: 1px solid var(--bb-cream-dark);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--bb-primary);
  white-space: nowrap;
}

/* ---------- Stat counters (per Chi siamo / Numeri) ---------- */
.bb-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.bb-stat {
  background: var(--bb-cream);
  border-radius: var(--bb-radius-sm);
  padding: 18px 14px;
  text-align: center;
  border: 1px solid var(--bb-cream-dark);
}

.bb-stat-number {
  font-size: clamp(1.5rem, 5vw + 0.5rem, 2.2rem);
  font-weight: 700;
  color: var(--bb-accent);
  line-height: 1;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.bb-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bb-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

/* ---------- Highlight box (info importante) ---------- */
.bb-info-box {
  background: #fff8e1;
  border-left: 4px solid #d97706;
  padding: 14px 18px;
  border-radius: var(--bb-radius-sm);
  margin: 18px 0;
  font-size: 0.95rem;
}

.bb-info-box strong {
  color: #b45309;
}

/* ---------- Contact rows (Chi siamo, Contatti) ---------- */
.bb-contact-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

@media (min-width: 600px) {
  .bb-contact-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bb-contact-list li {
  background: #fff;
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-sm);
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.bb-contact-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.bb-contact-text {
  font-size: 0.95rem;
  line-height: 1.4;
  word-break: break-word;
}

.bb-contact-text strong {
  display: block;
  color: var(--bb-primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.bb-contact-text a {
  color: var(--bb-accent);
  text-decoration: none;
  border-bottom: 1px dashed var(--bb-accent);
  font-weight: 600;
}

/* ---------- Timeline (Chi siamo) ---------- */
.bb-timeline {
  position: relative;
  padding-left: 28px;
  margin: 20px 0;
  border-left: 3px solid var(--bb-cream-dark);
}

.bb-timeline-item {
  position: relative;
  padding: 0 0 18px 8px;
}

.bb-timeline-item:last-child {
  padding-bottom: 0;
}

.bb-timeline-item::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bb-accent);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--bb-cream-dark);
}

.bb-timeline-year {
  display: inline-block;
  background: var(--bb-primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 12px;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.bb-timeline-text {
  font-size: 0.95rem;
  color: #333;
  margin: 0;
}

/* ---------- CTA buttons box ---------- */
.bb-cta {
  background: linear-gradient(135deg, var(--bb-primary) 0%, var(--bb-primary-dark) 100%);
  color: #fff;
  padding: 22px 22px;
  border-radius: var(--bb-radius);
  text-align: center;
  margin: 26px 0 18px;
}

.bb-cta-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
}

.bb-cta-text {
  color: #fff;
  font-size: 0.92rem;
  margin: 0 0 14px;
  opacity: 0.92;
}

.bb-cta a, .bb-button {
  display: inline-block;
  background: var(--bb-accent);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--bb-radius-sm);
  font-weight: 700;
  text-decoration: none !important;
  border: 0 !important;
  margin: 4px 5px;
  font-size: 0.95rem;
  transition: background .15s ease, transform .05s ease;
}

.bb-cta a:hover, .bb-button:hover {
  background: var(--bb-accent-dark);
  color: #fff !important;
}

.bb-cta a:active, .bb-button:active {
  transform: translateY(1px);
}

.bb-cta a.bb-whatsapp, .bb-button.bb-whatsapp {
  background: var(--bb-success);
}

.bb-cta a.bb-whatsapp:hover, .bb-button.bb-whatsapp:hover {
  background: var(--bb-success-dark);
}

/* ---------- Legal / fine pagina ---------- */
.bb-legal {
  background: #f7f7f5;
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-sm);
  padding: 16px 20px;
  font-size: 0.82rem;
  color: var(--bb-muted);
  margin-top: 26px;
  line-height: 1.55;
}

.bb-legal h3 {
  font-size: 0.95rem;
  color: var(--bb-primary);
  margin: 0 0 8px;
}

/* ---------- Link utili ---------- */
.bb-useful-links {
  background: var(--bb-cream);
  border-radius: var(--bb-radius-sm);
  padding: 16px 20px;
  margin-top: 20px;
}

.bb-useful-links h3 {
  font-size: 0.85rem;
  color: var(--bb-primary);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.bb-useful-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}

.bb-useful-links a {
  color: var(--bb-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 0;
}

.bb-useful-links a:hover {
  color: var(--bb-accent);
}

/* ============================================================
   MOBILE RESPONSIVE (≤600px)
   ============================================================ */
@media (max-width: 600px) {
  .bb-faq, .bb-page {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .bb-section, .bb-card {
    padding: 16px 16px;
  }

  .bb-section-header {
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .bb-section-icon {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .bb-qa {
    padding: 10px 0;
  }

  .bb-qa-answer {
    padding-left: 30px;
  }

  .bb-payment-badges, .bb-badges {
    padding-left: 30px;
  }

  .bb-cta {
    padding: 18px 16px;
  }

  .bb-cta a, .bb-button {
    display: block;
    margin: 6px 0;
    padding: 12px 18px;
  }

  .bb-legal, .bb-useful-links {
    padding: 14px 16px;
  }

  .bb-toc ul {
    flex-direction: column;
    gap: 6px;
  }

  .bb-toc a {
    padding: 6px 0;
    border-bottom: 1px solid var(--bb-cream-dark) !important;
  }

  .bb-toc a:last-child {
    border-bottom: 0 !important;
  }

  .bb-timeline {
    padding-left: 22px;
  }

  .bb-timeline-item::before {
    left: -30px;
  }
}

/* ============================================================
   MOBILE PICCOLO (≤380px) — iPhone SE, vecchi Android
   ============================================================ */
@media (max-width: 380px) {
  .bb-section, .bb-card {
    padding: 14px 12px;
    border-radius: var(--bb-radius-sm);
  }

  .bb-qa-answer, .bb-payment-badges, .bb-badges {
    padding-left: 0;
  }

  .bb-qa-question {
    flex-wrap: wrap;
  }

  .bb-badge {
    font-size: 0.72rem;
    padding: 3px 8px;
  }

  .bb-stats {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .bb-stat {
    padding: 14px 8px;
  }
}

/* ============================================================
   Accessibilità: focus visibili
   ============================================================ */
.bb-faq a:focus-visible,
.bb-page a:focus-visible,
.bb-cta a:focus-visible {
  outline: 3px solid var(--bb-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Print friendly */
@media print {
  .bb-cta, .bb-useful-links {
    display: none;
  }
}


/* ------------------------------------------------------------------
   Override per le pagine CATEGORIA (#category-description)
   Il tema classic dichiara
   .block-category .block-category-inner #category-description p { color: rgb(35,35,35) }
   con specificita 1-2-1: senza queste regole il testo delle pagine .bb-page
   usate come descrizione di categoria eredita il grigio del tema.
   Spostate qui dallo style inline della descrizione (28/07/2026).
   ------------------------------------------------------------------ */
#category-description .bb-page p.bb-intro { color: #444 !important; }
#category-description .bb-page strong { color: #0a3d62 !important; font-weight: 700 !important; }
#category-description .bb-page p.bb-stat-number { color: #b8232b !important; font-weight: 700 !important; }
#category-description .bb-page p.bb-stat-label { color: #0a3d62 !important; font-weight: 600 !important; }
#category-description .bb-page p.bb-timeline-text { color: #333 !important; }
#category-description .bb-page p.bb-cta-title { color: #fff !important; font-weight: 700 !important; }
#category-description .bb-page p.bb-cta-text { color: #fff !important; }

/* ===== Numero WhatsApp nella barra superiore (hook displayNav1) ===== */
.bb-topbar-wa { display: inline-block; padding: 4px 0; }
.bb-topbar-wa a { display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px; border: 1px solid #25d366; border-radius: 999px; background: #eafaf0; color: #0b7a45 !important; font-weight: 700; font-size: 0.95rem; line-height: 1.3; text-decoration: none; }
.bb-topbar-wa a:hover, .bb-topbar-wa a:focus { background: #25d366; color: #fff !important; text-decoration: none; }
.bb-topbar-wa-ico { font-size: 1rem; line-height: 1; }
@media (max-width: 767px) { .bb-topbar-wa { display: none; } }


/* ===== FRECCIA TORNA IN CIMA - inizio (07-08-2026) ===== */
#header a.bb-torna-su,.bb-torna-su{position:fixed;right:16px;bottom:70px;z-index:1000;width:44px;height:44px;border-radius:50%;background:#0a3d62;color:#FFFFFF;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 8px rgba(0,0,0,.3);opacity:0;visibility:hidden;transform:translateY(8px);transition:opacity .2s ease,transform .2s ease,visibility .2s ease}
#header a.bb-torna-su.bb-visibile,.bb-torna-su.bb-visibile{opacity:1 !important;visibility:visible !important;transform:none !important}
#header a.bb-torna-su:hover,#header a.bb-torna-su:focus,.bb-torna-su:hover,.bb-torna-su:focus{background:#062a45;color:#FFFFFF;text-decoration:none}
.bb-torna-su svg{display:block}
/* ===== FRECCIA TORNA IN CIMA - fine ===== */


/* ===== FOOTER: OPINIONI DEI CLIENTI + SEGUICI - inizio (07-08-2026) ===== */
.bb-rev-block,.bb-social{width:100%;padding:14px 0;text-align:center}
.bb-rev-title,.bb-social-title{display:block;font-weight:700;font-size:.95rem;letter-spacing:.02em;margin-bottom:10px;text-transform:uppercase}
.bb-rev-list{display:flex;flex-wrap:wrap;gap:14px;justify-content:center;align-items:stretch}
.bb-rev-item{flex:0 1 260px;background:#ffffff;border:1px solid #e5e7eb;border-radius:10px;padding:12px 14px;display:flex;flex-direction:column;gap:4px;align-items:center;justify-content:center}
.bb-rev-item .bb-tp-widget{margin:0;padding:0;border:0;background:transparent}
.bb-social-list{display:flex;gap:10px;justify-content:center;align-items:center;flex-wrap:wrap}
.bb-soc{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:10px;color:#ffffff;text-decoration:none;transition:transform .15s ease,filter .15s ease}
.bb-soc:hover,.bb-soc:focus{transform:translateY(-2px);filter:brightness(1.08);color:#ffffff;text-decoration:none}
.bb-soc-txt{font-weight:800;font-size:1.15rem;line-height:1;font-family:Georgia,'Times New Roman',serif}
.bb-soc-fb{background:#1877F2}
.bb-soc-li{background:#0A66C2}
.bb-soc-li .bb-soc-txt{font-family:Arial,Helvetica,sans-serif;font-size:1rem}
.bb-soc-ig{background:radial-gradient(circle at 30% 107%,#fdf497 0%,#fd5949 45%,#d6249f 60%,#285AEB 90%)}
.bb-soc-eb{background:#ffffff;border:1px solid #d9d9d9;width:auto;padding:0 10px}
.bb-soc-ebay{font-weight:800;font-size:.95rem;font-style:italic;letter-spacing:-.02em}
.bb-soc-ebay i{font-style:normal}
.bb-soc-ebay i:nth-child(1){color:#E53238}
.bb-soc-ebay i:nth-child(2){color:#0064D2}
.bb-soc-ebay i:nth-child(3){color:#F5AF02}
.bb-soc-ebay i:nth-child(4){color:#86B817}
@media (max-width:575px){.bb-rev-item{flex:1 1 100%}.bb-soc{width:36px;height:36px}}
/* ===== FOOTER: OPINIONI DEI CLIENTI + SEGUICI - fine ===== */


/* ===== FOOTER RECENSIONI - stile scuro (07-08-2026) ===== */
#footer .bb-rev-block,.bb-rev-block{background:#232323;color:#ffffff;border-radius:12px;padding:16px 18px;max-width:560px;margin:0 auto;box-shadow:0 2px 10px rgba(0,0,0,.35)}
#footer .bb-rev-title,.bb-rev-title{color:#ffffff;font-size:1rem;margin-bottom:12px}
#footer .bb-rev-list,.bb-rev-list{flex-direction:column;gap:12px;align-items:stretch}
#footer .bb-rev-item,.bb-rev-item{background:transparent;border:0;border-radius:0;padding:0;flex:1 1 auto;align-items:center}
#footer .bb-rev-block .bb-tp-widget,.bb-rev-block .bb-tp-widget{background:transparent;box-shadow:none;border:0;padding:0;margin:0;color:#ffffff;display:flex;flex-direction:column;align-items:center;gap:2px}
.bb-rev-block .bb-tp-logo{color:#ffffff;font-weight:700;font-size:.95rem}
.bb-rev-block .bb-tp-label{color:#c9c9c9;font-size:.85rem}
.bb-rev-block .bb-tp-rating-row{display:flex;align-items:center;gap:8px;justify-content:center}
.bb-rev-block .bb-tp-stars{display:inline-flex;gap:1px;line-height:1}
.bb-rev-block .bb-tp-star{width:auto;height:auto;background:none}
.bb-rev-block .bb-tp-star::before{content:"\2605";color:#F5AF02;font-size:1.05rem;line-height:1}
.bb-rev-block .bb-tp-star-half::before{content:"\2605";color:#F5AF02;opacity:.55}
.bb-rev-block .bb-tp-star-empty::before{content:"\2605";color:#5a5a5a}
.bb-rev-block .bb-tp-score{color:#ffffff;font-weight:700}
.bb-rev-block .bb-tp-count{color:#7CD137;font-size:.88rem}
.bb-rev-block .bb-tp-link{color:#9ecbff;font-size:.85rem;text-decoration:none}
.bb-rev-block .bb-tp-link:hover,.bb-rev-block .bb-tp-link:focus{color:#ffffff;text-decoration:underline}
/* ===== FOOTER RECENSIONI - fine ===== */

#footer .bb-rev-block .bb-tp-count,.bb-rev-block .bb-tp-count{color:#7CD137}
#footer .bb-rev-block .bb-tp-logo,.bb-rev-block .bb-tp-logo{color:#ffffff}
#footer .bb-rev-block .bb-tp-label,.bb-rev-block .bb-tp-label{color:#c9c9c9}
#footer .bb-rev-block .bb-tp-score,.bb-rev-block .bb-tp-score{color:#ffffff}
#footer .bb-rev-block .bb-tp-link,.bb-rev-block .bb-tp-link{color:#9ecbff}
#footer .bb-rev-block a.bb-tp-link:hover,#footer .bb-rev-block a.bb-tp-link:focus{color:#ffffff}

/* ===== SEGUICI: link testuali (07-08-2026) ===== */
#footer .bb-social-list,.bb-social-list{gap:8px}
#footer a.bb-soc,.bb-soc{width:auto;height:auto;padding:7px 14px;border-radius:999px;background:#232323;border:1px solid #3a3a3a;color:#ffffff;font-size:.9rem;font-weight:600;line-height:1.2;text-decoration:none;display:inline-flex;align-items:center}
#footer a.bb-soc:hover,#footer a.bb-soc:focus,.bb-soc:hover,.bb-soc:focus{background:#3a3a3a;border-color:#5a5a5a;color:#ffffff;text-decoration:none;transform:translateY(-1px)}
@media (max-width:575px){#footer a.bb-soc,.bb-soc{padding:6px 12px;font-size:.85rem}}
/* ===== SEGUICI - fine ===== */

/* ===== RECENSIONI: riga divisoria fra i blocchi (07-08-2026) ===== */
#footer .bb-rev-list > .bb-rev-item + .bb-rev-item,.bb-rev-list > .bb-rev-item + .bb-rev-item{border-top:1px solid #3f3f3f;padding-top:14px;margin-top:2px}
/* ===== fine ===== */


/* ===== Ricerca rapida nelle sotto-categorie ===== */
.bb-subcat-find{display:flex;align-items:center;gap:10px;margin:0 0 16px;flex-wrap:wrap}
.bb-subcat-input{flex:0 1 320px;max-width:100%;padding:9px 14px;border:1px solid #d6d6d6;border-radius:22px;font-size:14px;line-height:1.3;background:#fff;outline:none}
.bb-subcat-input:focus{border-color:#0f4c81;box-shadow:0 0 0 2px rgba(15,76,129,.12)}
.bb-subcat-count{font-size:13px;color:#777}
