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

/* Tools section is split into 3 groups (Photographers, Visualizers, Modifier).
   Each group has a small label sub-heading and its own card grid below. */
.tool-group {
  margin-top: 48px;
}
.tool-group:first-of-type { margin-top: 32px; }

/* Group label — visually quieter than a section H2, louder than body text.
   Stays as <span> so the H1/H2/H3 hierarchy isn't disturbed for SEO. */
.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 A and Group B both use 2-col on desktop. Reuses the same grid pattern
   we built for the Try-On page so card density stays consistent. */
.products-grid-2col {
  grid-template-columns: 1fr;
  margin-top: 0; /* group label provides the separation */
}
@media (min-width: 768px) {
  .products-grid-2col { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* Group C is a single Modifier card, centered at desktop with capped width
   so it doesn't read as a lonely full-width box. */
.products-grid-1col-centered {
  grid-template-columns: 1fr;
  margin-top: 0;
  max-width: 600px; /* roughly the width of one card from Group A/B */
  margin-left: auto;
  margin-right: auto;
}
