/* Стикеры на товары — rs78.stickers */
.pc-sticker-overlay {
    position: absolute;
    z-index: 5;
    /* Рамка рисуется внутрь: заданные в макете ширина/высота (и круг 46px ниже)
       остаются теми, что ввёл администратор. */
    box-sizing: border-box;
    padding: 3px 8px;
    line-height: 1.2;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
    pointer-events: none;
}

.pc-sticker-overlay--rect { border-radius: 3px; }
.pc-sticker-overlay--pill { border-radius: 999px; }

.pc-sticker-overlay--circle {
    border-radius: 50%;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pc-sticker-overlay--ribbon-corner {
    border-radius: 0;
    width: 120px;
    text-align: center;
}

/* Иконка: без бейджевого фона/тени/отступов — только сама фигура. */
.pc-sticker-overlay--icon {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

/* Контейнер картинки, в который мы вписываем стикеры. */
.pc-sticker-host { position: relative; }
