/* ── SHOP PAGE ────────────────────────────────────────────── */

/* -- Page canvas: single off-axis red glow, bottom-right only (no
   counterpart glow) -- a different single-glow "type" from GG's
   plum/top-center minimal wash, positioned opposite it, fitting a
   lighter/more playful product page. -- */
body.page-shop {
  background:
    radial-gradient(ellipse 1000px 650px at 100% 100%, rgba(195,34,31,0.18), transparent 60%),
    var(--clr-dark);
}
:root[data-theme="light"] body.page-shop {
  background:
    radial-gradient(ellipse 1000px 650px at 100% 100%, rgba(195,34,31,0.10), transparent 60%),
    var(--clr-dark);
}

/* -- .section-header base rule: this page doesn't load UseCases css
   (the feature that normally supplies it), so define it here — own
   copy per the "each feature stands alone" convention. -- */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header p {
  color: var(--clr-text-muted);
  max-width: 560px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

/* -- Header/hero: neither POC/GG's photo nor Investor Center's dot-grid —
   a diagonal stripe "label/tag" texture + brand corner glows, evoking
   a merch/apparel tag rather than a data console or a job-site photo. -- */
#shop-overview {
  position: relative;
  overflow: hidden;
  background: var(--clr-dark);
}
#shop-overview > .container {
  position: relative;
  z-index: 2;
}
#shop-overview .section-header p {
  max-width: 640px;
}
.shop-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 100%, rgba(195,34,31,0.18), transparent 55%),
    radial-gradient(circle at 5% 0%, rgba(89,28,83,0.2), transparent 55%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 2px, transparent 2px, transparent 22px);
  z-index: 0;
}
:root[data-theme="light"] .shop-hero-bg {
  background:
    radial-gradient(circle at 90% 100%, rgba(195,34,31,0.22), transparent 55%),
    radial-gradient(circle at 5% 0%, rgba(89,28,83,0.24), transparent 55%),
    repeating-linear-gradient(135deg, rgba(0,0,0,0.05) 0px, rgba(0,0,0,0.05) 2px, transparent 2px, transparent 22px);
}
.shop-intro-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.shop-fine-print {
  max-width: 640px;
  margin: 2.5rem auto 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(144,144,168,0.75);
  font-style: italic;
  line-height: 1.7;
}

/* -- Products section -- */
#shop-products {
  background:
    radial-gradient(ellipse 700px 450px at 0% 0%, rgba(89,28,83,0.09), transparent 55%),
    var(--clr-dark-2);
}
:root[data-theme="light"] #shop-products {
  background:
    radial-gradient(ellipse 700px 450px at 0% 0%, rgba(89,28,83,0.06), transparent 55%),
    var(--clr-dark-2);
}

/* -- Fulfillment flow strip: previews how orders will work once live
   (browse → checkout → printed & shipped by our partner) — communicates
   the print-on-demand model honestly, without mocking up custom cart/
   checkout chrome we're not building at this stage. -- */
.shop-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.shop-flow-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 50px;
  padding: 0.75rem 1.5rem 0.75rem 0.75rem;
}
.shop-flow-num {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 0.85rem;
  box-shadow: 0 0 20px rgba(195,34,31,0.3);
}
.shop-flow-step span {
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  color: var(--clr-white);
  white-space: nowrap;
}
.shop-flow-arrow {
  color: var(--clr-text-muted);
  flex-shrink: 0;
}
.shop-flow-arrow svg { width: 18px; height: 18px; }

/* -- Future Commerce Structure: the doc's literal Section F list
   (price/size-color/cart/payment/shipping/order-confirm/inventory),
   framed as capabilities the checkout+fulfillment partner will bring
   online — not a custom system we're building. Lives inside the same
   fulfillment section as the 3-step flow above it. -- */
.shop-future-block {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--clr-border);
}
.shop-future-heading {
  font-family: var(--font-title);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--clr-white);
  margin-bottom: 0.6rem;
}
.shop-future-sub {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  max-width: 540px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.shop-future-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.shop-future-tag {
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  border: 1px solid var(--clr-border);
  background: var(--clr-dark-3);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(144,144,168,0.8);
}

/* -- Product grid -- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.75rem;
}
.shop-product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  transition: var(--transition);
}
.shop-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(195,34,31,0.3);
  box-shadow: var(--shadow-card);
}
.shop-ribbon {
  position: absolute;
  top: 16px;
  right: -34px;
  width: 140px;
  transform: rotate(45deg);
  background: var(--grad-brand);
  color: #ffffff;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  box-shadow: 0 4px 14px rgba(195,34,31,0.3);
}
.shop-product-icon {
  width: 64px; height: 64px;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(195,34,31,0.1);
  color: var(--clr-red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-product-icon svg { width: 32px; height: 32px; }
.shop-product-card h4 {
  font-family: var(--font-title);
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--clr-white);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.shop-product-desc {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  font-style: italic;
  margin-bottom: 1rem;
}
.shop-swatches {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}
.shop-swatch {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
}
.shop-swatch.is-black { background: #111118; }
.shop-swatch.is-red { background: var(--clr-red); }
.shop-swatch.is-white { background: #ffffff; border-color: rgba(0,0,0,0.18); }
.shop-swatch-label {
  font-size: 0.68rem;
  color: var(--clr-text-muted);
  margin-left: 0.25rem;
}
.shop-size-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}
.shop-size-pill {
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(144,144,168,0.7);
  background: var(--clr-dark-3);
}
.shop-price {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: rgba(144,144,168,0.55);
  margin-bottom: 1.25rem;
}
.shop-cta-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(144,144,168,0.6);
  background: transparent;
  border: 1.5px solid var(--clr-border);
  cursor: default;
  pointer-events: none;
}

/* -- Trademark note (fine print, own card so it reads separately
   from the availability note in the hero) -- */
.shop-trademark-note {
  max-width: 720px;
  margin: 3rem auto 0;
  padding: 1.5rem 1.75rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-left: 4px solid var(--clr-plum-light);
  border-radius: var(--radius-md);
  text-align: left;
}
.shop-trademark-note p {
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0;
}

/* -- Closing support CTA -- */
#shop-support { background: var(--clr-dark); text-align: center; }
.shop-support-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 600px) {
  .shop-flow { flex-direction: column; align-items: stretch; }
  .shop-flow-step { justify-content: center; }
  .shop-flow-arrow { transform: rotate(90deg); align-self: center; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .shop-product-card { padding: 1.5rem 1.25rem 1.25rem; }
  .shop-product-icon { width: 52px; height: 52px; }
  .shop-product-icon svg { width: 26px; height: 26px; }
  .shop-ribbon { top: 12px; right: -38px; width: 130px; font-size: 0.56rem; }
}
