/* Glowing Shine Badge — Spark WoodMart Toolkit */
/* Clean animated light sweep on Featured/Hot product badges */
/* Replaces the fire emoji approach with a premium shine effect */

.product-label.featured,
.product-labels .product-label.featured {
    position: relative;
    overflow: hidden;
}

/* Animated shine sweep */
.product-label.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    animation: swmtShine 3s ease-in-out infinite;
    pointer-events: none;
}

/* Subtle pulsing glow on the badge */
.product-label.featured {
    animation: swmtBadgeGlow 2.5s ease-in-out infinite alternate;
}

@keyframes swmtShine {
    0%   { left: -100%; }
    60%  { left: 150%; }
    100% { left: 150%; }
}

@keyframes swmtBadgeGlow {
    0%   { box-shadow: 0 0 4px rgba(255, 255, 255, 0.1); }
    100% { box-shadow: 0 0 12px rgba(255, 255, 255, 0.2), 0 0 4px rgba(255, 255, 255, 0.1); }
}
