/*
Theme Name:   woostify child
Theme URI:    http://eat-bigserves.in/Woostify-child/
Description:  Child theme for the Woostify Theme
Author:       Eat-BigServes
Author URI:   http://Eat-BigServes.in
Template:     woostify
Version:      1.0.0
*/



.woostify-tag-on-sale.onsale.sale-left {
    position: absolute;
    top: 1.7em;
    left: 1em;
    z-index: 10;
    background: #87d33b;
    color: #fff;
    padding: 0.8em 0.2em;
    border-radius: 12em;  /* Rounded corners */
    font-weight: bold;
}


/* Grow/Shrink animation for all labels except 5295 */
.awl-label-text {
    animation: scale-label 1s infinite alternate;
}

.awl-label-id-5295 .awl-label-text {
    animation: rotate-label 1s infinite alternate;
    display: inline-block;
}
.post-5311 .woostify-tag-on-sale {
    display: none !important;
}
.post-5312 .woostify-tag-on-sale {
    display: none !important;
}

/* Remove scale animation from label 5295 */
.awl-label-id-5295 .awl-label-text {
    animation: rotate-label 1s infinite alternate;
}

/* Keyframes for scale (grow/shrink) */
@keyframes scale-label {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

/* Keyframes for rotate */
@keyframes rotate-label {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(15deg); }
}