/** Shopify CDN: Minification failed

Line 48:9 Expected identifier but found whitespace
Line 156:0 Unexpected "}"

**/
/* ---- SECTIE & BALK ---- */

/* kolom in deze section centreren */
.section-social-proof-meta-bar .columns {
  display: flex;
  justify-content: center;
}

/* de pill zelf */
.social-proof-meta-bar {
  border-radius: 9999px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  max-width: 100%;
}

/* binnenkant: avatars + tekst naast elkaar */
.social-proof-meta-bar__content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;         /* alles op één rij houden */
}

/* ---- AVATARS ---- */

.social-proof-meta-bar__avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 32px;
}

.social-proof-meta-bar__avatar {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: .social-proof-meta-bar__avatar {
  border: none !important;
  background: none !important;
}

  box-sizing: border-box;
}

.social-proof-meta-bar__avatar + .social-proof-meta-bar__avatar {
  margin-left: -8px;         /* overlap effect */
}

.social-proof-meta-bar__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- TEKST ---- */

.social-proof-meta-bar__text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;        /* >>> alles op 1 regel */
}

.social-proof-meta-bar__username {
  font-weight: 700;
}

.social-proof-meta-bar__verified {
  width: 20px;
  height: 20px;
  min-width: 20px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.social-proof-meta-bar__others strong {
  font-weight: 700;
}

/* ---- DESKTOP ---- */
@media only screen and (min-width: 768px) {
  .social-proof-meta-bar {
    padding: 8px 18px;
  }
}

/* ---- MOBIEL ---- */
@media (max-width: 600px) {
  .social-proof-meta-bar {
    padding: 3px 6px;      /* minimale padding = max ruimte voor tekst */
    width: 100%;           /* vult de volledige kolom */
  }

  .social-proof-meta-bar__avatars {
    height: 22px;
  }

  .social-proof-meta-bar__avatar {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-width: 1px;
  }

  .social-proof-meta-bar__text {
    font-size: 10px;       /* flink kleiner zodat alles past */
    gap: 2px;
    white-space: nowrap;   /* blijft op één regel */
    letter-spacing: -0.1px;/* nóg iets compacter */
  }

  .social-proof-meta-bar__verified {
    width: 14px;
    height: 14px;
    min-width: 14px;
  }
}


  .social-proof-meta-bar__avatars {
    height: 26px;
  }

  .social-proof-meta-bar__avatar {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-width: 1.5px;
  }

  .social-proof-meta-bar__text {
    font-size: 12px;          /* kleinere tekst zodat 1 regel past */
    gap: 4px;
  }

  .social-proof-meta-bar__verified {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }
}
@media (max-width: 600px) {

  /* Balk groter zodat alles past */
  .social-proof-meta-bar {
    padding: 10px 16px;       /* hogere en bredere pill */
    min-width: 100%;          /* vult volledige breedte */
    white-space: nowrap;      /* niets mag afbreken */
    overflow: hidden;
  }

  /* Tekst op één lijn */
  .social-proof-meta-bar__text {
    white-space: nowrap;      /* ALLES op 1 regel */
    flex-wrap: nowrap;
  }

  /* Avatars iets kleiner voor extra ruimte */
  .social-proof-meta-bar__avatar {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  /* Verified badge iets kleiner zodat alles past */
  .social-proof-meta-bar__verified {
    width: 14px;
    height: 14px;
  }

  /* Tekst kleiner & compact */
  .social-proof-meta-bar__text {
    font-size: 12px;
  }
}
/* Alleen mobiel: hele balk iets verkleinen zodat alles past */
@media (max-width: 600px){
  .section-social-proof-meta-bar .social-proof-meta-bar{
    overflow: visible !important;
  }
  .section-social-proof-meta-bar .social-proof-meta-bar__text{
    white-space: nowrap !important;   /* alles op 1 regel */
  }
  .section-social-proof-meta-bar .social-proof-meta-bar__content{
    transform: scale(0.88);           /* maak kleiner tot alles past */
    transform-origin: left center;
  }
}
@media (min-width: 768px){
  .social-proof-meta-bar__text{
    font-size: 16px !important;  /* maak groter op desktop */
  }
}
/* Verwijder grijze container / capsule */
.section-social-proof-meta-bar,
.section-social-proof-meta-bar .row,
.section-social-proof-meta-bar .columns,
.social-proof-meta-bar {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
