/* =============================================
   Soulful Iron – WED Sale Date Styles
   ============================================= */

/* Sale row: force dark-theme compatible background */
.wed-row--sale,
div.wed-row--sale {
    background: rgba(225, 103, 28, 0.12) !important;
    border-left: 4px solid #e1671c !important;
    border-radius: 6px !important;
}

/* Kill any child element background overrides */
.wed-row--sale .wed-col,
.wed-row--sale .wed-col--date,
.wed-row--sale .wed-col--actions {
    background: transparent !important;
}

/* Make sure the date title stays white not grey */
.wed-row--sale .wed-date-title {
    color: #ffffff !important;
}

/* Sale badge */
.wed-sale-badge {
    display: inline-block;
    background: #e1671c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 3px 9px;
    border-radius: 3px;
    margin-left: 10px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

/* Price container */
.wed-date-price {
    margin-top: 6px;
    margin-bottom: 4px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

/* Original (struck-through) price */
.wed-price-original {
    text-decoration: line-through;
    color: #888 !important;
    font-size: 15px;
    font-weight: 400;
}

/* Sale price – big and orange */
.wed-price-sale {
    color: #e1671c !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    line-height: 1;
}

/* Normal (non-sale) price */
.wed-price-normal {
    color: #ccc !important;
    font-size: 18px;
    font-weight: 600;
}