
/* 🎯 Discount Tag Styling - Clean & Animated */
.sh-product-card-discount-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    color: #FF3B30;
    font-weight: bold;
    font-size: 14px;
    background: none;
    padding: 0;
    z-index: 5;
    animation: shine-text 2s linear infinite;
}

/* ✨ Shining Text Animation */
@keyframes shine-text {
    0% {
        text-shadow: 0 0 2px #FF3B30;
    }
    50% {
        text-shadow: 0 0 10px #FF3B30;
    }
    100% {
        text-shadow: 0 0 2px #FF3B30;
    }
}

/* Responsive for mobile */
@media screen and (max-width: 768px) {
    .sh-product-card-discount-tag {
        top: 8px;
        left: 8px;
        font-size: 12px;
    }
}
