/* === publisher / PDP / PLP additions (rantoys) === */
.pdp-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  padding: 1.4rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.pdp-crumb a { color: inherit; text-decoration: none; }
.pdp-crumb a:hover { color: var(--coral-dark); }
.product-page { padding-bottom: 4rem; }
.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: 1.5rem 0 2rem;
  align-items: start;
}
.gallery {
  position: sticky;
  top: 5.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}
.gallery.empty {
  display: grid;
  place-items: center;
  min-height: 320px;
  color: var(--ink-soft);
}
.gallery-main {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--sage-light);
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  padding: 0.7rem;
}
.gallery-thumbs button {
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
}
.gallery-thumbs img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.product-buy .eyebrow { margin-bottom: 0.7rem; }
.product-buy h1 {
  max-width: 14ch;
  margin-bottom: 0.85rem;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}
.product-buy .intro { color: var(--ink-soft); margin-bottom: 0.85rem; }
.product-buy .note {
  margin: 0 0 1.2rem;
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--honey);
  border-radius: 0 12px 12px 0;
  background: rgba(214, 169, 75, 0.12);
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.pdp-section-title {
  margin: 1.8rem 0 0.7rem;
  font-size: 1.25rem;
}
.specs {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.specs th,
.specs td {
  padding: 0.65rem 0.2rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.specs th {
  width: 38%;
  color: var(--ink-soft);
  font-weight: 600;
}
.certs { margin: 0; padding-left: 1.1rem; color: var(--ink-soft); }
.product-detail.prose { padding-top: 0.5rem; }
.product-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.product-card a { display: block; color: inherit; text-decoration: none; }
.product-card-media {
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 2;
  background: var(--sage-light);
  overflow: hidden;
}
.product-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.card-media-empty {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  aspect-ratio: 3 / 2;
  background: var(--sage-light);
  color: var(--sage-dark);
  font: 700 2rem/1 var(--font-display);
}
.product-card-body { padding: 1.05rem 1.15rem 1.3rem; }
.product-card-body .sku {
  margin: 0 0 0.35rem;
  color: var(--coral-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-card-body h2 {
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}
.blog-index-section { padding: 0 0 5rem; }
.blog-card a { display: block; color: inherit; text-decoration: none; }
.blog-card-media img { width: 100%; aspect-ratio: 1.45; object-fit: cover; display: block; }
.blog-card > a > .blog-card-body,
.blog-card .blog-card-body {
  padding: 1.45rem 1.5rem 1.6rem;
  box-sizing: border-box;
}
.blog-card > a:not(:has(.blog-card-body)) {
  padding: 1.45rem 1.5rem 1.6rem;
  box-sizing: border-box;
}
.blog-pagination-status {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.article-cta { padding: 0 0 4rem; }
.article-page .meta { margin-bottom: 0.8rem; }
.article-author {
  margin: 0 0 0.55rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* Wider blog detail reading column */
.article-page .content-hero.wrap,
.article-page .article-body.prose,
.article-page .article-body,
.article-page .article-cta.wrap {
  max-width: 1100px;
}
.article-page .article-body.prose,
.article-page .article-body {
  padding-top: 1.5rem;
}

/* Blog / prose tables */
.article-body .table-wrap,
.prose .table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 1.6rem 0 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}
.article-body table,
.prose table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.article-body th,
.article-body td,
.prose th,
.prose td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.article-body th,
.prose th {
  width: 34%;
  color: var(--ink);
  background: rgba(111, 130, 106, 0.08);
  font-weight: 700;
}
.article-body tr:last-child th,
.article-body tr:last-child td,
.prose tr:last-child th,
.prose tr:last-child td {
  border-bottom: 0;
}
.article-body td,
.prose td {
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .product-cards { grid-template-columns: 1fr; }
}
