/* Pure Stickers Frontend CSS */

.pure-stickers-wrapper {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.pure-stickers-wrapper.pure-stickers-shortcode {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    width: auto;
}

.pure-stickers-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 5px;
    top: 0;
}

.pure-stickers-left {
    left: 10px;
    align-items: flex-start;
}

.pure-stickers-right {
    right: 10px;
    align-items: flex-end;
}

.pure-sticker {
    padding: 4px 8px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Reposition stickers when inside Pure Gallery containers to the top-right corner */
.pg-masonry-wrapper .pure-stickers-wrapper,
.pg-list-wrapper .pure-stickers-wrapper,
.pure-gallery-container .pure-stickers-wrapper {
    top: 15px;
    right: 15px;
    left: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    z-index: 20;
}

.pg-masonry-wrapper .pure-stickers-wrapper .pure-stickers-container,
.pg-list-wrapper .pure-stickers-wrapper .pure-stickers-container,
.pure-gallery-container .pure-stickers-wrapper .pure-stickers-container {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}