/* =========================================================
   WPUPG — FAVORIET-INDICATOR POSITIE EN ZICHTBAARHEID
   ========================================================= */

/* Maak het anker voor absolute positioning */
.wpupg-template-custom-simple .wpupg-meta-container{
  position: relative;
}

/* Title wrapper blijft netjes centreren */
.wpupg-template-custom-simple .title-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Hartje vast linksboven in meta-container (standaard verborgen) */
.wpupg-template-custom-simple .pc-wpupg-fav-indicator{
  display: none;
  position: absolute;
  left: 6px;           /* horizontale uitlijning */
  top: 6px;            /* uitlijning op bovenste regel */
  margin: 0 !important;
  font-family: 'ETmodules';
  font-size: 18px;
  line-height: 1;
  color: #e13d3d;
  pointer-events: none; /* indicator-only */
}

/* ETmodules icoon */
.wpupg-template-custom-simple .pc-wpupg-fav-indicator::before{
  content: "\e089";
}

/* Toon zodra de CARD favoriet is */
.wpupg-item.pc-is-favorite .pc-wpupg-fav-indicator{
  display: block;
}