.product-page__image,
.product_preview__image {
    position: relative;
}

.custom-stickers {
    position: absolute;
    top: 12px;
    right: 12px;
    left: auto;
    z-index: 4;
    display: inline-flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    max-width: calc(100% - 24px);
    pointer-events: none;
}

.custom-stickers--product-page {
    top: var(--custom-stickers-top, 0);
    right: 0;
}

.custom-stickers--product-list {
    top: var(--custom-stickers-top, 0);
    right: auto;
    left: -1px;
    align-items: flex-start;
}

.custom-sticker {
    display: flex;
    align-items: center;
    padding: 5px 5px 5px 9px;
    line-height: 10px;
    margin-bottom: 0;
    border-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    background: var(--custom-sticker-bg, #1f2937);
    color: var(--custom-sticker-color, #ffffff);
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    text-transform: uppercase;
    width: max-content;
    max-width: none;
}

.custom-stickers--product-page .custom-sticker {
    font-size: 12px;
}

@media (max-width: 767px) {
    .custom-stickers--product-page {
        right: 0;
    }

    .custom-sticker {
        max-width: calc(100vw - 72px);
    }
}
