/* Hyvä-specific: ensure label is positioned relative to gallery container */
#gallery .ecoto-product-image-label{
    position: absolute;
    top: 8px;
    z-index: 50;
    right: 8px;
    padding: 10px 20px;
    font-size: 25px;
    line-height: 1;
    border-radius: 20px;
    display: inline-block;
    color: #fff;
    background: rgba(0,0,0,0.6);
}

/* Ensure the media container is positioned relatively so absolute label sits on the image */
.product.media, .product.media .fotorama__stage, .gallery-placeholder, .product.media .gallery-placeholder {
    position: relative;
}

/* LISTING/CATEGORY: position label on top-left of product thumbnail without affecting PDP */
.products .product.photo.product-item-photo {
    position: relative;
}
.products .product.photo.product-item-photo .ecoto-product-image-label {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 60;
    padding: 0px 15px;
    font-size: 16px;
    border-radius: 20px;
    display: inline-block;
    color: #fff;
    background: rgba(0,0,0,0.6);
}

/* Small responsive adjustments */
@media (max-width: 767px){
    .ecoto-product-image-label{
        top: 6px;
        left: 6px;
        font-size: 12px;
        padding: 4px 8px;
    }
}
