/* =========================================================================
   AI Product Photography — page-specific overrides
   v1 / 2026-04-30
   Loads after ai-jewelry-retoucher.css and ai-jewelry-retoucher-dark.css.

   This page has 8 cards in 3 groups (3+4+1). Each group uses a different
   grid pattern so the cards stay balanced regardless of count.
   Cards are COMPACT (Try-On style) — no description, no Pro Tip block.
   ========================================================================= */

/* Group container — same pattern as Creative Photography page */
.tool-group { margin-top: 48px; }
.tool-group:first-of-type { margin-top: 32px; }

.group-label {
  display: inline-block;
  font-family: var(--body-font);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
  padding: 4px 0;
  border-bottom: 2px solid var(--blue);
}
[data-theme="dark"] .group-label { color: #5BAACA; border-bottom-color: #5BAACA; }

/* Group 1 — 3 cards in a row at desktop */
.products-grid-3col {
  grid-template-columns: 1fr;
  margin-top: 0;
}
@media (min-width: 768px) {
  .products-grid-3col { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1024px) {
  .products-grid-3col { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* Group 2 — 4 cards in 2x2 at desktop */
.products-grid-2col {
  grid-template-columns: 1fr;
  margin-top: 0;
}
@media (min-width: 768px) {
  .products-grid-2col { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* Group 3 — single card centered, capped width so it doesn't read as orphaned */
.products-grid-1col-centered {
  grid-template-columns: 1fr;
  margin-top: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Compact card — Try-On style, no description, no Pro Tip.
   Slightly smaller image height + tighter padding so 8 cards across
   3 groups don't make the page feel endless. */
.product-card-compact .product-image { height: 180px; }
.product-card-compact .product-content { padding: 22px 22px 24px; }
.product-card-compact h3 {
  font-size: 1.18rem;
  margin-bottom: 6px;
}
.product-card-compact .product-tagline {
  font-size: 0.92rem;
  margin-bottom: 14px;
}
.product-card-compact .product-best-for {
  padding-top: 12px;
  margin-bottom: 14px;
  font-size: 0.84rem;
}
.product-card-compact .product-credits {
  margin-bottom: 14px;
  font-size: 0.9rem;
}

/* Why-NeuroViz reasons block (numbered list on dark bg) */
.why-reasons ol {
  margin: 24px 0 0;
  padding-left: 24px;
  max-width: 760px;
}
.why-reasons li {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
  font-size: 0.98rem;
  line-height: 1.6;
}
.why-reasons li strong { color: #FFFFFF; }
