/* Custom WooCommerce Styles */

/* Example: Style the product title */
.woocommerce ul.products li.product h2 {
    color: #0073e6; /* Change product title color */
    font-size: 1.2em;
}

/* Example: Style the add-to-cart button */
.woocommerce a.button.add_to_cart_button {
    background-color: #005bb5;
    color: #ffffff;
    border-radius: 5px;
    padding: 10px 20px;
    text-transform: uppercase;
}

.woocommerce a.button.add_to_cart_button:hover {
    background-color: #0073e6;
}

/* Example: Style the checkout page */
.woocommerce-checkout-review-order {
    border: 1px solid #ddd;
    padding: 20px;
    background-color: #f9f9f9;
}

/* Add your custom WooCommerce styles below */
