/* Special Offer Shop loop label */
.custom-product-image-label {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 1000;
    pointer-events: none;
}
.custom-product-image-label img,
.custom-product-image-label svg {
    max-width: 60px; /* Reduced size */
    height: auto;
}

/* Special Offer Single product view label */
.custom-product-image-label-single {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    pointer-events: none;
}
.custom-product-image-label-single img,
.custom-product-image-label-single svg {
    max-width: 100px; /* Reduced size */
    height: auto;
}

/* Self Storage Shop loop label */
.self-storage-product-image-label {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 1000;
    pointer-events: none;
}
.self-storage-product-image-label img,
.self-storage-product-image-label svg {
    max-width: 120px; /* Reduced size */
    height: auto;
}

/* Self Storage Single product view label */
.self-storage-product-image-label-single {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    pointer-events: none;
}
.self-storage-product-image-label-single img,
.self-storage-product-image-label-single svg {
    max-width: 120px; /* Reduced size */
    height: auto;
}

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