/* ── Shop page (stub — WooCommerce integration TBD) ──────────── */
.page-shop {
  pointer-events: none;
}

#shop-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 960px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
  pointer-events: all;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.3) transparent;
}

#shop-content::-webkit-scrollbar { width: 4px; }
#shop-content::-webkit-scrollbar-track { background: transparent; }
#shop-content::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.3); border-radius: 2px; }

.shop-coming-soon {
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  font-stretch: condensed;
  letter-spacing: 0.12em;
  color: #000;
  text-align: center;
  padding: 3rem 0;
  font-size: 1rem;
}

/* ── Single product pages ─────────────────────────────────────── */
body.single-product {
  overflow: auto;
  background: #ffffff;
}

body.single-product #bg-layer,
body.single-product #fog-canvas {
  display: none;
}

body.single-product #page-content {
  position: static;
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
}

body.single-product #site-nav {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
}
