/* پوزیشن‌دهی برای نمایش استیکر روی تصویر */
.outofstock .elementor-widget-theme-post-featured-image {
    position: relative;
}

/* خود استیکر تصویری */
.outofstock .elementor-widget-theme-post-featured-image::after {
    content: "";
    position: absolute;
    top: 20%;    /* تقریبا وسط تصویر */
    left: 50%;
    width: 180px;   
    height: 180px; 
    background-image: url('https://waltro.ir/wp-content/uploads/2025/12/count_out3.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 10;
    pointer-events: none;
}

/* نمایش استیکر هنگام هاور */
.outofstock:hover .elementor-widget-theme-post-featured-image::after {
    opacity: 1;
}
