/* Theme tokens — pet supplies (charcoal / cream / antique gold, editorial serif, square edges) */
body.pet-supplies {
  --ps-ink: #2b2622;
  --ps-ink-soft: #5c554d;
  --ps-cream: #f6f1e7;
  --ps-paper: #fbf8f1;
  --ps-white: #ffffff;
  --ps-gold: #b08d4f;
  --ps-gold-deep: #8f6f38;
  --ps-line: #e3dbcc;
  --ps-charcoal: #23201c;
  --ps-serif: Georgia, 'Times New Roman', serif;
  --ps-sans: 'Helvetica Neue', Arial, sans-serif;
  --ps-radius: 0;
  background: var(--ps-paper);
  color: var(--ps-ink);
  font-family: var(--ps-sans);
}
body.pet-supplies h1,
body.pet-supplies h2,
body.pet-supplies h3 {
  font-family: var(--ps-serif);
  font-weight: 600;
  color: var(--ps-ink);
  letter-spacing: 0.01em;
}
body.pet-supplies a { color: inherit; }
body.pet-supplies .ps-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
body.pet-supplies .ps-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ps-gold-deep);
  margin-bottom: 14px;
}
body.pet-supplies .ps-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ps-charcoal);
  color: #fff;
  padding: 14px 30px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--ps-charcoal);
  border-radius: var(--ps-radius);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
body.pet-supplies .ps-button:hover {
  background: var(--ps-gold);
  border-color: var(--ps-gold);
  color: #fff;
}
body.pet-supplies .ps-button-ghost {
  background: transparent;
  color: var(--ps-charcoal);
}
body.pet-supplies .ps-button-ghost:hover {
  background: var(--ps-charcoal);
  color: #fff;
}
body.pet-supplies .ps-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ps-gold-deep);
  font-size: 14px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--ps-gold);
  padding-bottom: 3px;
  transition: color 0.25s;
}
body.pet-supplies .ps-text-link:hover { color: var(--ps-ink); }
body.pet-supplies .ps-no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 160px;
  background: var(--ps-cream);
  color: var(--ps-gold);
  font-size: 34px;
}
body.pet-supplies .ps-crumb,
body.pet-supplies .ps-crumb a {
  font-size: 13px;
  color: var(--ps-ink-soft);
}
body.pet-supplies .ps-crumb { margin-top: 18px; }
body.pet-supplies .ps-crumb a:hover { color: var(--ps-gold-deep); }
body.pet-supplies .pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 44px 0 10px;
  flex-wrap: wrap;
}
body.pet-supplies .pagination a,
body.pet-supplies .pagination span a {
  display: inline-block;
  padding: 9px 16px;
  border: 1px solid var(--ps-line);
  background: #fff;
  color: var(--ps-ink);
  font-size: 14px;
}
body.pet-supplies .pagination a:hover,
body.pet-supplies .pagination .current a,
body.pet-supplies .pagination span.current a,
body.pet-supplies .pagination span.active a {
  background: var(--ps-charcoal);
  border-color: var(--ps-charcoal);
  color: #fff;
}
