/* Shop/archive-only background (loaded conditionally from functions.php) */
body.woocommerce-shop {
  background-color: #06070b;
  background-image: url("../images/background7.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  color: #e9e9f1;
}

/* Darkening layer for readability */
body.woocommerce-shop::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgb(6 7 11 / 16%);
  pointer-events: none;
  z-index: 0;
}

/* Keep archive content above background layer */
body.woocommerce-shop .site {
  position: relative;
  z-index: 1;
  background: transparent;
}
