/* Parent image (pour positionner en absolute) */
.product-thumbnail,
.thumbnail-container,
.product-cover {
  position: relative;
}

/* Conteneur badge : PAS de fond */
.vog-badge-new{
  position: absolute;
  top: 5px;
  left: 5px;   /* ✅ à droite */
 
  z-index: 6;

  padding: 0;    /* pas de pill */
  border: 0;
  background: transparent;
  box-shadow: none;

  pointer-events: none; /* ne gêne pas le clic */
}

.vog-badge-new__text {
  position: relative;
  left: 0;
  top: 0;
  font-weight: 400;
  text-align: left;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #022a4d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px !important;
  color: white;
}
