


.product-card .badge-sale,
.product-image .badge-sale,
.badge-sale {
    position: absolute !important;
    top: 0.5rem !important;
    right: 0.5rem !important;
    color: white !important;
    padding: 0.25rem 0.6rem !important;
    border-radius: 0.35rem !important;
    font-size: 0.65rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    z-index: 10 !important;
    background: linear-gradient(135deg, #dc2626 0%, #9333ea 100%) !important;
    border: 1px solid rgba(139, 92, 246, 0.4) !important;
    box-shadow:
        0 2px 10px rgba(147, 51, 234, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset !important;
    animation: badgePulse 2s ease-in-out infinite !important;
    overflow: hidden !important;
}


.badge-sale::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent) !important;
    animation: badgeShimmer 3s ease-in-out infinite !important;
}


@keyframes badgePulse {

    0%,
    100% {
        box-shadow:
            0 2px 10px rgba(147, 51, 234, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.1) inset;
        transform: scale(1);
    }

    50% {
        box-shadow:
            0 4px 20px rgba(147, 51, 234, 0.6),
            0 0 25px rgba(139, 92, 246, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.2) inset;
        transform: scale(1.02);
    }
}


@keyframes badgeShimmer {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}


.badge-new,
.badge-nuevo {
    background: #10b981 !important;
}

.badge-trending {
    background: #8b5cf6 !important;
}

.badge-popular {
    background: #f59e0b !important;
}

.badge-top {
    background: #3b82f6 !important;
}


@media (max-width: 768px) {

    .product-card .badge-sale,
    .product-image .badge-sale,
    .badge-sale {
        top: 0.5rem !important;
        right: 0.5rem !important;
        padding: 0.3rem 0.7rem !important;
        font-size: 0.65rem !important;
    }
}