/*
.incart-sticker {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #00b300;
    color: #fff;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    animation: slideInRight 0.3s ease-out;
}
*/


.incart-sticker {
    position: absolute;
    bottom: 10px;
    right: -0px;
    background: #EC2324;
    color: #fff;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    justify-self: end;
}

.incart-sticker::before {
    content: '';
    position: absolute;
    right: 0;
    top: -5px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 5px 5px;
    border-color: transparent transparent #8B1314 transparent;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Ensure parent containers have position relative */
.product-miniature,
.product-cover,
.product-images,
.js-product-images-modal {
    position: relative;
}

@media (max-width: 991px){
 .incart-sticker{
     bottom: 70px;
 }   
}