/*****************************
   IMAGE STICKER OVERRIDES
*****************************/

/* Desktop default size */
.sticker.sticker-image img{
    width:80px !important;
    height:80px !important;
    object-fit:contain;
    display:block;
}

/* Remove unwanted background and padding for image stickers */
.sticker.sticker-image{
    background:none !important;
    padding:0 !important;
    height:auto !important;
    width:auto !important;
    line-height:normal !important;
    border-radius:0 !important;
    text-transform:none !important;
}

/*****************************
   MOBILE SIZE REDUCTION
*****************************/

@media (max-width: 768px){
    /* Smaller sticker on mobile/tablets */
    .sticker.sticker-image img{
        width:55px !important;
        height:55px !important;
    }
}

@media (max-width: 480px){
    /* Even smaller on very small phones */
    .sticker.sticker-image img{
        width:45px !important;
        height:45px !important;
    }
}
/*****************************
   IMAGE STICKER – DESKTOP
*****************************/

/* Keep sticker size exactly as it currently displays */
.sticker.sticker-image img{
    width: auto !important;        /* let theme decide the desktop size */
    height: auto !important;
    max-width: 100px !important;   /* safety limit (adjust if needed) */
    max-height: 100px !important;
    object-fit: contain;
    display: block;
}

/*****************************
   MOBILE OVERRIDE (35x35)
*****************************/

@media (max-width: 768px){
    .sticker.sticker-image img{
        width:35px !important;
        height:35px !important;
    }
}
