/* 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;
    }
}

/* ========================================
   Your Savings Pro - Product Page Styles
   ======================================== */

/* Base styles for product savings */
.beban-product-savings {
    margin: 0;
    display: inline-block;
    padding: var(--beban-product-savings-padding-top-bottom, 6px) var(--beban-product-savings-padding-left-right, 8px);
    background-color: var(--beban-product-savings-bg-color, #ee5a52);
    border-radius: var(--beban-product-savings-border-radius, 6px);
    font-size: var(--beban-product-savings-font-size, 12px);
    color: var(--beban-product-savings-text-color, #ffffff);
    line-height: 1.6;
}

.beban-product-savings-label {
    font-weight: 600;
    color: var(--beban-product-savings-text-color, #ffffff);
}

.beban-product-savings-amount {
    font-weight: bold;
    color: var(--beban-product-savings-text-color, #ffffff);
}

.beban-product-savings-amount span {
    color: var(--beban-product-savings-text-color, #ffffff);
}

.beban-product-savings-percentage {
    color: var(--beban-product-savings-text-color, #ffffff);
    font-size: 0.9em;
    font-weight: normal;
    opacity: 0.8;
}

/* Single product page specific styles */
.single-product .beban-product-savings {
    margin: 0;
    align-self: center;
    margin-left: 8px;
}

/* Responsive styles for product savings */
@media (max-width: 768px) {
    .beban-product-savings {
        font-size: calc(var(--beban-product-savings-font-size, 16px) - 2px);
    }
}
