/** Shopify CDN: Minification failed

Line 52:13 Expected "}" to go with "{"

**/
/* === Voomy product badges – consistente pills === */

/* Container op de KAART: badges over de afbeelding (absolute) */
.product-card__badge-list {
  position: absolute;
  top: 6px;
  left: 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 2;
  max-width: calc(100% - 12px);
}

/* Container op de PRODUCTPAGINA: gewoon in de flow, naast elkaar */
.product-info__badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* De pills zelf – mobiel (basis) */
.product-card__badge-list .badge,
.product-card__badge-list .promo-label,
.product-info__badge-list .badge,
.product-info__badge-list .promo-label {
  height: 18px;
  padding: 0 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

/* Desktop/laptop: iets groter + meer ruimte */
@media screen and (min-width: 750px) {
  .product-card__badge-list {
    top: 8px;
    left: 8px;
    gap: 4px;