/**
 * Payment Gateway Fees - Frontend Styles
 * Styling for EGP price display
 */

/* EGP Price Rows */
.pgf-egp-subtotal th,
.pgf-egp-total th {
    color: #06847b;
    font-weight: 500;
    font-size: 14px;
    padding-top: 5px !important;
    padding-bottom: 10px !important;
}

.pgf-egp-subtotal td,
.pgf-egp-total td {
    color: #06847b;
    font-size: 14px;
    padding-top: 5px !important;
    padding-bottom: 10px !important;
}

.pgf-egp-amount {
    direction: ltr;
    display: inline-block;
}

.pgf-egp-total strong {
    color: #06847b;
}

/* Spacing adjustments */
.woocommerce-cart-form__cart-item.pgf-egp-subtotal,
.woocommerce-cart-form__cart-item.pgf-egp-total,
.cart_item.pgf-egp-subtotal,
.cart_item.pgf-egp-total {
    border-top: 0 !important;
}

/* RTL Support */
body.rtl .pgf-egp-amount {
    direction: ltr;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .pgf-egp-subtotal th,
    .pgf-egp-total th {
        font-size: 13px;
    }
    
    .pgf-egp-subtotal td,
    .pgf-egp-total td {
        font-size: 13px;
    }
}

/* Thank You Page Styling */
.pgf-thank-you-egp {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border: 2px solid #06847b;
    border-radius: 8px;
}

.pgf-thank-you-egp .woocommerce-order-details__title {
    color: #06847b;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #06847b;
}

.pgf-thank-you-egp table {
    margin: 0;
    background: white;
    border-radius: 4px;
}

.pgf-thank-you-egp th {
    color: #06847b;
    font-weight: 600;
    font-size: 16px;
    padding: 15px !important;
}

.pgf-thank-you-egp td {
    text-align: left;
    padding: 15px !important;
}

.pgf-egp-amount-large {
    color: #06847b;
    font-size: 24px;
    font-weight: 700;
    direction: ltr;
    display: inline-block;
}

/* RTL Support for Thank You */
body.rtl .pgf-thank-you-egp td {
    text-align: right;
}

body.rtl .pgf-egp-amount-large {
    direction: ltr;
}

/* Mobile Responsive for Thank You */
@media screen and (max-width: 768px) {
    .pgf-thank-you-egp {
        padding: 15px;
        margin-top: 20px;
    }
    
    .pgf-thank-you-egp .woocommerce-order-details__title {
        font-size: 18px;
    }
    
    .pgf-egp-amount-large {
        font-size: 20px;
    }
    
    .pgf-thank-you-egp th {
        font-size: 14px;
    }
}
