/* === Compteur (gauche) — ProductsNumber === */
.gts-hero-counters{
  position:absolute;
  left:24px;
  bottom:28px;                 /* hauteur commune */
  z-index:120;
  display:flex;
  align-items:center;
  min-height:48px;             /* hauteur commune */
  padding:10px 18px;           /* padding commun */
  border-radius:12px;
  background:rgba(0,0,0,.38);
  color:#fff;
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  pointer-events:none;         /* ne bloque pas les clics */
}
.gts-hero-counters__list{
  display:flex; gap:18px; align-items:baseline;
  margin:0; padding:0; list-style:none;
}
.gts-hero-counters__item{ display:flex; gap:8px; align-items:baseline; }
.gts-hero-counters__num{
  font-size:22px; line-height:1; font-weight:800; letter-spacing:.3px;
  text-shadow:0 1px 2px rgba(0,0,0,.35);
}
.gts-hero-counters__label{ font-size:13px; opacity:.95; }

/* Responsive */
@media (max-width:992px){
  .gts-hero-counters{
    left:16px; bottom:16px; padding:8px 14px; min-height:44px;
  }
  .gts-hero-counters__list{ flex-wrap:wrap; gap:10px 14px; }
  .gts-hero-counters__num{ font-size:18px; }
  .gts-hero-counters__label{ font-size:12px; }
}
