/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 13 2025 | 05:26:05 */
/* Add your CSS code here./* Cart and Checkout buttons - fix text color */
.woocommerce a.button,
.woocommerce button.button,
.wc-block-cart__submit-button,
.wc-block-components-button,
.wc-block-cart__submit-button .wc-block-components-button__text {
  color: #ffffff !important;   /* White text */
  font-weight: 600 !important;
  text-transform: uppercase;
}

/* Hover effect for buttons */
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-button:hover {
  background-color: #cc7000 !important;  /* darker orange */
  color: #ffffff !important;
}


For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

