/**
 * Z Digital - Viñetas de Producto :: estilos front
 */
.zdlabels {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.zdlabel {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    white-space: nowrap;
    pointer-events: auto;
    box-sizing: border-box;
    max-width: calc(100% - 12px);
}

.zdlabel img {
    display: block;
    max-width: 100%;
}

/* Posiciones (offset base; el JS apila cuando hay varias en la misma esquina) */
.zdpos-top-left      { top: 10px; left: 10px; }
.zdpos-top-center    { top: 10px; left: 50%; transform: translateX(-50%); }
.zdpos-top-right     { top: 10px; right: 10px; }
.zdpos-middle-left   { top: 50%; left: 10px; transform: translateY(-50%); }
.zdpos-middle-center { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.zdpos-middle-right  { top: 50%; right: 10px; transform: translateY(-50%); }
.zdpos-bottom-left   { bottom: 10px; left: 10px; }
.zdpos-bottom-center { bottom: 10px; left: 50%; transform: translateX(-50%); }
.zdpos-bottom-right  { bottom: 10px; right: 10px; }

/* Contenedor de imagen posicionado por el módulo */
.zdlabels-host {
    position: relative !important;
}
