/* ============================================
   Jacked Granny — Shop, PDP, Cart, Checkout
   ============================================ */

:root {
  --jg-yellow: #FFD233;
  --jg-yellow-deep: #E5B821;
  --jg-black: #000000;
  --jg-ink: #111111;
  --jg-mute: #6b6b6b;
  --jg-line: #e8e6e1;
  --jg-paper: #f6f4ee;
  --jg-paper-deep: #ece8de;
  --jg-card: #f9f7f1;
  --jg-red: #B71C1C;
  --jg-cocoa: #5C3317;

  --font-bogart: "bogart", "Cooper Black", Georgia, serif;
  --font-bio: "bio-sans", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.2, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--jg-paper);
  color: var(--jg-ink);
  font-family: var(--font-bio);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; cursor: pointer; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   HEADER
   ============================================ */
.jg-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 80px;
  background: var(--jg-paper);
  border-bottom: 1px solid var(--jg-line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.jg-logo img {
  height: 110px;
  display: block;
}

.jg-nav {
  display: flex;
  align-items: center;
  gap: 50px;
  font-family: var(--font-bio);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.jg-nav a {
  color: var(--jg-ink);
  position: relative;
  padding: 4px 0;
}

.jg-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--jg-yellow);
  transition: width 0.35s var(--ease);
}

.jg-nav a:hover::after,
.jg-nav a.is-active::after { width: 100%; }

.jg-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--jg-ink);
  padding: 12px 32px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}

.jg-cart-btn:hover {
  background: var(--jg-yellow);
  border-color: var(--jg-yellow);
  transform: translateY(-1px);
}

.jg-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 100px;
  background: var(--jg-yellow);
  color: var(--jg-ink);
  font-size: 12px;
  font-weight: 700;
  transition: background 0.3s var(--ease);
}

.jg-cart-btn:hover .jg-cart-count {
  background: var(--jg-ink);
  color: var(--jg-yellow);
}

/* ============================================
   SHOP HERO + GRID
   ============================================ */
.jg-shop {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px 100px;
}

.jg-shop-hero {
  text-align: center;
  margin-bottom: 32px;
}

.jg-shop-hero-eyebrow {
  font-family: var(--font-bio);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jg-mute);
  margin-bottom: 18px;
}

/* Editorial byline — small portrait + name above the title */
.jg-shop-byline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  text-align: left;
}

.jg-shop-byline-portrait {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #d9d4c7;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.jg-shop-byline-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
  filter: saturate(0.95);
}

.jg-shop-byline-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.jg-shop-byline-name {
  font-family: var(--font-bogart);
  font-weight: 400;
  font-style: italic;
  font-size: 19px;
  color: var(--jg-ink);
  letter-spacing: -0.01em;
}

.jg-shop-byline-loc {
  font-family: var(--font-bio);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jg-mute);
  margin-top: 4px;
}

.jg-shop-title {
  font-family: var(--font-bogart);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--jg-ink);
}

.jg-shop-sub {
  margin-top: 18px;
  font-family: var(--font-bogart);
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--jg-mute);
  letter-spacing: -0.01em;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.jg-shop-sub em {
  color: var(--jg-ink);
  font-style: italic;
  font-weight: 400;
}

.jg-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* ----- Product card ----- */
.jg-card {
  position: relative;
  background: var(--jg-card);
  border: 2px solid var(--jg-line);
  border-radius: 6px;
  padding: 32px 32px 28px;
  cursor: pointer;
  overflow: hidden;
  /* fast snap on color/border, slower for shadow & lift */
  transition:
    background-color 0.08s ease-out,
    border-color 0.08s ease-out,
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.jg-card:hover {
  background: #fff;
  border-color: var(--jg-yellow);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.18);
}

.jg-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-bio);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--jg-ink);
  padding: 6px 12px;
  border: 1px solid var(--jg-line);
  border-radius: 100px;
  background: #fff;
}

.jg-card-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 100px;
}

.jg-card-stage {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0 8px;
  overflow: visible;
}

.jg-card-wrapper {
  height: 100%;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform 0.5s var(--ease);
}

/* Duo layout — for the Variety pack: two wrappers, slightly tilted toward each other */
.jg-card-stage.is-duo {
  gap: 0;
}
.jg-card-wrapper-duo {
  height: 78%;
  position: absolute;
  top: 50%;
  transition: transform 0.5s var(--ease);
}
.jg-card-wrapper-duo-1 {
  left: 30%;
  transform: translate(-50%, -50%) rotate(-9deg);
  z-index: 2;
}
.jg-card-wrapper-duo-2 {
  left: 70%;
  transform: translate(-50%, -50%) rotate(9deg);
  z-index: 1;
}
.jg-card:hover .jg-card-wrapper-duo-1 {
  transform: translate(-50%, -38%) rotate(-14deg) translateX(-12%) scale(0.72);
}
.jg-card:hover .jg-card-wrapper-duo-2 {
  transform: translate(-50%, -38%) rotate(14deg) translateX(12%) scale(0.72);
}

/* Variety card: ingredient pills sit ABOVE the wrappers in a 2×2 grid,
   tucked into the empty space at the top of the stage. */
.jg-card-stage.is-duo .jg-card-ings-wrap {
  top: -2%;
  left: 8%;
  right: 8%;
  bottom: auto;
  transform: none;
}
.jg-card-stage.is-duo .jg-card-ings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: max-content;
  gap: 6px 8px;
  align-items: stretch;
  justify-items: stretch;
  z-index: 5;
  width: 100%;
}
.jg-card-stage.is-duo .jg-card-ings-label {
  align-self: center;
  text-align: center;
  width: 100%;
  padding-left: 0;
}
.jg-card-stage.is-duo .jg-card-ings li {
  /* fade up in place instead of sliding from the right edge */
  transform: translateY(-6px);
  text-align: center;
  width: 100%;
  max-width: 100%;
  white-space: normal;
  font-size: clamp(10px, 1vw, 14px);
  letter-spacing: 0.12em;
  padding: clamp(6px, 0.7vw, 10px) clamp(8px, 0.9vw, 14px);
  line-height: 1.15;
}

.jg-ing-or {
  font-family: var(--font-bogart);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: lowercase;
  font-size: 1.15em;
  color: var(--jg-mute, #6b6b6b);
}
.jg-card.is-hover .jg-card-stage.is-duo .jg-card-ings li,
.jg-card:hover .jg-card-stage.is-duo .jg-card-ings li {
  transform: translateY(0);
}

.jg-card:hover .jg-card-wrapper:not(.jg-card-wrapper-duo) {
  transform: translateX(22%) scale(0.78);
}

/* Ingredients list — appears to the LEFT of the bar (which slides right) */
.jg-card-ings-wrap {
  position: absolute;
  top: 50%;
  left: clamp(12px, 1.6vw, 28px);
  right: 52%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.9vw, 14px);
  align-items: flex-start;
  pointer-events: none;
  z-index: 4;
}

.jg-card-ings-label {
  font-family: var(--font-bogart);
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--jg-ink);
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s var(--ease), transform 0.4s var(--ease);
  padding-left: 2px;
}

.jg-card:hover .jg-card-ings-label {
  opacity: 1;
  transform: translateX(0);
}

.jg-card-ings {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(5px, 0.55vw, 9px);
  align-items: flex-start;
  width: 100%;
}

.jg-card-ings li {
  font-family: var(--font-bio);
  /* scale with viewport: small on narrow screens, larger on wide */
  font-size: clamp(9px, 0.95vw, 14px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jg-ink);
  padding: clamp(5px, 0.55vw, 9px) clamp(10px, 1.1vw, 16px);
  background: #fff;
  border: 1px solid var(--jg-line);
  border-radius: 100px;
  white-space: normal;
  line-height: 1.15;
  max-width: 100%;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.35s var(--ease), transform 0.45s var(--ease);
}

.jg-card:hover .jg-card-ings li {
  opacity: 1;
  transform: translateX(0);
}
.jg-card-foot {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: nowrap;
  border-top: 1px solid var(--jg-line);
  padding-top: 20px;
  padding-right: 110px; /* reserve space for the absolutely-positioned CTA */
  margin-top: 12px;
  min-height: 96px;     /* keep all cards' foot the same height */
}

.jg-card-foot > :first-child { min-width: 0; flex: 1 1 auto; }

.jg-card-foot h2 {
  font-family: var(--font-bogart);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--jg-ink);
}

.jg-card-meta {
  font-family: var(--font-bio);
  font-size: 13px;
  font-weight: 500;
  color: var(--jg-mute);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.jg-card-cta {
  position: absolute;
  right: 0;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
  font-family: var(--font-bio);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--jg-ink);
  padding: 12px 18px 12px 22px;
  border: 1.5px solid var(--jg-ink);
  border-radius: 100px;
  background: var(--jg-yellow);
  transition: all 0.35s var(--ease);
}

.jg-card-cta svg { transition: transform 0.4s var(--ease); }
.jg-card:hover .jg-card-cta svg { transform: translateX(4px); }

.jg-placeholder-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--jg-mute);
  background: rgba(255, 255, 255, 0.85);
  padding: 4px 8px;
  border: 1px dashed var(--jg-mute);
  border-radius: 3px;
}

/* ----- Stats strip ----- */
.jg-shop-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 110px;
  margin-top: 60px;
  padding: 32px 0;
  border-top: 1px solid var(--jg-line);
  border-bottom: 1px solid var(--jg-line);
}

.jg-strip-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: var(--font-bogart);
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* Vertical separator between stats */
.jg-strip-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -55px;
  transform: translateY(-50%);
  width: 1px;
  height: 56px;
  background: var(--jg-line);
}

.jg-strip-stat .num {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  color: var(--jg-ink);
}

.jg-strip-stat .lbl {
  font-family: var(--font-bio);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--jg-mute);
  margin-top: 8px;
}

/* ----- Founder strip (image with title overlaid) ----- */
.jg-shop-portrait {
  position: relative;
  margin-top: 0;
  margin-bottom: 48px;
  /* break out of .jg-shop padding to full-bleed (uses scrollbar-safe 100vw) */
  margin-left: calc(-1 * (100vw - 100%) / 2 - 56px);
  margin-right: calc(-1 * (100vw - 100%) / 2 - 56px);
  width: auto;
  height: clamp(420px, 58vh, 600px);
  overflow: hidden;
  background: #1a1410;
}

.jg-shop-portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  display: block;
}

.jg-shop-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 7, 4, 0) 35%,
    rgba(10, 7, 4, 0.55) 100%
  );
  pointer-events: none;
}

.jg-shop-portrait-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 56px 48px;
  z-index: 1;
}

.jg-shop-portrait-eyebrow {
  font-family: var(--font-bio);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246, 241, 230, 0.85);
  margin-bottom: 18px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.jg-shop-portrait-title {
  font-family: var(--font-bogart);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #f6f1e6;
  margin: 0;
  text-align: center;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

@media (max-width: 720px) {
  .jg-shop-portrait { height: clamp(360px, 60vh, 460px); margin-bottom: 36px; margin-left: -24px; margin-right: -24px; }
  .jg-shop-portrait-caption { padding: 0 24px 32px; }
}

/* ============================================
   PDP
   ============================================ */
.jg-pdp {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 56px 100px;
}

.jg-breadcrumb {
  font-family: var(--font-bio);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jg-mute);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.jg-breadcrumb a { color: var(--jg-mute); }
.jg-breadcrumb a:hover { color: var(--jg-ink); }
.jg-breadcrumb span:last-child { color: var(--jg-ink); }

.jg-pdp-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.jg-pdp-stage {
  position: relative;
  background: #ffffff;
  border: 2px solid var(--jg-line);
  border-radius: 8px;
  height: clamp(420px, 62vh, 620px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 90px;
  overflow: hidden;
  transition:
    border-color 0.08s ease-out,
    box-shadow 0.25s var(--ease);
}

.jg-pdp-stage:hover {
  border-color: var(--jg-yellow);
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, 0.18);
}

.jg-pdp-bgword {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-6deg);
  font-family: var(--font-bogart);
  font-weight: 400;
  font-size: clamp(140px, 22vw, 280px);
  line-height: 0.85;
  color: var(--jg-paper-deep);
  letter-spacing: -0.05em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.jg-pdp-wrapper {
  position: relative;
  z-index: 2;
  height: 100%;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.18));
  transition: transform 0.55s var(--ease);
}

/* Naked bar — same size as wrapper, sits right next to it on hover.
   The naked PNG has heavier horizontal padding than vertical, so height
   matches the wrapper's height (72%); horizontal offset is tight. */
.jg-pdp-naked {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  height: 72%;
  width: auto;
  object-fit: contain;
  transform: translate(-50%, -50%) scale(0.96);
  opacity: 0;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.18));
  transition: transform 0.6s var(--ease), opacity 0.45s var(--ease);
  pointer-events: none;
}

.jg-pdp-stage:hover .jg-pdp-wrapper {
  /* slide down so bottom is flush with bottom of stage; small left nudge keeps composition */
  transform: translateY(14%);
}

.jg-pdp-stage:hover .jg-pdp-naked {
  /* slide up so top of bar is just below the top edge of the stage */
  transform: translate(-50%, -64%) scale(1);
  opacity: 1;
}

@keyframes jgFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.jg-pdp-stage-stats {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  z-index: 3;
  font-family: var(--font-bogart);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
  transform-origin: bottom center;
}

.jg-pdp-stage:hover .jg-pdp-stage-stats {
  transform: scale(0.7);
  opacity: 0;
}

.jg-pdp-stage-stats > div {
  display: flex;
  flex-direction: column;
  padding: 8px 18px;
  background: transparent;
  backdrop-filter: none;
  border: none;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0;
  text-align: center;
  font-weight: 400;
}

.jg-pdp-stage-stats > div:first-child {
  border-left: none;
}

.jg-pdp-stage-stats span {
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--jg-ink);
}

.jg-pdp-stage-stats > div::after {
  content: attr(data);
}

.jg-pdp-stage-stats > div {
  font-family: var(--font-bio);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jg-mute);
}

.jg-pdp-stage-stats > div span {
  font-family: var(--font-bogart);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--jg-ink);
  margin-bottom: 4px;
  text-transform: none;
}

/* ----- PDP info column ----- */
.jg-pdp-info {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}

.jg-pdp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.jg-pdp-eyebrow .dot {
  width: 22px;
  height: 22px;
  border-radius: 100px;
}

.jg-pdp-title {
  font-family: var(--font-bogart);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--jg-ink);
}

.jg-pdp-tagline {
  font-family: var(--font-bogart);
  font-weight: 300;
  font-size: 22px;
  color: var(--jg-mute);
  margin-top: 12px;
  letter-spacing: -0.01em;
}

.jg-pdp-ings {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.jg-ing-tag {
  font-family: var(--font-bio);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 12px;
  border: 1px solid var(--jg-line);
  border-radius: 4px;
  background: #fff;
  color: var(--jg-ink);
}

.jg-pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 22px;
  padding-top: 22px;
  border-top: 1px solid var(--jg-line);
}

.jg-pdp-price {
  font-family: var(--font-bogart);
  font-size: 44px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--jg-ink);
}

.jg-pdp-price-strike {
  font-family: var(--font-bogart);
  font-size: 22px;
  color: var(--jg-mute);
  text-decoration: line-through;
}

.jg-pdp-price-meta {
  font-family: var(--font-bio);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--jg-mute);
}

.jg-pdp-savings-chip {
  font-family: var(--font-bio);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1f6e3a;
  background: #e6f3ea;
  border: 1px solid #b8dcc4;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.jg-pdp-price-dot {
  margin: 0 8px;
  opacity: 0.5;
}

.jg-pdp-section {
  margin-bottom: 22px;
}

.jg-pdp-section-label {
  font-family: var(--font-bio);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jg-mute);
  margin-bottom: 10px;
}

.jg-pdp-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.jg-opt {
  background: #fff;
  border: 2px solid var(--jg-line);
  border-radius: 8px;
  padding: 14px 14px;
  text-align: left;
  transition:
    background-color 0.08s ease-out,
    border-color 0.08s ease-out,
    box-shadow 0.25s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  cursor: pointer;
  min-height: 110px;
}

.jg-opt:hover:not(.is-active) {
  border-color: var(--jg-yellow);
  background: #fffbed;
}

.jg-opt.is-active {
  border-color: var(--jg-ink);
  background: var(--jg-yellow);
  box-shadow: 0 0 0 1.5px var(--jg-ink) inset;
}

.jg-opt-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
}

.jg-opt-label {
  font-family: var(--font-bio);
  font-size: 13px;
  font-weight: 700;
  color: var(--jg-ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.jg-opt-badge {
  font-family: var(--font-bio);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 6px;
  border-radius: 3px;
  background: var(--jg-ink);
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

.jg-opt-badge.save {
  background: #1f7a3a;
  color: #fff;
}

.jg-opt.is-active .jg-opt-badge {
  background: var(--jg-ink);
  color: #fff;
}

.jg-opt-price {
  font-family: var(--font-bogart);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--jg-ink);
}

.jg-pdp-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1.5px solid var(--jg-ink);
  border-radius: 100px;
  padding: 4px;
}

.jg-toggle {
  font-family: var(--font-bio);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  border-radius: 100px;
  color: var(--jg-ink);
  transition: all 0.3s var(--ease);
}

.jg-toggle.is-active {
  background: var(--jg-ink);
  color: var(--jg-yellow);
}

.jg-sub-note {
  font-family: var(--font-bio);
  font-size: 12px;
  font-weight: 500;
  color: var(--jg-mute);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

.jg-pdp-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.jg-qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--jg-ink);
  border-radius: 100px;
  background: #fff;
  overflow: hidden;
}

.jg-qty button {
  width: 50px;
  height: 56px;
  font-size: 22px;
  font-weight: 400;
  color: var(--jg-ink);
  transition: background 0.2s var(--ease);
}

.jg-qty button:hover { background: var(--jg-paper-deep); }

.jg-qty span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  font-family: var(--font-bio);
  font-size: 16px;
  font-weight: 700;
  color: var(--jg-ink);
}

.jg-qty-sm button { width: 32px; height: 32px; font-size: 16px; }
.jg-qty-sm span { min-width: 24px; font-size: 13px; }

.jg-add-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 56px;
  padding: 0 28px;
  font-family: var(--font-bogart);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  background: var(--jg-yellow);
  color: var(--jg-ink);
  border: 1.5px solid var(--jg-ink);
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.jg-add-btn > svg { margin-right: 8px; }

.jg-add-btn:hover:not(:disabled) {
  background: var(--jg-ink);
  color: var(--jg-yellow);
}

.jg-add-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.jg-add-btn.is-added {
  background: #1f7a3a;
  border-color: #1f7a3a;
  color: #fff;
}

.jg-add-btn-wide { width: 100%; flex: 1; }

.jg-pdp-bullets {
  list-style: none;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--jg-line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.jg-pdp-bullets li {
  font-family: var(--font-bio);
  font-size: 14px;
  font-weight: 500;
  color: var(--jg-ink);
  display: flex;
  align-items: center;
  gap: 12px;
}

.jg-pdp-bullets li::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--jg-yellow-deep);
  flex-shrink: 0;
}

/* ----- PDP detail strip ----- */
.jg-pdp-detail {
  margin-top: 100px;
  padding-top: 60px;
  border-top: 2px solid var(--jg-ink);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.jg-detail-row {
  display: flex;
  flex-direction: column;
}

.jg-detail-num {
  font-family: var(--font-bio);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--jg-mute);
  margin-bottom: 14px;
}

.jg-detail-head {
  font-family: var(--font-bogart);
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: var(--jg-ink);
  margin-bottom: 18px;
}

.jg-detail-body {
  font-family: var(--font-bio);
  font-size: 15px;
  line-height: 1.55;
  color: var(--jg-mute);
  font-weight: 400;
}

/* --- PDP "Dear America" letter --- */
.jg-pdp-letter {
  margin-top: 100px;
  padding-top: 60px;
  padding-bottom: 40px;
  border-top: 2px solid var(--jg-ink);
  display: flex;
  justify-content: center;
}

.jg-letter-inner {
  max-width: 640px;
  font-family: var(--font-bogart);
  font-weight: 300;
  font-size: 26px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--jg-ink);
}

.jg-letter-inner p {
  margin: 0 0 22px 0;
}

.jg-letter-greeting {
  margin-bottom: 28px !important;
}

.jg-letter-signoff {
  margin-top: 40px !important;
  margin-bottom: 4px !important;
}

.jg-letter-signature {
  display: block;
  width: 220px;
  height: auto;
  margin-top: -4px;
  margin-left: -8px;
}

@media (max-width: 720px) {
  .jg-pdp-letter { margin-top: 60px; padding-top: 36px; }
  .jg-letter-inner { font-size: 20px; }
  .jg-letter-signature { width: 180px; }
}

/* ============================================
   CART DRAWER
   ============================================ */
.jg-drawer-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  z-index: 100;
}

.jg-drawer-scrim.is-open {
  opacity: 1;
  pointer-events: auto;
}

.jg-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 460px;
  max-width: 92vw;
  background: var(--jg-paper);
  z-index: 101;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px -20px rgba(0, 0, 0, 0.2);
}

.jg-drawer.is-open { transform: translateX(0); }

.jg-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--jg-line);
}

.jg-drawer-head h2 {
  font-family: var(--font-bogart);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.03em;
  text-transform: lowercase;
}

.jg-x {
  width: 36px;
  height: 36px;
  border-radius: 100px;
  font-size: 24px;
  line-height: 1;
  color: var(--jg-ink);
  transition: background 0.2s var(--ease);
}

.jg-x:hover { background: var(--jg-paper-deep); }

.jg-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 32px;
}

.jg-empty {
  text-align: center;
  padding: 60px 20px;
}

.jg-empty-mark {
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
}

.jg-empty-mark img {
  width: 72px;
  height: auto;
  display: block;
}

.jg-empty h3 {
  font-family: var(--font-bogart);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.jg-empty p {
  font-family: var(--font-bio);
  color: var(--jg-mute);
  margin: 8px 0 24px;
  font-size: 14px;
}

.jg-line {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--jg-line);
  align-items: flex-start;
}

.jg-line:last-child { border-bottom: none; }

.jg-line img {
  width: 70px;
  height: 90px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 4px;
}

.jg-line-name {
  font-family: var(--font-bogart);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--jg-ink);
}

.jg-line-meta {
  font-family: var(--font-bio);
  font-size: 12px;
  color: var(--jg-mute);
  margin: 2px 0 12px;
  letter-spacing: 0.02em;
}

.jg-line-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.jg-remove {
  font-family: var(--font-bio);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jg-mute);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.jg-remove:hover { color: var(--jg-ink); }

.jg-line-price {
  font-family: var(--font-bogart);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--jg-ink);
}

.jg-drawer-foot {
  border-top: 1px solid var(--jg-line);
  padding: 22px 32px 28px;
  background: var(--jg-paper);
}

.jg-foot-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-bogart);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.jg-foot-line-sm {
  font-size: 14px;
  font-family: var(--font-bio);
  font-weight: 500;
  color: var(--jg-mute);
  margin-bottom: 18px;
}

.jg-checkout-btn {
  width: 100%;
  height: 56px;
  background: var(--jg-yellow);
  color: var(--jg-ink);
  border: 1.5px solid var(--jg-ink);
  border-radius: 100px;
  font-family: var(--font-bogart);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: all 0.3s var(--ease);
}

.jg-checkout-btn:hover {
  background: var(--jg-ink);
  color: var(--jg-yellow);
}

.jg-foot-note {
  text-align: center;
  font-family: var(--font-bio);
  font-size: 11px;
  color: var(--jg-mute);
  margin-top: 12px;
  letter-spacing: 0.04em;
}

.jg-link-btn {
  font-family: var(--font-bio);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--jg-ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ============================================
   CHECKOUT
   ============================================ */
.jg-checkout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 56px 100px;
}

.jg-checkout-empty {
  max-width: 600px;
  margin: 100px auto;
  padding: 0 40px;
  text-align: center;
}

.jg-checkout-empty h1 {
  font-family: var(--font-bogart);
  font-weight: 400;
  font-size: 56px;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  margin-bottom: 28px;
}

.jg-checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.jg-link-back {
  display: inline-block;
  margin-bottom: 18px;
}

.jg-checkout-title {
  font-family: var(--font-bogart);
  font-weight: 400;
  font-size: clamp(48px, 6vw, 76px);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: lowercase;
  margin-bottom: 36px;
}

.jg-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}

.jg-step {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  position: relative;
  cursor: default;
}

.jg-step.is-done { cursor: pointer; }

.jg-step:not(:last-child)::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: var(--jg-line);
  margin: 0 14px;
}

.jg-step.is-done:not(:last-child)::after { background: var(--jg-ink); }

.jg-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--jg-line);
  border-radius: 100px;
  font-family: var(--font-bio);
  font-size: 13px;
  font-weight: 700;
  background: var(--jg-paper);
  color: var(--jg-mute);
  flex-shrink: 0;
}

.jg-step.is-active .jg-step-num {
  border-color: var(--jg-ink);
  background: var(--jg-ink);
  color: var(--jg-yellow);
}

.jg-step.is-done .jg-step-num {
  border-color: var(--jg-ink);
  background: var(--jg-yellow);
  color: var(--jg-ink);
}

.jg-step-label {
  font-family: var(--font-bio);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--jg-mute);
  text-transform: uppercase;
}

.jg-step.is-active .jg-step-label,
.jg-step.is-done .jg-step-label { color: var(--jg-ink); }

.jg-step-panel {
  background: #fff;
  border: 1px solid var(--jg-line);
  border-radius: 8px;
  padding: 36px 36px 32px;
}

.jg-step-title {
  font-family: var(--font-bogart);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  margin-bottom: 28px;
}

/* ----- Field ----- */
.jg-field {
  display: block;
  position: relative;
  margin-bottom: 16px;
}

.jg-field-label {
  display: block;
  font-family: var(--font-bio);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jg-mute);
  margin-bottom: 6px;
}

.jg-field input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  font-family: var(--font-bio);
  font-size: 16px;
  color: var(--jg-ink);
  background: var(--jg-paper);
  border: 1.5px solid var(--jg-line);
  border-radius: 6px;
  outline: none;
  transition: all 0.25s var(--ease);
}

.jg-field input:focus {
  border-color: var(--jg-ink);
  background: #fff;
  box-shadow: 0 0 0 3px var(--jg-yellow);
}

.jg-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.jg-row-3 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
}

.jg-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-bio);
  font-size: 14px;
  font-weight: 500;
  color: var(--jg-mute);
  margin-top: 14px;
  cursor: pointer;
}

.jg-check input { accent-color: var(--jg-ink); }

.jg-secure-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-bio);
  font-size: 12px;
  font-weight: 500;
  color: var(--jg-mute);
  margin-top: 12px;
  letter-spacing: 0.02em;
}

.jg-checkout-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
}

.jg-checkout-actions .jg-add-btn {
  flex: 1;
  max-width: 320px;
  margin-left: auto;
}

/* ----- Order summary ----- */
.jg-summary {
  position: sticky;
  top: 110px;
  background: #fff;
  border: 1px solid var(--jg-line);
  border-radius: 8px;
  padding: 28px 28px 22px;
}

.jg-summary h3 {
  font-family: var(--font-bio);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jg-mute);
  margin-bottom: 20px;
}

.jg-summary-line {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--jg-line);
}

.jg-summary-img {
  position: relative;
  width: 60px;
  height: 70px;
  background: var(--jg-paper);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jg-summary-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.jg-summary-qty {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: 100px;
  background: var(--jg-ink);
  color: var(--jg-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-bio);
  font-size: 11px;
  font-weight: 700;
}

.jg-summary-info {
  font-family: var(--font-bogart);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--jg-ink);
}

.jg-summary-meta {
  font-family: var(--font-bio);
  font-size: 11px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--jg-mute);
  margin-top: 2px;
}

.jg-summary-price {
  font-family: var(--font-bogart);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.jg-summary-totals {
  margin-top: 14px;
  padding-top: 14px;
  font-family: var(--font-bio);
  font-size: 14px;
  font-weight: 500;
}

.jg-summary-totals > div {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: var(--jg-mute);
}

.jg-summary-total {
  margin-top: 8px;
  padding-top: 14px !important;
  border-top: 1px solid var(--jg-line);
  font-family: var(--font-bogart) !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em;
  color: var(--jg-ink) !important;
}

/* ============================================
   CONFIRM
   ============================================ */
.jg-confirm {
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background: var(--jg-paper);
}

.jg-confirm-card {
  max-width: 540px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--jg-line);
  border-radius: 12px;
  padding: 56px 48px;
  text-align: center;
}

.jg-confirm-mark {
  width: 84px;
  height: 84px;
  margin: 0 auto 28px;
  border-radius: 100px;
  background: var(--jg-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--jg-ink);
  border: 2.5px solid var(--jg-ink);
}

.jg-confirm-card h1 {
  font-family: var(--font-bogart);
  font-weight: 400;
  font-size: 56px;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: lowercase;
}

.jg-confirm-sub {
  font-family: var(--font-bogart);
  font-weight: 300;
  font-size: 18px;
  color: var(--jg-mute);
  margin: 16px 0 32px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.jg-confirm-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--jg-paper);
  border-radius: 8px;
  text-align: left;
}

.jg-confirm-meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.jg-confirm-meta span {
  font-family: var(--font-bio);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jg-mute);
}

.jg-confirm-meta strong {
  font-family: var(--font-bogart);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--jg-ink);
}

/* ============================================
   FOOTER
   ============================================ */
.jg-footer {
  background: var(--jg-ink);
  color: #fff;
  padding: 64px 56px 28px;
  margin-top: 80px;
}

.jg-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.jg-footer-mark img {
  width: 140px;
  height: auto;
}

.jg-footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  font-family: var(--font-bogart);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.jg-footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.jg-footer-links a:hover { color: var(--jg-yellow); }

.jg-footer-contact-msg {
  font-family: var(--font-bio);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.7);
  flex-basis: 100%;
  margin-top: 6px;
}

.jg-footer-contact-msg a {
  color: var(--jg-yellow);
  text-decoration: none;
}

.jg-footer-contact-msg a:hover { text-decoration: underline; }

.jg-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-bio);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .jg-shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .jg-pdp-grid { grid-template-columns: 1fr; gap: 36px; }
  .jg-pdp-stage { height: 540px; }
  .jg-checkout-grid { grid-template-columns: 1fr; gap: 32px; }
  .jg-summary { position: static; }
}

@media (max-width: 720px) {
  .jg-header { padding: 16px 24px; }
  .jg-logo img { height: 64px; }
  .jg-nav { gap: 18px; font-size: 16px; }
  .jg-nav a { display: none; }
  .jg-nav .jg-cart-btn { display: inline-flex; padding: 8px 18px; font-size: 14px; }

  .jg-shop, .jg-pdp, .jg-checkout { padding-left: 24px; padding-right: 24px; }
  .jg-shop-grid { grid-template-columns: 1fr; }
  .jg-card-stage { height: 280px; }
  .jg-card-foot h2 { font-size: clamp(28px, 7vw, 36px); }
  .jg-card-foot { padding-right: 110px; min-height: 86px; }

  .jg-pdp-stage { height: 420px; }
  .jg-pdp-detail { grid-template-columns: 1fr; gap: 28px; }
  .jg-pdp-actions { flex-direction: column; }
  .jg-pdp-actions .jg-qty { width: 100%; justify-content: space-between; }

  .jg-shop-strip { gap: 28px; flex-wrap: wrap; }
  .jg-strip-stat:not(:last-child)::after { right: -14px; height: 40px; }
  .jg-step-panel { padding: 24px 22px; }
  .jg-stepper { margin-bottom: 28px; }
  .jg-step-label { display: none; }
  .jg-step:not(:last-child)::after { margin: 0 6px; }

  .jg-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .jg-footer-cols { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .jg-footer-cols a { font-size: 14px; }
}

/* ============================================================
   PDP — bundle tier extras + trust badges + shipping bar
   ============================================================ */

.jg-opt-perbar {
  font-family: var(--font-bio);
  font-size: 11px;
  font-weight: 600;
  color: var(--jg-ink);
  opacity: 0.55;
  letter-spacing: 0.02em;
}
.jg-opt.is-active .jg-opt-perbar { opacity: 0.75; }

.jg-opt-sub {
  font-family: var(--font-bio);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jg-ink);
  opacity: 0.6;
  margin-top: 2px;
}
.jg-opt.is-active .jg-opt-sub { opacity: 0.9; }

/* Best value ribbon */
.jg-opt.is-best,
.jg-opt.is-popular {
  margin-top: 10px;
}
.jg-opt-best-ribbon {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-bio);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--jg-ink);
  color: var(--jg-yellow);
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  z-index: 1;
  box-shadow: 0 2px 0 rgba(0,0,0,0.08);
}
.jg-opt-popular-ribbon {
  background: var(--jg-yellow);
  color: var(--jg-ink);
  border: 1.5px solid var(--jg-ink);
}
.jg-opt-price-strike {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--jg-ink);
  opacity: 0.45;
  text-decoration: line-through;
  margin-top: 2px;
}

/* Free-shipping urgency bar */
.jg-shipping-bar {
  margin-top: 14px;
  padding: 10px 14px;
  background: #f4f0e6;
  border: 1.5px dashed var(--jg-ink);
  border-radius: 6px;
  font-family: var(--font-bio);
  font-size: 13px;
  font-weight: 600;
  color: var(--jg-ink);
  text-align: center;
  letter-spacing: 0.01em;
}
.jg-shipping-bar strong {
  font-weight: 800;
}
.jg-ship-check {
  display: inline-block;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  background: #1f7a3a;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  margin-right: 4px;
  vertical-align: 1px;
}

/* Trust badges row */
.jg-pdp-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--jg-line);
}
.jg-trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.jg-trust-badge > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.jg-trust-badge strong {
  font-family: var(--font-bio);
  font-size: 13px;
  font-weight: 800;
  color: var(--jg-ink);
  letter-spacing: 0.005em;
  line-height: 1.2;
}
.jg-trust-badge span {
  font-family: var(--font-bio);
  font-size: 11.5px;
  color: var(--jg-ink);
  opacity: 0.65;
  line-height: 1.35;
  letter-spacing: 0.005em;
}
.jg-flag-icon {
  width: 28px;
  height: 17px;
  flex-shrink: 0;
  border-radius: 1.5px;
  margin-top: 1px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
}
.jg-shield-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #1f7a3a;
  margin-top: -1px;
}

@media (max-width: 800px) {
  .jg-pdp-trust { grid-template-columns: 1fr; gap: 14px; }
  .jg-pdp-stage-stats { bottom: 14px; left: 12px; right: 12px; gap: 4px; }
  .jg-pdp-stage-stats > div { font-size: 9px; padding: 6px 8px; }
  .jg-pdp-stage-stats > div span { font-size: 20px; margin-bottom: 2px; }
}

/* ============================================================
   Stars + ratings (PDP rating row, card stars)
   ============================================================ */

.jg-pdp-rating {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  padding: 8px 14px;
  background: #fffbed;
  border: 1px solid #f0e2a8;
  border-radius: 100px;
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--jg-ink);
  text-decoration: none;
  transition: all 0.25s var(--ease);
  align-self: flex-start;
}

.jg-pdp-rating:hover {
  background: var(--jg-yellow);
  border-color: var(--jg-ink);
  transform: translateY(-1px);
}

.jg-stars {
  color: #E5B821;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 1;
}

.jg-rating-num strong { font-weight: 700; }
.jg-rating-sep { color: var(--jg-mute); }
.jg-rating-count { color: var(--jg-ink); text-decoration: underline; text-decoration-color: var(--jg-line); text-underline-offset: 3px; }
.jg-rating-rec strong { font-weight: 700; }

/* Stars on shop grid cards */
.jg-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.jg-card-stars {
  color: #E5B821;
  font-size: 12px;
  letter-spacing: 0.5px;
  line-height: 1;
}

.jg-card-rating-num {
  font-weight: 700;
  color: var(--jg-ink);
}

.jg-card-meta-dot { color: var(--jg-line); margin: 0 1px; }

/* ============================================================
   PDP Reviews section
   ============================================================ */

.jg-pdp-reviews {
  max-width: 1280px;
  margin: 80px auto 0;
  padding: 70px 80px;
  background: #fff;
  border-top: 1px solid var(--jg-line);
  border-bottom: 1px solid var(--jg-line);
}

.jg-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 50px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--jg-line);
  flex-wrap: wrap;
}

.jg-reviews-eyebrow {
  font-family: var(--font-bio);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jg-mute);
  margin-bottom: 14px;
}

.jg-reviews-title {
  font-family: var(--font-bogart);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--jg-ink);
  margin: 0;
}

.jg-reviews-summary {
  display: flex;
  gap: 40px;
  align-items: center;
}

.jg-reviews-score,
.jg-reviews-rec {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.jg-reviews-score-num,
.jg-reviews-rec-num {
  font-family: var(--font-bogart);
  font-weight: 400;
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--jg-ink);
}

.jg-reviews-score-stars {
  color: #E5B821;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
  margin-top: 2px;
}

.jg-reviews-score-label,
.jg-reviews-rec-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jg-mute);
  margin-top: 6px;
  max-width: 180px;
}

.jg-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.jg-review {
  background: var(--jg-paper);
  border: 1.5px solid var(--jg-line);
  border-radius: 8px;
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s var(--ease);
}

.jg-review:hover {
  border-color: var(--jg-yellow-deep);
  background: #fffdf6;
  transform: translateY(-2px);
}

.jg-review-stars {
  display: flex;
  gap: 1px;
  font-size: 16px;
  letter-spacing: 1.5px;
  line-height: 1;
}

.jg-star-fill { color: #E5B821; }
.jg-star-empty { color: var(--jg-line); }

.jg-review-title {
  font-family: var(--font-bogart);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--jg-ink);
  margin: 4px 0 0 0;
}

.jg-review-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--jg-ink);
  margin: 0;
  flex-grow: 1;
  text-wrap: pretty;
}

.jg-review-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--jg-mute);
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px dashed var(--jg-line);
}

.jg-review-name { color: var(--jg-ink); }
.jg-review-dot { color: var(--jg-line); }
.jg-review-loc { color: var(--jg-mute); }
.jg-review-sport { color: var(--jg-mute); }
.jg-review-flavor { color: #1f7a3a; }

@media (max-width: 1100px) {
  .jg-pdp-reviews { padding: 56px 40px; }
  .jg-reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
}

@media (max-width: 700px) {
  .jg-pdp-reviews { padding: 44px 22px; margin-top: 50px; }
  .jg-reviews-header { flex-direction: column; align-items: flex-start; gap: 28px; padding-bottom: 26px; margin-bottom: 32px; }
  .jg-reviews-summary { gap: 28px; }
  .jg-reviews-score-num, .jg-reviews-rec-num { font-size: 44px; }
  .jg-reviews-grid { grid-template-columns: 1fr; gap: 18px; }
  .jg-review { padding: 24px 22px 22px; }
  .jg-review-title { font-size: 19px; }

  .jg-pdp-rating { font-size: 12px; padding: 7px 12px; gap: 7px; flex-wrap: wrap; }
}
