/* Shiloh's House — container background consistency fix (stopgap via theme editor)
   Normalizes the WooCommerce/article container so it matches the site's black (--dark:#000)
   instead of Astra's leftover navy (#021119). Fixes the inconsistent band on product pages. */
body,
.ast-separate-container,
.woocommerce.ast-separate-container .ast-woocommerce-container,
.ast-separate-container .ast-article-single:not(.ast-related-post){
  background-color: var(--dark, #000) !important;
  background-image: none !important;
}

/* Returns-policy line: box it consistently across ALL products (some had it inline, most didn't).
   Class-based so it can't drift and isn't subject to inline-style sanitizing. */
.prod-returns-note{
  background: rgba(127,220,205,.06);
  border: 1px solid rgba(127,220,205,.18);
}
