/* Frontend Discount Badge */
.etinion-discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #dc3232;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Product Price Styling */
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: #77a464;
}

.woocommerce ul.products li.product .price del,
.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
    color: #999;
    opacity: 0.7;
}

.woocommerce ul.products li.product .price ins,
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
    background: transparent;
    font-weight: 700;
    text-decoration: none;
}

/* Cart & Checkout Discount Display */
.etinion-discount-amount {
    color: #77a464 !important;
    font-weight: bold !important;
}

.woocommerce-cart table.cart td.product-price del,
.woocommerce-checkout table.shop_table td del {
    opacity: 0.7;
}

.woocommerce-cart table.cart td.product-price ins,
.woocommerce-checkout table.shop_table td ins {
    background: transparent;
    text-decoration: none;
    font-weight: bold;
}

/* Cart Totals Custom Discount Row */
.cart_totals .etinion-custom-discount th,
.cart_totals .etinion-custom-discount td {
    border-top: 1px solid #e0e0e0;
    padding-top: 10px !important;
}

.woocommerce-checkout-review-order-table .etinion-custom-discount th,
.woocommerce-checkout-review-order-table .etinion-custom-discount td {
    border-top: 1px solid #e0e0e0;
    padding-top: 10px !important;
}

/* Product List Item Position for Badge */
.woocommerce ul.products li.product {
    position: relative;
}

.woocommerce ul.products li.product .onsale {
    top: 10px;
    left: 10px;
    right: auto;
}

/* Single Product Badge */
.woocommerce div.product .images {
    position: relative;
}

/* Responsive */
@media (max-width: 768px) {
    .etinion-discount-badge {
        top: 5px;
        right: 5px;
        font-size: 10px;
        padding: 3px 8px;
    }
}
