/* Product Stickers - overlay front-office */
.ps-sticker-wrap {
    position: relative;
}

.ps-sticker {
    position: absolute;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    max-width: 90%;
    padding: 5px 9px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: .2px;
    border-radius: 3px;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
}

.ps-sticker--image {
    padding: 0;
    background: transparent !important;
    box-shadow: none;
}

.ps-sticker--image img {
    display: block;
    max-width: 90px;
    height: auto;
}

/* Positions */
.ps-sticker--top-left     { top: 8px;    left: 8px;  }
.ps-sticker--top-right    { top: 8px;    right: 8px; }
.ps-sticker--bottom-left  { bottom: 8px; left: 8px;  }
.ps-sticker--bottom-right { bottom: 8px; right: 8px; }

/* L'empilement de plusieurs stickers dans un même coin est géré en JS
   (décalage vertical inline). */
