/**
 * Styles for Visual Discount badges and sale price display.
 */

.tdev-dynamic-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
    box-shadow: 0 2px 4px rgba(255, 75, 43, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    position: relative;
}

/* RTL Support */
body.rtl .tdev-dynamic-badge {
    margin-left: 0;
    margin-right: 8px;
}

/* Sale price strikethrough enhancement */
.price del {
    opacity: 0.6;
    margin-right: 4px;
}

body.rtl .price del {
    margin-right: 0;
    margin-left: 4px;
}
