/* ======================================================================
   CONFIDENCE - Product Card Discount Display
   Loaded after style.css so these rules only extend the existing design.
====================================================================== */

.product-img-wrap {
    position: relative;
    overflow: hidden;
}

.product-discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    min-height: 30px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #b42318;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.02em;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    pointer-events: none;
}

.product-price-box {
    min-height: 48px;
    margin-top: 8px;
}

.product-price-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
}

.product-old-price {
    color: #8a8a8a;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.product-sale-price {
    color: #b42318;
}

.product-saving {
    margin-top: 2px;
    color: #2e6f40;
    font-size: 0.78rem;
    font-weight: 700;
}

@media (max-width: 575.98px) {
    .product-discount-badge {
        top: 7px;
        left: 7px;
        min-width: 46px;
        min-height: 27px;
        padding: 4px 8px;
        font-size: 0.7rem;
    }

    .product-price-line {
        gap: 5px;
    }

    .product-old-price {
        font-size: 0.78rem;
    }

    .product-saving {
        font-size: 0.7rem;
    }
}
