/*  ----------------------------------------------
*   Make ALL WooCommerce notices light blue 
*   23.8.25 - need to go into overrides.css
*   ---------------------------------------------- */

/* Enfold + WooCommerce (classic templates) */
#top .woocommerce .woocommerce-message,
#top .woocommerce .woocommerce-info,
#top .woocommerce .woocommerce-error,
#top .woocommerce-notices-wrapper .woocommerce-message,
#top .woocommerce-notices-wrapper .woocommerce-info,
#top .woocommerce-notices-wrapper .woocommerce-error {
  background: #e8f4ff !important;          /* light blue */
  background-image: none !important;        /* kill any gradients Enfold adds */
  border: 1px solid #a9d3ff !important;
  color: #0a1f33 !important;
}
#top .woocommerce .woocommerce-message::before,
#top .woocommerce .woocommerce-info::before,
#top .woocommerce .woocommerce-error::before {
  color: #0a5db0 !important;
}
#top .woocommerce .woocommerce-message a,
#top .woocommerce .woocommerce-info a,
#top .woocommerce .woocommerce-error a {
  color: #0a5db0 !important;
  text-decoration: underline;
}

/* WooCommerce Blocks (Cart/Checkout/Mini‑cart) under Enfold */
#top .wc-block-components-notice-banner {
  background: #e8f4ff !important;
  border: 1px solid #a9d3ff !important;
  color: #0a1f33 !important;
}
#top .wc-block-components-notice-banner a {
  color: #0a5db0 !important;
  text-decoration: underline;
}