.checkout-savings-summary {
    background-color: #f9f9f9; /* Light gray background */
    border: 2px solid #4CAF50; /* Green border */
    padding: 20px; /* Adequate padding */
    width: 100%; /* Full width */
    max-width: 600px; /* Restrict width */
    margin: 20px auto; /* Center the message */
    border-radius: 10px; /* Rounded corners */
    text-align: center; /* Center-align text */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    font-family: 'Arial', sans-serif; /* Clear, readable font */
}

.checkout-savings-summary p {
    font-size: 18px; /* Larger text */
    color: #333333; /* Dark gray text */
    line-height: 1.5; /* Space between lines */
    margin: 10px 0; /* Spacing between lines */
}

.checkout-savings-summary p strong {
    color: #FF5722; /* Bright red for savings */
    font-size: 20px; /* Larger font */
}

.checkout-savings-summary a {
    color: #4CAF50; /* Green for links */
    font-weight: bold;
    text-decoration: none;
    background-color: #fff;
    border: 2px solid #4CAF50;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.checkout-savings-summary a:hover {
    background-color: #4CAF50;
    color: #fff;
}

@media (max-width: 768px) {
    .checkout-savings-summary {
        padding: 15px; /* Reduced padding on mobile */
    }

    .checkout-savings-summary p {
        font-size: 16px; /* Smaller font size */
    }

    .checkout-savings-summary p strong {
        font-size: 18px; /* Smaller font for mobile */
    }
}

/* Hide billing city & state fields on checkout (but keep them in form) */
.woocommerce-billing-fields__field-wrapper #billing_city_field,
.woocommerce-billing-fields__field-wrapper #billing_state_field {
    display: none !important;
}
#billing_country_field {
    display: none !important;
}

/* Hide Billing Address Line 2 */
#billing_address_2_field {
    display: none !important;
}

/* Hide Order Notes / Order Comments */
#order_comments_field {
    display: none !important;
}