/* Shop loop label */
.custom-product-image-label {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    pointer-events: none;
}

.custom-product-image-label img,
.custom-product-image-label svg {
    max-width: 100px; /* Adjust the size of the label image */
    height: auto;
}

/* Single product view label */
.custom-product-image-label-single {
    position: absolute;
    top: 30px;
    right: 10px;
    z-index: 1000;
    pointer-events: none;
}

.custom-product-image-label-single img,
.custom-product-image-label-single svg {
    max-width: 150px; /* Adjust the size of the label image */
    height: auto;
}

/* Ensure the product containers are positioned relative to handle absolute positioning */
.woocommerce ul.products li.product .product-thumbnail, 
.woocommerce div.product div.images {
    position: relative;
}
