/* ── Single product page ────────────────────────────────────────────── */

.jsh-product {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
  padding: 40px 0;
}
@media (max-width: 860px) {
  .jsh-product { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Gallery ────────────────────────────────────────────────────────── */
.jsh-product__gallery { position: sticky; top: 130px; }
.jsh-product__main-img {
  position: relative; aspect-ratio: 1/1; border-radius: 20px; overflow: hidden;
  background: linear-gradient(180deg, var(--jsh-cream-soft), var(--jsh-cream-warm));
  border: 1px solid var(--jsh-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--jsh-accent);
}
body.jsh-dark .jsh-product__main-img {
  background: linear-gradient(180deg, var(--jsh-forest-dark), var(--jsh-forest-deep));
}
.jsh-product__img-label {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--jsh-font-mono); font-size: 10px;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--jsh-text-dim);
  background: rgba(14,26,20,0.55); padding: 6px 10px;
  border-radius: 999px; backdrop-filter: blur(6px);
}
.jsh-product__thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px;
}
.jsh-product__thumb {
  aspect-ratio: 1/1; border-radius: 12px; cursor: pointer;
  background: var(--jsh-cream-soft); border: 2px solid var(--jsh-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--jsh-text-dim);
  transition: border-color 150ms, color 150ms;
}
body.jsh-dark .jsh-product__thumb { background: var(--jsh-forest-dark); }
.jsh-product__thumb.is-active {
  border-color: var(--jsh-accent); color: var(--jsh-accent);
}

/* ── Buy box ────────────────────────────────────────────────────────── */
.jsh-product__buy { display: flex; flex-direction: column; gap: 0; }
.jsh-product__eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.jsh-product__title {
  font-family: var(--jsh-font-display); font-weight: 400;
  font-size: clamp(36px, 5vw, 56px); line-height: 1;
  letter-spacing: -1.5px; margin: 0; color: var(--jsh-text);
}
.jsh-product__meta {
  display: flex; align-items: center; gap: 14px; margin-top: 16px;
  font-family: var(--jsh-font-mono); font-size: 12px; color: var(--jsh-text-dim);
}
.jsh-product__stars { display: flex; align-items: center; gap: 4px; color: var(--jsh-gold); }
.jsh-product__stars span { color: var(--jsh-text); }
.jsh-product__blurb {
  font-size: 16px; line-height: 1.6; color: var(--jsh-text-soft);
  margin-top: 20px;
}

/* Price */
.jsh-product__price-block { margin-top: 24px; }
.jsh-product__price {
  font-family: var(--jsh-font-display); font-size: 48px;
  color: var(--jsh-text); letter-spacing: -1px; line-height: 1;
}
.jsh-product__price-note {
  font-family: var(--jsh-font-mono); font-size: 11px;
  color: var(--jsh-text-dim); margin-top: 6px;
}

/* Variants */
.jsh-product__variants { display: grid; gap: 20px; margin-top: 28px; }
.jsh-variant__label {
  font-family: var(--jsh-font-mono); font-size: 11px;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--jsh-text-dim);
  margin-bottom: 10px;
}
.jsh-variant__label strong { color: var(--jsh-text); }
.jsh-variant__options { display: flex; flex-wrap: wrap; gap: 8px; }
.jsh-variant__btn {
  padding: 10px 16px; border-radius: 10px; cursor: pointer;
  font-family: var(--jsh-font-body); font-weight: 600; font-size: 13px;
  background: var(--jsh-surface); color: var(--jsh-text);
  border: 1.5px solid var(--jsh-border);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 150ms, border-color 150ms, color 150ms;
}
.jsh-variant__btn.is-active {
  background: var(--jsh-accent); color: var(--jsh-accent-fg);
  border-color: var(--jsh-accent);
}
.jsh-variant__delta {
  font-family: var(--jsh-font-mono); font-size: 11px; opacity: 0.8;
}

/* Qty + Add to cart */
.jsh-product__actions { display: flex; gap: 12px; margin-top: 28px; align-items: stretch; }
.jsh-qty {
  display: flex; align-items: center; border-radius: 999px;
  border: 1.5px solid var(--jsh-border); background: var(--jsh-surface); overflow: hidden;
}
.jsh-qty__btn {
  width: 44px; height: 44px; background: transparent; border: none;
  color: var(--jsh-text); font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.jsh-qty__btn:hover { background: var(--jsh-surface-2); }
.jsh-qty__val {
  min-width: 36px; text-align: center;
  font-family: var(--jsh-font-mono); font-weight: 700; font-size: 15px;
  color: var(--jsh-text);
}
.jsh-product__add-btn {
  flex: 1; border: none; border-radius: 999px; padding: 14px 24px;
  font-family: var(--jsh-font-body); font-weight: 700; font-size: 15px;
  background: var(--jsh-accent); color: var(--jsh-accent-fg); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: background 300ms, color 300ms;
}
.jsh-product__add-btn--added { background: var(--jsh-text); color: var(--jsh-bg); }
.jsh-product__view-cart {
  width: 100%; margin-top: 10px; background: transparent;
  color: var(--jsh-accent); border: 1.5px solid var(--jsh-accent);
  border-radius: 999px; padding: 13px 24px;
  font-family: var(--jsh-font-body); font-weight: 700; font-size: 14px; cursor: pointer;
  transition: background 150ms;
}
.jsh-product__view-cart:hover { background: rgba(79,227,193,.08); }

/* Works with */
.jsh-product__works { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--jsh-border); }
.jsh-product__works-title {
  font-family: var(--jsh-font-mono); font-size: 11px;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--jsh-text-dim);
  margin-bottom: 12px;
}
.jsh-product__works-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.jsh-product__chip {
  font-family: var(--jsh-font-body); font-weight: 600; font-size: 13px;
  color: var(--jsh-text); background: var(--jsh-surface-2);
  border: 1px solid var(--jsh-border); padding: 7px 13px; border-radius: 999px;
}

/* Reassurance row */
.jsh-product__reassurance {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px;
}
.jsh-reassure-card {
  display: flex; flex-direction: column; gap: 8px; align-items: flex-start;
  background: var(--jsh-surface); border: 1px solid var(--jsh-border);
  border-radius: 12px; padding: 14px;
}
.jsh-reassure-card svg { color: var(--jsh-accent); }
.jsh-reassure-card span { font-size: 12px; color: var(--jsh-text-soft); font-weight: 600; }

/* ── Specs section ──────────────────────────────────────────────────── */
.jsh-product-specs {
  background: var(--jsh-surface); padding: 56px var(--jsh-pad-x);
}
.jsh-specs-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start;
  max-width: 1400px; margin: 0 auto;
}
@media (max-width: 720px) { .jsh-specs-grid { grid-template-columns: 1fr; } }
.jsh-specs-intro-pill { margin-bottom: 14px; }
.jsh-specs-intro-title {
  font-family: var(--jsh-font-display); font-weight: 400; font-size: 44px;
  line-height: 1.02; letter-spacing: -1px; margin: 0; color: var(--jsh-text);
}
.jsh-specs-intro-body { font-size: 14px; color: var(--jsh-text-soft); line-height: 1.6; margin-top: 14px; }
.jsh-specs-table {
  background: var(--jsh-bg); border: 1px solid var(--jsh-border);
  border-radius: 16px; overflow: hidden;
}
.jsh-specs-row {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 16px; padding: 16px 22px;
  border-top: 1px solid var(--jsh-border);
}
.jsh-specs-row:first-child { border-top: none; }
.jsh-specs-key {
  font-family: var(--jsh-font-mono); font-size: 11px; letter-spacing: 0.8px;
  text-transform: uppercase; color: var(--jsh-text-dim);
}
.jsh-specs-val { font-size: 14px; color: var(--jsh-text); font-weight: 500; }

/* ── Related products ───────────────────────────────────────────────── */
.jsh-product-related { padding: 72px var(--jsh-pad-x); }
.jsh-product-related__head {
  display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px;
}
.jsh-product-related__title {
  font-family: var(--jsh-font-display); font-size: 44px; font-weight: 400;
  margin: 0; letter-spacing: -1px; color: var(--jsh-text);
}
.jsh-product-related__all {
  background: transparent; color: var(--jsh-accent); border: none;
  font-family: var(--jsh-font-body); font-weight: 600; font-size: 14px;
  cursor: pointer; display: flex; align-items: center; gap: 6px;
  text-decoration: none;
}
.jsh-product-related__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 900px) { .jsh-product-related__grid { grid-template-columns: repeat(2, 1fr); } }

/* Breadcrumb */
.jsh-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--jsh-font-mono); font-size: 11px;
  letter-spacing: 1px; text-transform: uppercase; color: var(--jsh-text-dim);
  padding: 32px var(--jsh-pad-x) 0;
}
.jsh-breadcrumb a { color: inherit; text-decoration: none; cursor: pointer; }
.jsh-breadcrumb a:hover { color: var(--jsh-text); }
.jsh-breadcrumb__current { color: var(--jsh-text); }
