/** Shopify CDN: Minification failed

Line 1378:0 Expected "}" to go with "{"

**/
/* ===== RURU Product Page — styles ===== */
/* Reuses tokens from styles.css. Only product-page specific. */

:root {
  --pp-section-pad-y: 96px;
  --pp-section-pad-y-mobile: 64px;
}

/* ===== Shared section head ===== */

.pp-section { padding: var(--pp-section-pad-y) 0; position: relative; }
.pp-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.pp-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--ink-mute);
  text-transform: lowercase;
  margin-bottom: 14px;
}
.pp-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0 0 16px;
  text-wrap: balance;
}
.pp-h2 .head-soft { color: var(--ink-soft); font-weight: 600; font-style: italic; }
.pp-sub {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 560px;
  text-wrap: pretty;
}

/* Premium blur-fade reveal */
[data-pp-reveal] {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(20px);
  transition:
    opacity 1.4s cubic-bezier(.19, 1, .22, 1),
    transform 1.4s cubic-bezier(.19, 1, .22, 1),
    filter 1.4s cubic-bezier(.19, 1, .22, 1);
  will-change: opacity, transform, filter;
}
[data-pp-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-pp-reveal] { opacity: 1 !important; filter: none !important; transform: none !important; transition: none !important; }
}

/* ===== Header (compact for product page) ===== */
.pp-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(244, 239, 230, 0.78);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line);
}
.pp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.pp-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color .2s var(--ease);
}
.pp-back:hover { color: var(--ink); }
.pp-back svg { transition: transform .25s var(--ease); }
.pp-back:hover svg { transform: translateX(-3px); }

.pp-logo-link img { height: 26px; width: auto; display: block; }
.pp-header-actions { display: flex; gap: 8px; align-items: center; }

/* ===== Hero ===== */
.pp-hero {
  padding: 32px 0 64px;
}
.pp-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Hero left — gallery */
.pp-gallery { position: sticky; top: 96px; }
.pp-gallery-stage {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, #F4E3B8 0%, #E1B86A 100%);
  box-shadow:
    0 1px 2px rgba(61,43,31,.06),
    0 24px 48px -16px rgba(61,43,31,.18),
    0 64px 120px -36px rgba(61,43,31,.24);
  isolation: isolate;
  transform: translateZ(0);
  clip-path: inset(0 round 28px);
}
.pp-gallery-bg-tone-1 { background: linear-gradient(160deg, #F4E3B8 0%, #E1B86A 100%); }
.pp-gallery-bg-tone-2 { background: linear-gradient(160deg, #D8E4B8 0%, #8FA561 100%); }
.pp-gallery-bg-tone-3 { background: linear-gradient(160deg, #E8C9A8 0%, #B07A4E 100%); }
.pp-gallery-bg-tone-4 { background: linear-gradient(160deg, #F6E6D6 0%, #C9A07F 100%); }

.pp-gallery-img {
  position: absolute;
  inset: 6% 6% 0;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  filter: drop-shadow(0 24px 32px rgba(0,0,0,.28));
  transition: opacity .8s cubic-bezier(.19,1,.22,1), transform .9s cubic-bezier(.19,1,.22,1);
  will-change: opacity, transform;
}
.pp-gallery-img.entering { opacity: 0; transform: scale(.94); }
.pp-gallery-img.active { opacity: 1; transform: scale(1); animation: pp-gallery-float 6s ease-in-out infinite; }
.pp-gallery-img.leaving { opacity: 0; transform: scale(1.06); }
@keyframes pp-gallery-float {
  0%, 100% { transform: translateY(-4px) scale(1); }
  50%      { transform: translateY(6px)  scale(1.01); }
}

.pp-gallery-grain {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(125deg, rgba(255,253,248,.05) 0 2px, transparent 2px 16px);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
}
.pp-gallery-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(0,0,0,.32), transparent 55%);
  pointer-events: none;
  z-index: 2;
}
.pp-gallery-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 253, 248, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  z-index: 3;
}
.pp-gallery-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mustard);
  box-shadow: 0 0 0 0 rgba(224, 169, 59, 0.6);
  animation: pp-pulse 1.8s ease-out infinite;
}
@keyframes pp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(224, 169, 59, 0.6); }
  100% { box-shadow: 0 0 0 14px rgba(224, 169, 59, 0); }
}

.pp-gallery-counter {
  position: absolute;
  bottom: 20px;
  right: 22px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,253,248,.92);
  background: rgba(0,0,0,.32);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 3;
}

.pp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.pp-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 2px solid transparent;
  border-radius: 14px;
  background: var(--card);
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.pp-thumb:hover { transform: translateY(-2px); }
.pp-thumb.active { border-color: var(--ink); }
.pp-thumb-fill {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-position: center bottom 8%;
  background-repeat: no-repeat;
}
.pp-thumb-tone-1 { background: linear-gradient(160deg, #F4E3B8 0%, #E1B86A 100%); }
.pp-thumb-tone-2 { background: linear-gradient(160deg, #D8E4B8 0%, #8FA561 100%); }
.pp-thumb-tone-3 { background: linear-gradient(160deg, #E8C9A8 0%, #B07A4E 100%); }
.pp-thumb-tone-4 { background: linear-gradient(160deg, #F6E6D6 0%, #C9A07F 100%); }

/* Hero right — buy column */
.pp-buy-col { padding-top: 8px; }

.pp-product-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.pp-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(61, 43, 31, 0.06);
  color: var(--ink);
}
.pp-tag.accent {
  background: rgba(224, 169, 59, 0.16);
  color: var(--mustard-deep);
}
.pp-tag.live {
  background: rgba(167, 185, 122, 0.18);
  color: var(--pistachio-deep);
}
.pp-tag.live::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pistachio-deep);
  animation: pp-pulse-mini 1.8s ease-out infinite;
}
@keyframes pp-pulse-mini {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(.7); }
}

.pp-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 0 0 12px;
}
.pp-tagline {
  font-size: 19px;
  color: var(--ink-soft);
  margin: 0 0 22px;
  max-width: 460px;
  line-height: 1.4;
  text-wrap: pretty;
}

.pp-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.pp-rating-stars { display: inline-flex; gap: 2px; color: var(--mustard); }
.pp-rating-num { font-weight: 700; color: var(--ink); }
.pp-rating-sep { opacity: 0.4; }
.pp-rating-count a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(61,43,31,.2);
  transition: text-decoration-color .2s var(--ease);
}
.pp-rating-count a:hover { text-decoration-color: var(--ink); }

.pp-price-block {
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  margin-bottom: 18px;
}
.pp-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.pp-price-now {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.pp-price-cur {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink-soft);
}
.pp-price-was {
  font-size: 15px;
  color: var(--ink-mute);
  text-decoration: line-through;
  margin-left: 6px;
}

.pp-save {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(167, 185, 122, 0.2);
  color: var(--pistachio-deep);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.04em;
}

.pp-stock-bar {
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pp-stock-bar .track {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(61, 43, 31, 0.08);
  overflow: hidden;
}
.pp-stock-bar .fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mustard) 0%, var(--mustard-deep) 100%);
  transition: width 1.4s cubic-bezier(.19,1,.22,1) .3s;
  width: 0;
}
.pp-stock-bar.is-visible .fill { width: var(--pct, 70%); }
.pp-stock-bar .label {
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.pp-quantity {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0 0;
}
.pp-quantity label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.pp-quantity-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--card);
  overflow: hidden;
}
.pp-quantity-stepper button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  transition: background .2s var(--ease);
}
.pp-quantity-stepper button:hover { background: rgba(61, 43, 31, 0.05); }
.pp-quantity-stepper button:disabled { color: var(--ink-mute); cursor: not-allowed; }
.pp-quantity-stepper .num {
  min-width: 32px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}

.pp-buy-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.pp-btn-buy {
  width: 100%;
  justify-content: center;
  padding: 18px 24px;
  font-size: 16px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.pp-btn-buy::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -100%;
  width: 50%;
  background: linear-gradient(90deg, transparent, rgba(255,253,248,.35), transparent);
  transform: skewX(-20deg);
  animation: pp-shimmer 4s ease-in-out infinite;
}
@keyframes pp-shimmer {
  0% { left: -100%; }
  50% { left: 200%; }
  100% { left: 200%; }
}

.pp-guarantees {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.pp-guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
}
.pp-guarantee-item strong {
  display: block;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  margin-bottom: 1px;
}
.pp-guarantee-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(167, 185, 122, 0.18);
  color: var(--pistachio-deep);
  display: grid; place-items: center;
}

/* ===== Sticky buy bar ===== */
.pp-stickybar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(244, 239, 230, 0.92);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--line);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform .4s cubic-bezier(.16,1,.3,1), opacity .3s var(--ease);
  will-change: transform, opacity;
}
.pp-stickybar.visible {
  transform: translateY(0);
  opacity: 1;
}
.pp-stickybar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 68px;
}
.pp-stickybar-thumb {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(160deg, #F4E3B8 0%, #E1B86A 100%);
  background-image:
    url('assets/ruru-cropped.png'),
    linear-gradient(160deg, #F4E3B8 0%, #E1B86A 100%);
  background-size: 110% auto, cover;
  background-position: center bottom -2px, center;
  background-repeat: no-repeat, no-repeat;
  flex-shrink: 0;
}
.pp-stickybar-text {
  flex: 1;
  min-width: 0;
  line-height: 1.2;
}
.pp-stickybar-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.pp-stickybar-price {
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  gap: 6px;
  align-items: baseline;
  margin-top: 2px;
}
.pp-stickybar-price strong { color: var(--ink); font-weight: 700; }
.pp-stickybar .pp-btn-buy {
  width: auto;
  min-width: 180px;
  padding: 12px 22px;
  font-size: 14.5px;
}

/* ===== Section — Capabilities (interactive selector) ===== */
.pp-cap {
  padding: var(--pp-section-pad-y) 0 calc(var(--pp-section-pad-y) - 16px);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(224, 169, 59, 0.10), transparent 50%),
    transparent;
}
.pp-cap-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.pp-cap-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pp-cap-tab {
  text-align: left;
  background: transparent;
  border: 0;
  padding: 18px 22px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background .35s var(--ease), transform .35s var(--ease);
  position: relative;
  width: 100%;
  overflow: hidden;
}
.pp-cap-tab .num {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
  flex-shrink: 0;
  margin-top: 4px;
}
.pp-cap-tab .body { flex: 1; min-width: 0; }
.pp-cap-tab .label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink-soft);
  transition: color .35s var(--ease);
}
.pp-cap-tab .blurb {
  font-size: 14px;
  color: var(--ink-mute);
  margin-top: 4px;
  display: none;
}
.pp-cap-tab:hover .label { color: var(--ink); }
.pp-cap-tab.active {
  background: var(--card);
  box-shadow: 0 1px 2px rgba(61,43,31,.04), 0 12px 28px -12px rgba(61,43,31,.14);
}
.pp-cap-tab.active .label { color: var(--ink); }
.pp-cap-tab.active .blurb { display: block; }
.pp-cap-tab .progress {
  position: absolute;
  left: 0; bottom: 0;
  height: 3px;
  width: 0%;
  background: var(--mustard);
  border-radius: 0 0 0 20px;
  transition: width .15s linear;
}

.pp-cap-display {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: linear-gradient(160deg, #F2C76A 0%, #B57E14 100%);
  box-shadow:
    0 1px 2px rgba(61,43,31,.06),
    0 24px 48px -16px rgba(61,43,31,.22),
    0 64px 120px -36px rgba(61,43,31,.32);
  transform: translateZ(0);
  clip-path: inset(0 round 32px);
}
.pp-cap-bg {
  position: absolute; inset: 0;
  z-index: 0;
  transition: opacity .8s var(--ease);
}
.pp-cap-bg.tone-mustard { background: linear-gradient(160deg, #F2C76A 0%, #B57E14 100%); }
.pp-cap-bg.tone-pist    { background: linear-gradient(160deg, #C2D294 0%, #647A37 100%); }
.pp-cap-bg.tone-warm    { background: linear-gradient(160deg, #DDA985 0%, #7E5031 100%); }
.pp-cap-bg.tone-blue    { background: linear-gradient(160deg, #B9C7D0 0%, #4F6F84 100%); }
.pp-cap-bg.tone-rose    { background: linear-gradient(160deg, #E2B0B5 0%, #94585D 100%); }

.pp-cap-img {
  position: absolute;
  inset: 5% 5% 0;
  background: url('assets/ruru-cropped.png') center bottom / contain no-repeat;
  filter: drop-shadow(0 24px 32px rgba(0,0,0,.28));
  z-index: 1;
  animation: pp-gallery-float 6s ease-in-out infinite;
}
.pp-cap-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 32px 30px;
  z-index: 2;
  background: linear-gradient(0deg, rgba(0,0,0,.55), transparent);
  color: rgba(255,253,248,.96);
}
.pp-cap-overlay-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.pp-cap-overlay-text {
  font-size: 15px;
  color: rgba(255,253,248,.85);
  margin: 0;
  max-width: 480px;
  line-height: 1.45;
}
.pp-cap-corner {
  position: absolute;
  top: 22px;
  right: 22px;
  background: rgba(255, 253, 248, 0.95);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 6px 11px;
  border-radius: 999px;
  z-index: 3;
}

/* ===== Section — Developmental benefits ===== */
.pp-bench {
  padding: var(--pp-section-pad-y) 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(167, 185, 122, 0.05) 50%, transparent 100%);
}
.pp-bench-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pp-bench-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 24px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.pp-bench-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1px 2px rgba(61,43,31,.04), 0 24px 48px -16px rgba(61,43,31,.16);
  border-color: rgba(61, 43, 31, 0.16);
}
.pp-bench-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}
.pp-bench-stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.pp-bench-stat .unit {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--mustard-deep);
}
.pp-bench-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--ink);
}
.pp-bench-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
  text-wrap: pretty;
}
.pp-bench-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--ink-mute);
  margin: 32px auto 0;
  max-width: 600px;
  line-height: 1.5;
}

/* ===== Section — Comparison ===== */
.pp-compare {
  padding: var(--pp-section-pad-y) 0;
}
.pp-compare-table {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  max-width: 980px;
  margin: 0 auto;
}
.pp-compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.pp-compare-row:last-child { border-bottom: 0; }
.pp-compare-row.head {
  background: rgba(61, 43, 31, 0.03);
}
.pp-compare-cell {
  padding: 22px 28px;
  font-size: 15px;
  color: var(--ink);
}
.pp-compare-cell.attr {
  font-weight: 600;
  color: var(--ink-soft);
  border-right: 1px solid var(--line);
}
.pp-compare-cell.ruru {
  border-right: 1px solid var(--line);
  background: rgba(167, 185, 122, 0.06);
  position: relative;
}
.pp-compare-cell.ruru::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--pistachio-deep);
}
.pp-compare-row.head .pp-compare-cell {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}
.pp-compare-row.head .pp-compare-cell.ruru { color: var(--pistachio-deep); }
.pp-cmp-icon {
  display: inline-grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
  vertical-align: middle;
}
.pp-cmp-icon.yes { background: rgba(167, 185, 122, 0.22); color: var(--pistachio-deep); }
.pp-cmp-icon.no  { background: rgba(177, 122, 82, 0.22); color: #8B5A38; }
.pp-cmp-line {
  display: inline-flex;
  align-items: center;
}

/* ===== Section — How it works ===== */
.pp-how {
  padding: var(--pp-section-pad-y) 0;
}
.pp-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.pp-how-steps::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(61, 43, 31, 0.08) 0%,
    rgba(224, 169, 59, 0.4) 50%,
    rgba(61, 43, 31, 0.08) 100%);
  z-index: 0;
}
.pp-how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.pp-how-step .circle {
  width: 112px; height: 112px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.pp-how-step:hover .circle {
  transform: translateY(-4px);
  box-shadow: 0 1px 2px rgba(61,43,31,.06), 0 18px 36px -12px rgba(61,43,31,.18);
}
.pp-how-step .circle .num {
  position: absolute;
  top: -8px; right: -8px;
  width: 32px; height: 32px;
  background: var(--mustard);
  color: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border: 3px solid var(--bg-1);
}
.pp-how-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.pp-how-step p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  text-wrap: pretty;
}

/* ===== Section — Specs & In the box ===== */
.pp-specs {
  padding: var(--pp-section-pad-y) 0;
}
.pp-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.pp-specs-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px 36px 28px;
  box-shadow: var(--shadow-soft);
}
.pp-specs-panel h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
  color: var(--ink);
}
.pp-specs-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pp-specs-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.pp-specs-list li:last-child { border-bottom: 0; }
.pp-specs-list .k { color: var(--ink-soft); font-weight: 500; }
.pp-specs-list .v { color: var(--ink); font-weight: 700; text-align: right; }

.pp-box-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pp-box-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(61, 43, 31, 0.025);
  transition: background .25s var(--ease);
}
.pp-box-item:hover { background: rgba(61, 43, 31, 0.05); }
.pp-box-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(224, 169, 59, 0.18);
  color: var(--mustard-deep);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.pp-box-text { flex: 1; min-width: 0; line-height: 1.3; }
.pp-box-text strong {
  display: block;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 700;
}
.pp-box-text span {
  display: block;
  font-size: 12.5px;
  color: var(--ink-mute);
  margin-top: 2px;
}

.pp-certs {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
  justify-content: center;
}
.pp-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(61,43,31,.04);
}

/* ===== Section — Authority quote ===== */
.pp-authority {
  padding: var(--pp-section-pad-y) 0;
}
.pp-authority-card {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(135deg, #3D2B1F 0%, #5C3F2C 100%);
  color: rgba(244, 239, 230, 0.95);
  border-radius: 40px;
  padding: 56px 56px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.pp-authority-card::before {
  content: '';
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 169, 59, 0.30), transparent 65%);
  top: -25%; right: -10%;
  pointer-events: none;
}
.pp-quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  line-height: 0.7;
  color: var(--mustard);
  display: block;
  margin-bottom: 8px;
}
.pp-authority-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.015em;
  line-height: 1.42;
  margin: 0 0 28px;
  text-wrap: balance;
  position: relative;
  z-index: 1;
}
.pp-authority-who {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.pp-authority-who .av {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mustard), var(--mustard-deep));
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  flex-shrink: 0;
}
.pp-authority-who strong {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: var(--bg-1);
}
.pp-authority-who span {
  display: block;
  font-size: 13px;
  color: rgba(244, 239, 230, 0.65);
  margin-top: 2px;
}

/* ===== Section — Mini social proof bar ===== */
.pp-proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 0 0;
}
.pp-proof-item {
  text-align: center;
}
.pp-proof-item .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pp-proof-item .num .unit { font-size: 0.5em; color: var(--mustard-deep); margin-left: 2px; }
.pp-proof-item .label {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--ink-soft);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ===== Section — FAQ ===== */
.pp-faq-section { padding: var(--pp-section-pad-y) 0; }
.pp-faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.pp-faq-item {
  border-bottom: 1px solid var(--line);
}
.pp-faq-item:first-child { border-top: 1px solid var(--line); }
.pp-faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 24px 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.015em;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color .2s var(--ease);
}
.pp-faq-q:hover { color: var(--mustard-deep); }
.pp-faq-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(61, 43, 31, 0.06);
  display: grid; place-items: center;
  transition: transform .35s var(--ease), background .25s var(--ease);
}
.pp-faq-item.open .pp-faq-icon { transform: rotate(45deg); background: var(--mustard); }
.pp-faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}
.pp-faq-item.open .pp-faq-a-wrap { grid-template-rows: 1fr; }
.pp-faq-a { overflow: hidden; }
.pp-faq-a-inner {
  padding: 0 8px 24px;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 680px;
  text-wrap: pretty;
}

/* ===== Final CTA ===== */
.pp-final {
  padding: 80px 0 140px;
}
.pp-final-card {
  background: linear-gradient(135deg, #3D2B1F 0%, #5C3F2C 100%);
  color: var(--bg-1);
  border-radius: 40px;
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.pp-final-card::before {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 169, 59, 0.32), transparent 65%);
  top: -20%; right: -10%;
  pointer-events: none;
  animation: pp-glow-shift 8s ease-in-out infinite;
}
@keyframes pp-glow-shift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-8%, 4%) scale(1.06); }
}
.pp-final-left h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 4.6vw, 58px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 20px;
  text-wrap: balance;
}
.pp-final-left p {
  font-size: 18px;
  color: rgba(244, 239, 230, 0.75);
  margin: 0 0 32px;
  max-width: 440px;
  line-height: 1.5;
  text-wrap: pretty;
}
.pp-final-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 32px;
}
.pp-final-price .v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pp-final-price .c {
  font-weight: 600;
  font-size: 22px;
  color: rgba(244, 239, 230, 0.7);
}
.pp-final-price .was {
  font-size: 18px;
  color: rgba(244, 239, 230, 0.5);
  text-decoration: line-through;
}
.pp-final-cta-btn {
  padding: 22px 38px;
  font-size: 18px;
  font-weight: 700;
}
.pp-final-rev {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
}
.pp-final-rev-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(244, 239, 230, 0.85);
}
.pp-final-rev-item .ico {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(244, 239, 230, 0.1);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.pp-final-right {
  position: relative;
  display: grid;
  place-items: center;
  z-index: 1;
}
.pp-final-img {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 40px 50px rgba(0, 0, 0, 0.45));
  animation: pp-gallery-float 5s ease-in-out infinite;
}

/* ===== Responsive ===== */

@media (max-width: 1100px) {
  .pp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .pp-gallery { position: relative; top: auto; max-width: 600px; margin: 0 auto; width: 100%; }
  .pp-buy-col { max-width: 600px; margin: 0 auto; width: 100%; }
  .pp-cap-grid { grid-template-columns: 1fr; gap: 28px; }
  .pp-cap-display { max-width: 600px; margin: 0 auto; width: 100%; }
  .pp-specs-grid { grid-template-columns: 1fr; gap: 24px; }
  .pp-final-card { grid-template-columns: 1fr; padding: 56px 40px; text-align: center; }
  .pp-final-card::before { right: -40%; top: -30%; }
  .pp-final-left p { margin-left: auto; margin-right: auto; }
  .pp-final-price { justify-content: center; }
  .pp-final-rev { max-width: 480px; margin-left: auto; margin-right: auto; }
  .pp-final-right { display: grid; margin-bottom: 8px; order: -1; }
  .pp-final-img { max-width: 320px; }
}

@media (max-width: 760px) {
  :root { --pp-section-pad-y: var(--pp-section-pad-y-mobile); }
  .pp-section, .pp-cap, .pp-bench, .pp-compare, .pp-how, .pp-specs,
  .pp-authority, .pp-faq-section { padding: var(--pp-section-pad-y-mobile) 0; }
  .pp-hero { padding: 16px 0 32px; }
  .pp-section-head { margin-bottom: 36px; }

  .pp-back span { display: none; }

  /* Reorder: buy column first on mobile (above gallery) */
  .pp-hero-grid { display: flex; flex-direction: column; }
  .pp-buy-col { order: 1; }
  .pp-gallery { order: 0; }

  .pp-bench-grid { grid-template-columns: 1fr; gap: 14px; }
  /* Comparison table → stacked cards on mobile */
  .pp-compare-row.head { display: none; }
  .pp-compare-row { display: grid; grid-template-columns: 1fr 1fr; padding: 0; }
  .pp-compare-cell { padding: 14px 16px; font-size: 14px; border-right: 0 !important; }
  .pp-compare-cell.attr { grid-column: 1 / -1; font-weight: 700; color: var(--ink); background: rgba(61, 43, 31, 0.04); padding: 12px 16px; border-bottom: 1px solid var(--line); }
  .pp-compare-cell.ruru { border-right: 1px solid var(--line) !important; }
  .pp-compare-cell.ruru::before { content: 'RURU'; position: static; display: block; width: auto; height: auto; background: none; font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--pistachio-deep); margin-bottom: 6px; }
  .pp-compare-row .pp-compare-cell:not(.attr):not(.ruru)::before { content: 'Tablet / phone'; display: block; font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 6px; }
  .pp-cmp-line { align-items: flex-start; }

  .pp-how-steps { grid-template-columns: 1fr; gap: 36px; }
  .pp-how-steps::before { display: none; }

  .pp-proof-bar { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; padding: 32px 0; }

  .pp-authority-card { padding: 40px 28px; border-radius: 28px; }
  .pp-quote-mark { font-size: 80px; }

  .pp-final-card { padding: 48px 28px; }
  .pp-final-rev { grid-template-columns: 1fr; }

  .pp-stickybar-inner { gap: 12px; height: 64px; }
  .pp-stickybar-thumb { width: 40px; height: 40px; }
  .pp-stickybar-text .pp-stickybar-name { font-size: 14px; }
  .pp-stickybar .pp-btn-buy { min-width: 0; flex-shrink: 0; padding: 11px 18px; font-size: 13.5px; }
  .pp-stickybar-text { display: none; }

  .pp-guarantees { grid-template-columns: 1fr; }

  /* Mobile typography — calmer, less dense */
  .pp-h2 { font-size: clamp(27px, 7.5vw, 36px); }
  .pp-sub { font-size: 16px; }
  .pp-title { font-size: clamp(40px, 14vw, 60px); }
  .pp-tagline { font-size: 17px; }
  .pp-bench-card p, .pp-faq-a-inner, .pp-how-step p { font-size: 15px; line-height: 1.6; }
  .pp-bench-card h3 { font-size: 18px; }
}

@media (max-width: 480px) {
  .pp-proof-bar { grid-template-columns: repeat(2, 1fr); }
  .pp-compare-cell { padding: 13px 10px; font-size: 12.5px; }
  .pp-section-head { margin-bottom: 30px; }

/* No FOMO toast yet but keep spot reserved if added */
