/*
 * Minimal woocommerce.css
 * Purpose: avoid 404 console error for missing stylesheet and provide a minimal safety import.
 * The real styling comes from Tailwind (dist/output.css) and woocommerce-fixes.css.
 */

/* Try to import the final overrides (relative to theme directory) */
@import url('woocommerce-fixes.css');

/* Minimal safe defaults so a missing Tailwind/build doesn't completely break layout */
.woocommerce {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #111827;
  background: transparent;
}

.woocommerce ul.products {
  margin: 0;
  padding: 0;
  list-style: none;
}
