.dm-product-card__sale-badge {
    position: relative;
    isolation: isolate;
    white-space: nowrap;
    background: linear-gradient(135deg, #f01846 0%, #a7072b 100%);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.78);
    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.48),
        0 0 0 1px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.dm-product-card__sale-badge::before {
    content: "";
    position: absolute;
    inset: -3px;
    z-index: -1;
    border-radius: inherit;
    background: rgba(3, 6, 12, 0.62);
    filter: blur(1px);
}

@media (max-width: 640px) {
    .dm-product-card__badges {
        inset: 0;
        display: block;
    }

    .dm-product-card__badges-left {
        padding: var(--space-sm);
    }

    .dm-product-card__sale-badge {
        position: absolute;
        left: var(--space-sm);
        bottom: calc(var(--space-sm) + 2px);
        min-height: 24px;
        padding: 0 10px;
        font-size: 10px;
    }
}
