/* Your Savings Feature Styles */

.beban-cart-savings,
.beban-checkout-savings,
.beban-order-savings {
    border-top: 1px solid #e5e5e5;
}

.beban-cart-savings th,
.beban-checkout-savings th,
.beban-order-savings th {
    color: var(--beban-savings-color, #28a745) !important;
}

.beban-cart-savings td,
.beban-cart-savings td::before,
.beban-checkout-savings td,
.beban-checkout-savings td::before,
.beban-order-savings td,
.beban-order-savings td::before {
    color: var(--beban-savings-color, #28a745) !important;
}

.beban-savings-amount, .beban-savings-amount span {
    color: var(--beban-savings-color, #28a745) !important;
    font-weight: bold;
}

.beban-savings-percentage {
    color: var(--beban-savings-color, #28a745) !important;
    font-size: 0.9em;
    font-weight: normal;
}

/* Cart page styles */
.cart_totals .beban-cart-savings th,
.cart_totals .beban-cart-savings td {
    padding: 10px 0;
}

/* Checkout page styles */
.woocommerce-checkout-review-order-table .beban-checkout-savings th,
.woocommerce-checkout-review-order-table .beban-checkout-savings td {
    padding: 8px 0;
}

/* Order details page styles */
.woocommerce-order-details .beban-order-savings th,
.woocommerce-order-details .beban-order-savings td {
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
}

/* Responsive styles */
@media (max-width: 768px) {
    .beban-cart-savings td:before,
    .beban-checkout-savings td:before,
    .beban-order-savings td:before {
        content: attr(data-title) ": ";
        font-weight: bold;
        color: var(--beban-savings-color, #28a745) !important;
    }
    
    .beban-savings-amount {
        display: block;
        margin-top: 5px;
    }
} 