/* Стікери для архіву/категорії */
.ps-stickers-wrapper {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
}

.ps-sticker {
    display: inline-block;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    line-height: 1.4;
    white-space: nowrap;
}

/* Стікери в категорії */
.ps-stickers-archive {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.ps-stickers-archive .ps-sticker {
    font-size: 11px;
    padding: 4px 10px;
}

/* Стікери на сторінці товару */
.ps-stickers-single,
.single-product .ps-stickers-wrapper {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    pointer-events: none;
}

.ps-stickers-single .ps-sticker,
.single-product .ps-stickers-wrapper .ps-sticker {
    font-size: 14px;
    padding: 8px 16px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
}

/* Для різних тем */
.woocommerce div.product div.images .woocommerce-product-gallery {
    position: relative;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
    position: relative;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image {
    position: relative;
}

/* Картинка має бути видимою */
.product-images-slider img {
    position: relative;
    z-index: 1;
}

/* Альтернативне позиціонування для складних тем */
.summary .ps-stickers-wrapper {
    display: none;
}

.images .ps-stickers-wrapper,
.product-images .ps-stickers-wrapper,
.woocommerce-product-gallery .ps-stickers-wrapper {
    display: flex !important;
}

/* Спеціальні стилі для окремих стікерів */
.ps-sticker-zsu {
    background: linear-gradient(135deg, #0057B7 0%, #0057B7 50%, #FFDD00 50%, #FFDD00 100%);
    background-size: 200% 100%;
    animation: ps-gradient-shift 3s ease infinite;
}

@keyframes ps-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Адаптивність */
@media (max-width: 768px) {
    .ps-stickers-wrapper {
        top: 5px;
        right: 5px;
        gap: 3px;
    }
    
    .ps-stickers-archive .ps-sticker {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .ps-stickers-single {
        top: 10px;
        right: 10px;
    }
    
    .ps-stickers-single .ps-sticker {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Забезпечення правильного позиціонування */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    position: relative;
}

.woocommerce div.product div.images,
.woocommerce #content div.product div.images,
.woocommerce-page div.product div.images,
.woocommerce-page #content div.product div.images {
    position: relative;
}

/* Додаткові селектори для різних тем */
.woocommerce .product .images,
.woocommerce-page .product .images,
div.product div.images,
.single-product .product-images,
.product-gallery,
.woocommerce-product-gallery {
    position: relative !important;
}

/* Форсуємо позиціонування для обгортки галереї */
.woocommerce-product-gallery__wrapper,
.product-images-wrapper,
.images-wrapper {
    position: relative !important;
}

/* Hover ефект */
.ps-sticker {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ps-sticker:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
