/* ============================================================
   KING OF K — product page styles
   Lifted out of product.html's inline <style> when product pages
   became generated files under /products/. Shared by every
   generated page; edit here, not in the generator.
   ============================================================ */

.crumb {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-700);
  margin-bottom: 2.2rem;
  transition: color 0.25s;
}
.crumb:hover { color: var(--green-800); }
.product-price {
  font-family: var(--font-display);
  font-weight: 420;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--gold-700);
  margin: 0.5rem 0 0.2rem;
}
.product-price .per {
  font-size: 0.45em;
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-left: 0.6em;
}
.buy-qty {
  margin-top: 0;
  gap: 0.9rem;
  padding: 0 1.1em;
  border: 1px solid rgba(140, 109, 31, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}
.buy-qty span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--green-950);
  min-width: 1.6em;
  text-align: center;
}
.p-desc {
  color: var(--ink-soft);
  max-width: 58ch;
  margin: 0.6rem 0 1.8rem;
}
.spec-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 0.95rem 0.2rem;
  border-top: var(--hairline);
  font-size: 0.92rem;
  color: var(--ink-soft);
  max-width: 58ch;
}
.spec-row:last-of-type { border-bottom: var(--hairline); }
.spec-row .spec-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-700);
  padding-top: 0.25em;
}
.compliance-line {
  margin-top: 1.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}
.compliance-line a { color: var(--gold-700); }
@media (max-width: 640px) {
  .spec-row { grid-template-columns: 1fr; gap: 0.2rem; }
}
