/** Shopify CDN: Minification failed

Line 1786:0 Unexpected "}"

**/
/* ── Pokeru Theme — base.css ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; }

:root {
  --bg: #F5F0E8;
  --bg-hover: #F9F5EE;
  --bg-active: #EAE3D6;
  --bg-active-dark: #E0D9CC;
  --card: #FAFAF8;
  --card-white: #FFFFFF;
  --card-border: rgba(10,9,6,0.09);
  --ink: #0A0906;
  --ink-mid: #4A4642;
  --stone: #8A8278;
  --stone-lt: #B8B0A5;
  --red: #B8192A;
  --orange: #C4700A;
  --gold: #C4A05A;
  --green: #2A6B4A;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: -apple-system, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* Fix Smile.io launcher for viewport-fit=cover */
#smile-ui-lite-launcher-frame-container {
  bottom: max(16px, env(safe-area-inset-bottom, 16px)) !important;
}

body {
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: var(--sans); cursor: pointer; }

/* ── STICKY HEADER WRAPPER ── */
.sticky-header-wrap {
  position: sticky;
  top: 0;
  z-index: 200;
  overflow: visible;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--ink);
  color: rgba(245,240,232,0.6);
  text-align: center;
  padding: 9px 16px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* ── HEADER / NAV ── */
.site-header {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 84px;
  padding: 0 48px 0 210px;
  border-bottom: .5px solid var(--card-border);
  background: var(--bg);
  overflow: visible;
  position: relative;
}
.header-logo {
  flex-shrink: 0;
  position: absolute;
  top: 0;
  left: 48px;
  z-index: 10;
  height: 120px;
}
.header-logo svg { display: block; }
.header-logo img {
  display: block;
  width: auto;
  height: 120px;
}
.header-logo-white {
  position: absolute;
  top: 0;
  left: 48px;
  width: auto;
  height: 120px;
  max-width: none;
  clip-path: inset(84px 0 0 0);
  pointer-events: none;
  z-index: 10;
}
.site-nav { display: flex; gap: 32px; align-items: center; margin-right: auto; }
.site-nav a {
  font-size: 14px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color .2s;
}
.site-nav a:hover { color: var(--ink); }
.header-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.header-icons a, .header-icons button {
  background: none;
  border: none;
  color: var(--stone);
  display: flex;
  align-items: center;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.header-icons .cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--red);
  color: rgba(245,240,232,0.95);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  transform: none;
  line-height: 1;
  pointer-events: none;
}
.header-icons .cart-count:empty { display: none; }

/* Mobile search button — hidden on desktop always */
.search-mobile-btn { display: none !important; }

/* Hamburger — wrapper hidden on desktop, shown on mobile */
.hamburger-wrap { display: none; }
.hamburger-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all .3s;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 300;
  flex-direction: column;
  padding: 80px 40px 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  cursor: pointer; font-size: 26px;
  color: var(--stone);
}
.mobile-nav a {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  color: var(--ink);
  padding: 16px 0;
  border-bottom: .5px solid var(--card-border);
}
.mobile-nav-foot {
  margin-top: auto;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stone-lt);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 540px;
  max-height: calc(100vh - 160px);
  background: var(--ink);
  overflow: hidden;
}
.hero-toggle {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  display: flex;
  border: .5px solid rgba(245,240,232,0.2);
  overflow: hidden;
}
.hero-toggle button {
  padding: 6px 14px;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.38);
  background: none;
  border: none;
  transition: all .3s;
  cursor: pointer;
}
.hero-toggle button.active {
  background: rgba(245,240,232,0.1);
  color: rgba(245,240,232,0.88);
}
.hero.light-mode .hero-toggle { border-color: rgba(10,9,6,0.18); }
.hero.light-mode .hero-toggle button { color: rgba(10,9,6,0.3); }
.hero.light-mode .hero-toggle button.active { background: rgba(10,9,6,0.06); color: var(--ink); }

.hero-copy {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  min-height: 540px;
  max-width: 55%;
  background: linear-gradient(to right, rgba(10,9,6,0.95) 0%, rgba(10,9,6,0.8) 55%, transparent 100%);
}
.hero--right .hero-copy {
  margin-left: auto;
  text-align: right;
  align-items: flex-end;
  background: linear-gradient(to left, rgba(10,9,6,0.95) 0%, rgba(10,9,6,0.8) 55%, transparent 100%);
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}
.hero-eyebrow--white {
  color: rgba(245,240,232,0.75);
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
}
.hero-heading {
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 300;
  line-height: 1.08;
  color: rgba(245,240,232,0.93);
  margin-bottom: 22px;
  transition: color .5s;
}
.hero-heading em {
  font-style: italic;
  color: rgba(245,240,232,0.38);
  transition: color .5s;
}
.hero-text {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(245,240,232,0.4);
  max-width: 300px;
  margin-bottom: 36px;
  transition: color .5s;
}
.hero-btn {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid rgba(245,240,232,0.3);
  color: rgba(245,240,232,0.8);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: none;
  transition: all .3s;
  width: fit-content;
}
.hero-btn:hover { background: rgba(245,240,232,0.08); }

.hero.light-mode { background: var(--bg); }
.hero.light-mode .hero-heading { color: var(--ink); }
.hero.light-mode .hero-heading em { color: var(--stone); }
.hero.light-mode .hero-text { color: var(--stone); }
.hero.light-mode .hero-btn { border-color: rgba(10,9,6,0.25); color: var(--ink); }

.hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: block;
}
.hero-visual-bg { display: none; }
.hero-glow { display: none; }
.hero-product-img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: none;
  transition: filter .5s;
}
.hero.light-mode .hero-product-img { filter: none; }
.hero-visual picture {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
}

/* ── SECTION SHARED ── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: .5px solid rgba(10,9,6,0.2);
  padding-bottom: 14px;
  margin-bottom: 32px;
}
.collection-header .section-header { margin-bottom: 0; }
.section-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}
.section-link {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: .5px solid var(--ink);
  padding-bottom: 2px;
  transition: color .2s;
}
.section-link:hover { color: var(--ink); border-color: var(--ink); }

/* ── FILTER BAR ── */
.collection-header { padding: 28px 56px 32px; }
.filter-bar {
  display: flex;
  gap: 6px;
  padding: 14px 56px;
  border-bottom: .5px solid rgba(74,70,66,0.18);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-pill {
  padding: 6px 16px;
  border: .5px solid rgba(10,9,6,0.15);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stone);
  background: transparent;
  white-space: nowrap;
  transition: all .2s;
  cursor: pointer;
}
.filter-pill.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.filter-pill:hover:not(.active) { border-color: rgba(10,9,6,0.35); color: var(--ink); }

/* ── PRODUCT CAROUSEL ── */
.product-carousel-wrap {
  padding: 0 56px 28px;
  position: relative;
  overflow: visible;
}
.product-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.product-carousel::-webkit-scrollbar { display: none; }
.product-carousel.is-dragging { cursor: grabbing; }
.product-carousel-item {
  flex: 0 0 calc(25% - 18px);
  scroll-snap-align: start;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.product-carousel-item .product-card { flex: 1; }

/* Keep .product-grid for collection pages */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: transparent;
  padding: 0 56px 56px;
}

/* ── CAROUSEL CONTROLS ── */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5%;
  aspect-ratio: 1;
  min-width: 40px;
  max-width: 80px;
  border: none;
  background: rgba(10,9,6,0.18);
  color: rgba(245,240,232,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  border-radius: 0;
  flex-shrink: 0;
  z-index: 10;
}
.carousel-btn--prev { left: 16px; }
.carousel-btn--next { right: 16px; }
.carousel-btn:hover { background: var(--ink); }
.carousel-btn.is-hidden { display: none; }

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--card);
  cursor: pointer;
  transition: background .2s;
  display: flex;
  flex-direction: column;
  border: .5px solid var(--card-border);
  min-width: 0;
}
.product-card:hover { background: var(--bg-hover); }
.product-card-link { display: flex; flex-direction: column; flex: 1; color: inherit; }

.product-image-well {
  background: var(--card-white);
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.product-image-well img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .4s ease;
}
.product-card:hover .product-image-well img { transform: scale(1.04); }

.product-image-placeholder {
  background: var(--card-white);
  aspect-ratio: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.placeholder-inner {
  width: 52%;
  aspect-ratio: 3/4;
  background: #F0EBE2;
  border: .5px solid rgba(10,9,6,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-inner span {
  font-family: var(--serif);
  font-size: 28px;
  color: rgba(10,9,6,0.06);
  line-height: 1.2;
  text-align: center;
}
.placeholder-label {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--stone-lt);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 3px 8px;
  z-index: 2;
}
.badge-new { background: var(--red); color: #fff; }
.badge-limited { background: var(--ink); color: rgba(245,240,232,0.85); }
.badge-sale { background: var(--gold); color: var(--ink); }
.badge-preorder { background: var(--stone); color: rgba(245,240,232,0.85); }
.stock-badge {
  display: inline-block;
  padding: 5px 12px;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: transparent;
}
.stock-badge--sold-out { border: 1px solid var(--red); color: var(--red); }
.stock-badge--low-stock { border: 1px solid #C4700A; color: #C4700A; }

.product-info {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.product-info-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(20px * 1.3 * 2);
}
.product-price-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.product-price { font-size: 15px; font-weight: 500; white-space: nowrap; }
.product-price s { color: var(--stone); font-size: 12px; font-weight: 400; }
.product-meta {
  font-size: 12px;
  color: var(--stone);
  letter-spacing: .06em;
}
.product-trust {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
}
.trust-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.trust-text { font-size: 14px; color: var(--green); letter-spacing: .08em; }

.product-cta {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 10px;
  opacity: 0;
  transition: opacity .2s, color .2s;
}
.product-card:hover .product-cta { opacity: 1; color: var(--ink); }
@media (max-width: 900px) {
  .product-cta { display: none; }
  .product-name { -webkit-line-clamp: 3; min-height: calc(20px * 1.3 * 3); }
}

/* ── EDITORIAL SPOTLIGHT ── */
.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  max-height: 480px;
  margin-top: 1px;
}
.spotlight-image {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  display: block;
  max-height: 480px;
}
.spotlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  inset: 0;
  z-index: 2;
  filter: none;
}
.spotlight-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 30%, rgba(196,160,90,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.spotlight-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 48px;
}
.spotlight-eyebrow {
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.spotlight-heading {
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 300;
  line-height: 1.08;
  color: rgba(245,240,232,0.92);
  margin-bottom: 16px;
}
.spotlight-text {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(245,240,232,0.38);
  margin-bottom: 24px;
  max-width: 320px;
}
.spotlight-text ul {
  padding-left: 1.2em;
  margin: 0;
}
.spotlight-bullets { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.spotlight-bullet { display: flex; align-items: center; gap: 8px; }
.spotlight-bullet-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.spotlight-bullet span { font-size: 15px; color: rgba(245,240,232,0.45); letter-spacing: .04em; }
.spotlight-btn {
  display: inline-flex;
  align-items: center;
  padding: 11px 28px;
  border: 1px solid rgba(245,240,232,0.25);
  color: rgba(245,240,232,0.75);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: none;
  width: fit-content;
  transition: all .3s;
  line-height: 1;
}
.spotlight-btn:hover { background: rgba(245,240,232,0.06); }

/* ── ABOUT ── */
.about-section {
  background: var(--ink);
  padding: 80px 56px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}
.about-kanji {
  font-family: var(--serif);
  font-size: 78px;
  line-height: 1.1;
  font-style: italic;
  color: rgba(245,240,232,0.07);
  user-select: none;
}
.about-heading {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  color: rgba(245,240,232,0.9);
  margin-bottom: 18px;
}
.about-text {
  font-size: 12px;
  line-height: 1.9;
  color: rgba(245,240,232,0.4);
  margin-bottom: 12px;
  max-width: 400px;
}
.about-tag {
  display: inline-block;
  border: .5px solid rgba(245,240,232,0.15);
  padding: 6px 16px;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  margin-top: 8px;
}

/* ── BLOG PREVIEW ── */
.blog-section { padding: 56px 56px; }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.blog-card { display: grid; grid-template-columns: 140px 1fr; gap: 18px; cursor: pointer; }
.blog-image { aspect-ratio: 1; background: var(--card); overflow: hidden; border: .5px solid var(--card-border); }
.blog-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-eyebrow {
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 7px;
}
.blog-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 7px;
}
.blog-excerpt { font-size: 11px; line-height: 1.75; color: var(--stone); }

/* ── NEWSLETTER ── */
.newsletter-section {
  padding: 64px 56px;
  text-align: center;
  border-top: .5px solid rgba(74,70,66,0.18);
}
.newsletter-panel {
  background: var(--bg);
  max-width: 600px;
  margin: 0 auto;
  padding: 48px 56px;
}
.newsletter-heading {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 8px;
}
.newsletter-text { color: var(--stone); font-size: 15px; margin-bottom: 26px; }
.newsletter-form { display: flex; max-width: 380px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid rgba(10,9,6,0.16);
  border-right: none;
  background: rgba(255,255,255,0.5);
  font-size: 14px;
  outline: none;
  font-family: var(--sans);
  color: var(--ink);
}
.newsletter-success { margin-top: 12px; font-size: 13px; color: var(--green); }
.newsletter-form button {
  padding: 13px 22px;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  padding: 48px 56px 28px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}
.footer-social a {
  color: rgba(245,240,232,0.3);
  transition: color .2s;
  display: flex;
}
.footer-social a:hover { color: rgba(245,240,232,0.82); }
.footer-brand h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: rgba(245,240,232,0.9);
  margin-bottom: 4px;
}
.footer-stamp {
  font-family: serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(245,240,232,0.2);
  margin-bottom: 14px;
}
.footer-brand p { font-size: 13px; line-height: 1.85; color: rgba(245,240,232,0.27); max-width: 170px; }
.footer-col h4 {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(245,240,232,0.3);
  margin-bottom: 7px;
  transition: color .2s;
}
.footer-col a:hover { color: rgba(245,240,232,0.82); }
.footer-bottom {
  background: var(--ink);
  border-top: .5px solid rgba(245,240,232,0.07);
  padding: 16px 56px;
  display: flex;
  justify-content: center;
  font-size: 12px;
  color: rgba(245,240,232,0.18);
}

/* ── PRODUCT DETAIL PAGE ── */
.pdp-breadcrumb {
  padding: 48px 56px 0;
  font-size: 11px;
  color: var(--stone);
  letter-spacing: .06em;
  text-shadow: 0 1px 3px rgba(245,240,232,0.8);
}
.pdp-breadcrumb a {
  color: var(--stone);
  text-decoration: none;
}
.pdp-breadcrumb a:hover { color: var(--ink); }
.pdp-breadcrumb-current { color: var(--ink); }
.pdp-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  padding: 32px 56px 64px;
  align-items: start;
}
.pdp-media-col { min-width: 0; }
@media (min-width: 901px) {
  .pdp-media-col {
    position: sticky;
    top: calc(var(--pdp-header-h, 120px) + 20px);
    align-self: start;
  }
}
.pdp-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.pdp-thumbs::-webkit-scrollbar { display: none; }
.pdp-thumb {
  flex: 1;
  aspect-ratio: 1;
  min-width: 0;
  background: var(--card-white);
  border: .5px solid var(--card-border);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  transition: border-color .2s;
}
.pdp-thumb.active { border-color: var(--ink); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pdp-thumb--more img { filter: brightness(0.35); }
.pdp-thumb-more-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(245,240,232,0.9);
  pointer-events: none;
}
.pdp-main-image {
  background: var(--card-white);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
  position: relative;
}
.pdp-main-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; transition: opacity 0.3s; }
.pdp-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(245,240,232,0.85);
  border: .5px solid rgba(10,9,6,0.1);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
  z-index: 10;
  transition: background .15s;
}
.pdp-nav-btn:hover { background: rgba(245,240,232,1); }
.pdp-nav-btn:disabled { opacity: 0; pointer-events: none; }
.pdp-nav-prev { left: 8px; }
.pdp-nav-next { right: 8px; }

.pdp-product-name {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 6px;
}
.pdp-product-meta {
  font-size: 11px;
  color: var(--stone);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
  padding-bottom: 8px;
}
.pdp-price {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}
.pdp-currency { font-size: 12px; color: var(--stone); }
.pdp-stock { font-size: 10px; color: var(--green); letter-spacing: .1em; text-transform: uppercase; margin: 0 0 12px; }
.pdp-stock.out { color: var(--red); }

.btn-add-to-cart {
  width: 100%;
  padding: 13px;
  background: #B8192A;
  color: var(--bg);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  border: none;
  margin-bottom: 10px;
}
.btn-add-to-cart:hover { background: #9A1422; }
.btn-add-to-cart:disabled { opacity: 0.35; cursor: not-allowed; }
.btn-add-to-cart:disabled:hover { background: #B8192A; }
.btn-atc--added, .btn-atc--added:disabled { background: var(--green); opacity: 1; }
.btn-atc--added:hover { background: var(--green); }
.btn-secondary {
  width: 100%;
  padding: 14px;
  background: transparent;
  color: var(--ink);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  border: 1px solid rgba(10,9,6,0.25);
  margin-bottom: 20px;
}

.auth-block {
  background: rgba(10,9,6,0.03);
  border: .5px solid rgba(10,9,6,0.1);
  padding: 20px;
  margin-bottom: 16px;
}
.auth-block-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.auth-block-header h4 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}
.auth-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: .5px solid rgba(74,70,66,0.18);
}
.auth-row:last-child { border-bottom: none; }
.auth-row-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); margin-top: 5px; flex-shrink: 0; }
.auth-row-title { font-size: 12px; font-weight: 500; margin-bottom: 2px; }
.auth-row-desc { font-size: 11px; color: var(--stone); line-height: 1.6; }
.pdp-meta-row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--stone);
  margin-top: 10px;
}
.pdp-meta-row svg { flex-shrink: 0; }
.pdp-meta-row strong { color: var(--ink); font-weight: 500; }

/* ── PDP TABS ── */
.pdp-tabs { margin: 0 56px 56px; border-top: .5px solid rgba(74,70,66,0.18); }
.tab-nav { display: flex; border-bottom: .5px solid rgba(74,70,66,0.18); }
.tab-btn {
  padding: 14px 28px;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: none;
  border: none;
  color: var(--stone);
  border-bottom: 1.5px solid transparent;
  margin-bottom: -1px;
  transition: all .2s;
}
.tab-btn.active { color: var(--ink); border-bottom-color: var(--ink); }
.tab-content { padding: 32px 0; display: none; }
.tab-content.active { display: block; }
.tab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tab-card {
  background: rgba(10,9,6,0.02);
  border: .5px solid rgba(10,9,6,0.08);
  padding: 20px;
}
.tab-card h4 { font-family: var(--serif); font-size: 16px; font-weight: 400; margin-bottom: 10px; }
.tab-card p { font-size: 12px; color: var(--stone); line-height: 1.8; }

/* ── CART ── */
.cart-page { padding: 48px 56px; max-width: 1200px; margin: 0 auto; }
.cart-page h1 { font-family: var(--serif); font-size: 36px; font-weight: 300; margin-bottom: 32px; }
.cart-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 64px; align-items: start; }
.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: .5px solid rgba(74,70,66,0.18);
}
.cart-item-img { background: var(--card-white); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; padding: 12px; }
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; }
.cart-item-name { font-family: var(--serif); font-size: 20px; font-weight: 400; margin-bottom: 6px; }
.cart-item-meta { font-size: 13px; color: var(--stone); }
.cart-empty-text { color: var(--stone); font-size: 13px; margin-bottom: 24px; }
.btn-cart-continue-shopping { display: inline-block; width: auto; padding: 14px 32px; }
.cart-item-meta + .cart-item-meta { margin-top: 6px; }
.cart-trust-row { margin-top: 4px; }
.cart-item-qty { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.cart-qty-btn { background: var(--bg); border: 1px solid rgba(10,9,6,0.2); width: 32px; height: 32px; cursor: pointer; font-size: 16px; color: var(--ink); transition: background .15s; }
.cart-qty-btn:hover { background: var(--bg-hover); }
.cart-qty-count { font-size: 15px; min-width: 24px; text-align: center; }
.cart-remove-btn { background: none; border: none; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); cursor: pointer; text-decoration: underline; margin-left: 8px; }
.cart-qty-btn:disabled, .cart-remove-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.cart-qty-error { font-size: 12px; color: var(--red); margin-top: 8px; }
.cart-item-price { text-align: right; }
.cart-item-price-main { font-size: 17px; font-weight: 500; }
.cart-item-price-original { font-size: 13px; color: var(--stone); text-decoration: line-through; }
.cart-item-price-unit { font-size: 12px; color: var(--stone); margin-top: 4px; }
.cart-subtotal-label { color: var(--stone); }
.cart-discount-amount { color: var(--green); }
.cart-tax-note { font-size: 13px; color: var(--stone); margin-top: 12px; line-height: 1.7; }
.cart-tax-note--duties { color: var(--red); }
.cart-footer-continue { display: block; text-align: center; margin-top: 12px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); }
.cart-totals { padding-top: 28px; position: sticky; top: 88px; border-left: .5px solid rgba(74,70,66,0.18); padding-left: 48px; }
.cart-total-row { display: flex; justify-content: space-between; font-size: 15px; padding: 10px 0; }
.cart-total-row.grand { font-size: 17px; font-weight: 500; border-top: .5px solid rgba(74,70,66,0.18); padding-top: 18px; margin-top: 10px; }
.btn-checkout {
  width: 100%;
  padding: 15px;
  background: var(--ink);
  color: var(--bg);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  border: none;
  margin-top: 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-header { padding: 0 24px 0 110px; gap: 0; height: 56px; overflow: visible; }
  .header-logo { height: 80px; left: 24px; }
  .header-logo img { height: 80px; width: auto; }
  .header-logo-white { height: 80px; left: 24px; clip-path: inset(56px 0 0 0); }
  .site-nav { display: none; }
  .hamburger-wrap { display: block; }
  .header-icons { margin-left: auto; gap: 20px; }
  .header-icons a svg, .header-icons button svg { width: 22px; height: 22px; }
  .mobile-search-wrap .search-field { height: 52px; }
  .mobile-search-wrap .search-input { font-size: 16px; }
  .search-mobile-btn { display: flex !important; }

  .hero { grid-template-columns: 1fr; min-height: auto; height: 300px; position: relative; }
  .hero-visual { position: absolute; inset: 0; min-height: unset; order: 1; display: block; }
  .hero-visual-bg { display: none; }
  .hero-glow { display: none; }
  .hero-product-img { width: 100%; height: 100%; object-fit: cover; object-position: center; align-self: unset; filter: none; position: absolute; inset: 0; z-index: 1; max-width: unset; }
  .hero-copy { position: absolute; bottom: 0; left: 0; right: 0; max-width: 100%; padding: 56px 24px 28px; z-index: 10; background: linear-gradient(to bottom, transparent 0%, rgba(10,9,6,0.6) 35%, rgba(10,9,6,0.92) 100%); justify-content: flex-end; min-height: unset; }
  .hero-heading { font-size: 36px; color: rgba(245,240,232,0.95); }
  .hero-heading em { color: rgba(245,240,232,0.5); }
  .hero-text { display: none; }
  .hero-eyebrow { color: var(--red); text-shadow: 0 1px 6px rgba(0,0,0,0.9); letter-spacing: .2em; }
  .hero-eyebrow--white { color: rgba(245,240,232,0.75); text-shadow: 0 1px 6px rgba(0,0,0,0.9); }
  .hero-btn { border-color: rgba(245,240,232,0.35); color: rgba(245,240,232,0.9); }

  .cart-page { padding: 24px 20px; }
  .cart-page h1 { font-size: 28px; margin-bottom: 20px; }
  .cart-layout { grid-template-columns: 1fr; gap: 0; }
  .cart-totals { position: static; padding-top: 24px; padding-left: 0; border-left: none; border-top: .5px solid rgba(74,70,66,0.18); margin-top: 16px; }
  .cart-item { grid-template-columns: 88px 1fr; gap: 16px; padding: 20px 0; }
  .cart-item-img { grid-row: 1 / 3; align-self: start; }
  .cart-item-price { grid-column: 2; text-align: left; margin-top: 8px; }
  .cart-item-name { font-size: 16px; }
  .cart-item-price-main { font-size: 15px; }
  .cart-total-row { font-size: 14px; }
  .cart-total-row.grand { font-size: 15px; }

  .filter-bar { padding: 14px 24px; }
  .collection-header { padding: 40px 24px 16px; }
  .collection-header .section-header { margin-bottom: 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px 40px; gap: 16px; }
  .product-image-well { padding: 16px; }
  .product-info { padding: 12px 14px 16px; gap: 3px; }
  .product-info-top { flex-direction: column; gap: 4px; }
  .product-name { font-size: 14px; }
  .product-price { font-size: 13px; white-space: normal; }
  .product-carousel-wrap { padding: 0 24px 20px; }
  .product-carousel { gap: 10px; }
  .product-carousel-item { flex: 0 0 calc(52% - 8px); }
  .product-carousel-item .product-name { font-size: 13px; white-space: normal; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; min-height: calc(13px * 1.3 * 3); }
  .product-carousel-item .product-info { padding: 10px 12px 14px; }
  .product-carousel-item .product-price { font-size: 13px; }
  .product-carousel-item .product-meta { font-size: 11px; }
  .product-carousel-item .product-image-well { padding: 20px; }
  .product-carousel-item .product-info-top { flex-direction: column; gap: 2px; }
  .carousel-btn { top: 38%; }

  .pdp-grid { grid-template-columns: minmax(0, 1fr); padding: 0; gap: 0; overflow: hidden; }
  .pdp-grid > * { min-width: 0; }
  .pdp-main-image { aspect-ratio: unset; height: 100vw; max-width: 100vw; overflow: hidden; }

  .pdp-info-panel { padding: 24px; }
  .pdp-breadcrumb { padding: 40px 24px 12px; }
  .pdp-tabs { margin: 0 24px 40px; }
  .about-section { grid-template-columns: 1fr; padding: 56px 24px; }
  .about-kanji { font-size: 52px; }
  .spotlight { grid-template-columns: 1fr; max-height: none; display: flex; flex-direction: column; }
  .spotlight-image { max-height: 260px; min-height: 260px; order: 1; display: block; position: relative; }
  .spotlight-copy { padding: 32px 24px; order: 2; }
  .spotlight-heading { font-size: 28px; }
  .spotlight-text { font-size: 13px; }
  .spotlight-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .spotlight-atc-btn { width: auto; }
  .spotlight-btn { width: auto; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-section { padding: 40px 24px; }
  .newsletter-section { padding: 48px 24px; }
  .newsletter-panel { padding: 36px 28px; }
  .newsletter-form { flex-direction: column; max-width: 100%; gap: 20px; }
  .newsletter-form input { border-right: 1px solid rgba(10,9,6,0.16); }
  .newsletter-form button { width: 100%; }
  .site-footer { grid-template-columns: 1fr 1fr; padding: 40px 24px; gap: 28px 24px; }
  .site-footer .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { padding: 14px 24px; flex-direction: column; gap: 4px; }
}

@media (max-width: 560px) {
  .site-header { padding: 0 16px; }
  .hero-heading { font-size: 32px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
}

/* ══════════════════════════════
   SECTION LIGHT MODE VARIANTS
══════════════════════════════ */

/* ── Editorial Spotlight — light ── */
.spotlight--light { background: var(--bg); }
.spotlight--light .spotlight-image { background: var(--bg); }
.spotlight--light .spotlight-image img { filter: none; }
.spotlight--light .spotlight-glow { display: none; }
.spotlight--light .spotlight-eyebrow { color: var(--red); }
.spotlight--light .spotlight-heading { color: var(--ink); }
.spotlight--light .spotlight-text { color: var(--stone); }
.spotlight--light .spotlight-bullet-dot { background: var(--green); }
.spotlight--light .spotlight-bullet span { color: var(--stone); }
.spotlight--light .spotlight-btn { border-color: rgba(10,9,6,0.25); color: var(--ink); }
.spotlight--light .spotlight-btn:hover { background: rgba(10,9,6,0.05); }

/* ── About Pokeru — light ── */
.about-section--light { background: var(--bg); }
.about-section--light .about-kanji { color: rgba(10,9,6,0.06); }
.about-section--light .about-heading { color: var(--ink); }
.about-section--light .about-text { color: var(--stone); }
.about-section--light .about-tag { border-color: rgba(10,9,6,0.15); color: var(--stone); }

/* ── Blog Preview — dark ── */
.blog-section--dark { background: var(--ink); }
.blog-section--dark .section-title { color: rgba(245,240,232,0.9); }
.blog-section--dark .section-header { border-bottom-color: rgba(245,240,232,0.1); }
.blog-section--dark .section-link { color: rgba(245,240,232,0.4); border-bottom-color: rgba(245,240,232,0.3); }
.blog-section--dark .blog-image { background: rgba(245,240,232,0.05); }
.blog-section--dark .blog-eyebrow { color: var(--red); }
.blog-section--dark .blog-title { color: rgba(245,240,232,0.9); }
.blog-section--dark .blog-excerpt { color: rgba(245,240,232,0.4); }

/* ── Featured Collection ── */
.featured-collection .section-title { font-size: 36px; font-weight: 300; }
.featured-collection .section-link { font-size: 10px; }
@media (max-width: 900px) {
  .featured-collection .section-title { font-size: 26px; }
}

/* ── Featured Collection — dark ── */
.featured-collection--dark { background: var(--ink); }
.featured-collection--dark .section-title { color: rgba(245,240,232,0.9); }
.featured-collection--dark .section-header { border-bottom-color: rgba(245,240,232,0.1); }
.featured-collection--dark .section-link { color: rgba(245,240,232,0.4); border-bottom-color: rgba(245,240,232,0.3); }
.featured-collection--dark .filter-pill { border-color: rgba(245,240,232,0.15); color: rgba(245,240,232,0.45); }
.featured-collection--dark .filter-pill.active { background: rgba(245,240,232,0.9); color: var(--ink); border-color: rgba(245,240,232,0.9); }

/* ══════════════════════════════
   EDITORIAL PAGE SYSTEM
   Shared typography for static pages (About, Shipping, Authenticity, FAQ,
   policy duplicates, etc.). Mirrors article page DNA but tuned for content
   without a hero image and for denser legalese-style prose when needed.
══════════════════════════════ */

.editorial-page {
  padding: 0 0 80px;
  max-width: 100%;
}

/* Breadcrumb */
.editorial-breadcrumb {
  padding: 48px 56px 24px;
  font-size: 11px;
  color: var(--stone);
  letter-spacing: .06em;
  text-shadow: 0 1px 3px rgba(245,240,232,0.8);
}
.editorial-breadcrumb a {
  color: var(--stone);
  text-decoration: none;
  transition: color .2s;
}
.editorial-breadcrumb a:hover { color: var(--ink); }
.editorial-breadcrumb-divider { margin: 0 8px; color: var(--stone-lt); }
.editorial-breadcrumb-current { color: var(--ink); }

/* Header — left-aligned by default, centered when hero present */
.editorial-header {
  max-width: 760px;
  margin: 0 auto;
  padding: 16px 24px 24px;
  text-align: left;
}
.editorial-header--centered {
  text-align: center;
  padding: 24px 24px 48px;
}
.editorial-eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.editorial-title {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.editorial-header--centered .editorial-title {
  font-size: 56px;
  line-height: 1.1;
}
.editorial-meta {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.editorial-header--centered .editorial-meta {
  justify-content: center;
}

/* Hero (only when explicitly set via metafield) */
.editorial-hero {
  max-width: 1200px;
  margin: 0 auto 56px;
  padding: 0 24px;
}
.editorial-hero img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
}

/* Body — same 680px measure as articles */
.editorial-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  font-family: var(--sans);
}
.editorial-body p { margin-bottom: 1.4em; }
.editorial-body p:last-child { margin-bottom: 0; }
.editorial-body h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  margin: 1.8em 0 0.5em;
}
.editorial-body h2:first-child { margin-top: 0; }
.editorial-body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  margin: 1.6em 0 0.5em;
}
.editorial-body h4 {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin: 1.5em 0 0.5em;
  font-family: var(--sans);
}
.editorial-body a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(10,9,6,0.3);
  transition: border-color .2s;
}
.editorial-body a:hover { border-bottom-color: var(--ink); }
.editorial-body strong { font-weight: 600; }
.editorial-body em { font-style: italic; }
.editorial-body blockquote {
  margin: 1.8em 0;
  padding: 0 28px;
  border-left: 2px solid var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink-mid);
}
.editorial-body blockquote p { margin-bottom: 0.5em; }
.editorial-body ul,
.editorial-body ol {
  margin: 1.2em 0 1.4em;
  padding-left: 24px;
}
.editorial-body li {
  margin-bottom: 0.5em;
  line-height: 1.7;
}
.editorial-body li > ul,
.editorial-body li > ol {
  margin: 0.5em 0;
}
.editorial-body img {
  width: 100%;
  height: auto;
  margin: 2em 0;
}
.editorial-body > img:first-child {
  margin-top: 0;
}
.editorial-body hr {
  border: none;
  border-top: .5px solid rgba(74,70,66,0.18);
  margin: 2.5em 0;
}
.editorial-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 14px;
}
.editorial-body th,
.editorial-body td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: .5px solid rgba(74,70,66,0.18);
}
.editorial-body th {
  font-weight: 600;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Related pages footer */
.editorial-related {
  max-width: 1000px;
  margin: 96px auto 0;
  padding: 0 56px;
}
.editorial-related-header {
  border-bottom: .5px solid rgba(74,70,66,0.18);
  padding-bottom: 16px;
  margin-bottom: 32px;
}
.editorial-related-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--ink);
}
.editorial-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.editorial-related-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  background: var(--card);
  border: .5px solid var(--card-border);
  text-decoration: none;
  color: inherit;
  transition: background .2s, border-color .2s;
}
.editorial-related-card:hover {
  background: var(--bg-hover);
  border-color: rgba(10,9,6,0.18);
}
.editorial-related-eyebrow {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
}
.editorial-related-card-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}
.editorial-related-cta {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 8px;
}
.editorial-related-card:hover .editorial-related-cta { color: var(--ink); }

/* ── SHOPIFY POLICY PAGES ──
   Shopify bypasses policy.liquid and renders its own HTML structure.
   We style those classes directly to match the editorial design.
*/
.shopify-policy__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 56px 80px;
  text-align: left;
}
.shopify-policy__title {
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: .5px solid rgba(74,70,66,0.18);
}
.shopify-policy__title h1 {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-align: left;
}
.shopify-policy__body .rte {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  font-family: var(--sans);
}
.shopify-policy__body .rte p { margin-bottom: 0.75em; }
.shopify-policy__body .rte p:last-child { margin-bottom: 0; }
.shopify-policy__body .rte h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  margin: 1.2em 0 0.25em;
}
.shopify-policy__body .rte h2:first-child { margin-top: 0; }
.shopify-policy__body .rte h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  margin: 1em 0 0.2em;
}
.shopify-policy__body .rte a {
  color: var(--ink);
  border-bottom: 1px solid rgba(10,9,6,0.3);
  transition: border-color .2s;
}
.shopify-policy__body .rte a:hover { border-bottom-color: var(--ink); }
.shopify-policy__body .rte strong { font-weight: 600; }
.shopify-policy__body .rte ul,
.shopify-policy__body .rte ol {
  margin: 0.6em 0 0.9em;
  padding-left: 24px;
}
.shopify-policy__body .rte li {
  margin-bottom: 0.3em;
  line-height: 1.6;
}
.shopify-policy__breadcrumb {
  padding: 0 0 24px;
  font-size: 11px;
  color: var(--stone);
  letter-spacing: .06em;
}
.shopify-policy__breadcrumb a {
  color: var(--stone);
  text-decoration: none;
  transition: color .2s;
  border-bottom: none;
}
.shopify-policy__breadcrumb a:hover { color: var(--ink); }
.shopify-policy__breadcrumb-divider { margin: 0 8px; color: var(--stone-lt); }
.shopify-policy__breadcrumb-current { color: var(--ink); }

@media (max-width: 900px) {
  .shopify-policy__container { padding: 24px 24px 56px; }
  .shopify-policy__title h1 { font-size: 32px; }
  .shopify-policy__body .rte { font-size: 15px; line-height: 1.7; }
  .shopify-policy__body .rte h2 { font-size: 24px; }
  .shopify-policy__body .rte h3 { font-size: 19px; }
}

/* Mobile */
@media (max-width: 900px) {
  .editorial-page { padding: 24px 0 56px; }
  .editorial-breadcrumb { padding: 0 24px 20px; }
  .editorial-header { padding: 16px 24px 28px; }
  .editorial-header--centered { padding: 16px 24px 32px; }
  .editorial-title { font-size: 32px; }
  .editorial-header--centered .editorial-title { font-size: 34px; }
  .editorial-eyebrow { margin-bottom: 14px; }
  .editorial-hero { padding: 0; margin-bottom: 36px; }
  .editorial-hero img { max-height: 320px; }
  .editorial-body { font-size: 15px; line-height: 1.7; padding: 0 24px; }
  .editorial-body h2 { font-size: 24px; }
  .editorial-body h3 { font-size: 19px; }
  .editorial-body blockquote {
    margin: 1.4em 0;
    padding: 0 18px;
    font-size: 18px;
  }
  .editorial-related { margin-top: 64px; padding: 0 24px; }
  .editorial-related-grid { grid-template-columns: 1fr; gap: 16px; }
  .editorial-related-card { padding: 20px; }
  .editorial-related-card-title { font-size: 18px; }
}

/* ── BOOSTER-BOX SECTIONS ── */

/* Shared section wrapper — matches .pdp-tabs spacing */
.pokeru-section {
  margin: 0 56px 56px;
  border-top: .5px solid rgba(74,70,66,0.18);
  padding-top: 48px;
}
.pokeru-section-heading {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 28px;
}

/* ── Product Specs ── */
.pokeru-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 48px;
}
.pokeru-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  border-bottom: .5px solid var(--card-border);
}
.pokeru-specs dt {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--stone);
  flex-shrink: 0;
}
.pokeru-specs dd {
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  text-align: right;
}

/* ── Box Contents ── */
.pokeru-box-stats {
  display: flex;
  gap: 16px;
}
.pokeru-box-stat {
  flex: 1;
  background: var(--card);
  border: .5px solid var(--card-border);
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pokeru-box-stat-value {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}
.pokeru-box-stat-label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── Accordion ── */
.pokeru-accordion-item {
  border-bottom: .5px solid var(--card-border);
}
.pokeru-accordion-item:first-child {
  border-top: .5px solid var(--card-border);
}
.pokeru-accordion-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  user-select: none;
}
.pokeru-accordion-summary::-webkit-details-marker { display: none; }
.pokeru-accordion-icon::before {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1;
}
details[open] .pokeru-accordion-icon::before { content: '−'; }
.pokeru-accordion-body {
  padding: 4px 0 24px;
  font-size: 13px;
  line-height: 1.85;
  color: var(--stone);
}
.pokeru-accordion-body p { margin-bottom: 8px; }
.pokeru-accordion-body p:last-child { margin-bottom: 0; }
.pokeru-accordion-body ul { padding-left: 1.2em; }
.pokeru-accordion-body li { margin-bottom: 6px; }

@media (max-width: 900px) {
  .pokeru-section { margin: 0 24px 40px; }
  .pokeru-specs { grid-template-columns: 1fr; }
  .pokeru-box-stat { padding: 18px 16px; }
  .pokeru-box-stat-value { font-size: 44px; }
}

/* ── Booster-box inline (inside pdp-info-panel) ── */
.pdp-booster-inlines {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.pdp-booster-heading {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}
.pokeru-specs--panel {
  grid-template-columns: 1fr;
}
}
