/* ─────────────────────────────────────────────────────────────────────────
   Catalog page (/catalog/)
   Builds on ../styles.css — tokens, .container, .btn, .product-card,
   .product-grid, .qty-stepper and the cart badge live there.
   ───────────────────────────────────────────────────────────────────────── */

.catalog {
  padding: 100px 0;
}
.catalog .section-lead {
  margin-bottom: 48px;
}

/* Add-to-cart button */
.add-to-cart {
  width: 100%;
}
.add-to-cart.added {
  background: var(--gold);
  color: var(--ink);
}

/* Catalog cards: price, quantity */
.product-price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  margin: 4px 0 14px;
}
.catalog-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.catalog-actions .qty-stepper {
  display: flex;
}
.catalog-actions .qty-input {
  flex: 1;
  width: auto;
}

@media (max-width: 820px) {
  .catalog {
    padding: 64px 0;
  }
}
@media (max-width: 480px) {
  .catalog {
    padding: 56px 0;
  }
}
