/* Start custom CSS for woocommerce-checkout-page, class: .elementor-element-1aa554b *//* Billing & Additional Info Wrapper */
.woocommerce-billing-fields,
.woocommerce-additional-fields {
    background: #fff;
    padding: 25px;
    border: 1.5px solid #ddd;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Section Titles */
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

/* Form Labels */
.woocommerce-billing-fields label,
.woocommerce-additional-fields label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
    color: #555;
}

/* Input & Textarea Fields */
.woocommerce-billing-fields input.input-text,
.woocommerce-billing-fields select,
.woocommerce-additional-fields textarea,
.woocommerce-additional-fields input.input-text {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #ddd;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.2s ease;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.04);
}

/* Focus Effect */
.woocommerce-billing-fields input.input-text:focus,
.woocommerce-billing-fields select:focus,
.woocommerce-additional-fields textarea:focus,
.woocommerce-additional-fields input.input-text:focus {
    border-color: #0077ff;
    box-shadow: 0 0 0 3px rgba(0,119,255,0.15);
    outline: none;
}

/* Required Field Red Asterisk */
.woocommerce-billing-fields .required {
    color: #ff4d4d;
}
/* ========== ORDER SUMMARY (Your Order) ========== */
.woocommerce-checkout-review-order-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
    font-size: 16px;
    font-weight: 500;
}

.woocommerce-checkout-review-order-table thead th,
.woocommerce-checkout-review-order-table tbody td,
.woocommerce-checkout-review-order-table tfoot td {
    background: #fff;
    padding: 16px 18px;
    border: 1.5px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Highlight Total Row */
.woocommerce-checkout-review-order-table tfoot tr:last-child td {
    font-size: 18px;
    font-weight: 700;
    color: #0077ff;
    border-color: #0077ff;
    box-shadow: 0 4px 10px rgba(0,119,255,0.15);
}

/* Payment method container */
.woocommerce-checkout #payment ul.payment_methods li {
    margin-bottom: 18px;         /* Space between each option */
    padding: 18px 20px;          /* Inner padding */
    border: 1.5px solid #ddd;    /* Light border */
    border-radius: 12px;         /* Rounded corners */
    background: #fff;            /* White background */
    font-size: 16px;             /* Clean readable font */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

/* Hover effect */
.woocommerce-checkout #payment ul.payment_methods li:hover {
    border-color: #0077ff; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Selected option */
.woocommerce-checkout #payment ul.payment_methods li input[type="radio"]:checked + label {
    color: #0077ff;
    font-weight: 600;
}

/* Radio buttons styling */
.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
    margin-right: 12px;
    transform: scale(1.2); /* Slightly bigger radio */
    accent-color: #0077ff; /* Modern blue selection */
}

/* Payment icons alignment */
.woocommerce-checkout #payment ul.payment_methods li img {
    height: 22px;
    margin-left: 8px;
    vertical-align: middle;
}/* End custom CSS */