/** Shopify CDN: Minification failed

Line 1378:0 Unexpected "}"

**/
/* ─── CHIHARU THEME ─── */
:root {
  --bg: #f4f1ea;
  --bg2: #ede9e0;
  --white: #fdfcf8;
  --forest: #1e3d28;
  --forest2: #162c1c;
  --moss: #2d5c38;
  --sage: #7aaa82;
  --sage-pale: #e8f0e8;
  --sage-light: #d8eada;
  --gold: #a8882a;
  --gold2: #c4a040;
  --cream: #f0e8d0;
  --ink: #181c16;
  --mid: #5c6458;
  --faint: rgba(30,61,40,.07);
  --rule: rgba(30,61,40,.1);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --mincho: 'Shippori Mincho', serif;
  --sans: 'Jost', system-ui, sans-serif;
  --brand: 'Cormorant Garamond', Georgia, serif;
  --nav-h: 60px;
}

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

body {
  background: var(--bg);
  font-family: var(--sans);
  color: var(--ink);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; left: -9999px; top: .5rem; z-index: 9999;
  background: var(--forest); color: var(--cream);
  font-family: var(--sans); font-size: .62rem; letter-spacing: .1em;
  padding: .5rem 1rem;
}
.skip-link:focus { left: .5rem; }

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--sage));
  z-index: 9999; transition: width .1s linear;
}

/* ── ANIMATIONS ── */
@keyframes floatTin {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(-1deg); }
}
@keyframes floatStory {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes spinSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes tagFloat {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes drawerSlide {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

/* scroll-reveal */
.rv  { opacity: 0; transform: translateY(28px); transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1); }
.rl  { opacity: 0; transform: translateX(-24px); transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1); }
.rr  { opacity: 0; transform: translateX(24px);  transition: opacity .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1); }
.rv.on, .rl.on, .rr.on { opacity: 1; transform: translate(0); }
.d1 { transition-delay: .06s; }
.d2 { transition-delay: .12s; }
.d3 { transition-delay: .18s; }
.d4 { transition-delay: .24s; }
.d5 { transition-delay: .30s; }
.d6 { transition-delay: .36s; }

/* ── NAV ── */
/* ── HEADER ── */
.site-header { position: sticky; top: 0; z-index: 100; }

.hd-accent-line {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, rgba(168,136,42,.4) 70%, transparent 100%);
  opacity: .55;
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(244,241,234,.96);
  border-bottom: 1px solid rgba(30,61,40,.07);
  backdrop-filter: blur(16px);
  height: var(--nav-h);
}

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: .75rem;
  text-decoration: none; -webkit-tap-highlight-color: transparent;
}
.nav-mark {
  position: relative; width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-mark-kanji {
  font-family: var(--mincho); font-size: 1.05rem;
  color: var(--forest); position: relative; z-index: 1;
  letter-spacing: 0;
}
.nav-mark-ring {
  position: absolute; inset: 0; border: 1px solid rgba(168,136,42,.35);
  border-radius: 50%;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.nav-logo:hover .nav-mark-ring { transform: rotate(45deg); }

.nav-wordmark {
  display: flex; flex-direction: column; gap: 0;
}
.nav-brand {
  font-family: var(--brand); font-size: 1.35rem;
  color: var(--forest); letter-spacing: .06em; line-height: 1;
  font-weight: 600; text-transform: lowercase;
}
.nav-brand-rule {
  display: block; width: 100%; height: 1px;
  background: linear-gradient(90deg, rgba(168,136,42,.3), transparent);
  margin: .14rem 0;
}
.nav-brand-sub {
  font-family: var(--sans); font-size: .38rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold); font-weight: 300; opacity: .8;
}
.nav-logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-brand-jp {
  font-family: var(--mincho);
  font-size: .42rem;
  letter-spacing: .32em;
  color: var(--gold);
  opacity: .75;
}
/* Desktop links */
.nav-links { display: flex; gap: 2.25rem; list-style: none; }
.nav-link {
  font-family: var(--sans); font-size: .52rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(30,61,40,.45);
  text-decoration: none; font-weight: 300;
  position: relative; padding-bottom: .15rem;
  transition: color .2s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 1px; background: var(--gold);
  transition: right .3s cubic-bezier(.16,1,.3,1);
}
.nav-link:hover { color: var(--forest); }
.nav-link:hover::after { right: 0; }

/* Cart icon */
.nav-actions { display: flex; align-items: center; gap: .5rem; }
.nav-cart {
  display: flex; align-items: center; gap: .3rem;
  color: var(--forest); text-decoration: none;
  padding: .4rem .5rem; position: relative;
  -webkit-tap-highlight-color: transparent;
  transition: opacity .2s;
}
.nav-cart:hover { opacity: .65; }
.nav-cart-icon { width: 19px; height: 19px; }
.nav-cart-count {
  position: absolute; top: .15rem; right: .1rem;
  background: var(--gold); color: var(--forest);
  font-family: var(--sans); font-size: .38rem; font-weight: 500;
  width: 14px; height: 14px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1; letter-spacing: 0;
  transition: transform .2s, background .2s;
}

/* Hamburger */
.nav-menu-btn {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; align-items: center; padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.nm-bar {
  display: block; width: 20px; height: 1px;
  background: var(--forest); transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .2s, width .3s;
  transform-origin: center;
}
.nm-bar3 { width: 13px; }
.nav-menu-btn:hover .nm-bar3 { width: 20px; }
.nav-menu-btn.open .nm-bar:first-child { transform: translateY(6px) rotate(45deg); width: 20px; }
.nav-menu-btn.open .nm-bar3 { transform: translateY(-6px) rotate(-45deg); width: 20px; }
.nav-menu-btn.open .nm-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }

/* Overlay */
.nav-overlay {
  position: fixed; inset: 0; background: rgba(18,24,16,.45);
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity .3s; backdrop-filter: blur(3px);
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

/* ── MOBILE DRAWER ── */
.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(300px, 85vw);
  background: var(--bg); z-index: 300;
  display: flex; flex-direction: column;
  transform: translateX(110%);
  transition: transform .38s cubic-bezier(.16,1,.3,1);
}
.nav-drawer.open { transform: translateX(0); }

.nd-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.4rem 1rem;
  border-bottom: 1px solid var(--rule);
}
.nd-logo { text-decoration: none; }
.nd-close {
  background: none; border: none; cursor: pointer; color: var(--mid);
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  transition: color .2s; -webkit-tap-highlight-color: transparent;
}
.nd-close svg { width: 14px; height: 14px; }
.nd-close:hover { color: var(--forest); }

.nd-links {
  list-style: none; flex: 1;
  padding: .5rem 0;
  display: flex; flex-direction: column;
}
.nd-link {
  display: flex; align-items: center; gap: .75rem;
  padding: 1rem 1.4rem;
  font-family: var(--mincho); font-size: 1.15rem;
  color: var(--forest); text-decoration: none; letter-spacing: .06em;
  border-bottom: 1px solid rgba(30,61,40,.06);
  transition: background .15s;
}
.nd-link:hover { background: rgba(30,61,40,.04); }
.nd-link-num {
  font-family: var(--sans); font-size: .42rem; letter-spacing: .2em;
  color: var(--gold); font-weight: 300; opacity: .8; flex-shrink: 0;
}
.nd-cart-badge {
  margin-left: auto;
  background: var(--gold); color: var(--forest);
  font-family: var(--sans); font-size: .42rem; font-weight: 500;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.nd-footer { padding: 1.25rem 1.4rem; }
.nd-footer-rule {
  width: 32px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: .85rem; opacity: .5;
}
.nd-footer-name {
  font-family: var(--brand); font-size: 1.2rem; font-weight: 600;
  color: var(--forest); letter-spacing: .06em; margin-bottom: .3rem;
  text-transform: lowercase;
}
.nd-footer-sub {
  font-family: var(--sans); font-size: .42rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--mid); font-weight: 300;
}

/* ── HERO ── */
.hero {
  background: #f3ede2;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 60% 40%, rgba(210,225,200,.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid-bg { display: none; }
.hero-kanji {
  position: absolute; right: -2%; bottom: -8%;
  font-family: var(--mincho);
  font-size: clamp(16rem, 28vw, 36rem);
  color: rgba(255,255,255,.035); line-height: 1;
  pointer-events: none; user-select: none; font-weight: 500;
}
.hero-ring {
  position: absolute; top: 50%; left: 63%;
  width: clamp(240px, 40vw, 520px); aspect-ratio: 1; border-radius: 50%;
  border: 1px dashed rgba(168,136,42,.2);
  animation: spinSlow 60s linear infinite; pointer-events: none;
}
.hero-ring2 {
  position: absolute; top: 50%; left: 63%;
  width: clamp(160px, 26vw, 340px); aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(168,136,42,.12);
  transform: translate(-50%,-50%); pointer-events: none;
}
.hero-left {
  padding: 4.5rem 3.5rem 4rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 4;
}
.hero-eye {
  display: flex; align-items: center; gap: .75rem; margin-bottom: 2rem;
  animation: fadeSlideUp .85s cubic-bezier(.16,1,.3,1) .1s both;
}
.hero-eye-bar { width: 32px; height: 1px; background: var(--gold); opacity: .6; }
.hero-eye-txt { font-family: var(--sans); font-size: .48rem; letter-spacing: .36em; text-transform: uppercase; color: var(--gold); font-weight: 300; opacity: .85; }
.hero-h1 {
  font-family: var(--mincho);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 400; line-height: .9; color: var(--forest);
  margin-bottom: 1.4rem;
  animation: fadeSlideUp .9s cubic-bezier(.16,1,.3,1) .2s both;
}
.hero-h1 .jp { font-size: clamp(1.4rem, 2.6vw, 2.6rem); color: rgba(30,61,40,.28); letter-spacing: .2em; display: block; margin-bottom: .08em; }
.hero-h1 .it { font-family: var(--serif); font-style: italic; font-size: clamp(2.4rem, 4.8vw, 4.6rem); color: var(--moss); display: block; line-height: 1; }
.hero-h1 .gd { color: var(--gold); }
.hero-rule { display: flex; align-items: center; gap: .85rem; margin-bottom: 1.5rem; animation: fadeSlideUp .85s cubic-bezier(.16,1,.3,1) .3s both; }
.hr-l { flex: 1; height: 1px; background: rgba(30,61,40,.1); }
.hr-d { width: 5px; height: 5px; border: 1px solid rgba(168,136,42,.35); transform: rotate(45deg); flex-shrink: 0; }
.hero-desc {
  font-family: var(--sans); font-size: .76rem; line-height: 2;
  color: rgba(30,40,25,.46); font-weight: 300; max-width: 320px;
  margin-bottom: 2.25rem;
  animation: fadeSlideUp .85s cubic-bezier(.16,1,.3,1) .32s both;
}
.hero-price-row {
  display: flex; align-items: baseline; gap: .55rem; margin-bottom: 1.85rem;
  animation: fadeSlideUp .85s cubic-bezier(.16,1,.3,1) .4s both;
}
.hp-from { font-family: var(--sans); font-size: .46rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); font-weight: 300; opacity: .8; }
.hp-num { font-family: var(--serif); font-size: clamp(2.6rem, 4.8vw, 4rem); color: var(--forest); line-height: 1; font-weight: 400; }
.hp-note { font-family: var(--sans); font-size: .58rem; color: rgba(30,40,25,.36); font-weight: 200; }
.hero-btns { display: flex; gap: .8rem; align-items: center; margin-bottom: 1.75rem; animation: fadeSlideUp .85s cubic-bezier(.16,1,.3,1) .48s both; }
.btn-main {
  background: var(--forest); color: var(--cream); border: none;
  font-family: var(--sans); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  padding: 1rem 2.4rem; cursor: pointer; font-weight: 400;
  position: relative; overflow: hidden; transition: color .3s;
  display: inline-block; text-decoration: none;
}
.btn-main::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .36s cubic-bezier(.16,1,.3,1);
}
.btn-main:hover::before { transform: scaleX(1); }
.btn-main span { position: relative; z-index: 1; }
.btn-main:hover span { color: var(--forest); }
.btn-ghost {
  background: none; border: none;
  font-family: var(--sans); font-size: .58rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(30,61,40,.42); cursor: pointer; font-weight: 300;
  display: flex; align-items: center; gap: .42rem; transition: color .2s;
  text-decoration: none;
}
.btn-ghost:hover { color: var(--forest); }
.bg-arr { transition: transform .2s; }
.btn-ghost:hover .bg-arr { transform: translateX(5px); }
.hero-chips { display: flex; gap: .38rem; flex-wrap: wrap; animation: fadeSlideUp .85s cubic-bezier(.16,1,.3,1) .56s both; }
.chip {
  font-family: var(--sans); font-size: .44rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--moss); border: 1px solid rgba(45,92,56,.2);
  padding: .18rem .55rem; font-weight: 300; background: rgba(255,255,255,.45);
}
.hero-right { position: relative; z-index: 4; display: flex; align-items: center; justify-content: center; padding: 3.5rem 2rem; }
.tin-wrap { position: relative; width: clamp(230px, 34vw, 380px); }
.tin-photo {
  width: 100%; height: auto; display: block;
  animation: floatTin 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 44px rgba(30,61,40,.18)) drop-shadow(0 6px 12px rgba(30,61,40,.1));
}
.tin-placeholder {
  width: 100%; aspect-ratio: 1; background: var(--sage-light);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem;
}
.tin-placeholder span { font-family: var(--mincho); font-size: 4rem; color: var(--forest); opacity: .3; }
.tin-placeholder small { font-family: var(--sans); font-size: .6rem; color: var(--mid); font-weight: 300; text-align: center; padding: 0 2rem; }
.tin-glow {
  position: absolute; bottom: -4%; left: 50%; transform: translateX(-50%);
  width: 65%; height: 24px;
  background: radial-gradient(ellipse, rgba(122,170,130,.18) 0%, transparent 70%);
}
.ftag {
  position: absolute;
  background: rgba(253,252,248,.88); border: 1px solid rgba(30,61,40,.08);
  padding: .5rem .78rem; backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(30,61,40,.06);
}
.ftag span { font-family: var(--sans); font-size: .43rem; letter-spacing: .2em; text-transform: uppercase; color: var(--mid); display: block; margin-bottom: .14rem; font-weight: 300; }
.ftag strong { font-family: var(--serif); font-size: .84rem; color: var(--forest); font-style: italic; display: block; }
.ft1 { top: 16%; left: -10%; animation: tagFloat .8s .9s both; }
.ft2 { bottom: 22%; right: -8%; animation: tagFloat .8s 1.1s both; }
.ft3 { top: 54%; left: -14%; animation: tagFloat .8s 1.3s both; }

/* ── PDP ── */
.pdp-wrap { background: var(--white); position: relative; }
.pdp-wrap::before { content: ''; display: block; height: 1px; background: linear-gradient(90deg,transparent,var(--gold),transparent); opacity: .35; }
.pdp { display: grid; grid-template-columns: 1fr 1fr; max-width: 1080px; margin: 0 auto; }

/* ── GALLERY ── */
.gallery {
  display: flex; flex-direction: column; gap: .6rem;
  padding: 2.5rem 2rem 2.5rem 2.5rem;
  border-right: 1px solid var(--rule);
  position: sticky; top: var(--nav-h); align-self: start;
}
.g-main {
  aspect-ratio: 1; background: var(--bg); display: flex; align-items: center;
  justify-content: center; position: relative; overflow: hidden;
}
.g-main::before { content: ''; position: absolute; inset: 12px; border: 1px solid rgba(30,61,40,.06); pointer-events: none; z-index: 1; }
.g-badges { position: absolute; top: .9rem; left: .9rem; display: flex; flex-direction: column; gap: .28rem; z-index: 2; }
.gbadge { font-family: var(--sans); font-size: .46rem; letter-spacing: .14em; text-transform: uppercase; padding: .18rem .54rem; font-weight: 400; }
.gb-j { background: #daeeda; color: #1a3420; }
.gb-p { background: var(--cream); color: #5a3a10; }
.g-main img { width: 70%; height: auto; object-fit: contain; z-index: 2; position: relative; transition: transform .45s cubic-bezier(.16,1,.3,1); }
.g-main:hover img { transform: scale(1.05); }
#g-main-img { width: 70%; }
.g-thumbs { display: flex; gap: .5rem; }
.gth { width: 62px; height: 62px; background: var(--white); border: 1px solid var(--rule); cursor: pointer; overflow: hidden; display: flex; align-items: center; justify-content: center; transition: border-color .18s; position: relative; }
.gth.on { border-color: var(--forest); }
.gth.on::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); }
.gth img { width: 82%; height: auto; object-fit: contain; }
.gth-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--sage-pale); }
.gth-ph span { font-family: var(--mincho); font-size: .9rem; color: var(--moss); opacity: .55; }

/* ── GALLERY CAPTION ── */
.g-caption {
  font-family: var(--sans); font-size: .48rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--mid); font-weight: 300;
  text-align: center; padding-top: .75rem;
}

/* ── INFO PANEL ── */
.info {
  padding: 3.5rem 3rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  background: var(--white);
}

/* origin label */
.info-origin {
  font-family: var(--sans); font-size: .52rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--moss); font-weight: 400;
  display: flex; align-items: center; gap: .55rem;
}
.info-origin::before { content: ''; width: 20px; height: 1px; background: var(--gold); opacity: .6; }

/* product name */
.info-h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  font-weight: 400; line-height: 1.05; color: var(--ink);
}

/* tagline */
.info-tag {
  font-family: var(--serif); font-size: .92rem; line-height: 2;
  color: rgba(24,28,22,.5); font-style: italic;
  border-left: 2px solid var(--gold); padding-left: 1.1rem;
  max-width: 400px;
}

/* ── DETAIL ROWS ── */
.detail-rows { display: flex; flex-direction: column; border-top: 1px solid var(--rule); }
.dr {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 0;
  border-bottom: 1px solid var(--rule);
}
.dr-label {
  font-family: var(--sans); font-size: .52rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--mid); font-weight: 300;
}
.dr-val {
  font-family: var(--sans); font-size: .68rem; color: var(--ink);
  font-weight: 400; text-align: right;
}
.dr-badge {
  font-family: var(--sans); font-size: .5rem; letter-spacing: .16em;
  text-transform: uppercase; font-weight: 500; color: var(--forest);
  background: var(--sage-pale); border: 1px solid rgba(30,61,40,.15);
  padding: .28rem .72rem;
}

/* ── PRICE + BUY ── */
.pdp-buy { display: flex; flex-direction: column; gap: .75rem; }
.pdp-price-row {
  display: flex; align-items: baseline; gap: .7rem;
}
.pdp-price {
  font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3rem);
  color: var(--ink); line-height: 1; font-weight: 400;
}
.pdp-price-note {
  font-family: var(--sans); font-size: .6rem;
  color: rgba(24,28,22,.4); font-weight: 300;
}

.rule { height: 1px; background: linear-gradient(90deg, var(--gold), transparent); opacity: .2; }

/* compat stubs */
.info-kick { display: none; }
.info-jp { display: none; }
.info-wt { display: none; }
.info-name-block { display: none; }
.info-details { display: none; }
.single-price-row { display: none; }

/* ── BUNDLE ── */
.bl-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: .75rem; }
.bl-title { font-family: var(--sans); font-size: .52rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink); font-weight: 400; }
.bl-sub { font-family: var(--sans); font-size: .5rem; color: var(--moss); font-weight: 300; letter-spacing: .06em; }
.bcs { display: grid; grid-template-columns: repeat(3,1fr); gap: .6rem; }
.bcs.two-col { grid-template-columns: repeat(2,1fr); }
.bc {
  background: var(--bg); border: 1.5px solid rgba(30,61,40,.1); cursor: pointer;
  display: flex; flex-direction: column; align-items: center;
  padding: 1rem .5rem .9rem; position: relative; user-select: none;
  transition: border-color .2s, background .2s, transform .2s, box-shadow .2s;
}
.bc:hover { border-color: rgba(30,61,40,.3); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(30,61,40,.07); }
.bc.on { border-color: var(--forest); background: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(30,61,40,.09); }
.bc.on::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); }
.bc-flag { position: absolute; top: -.58rem; left: 50%; transform: translateX(-50%); white-space: nowrap; font-family: var(--sans); font-size: .44rem; letter-spacing: .18em; text-transform: uppercase; padding: .15rem .55rem; font-weight: 500; }
.f-pop { background: var(--forest); color: var(--cream); }
.f-val { background: var(--gold2); color: var(--white); }
.bc-vis { height: 76px; display: flex; align-items: flex-end; justify-content: center; margin-bottom: .5rem; position: relative; overflow: visible; }
.bc-label { font-family: var(--sans); font-size: .66rem; font-weight: 400; color: var(--ink); margin-bottom: .15rem; }
.bc-price { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); line-height: 1; font-weight: 400; }
.bc-per { font-family: var(--sans); font-size: .5rem; color: var(--mid); font-weight: 300; }
.bc-save { font-family: var(--sans); font-size: .5rem; color: var(--moss); font-weight: 400; letter-spacing: .05em; margin-top: .1rem; }

/* ── ATC ── */
.atc-price { display: flex; align-items: baseline; gap: .6rem; margin-bottom: .55rem; }
.atc-tot { font-family: var(--serif); font-size: 1.85rem; color: var(--ink); line-height: 1; }
.atc-note-txt { font-family: var(--sans); font-size: .54rem; color: var(--mid); font-weight: 300; }
.atc-btn {
  background: var(--forest); color: var(--cream); border: none;
  font-family: var(--sans); font-size: .72rem; letter-spacing: .24em; text-transform: uppercase;
  padding: 1.2rem; cursor: pointer; font-weight: 500; width: 100%;
  position: relative; overflow: hidden; transition: color .3s; margin-bottom: .55rem;
}
.atc-btn::before { content: ''; position: absolute; inset: 0; background: var(--gold2); transform: scaleX(0); transform-origin: left; transition: transform .36s cubic-bezier(.16,1,.3,1); }
.atc-btn:hover::before { transform: scaleX(1); }
.atc-btn span { position: relative; z-index: 1; }
.atc-btn:hover span { color: var(--forest); }
.atc-btn:disabled { opacity: .5; cursor: not-allowed; }
.atc-sub { background: none; color: var(--ink); border: 1px solid rgba(24,28,22,.13); font-family: var(--sans); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; padding: .75rem; cursor: pointer; font-weight: 300; width: 100%; transition: all .2s; margin-bottom: .55rem; }
.atc-sub:hover { border-color: var(--forest); background: rgba(30,61,40,.03); }
.atc-meta { font-family: var(--sans); font-size: .5rem; color: var(--mid); text-align: center; font-weight: 300; line-height: 1.7; }

/* ── STICKY ATC (MOBILE) ── */
.sticky-atc {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: rgba(253,252,248,.97); border-top: 1px solid var(--rule);
  padding: .85rem 1.25rem calc(.85rem + env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  backdrop-filter: blur(10px);
}
.sticky-atc.visible { transform: translateY(0); }
.sticky-atc-inner { display: flex; align-items: center; gap: 1rem; max-width: 480px; margin: 0 auto; }
.sticky-atc-info { flex: 1; }
.sticky-atc-name { display: block; font-family: var(--serif); font-size: .9rem; font-style: italic; color: var(--ink); }
.sticky-atc-price { display: block; font-family: var(--sans); font-size: .52rem; color: var(--mid); font-weight: 300; margin-top: .1rem; }
.sticky-atc-btn {
  background: var(--forest); color: var(--cream); border: none;
  font-family: var(--sans); font-size: .56rem; letter-spacing: .18em; text-transform: uppercase;
  padding: .75rem 1.4rem; cursor: pointer; font-weight: 400;
  white-space: nowrap; flex-shrink: 0;
}

/* trust */
.trust { display: flex; gap: .9rem; padding: .9rem 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); flex-wrap: wrap; }
.ti { display: flex; align-items: center; gap: .38rem; }
.ti-i { width: 24px; height: 24px; border-radius: 50%; background: var(--sage-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ti-i svg { width: 12px; height: 12px; }
.ti-t { font-family: var(--sans); font-size: .48rem; color: var(--mid); font-weight: 300; line-height: 1.4; }
.ti-t strong { display: block; font-weight: 500; color: var(--ink); font-size: .52rem; }

/* accordion */
.acc { display: flex; flex-direction: column; }
.aci { border-top: 1px solid var(--rule); }
.ach { display: flex; justify-content: space-between; align-items: center; padding: .78rem 0; cursor: pointer; user-select: none; }
.ach-t { font-family: var(--sans); font-size: .56rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); font-weight: 400; }
.ach-i { width: 14px; height: 14px; border: 1px solid rgba(24,28,22,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .7rem; color: var(--mid); transition: transform .2s, border-color .2s; }
.ach-i.open { transform: rotate(45deg); border-color: var(--forest); }
.acb { font-family: var(--sans); font-size: .66rem; line-height: 1.95; color: var(--mid); font-weight: 300; padding-bottom: .82rem; display: none; }
.acb.open { display: block; }
.acb strong { color: var(--ink); font-weight: 400; }

/* ── STATS ── */
.stats { background: var(--forest); display: grid; grid-template-columns: repeat(4,1fr); position: relative; }
.stats::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,rgba(212,176,96,.5),transparent); }
.sc { padding: 2rem 1.25rem; text-align: center; border-right: 1px solid rgba(255,255,255,.05); }
.sc:last-child { border-right: none; }
.sn { font-family: var(--serif); font-size: 1.85rem; font-style: italic; color: var(--cream); line-height: 1; margin-bottom: .28rem; }
.sl { font-family: var(--sans); font-size: .48rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(240,232,208,.35); font-weight: 300; line-height: 1.6; }

/* ── BENEFITS ── */
.bens { padding: 4.5rem 2.5rem; background: var(--white); }
.bens-h { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 3rem; align-items: end; }
.bens-h h2 { font-family: var(--serif); font-size: clamp(1.6rem, 2.4vw, 2.2rem); font-weight: 400; font-style: italic; color: var(--ink); line-height: 1.15; margin-bottom: .55rem; }
.bens-h p { font-family: var(--sans); font-size: .62rem; color: var(--mid); font-weight: 300; line-height: 1.9; }
.bens-tags { display: flex; flex-direction: column; gap: .4rem; align-items: flex-end; }
.btag { font-family: var(--sans); font-size: .46rem; letter-spacing: .14em; text-transform: uppercase; color: var(--moss); border: 1px solid rgba(45,92,56,.22); padding: .18rem .58rem; }
.bg { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rule); }
.bc2 { background: var(--white); padding: 1.7rem 1.5rem; display: flex; flex-direction: column; gap: .6rem; transition: background .2s; }
.bc2:hover { background: var(--sage-pale); }
.bnum { font-family: var(--serif); font-size: 1.5rem; font-style: italic; color: rgba(45,92,56,.14); line-height: 1; }
.btit { font-family: var(--serif); font-size: .92rem; font-style: italic; color: var(--ink); }
.bdesc { font-family: var(--sans); font-size: .65rem; line-height: 1.9; color: var(--mid); font-weight: 300; }
.bsrc { font-family: var(--sans); font-size: .46rem; letter-spacing: .13em; text-transform: uppercase; color: var(--moss); display: flex; align-items: center; gap: .28rem; margin-top: .1rem; }
.bsrc::before { content: ''; width: 10px; height: 1px; background: var(--gold); opacity: .45; }

/* ── STORY ── */
.story { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--rule); }
.sv { background: var(--forest); min-height: 480px; position: relative; overflow: hidden; }
.sv svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.sv-img { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 52%; z-index: 3; animation: floatStory 5s ease-in-out infinite; }
.sv-img img { width: 100%; height: auto; display: block; filter: drop-shadow(0 16px 32px rgba(0,0,0,.25)); }
.stxt { padding: 4.5rem 3.5rem; background: var(--bg2); display: flex; flex-direction: column; justify-content: center; gap: 1.3rem; }
.s-pre { font-family: var(--sans); font-size: .46rem; letter-spacing: .3em; text-transform: uppercase; color: var(--mid); font-weight: 300; }
.s-h2 { font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.8rem); font-weight: 400; font-style: italic; line-height: 1.3; color: var(--ink); }
.s-p { font-family: var(--sans); font-size: .7rem; line-height: 2.1; color: rgba(24,28,22,.48); font-weight: 300; }
.s-p strong { color: var(--ink); font-weight: 400; }
.s-pull { font-family: var(--serif); font-style: italic; font-size: .9rem; color: var(--forest); line-height: 1.7; padding: 1rem 0 1rem 1.1rem; border-left: 2px solid var(--gold); }
.s-sig { font-family: var(--serif); font-style: italic; font-size: .8rem; color: var(--gold); }

/* ── CERTIFICATION ── */
.cert { padding: 3.5rem 2.5rem; background: var(--sage-pale); border-top: 1px solid var(--rule); }
.cert-in { max-width: 560px; }
.cert-pre { font-family: var(--sans); font-size: .46rem; letter-spacing: .28em; text-transform: uppercase; color: var(--mid); margin-bottom: .85rem; font-weight: 300; }
.cert-h2 { font-family: var(--serif); font-size: clamp(1.1rem, 1.8vw, 1.45rem); font-weight: 400; font-style: italic; color: var(--ink); margin-bottom: 1.1rem; line-height: 1.3; }
.cert-p { font-family: var(--sans); font-size: .68rem; line-height: 2; color: var(--mid); font-weight: 300; margin-bottom: .65rem; }
.cert-note { font-family: var(--sans); font-size: .6rem; line-height: 1.85; color: var(--mid); font-weight: 300; padding: .85rem 1rem; border-left: 2px solid rgba(30,61,40,.18); font-style: italic; margin-top: .5rem; }

/* ── TESTIMONIALS ── */
.testi { padding: 5rem 2.5rem; background: var(--bg); border-top: 1px solid var(--rule); }
.testi-head { text-align: center; margin-bottom: 3.5rem; }
.testi-pre { font-family: var(--sans); font-size: .46rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); font-weight: 300; margin-bottom: .7rem; display: flex; align-items: center; justify-content: center; gap: .7rem; }
.testi-pre::before, .testi-pre::after { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); opacity: .5; }
.testi-h2 { font-family: var(--serif); font-size: clamp(1.5rem, 2.2vw, 2rem); font-weight: 400; font-style: italic; color: var(--ink); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tcard {
  background: var(--white); padding: 2rem 1.75rem;
  border: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s;
  position: relative;
}
.tcard:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(30,61,40,.07); }
.tcard::before {
  content: '"';
  font-family: var(--serif); font-size: 5rem; line-height: 1;
  color: rgba(122,170,130,.18); position: absolute; top: .5rem; left: 1rem;
  font-style: italic;
}
.tcard-stars { display: flex; gap: .2rem; }
.tcard-star { color: var(--gold); font-size: .7rem; }
.tcard-body { font-family: var(--serif); font-size: .9rem; font-style: italic; line-height: 1.8; color: var(--ink); position: relative; z-index: 1; }
.tcard-foot { display: flex; align-items: center; gap: .7rem; margin-top: auto; padding-top: .75rem; border-top: 1px solid var(--rule); }
.tcard-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--sage-pale); display: flex; align-items: center; justify-content: center;
  font-family: var(--mincho); font-size: .8rem; color: var(--forest); flex-shrink: 0;
}
.tcard-author { font-family: var(--sans); font-size: .5rem; font-weight: 400; color: var(--ink); letter-spacing: .06em; }
.tcard-via { font-family: var(--sans); font-size: .44rem; color: var(--mid); font-weight: 300; }
.tcard-badge { margin-left: auto; font-family: var(--sans); font-size: .42rem; letter-spacing: .12em; text-transform: uppercase; color: var(--moss); border: 1px solid rgba(45,92,56,.2); padding: .12rem .42rem; white-space: nowrap; }

/* ── EMAIL ── */
.email { padding: 4.5rem 2.5rem; background: var(--forest); text-align: center; position: relative; overflow: hidden; }
.email::before { content: '千'; position: absolute; font-family: var(--mincho); font-size: 20rem; color: rgba(255,255,255,.022); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; font-weight: 500; }
.email-pre { font-family: var(--sans); font-size: .46rem; letter-spacing: .3em; text-transform: uppercase; color: var(--sage); margin-bottom: .8rem; font-weight: 300; position: relative; z-index: 2; }
.email-h2 { font-family: var(--serif); font-size: clamp(1.4rem, 2.2vw, 2rem); font-weight: 400; font-style: italic; color: var(--cream); margin-bottom: .38rem; position: relative; z-index: 2; line-height: 1.2; }
.email-sub { font-family: var(--sans); font-size: .67rem; color: rgba(240,232,208,.4); font-weight: 200; margin-bottom: 1.6rem; position: relative; z-index: 2; }
.email-form { display: flex; justify-content: center; max-width: 340px; margin: 0 auto; position: relative; z-index: 2; }
.email-in { flex: 1; padding: .78rem .95rem; border: 1px solid rgba(240,232,208,.12); border-right: none; background: rgba(240,232,208,.06); font-family: var(--sans); font-size: .64rem; color: var(--cream); font-weight: 300; outline: none; }
.email-in::placeholder { color: rgba(240,232,208,.25); }
.email-in:focus { border-color: rgba(240,232,208,.3); }
.email-go { background: var(--cream); color: var(--forest); border: none; padding: .78rem 1.2rem; font-family: var(--sans); font-size: .56rem; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; font-weight: 500; white-space: nowrap; transition: all .2s; }
.email-go:hover { background: var(--gold2); color: var(--forest2); }
.email-note { font-family: var(--sans); font-size: .46rem; color: rgba(240,232,208,.2); margin-top: .8rem; letter-spacing: .07em; position: relative; z-index: 2; }

/* ── FOOTER ── */
.footer { background: var(--forest2); padding: 2.75rem 2.5rem 1.6rem; border-top: 1px solid rgba(255,255,255,.05); }
.ft { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.05); margin-bottom: 1.25rem; }
.fb { font-family: var(--brand); font-size: 1.35rem; font-weight: 600; color: var(--cream); margin-bottom: .25rem; letter-spacing: .06em; text-transform: lowercase; }
.fbs { font-family: var(--sans); font-size: .44rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.2); display: block; margin-bottom: .5rem; }
.fd { font-family: var(--sans); font-size: .58rem; line-height: 1.85; color: rgba(255,255,255,.26); font-weight: 300; max-width: 175px; }
.fch { font-family: var(--sans); font-size: .44rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.2); margin-bottom: .68rem; font-weight: 400; }
.ful { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.ful a { font-family: var(--sans); font-size: .58rem; color: rgba(255,255,255,.3); text-decoration: none; font-weight: 300; transition: color .2s; }
.ful a:hover { color: var(--cream); }
.fbot { display: flex; justify-content: space-between; align-items: center; }
.fcp { font-family: var(--sans); font-size: .46rem; color: rgba(255,255,255,.13); letter-spacing: .07em; }
.fso { display: flex; gap: 1.25rem; }
.fso a { font-family: var(--sans); font-size: .46rem; letter-spacing: .11em; text-transform: uppercase; color: rgba(255,255,255,.16); text-decoration: none; transition: color .2s; display: flex; align-items: center; gap: .35rem; }
.fso a:hover { color: var(--cream); }
.fso svg { width: 12px; height: 12px; opacity: .5; }

/* ── CART IMPROVEMENTS ── */
.cart-wrap { max-width: 680px; margin: 4rem auto; padding: 0 2rem 5rem; }
.cart-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 2.5rem; }
.cart-title { font-family: var(--serif); font-size: 2rem; font-style: italic; color: var(--forest); }
.cart-count { font-family: var(--sans); font-size: .52rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mid); font-weight: 300; }
.cart-empty { text-align: center; padding: 5rem 2rem; }
.cart-empty-icon { font-family: var(--mincho); font-size: 4rem; color: rgba(30,61,40,.1); display: block; margin-bottom: 1rem; }
.cart-empty p { font-family: var(--sans); font-size: .72rem; color: var(--mid); font-weight: 300; margin-bottom: 1.5rem; }
.cart-item { display: grid; grid-template-columns: 80px 1fr auto; gap: 1.25rem; padding: 1.25rem 0; border-bottom: 1px solid var(--rule); align-items: center; }
.cart-item-img { width: 80px; height: 80px; object-fit: contain; background: var(--bg); padding: .5rem; }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: var(--sans); font-size: .7rem; font-weight: 400; color: var(--ink); margin-bottom: .2rem; }
.cart-item-variant { font-family: var(--sans); font-size: .58rem; color: var(--mid); font-weight: 300; }
.cart-item-price { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); font-weight: 400; }
.cart-qty {
  display: flex; align-items: center; gap: .4rem; margin-top: .6rem;
}
.cart-qty-btn {
  width: 26px; height: 26px; border: 1px solid var(--rule); background: none;
  font-family: var(--sans); font-size: .9rem; color: var(--ink); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .18s, background .18s;
}
.cart-qty-btn:hover { border-color: var(--forest); background: var(--faint); }
.cart-qty-num { font-family: var(--sans); font-size: .64rem; color: var(--ink); min-width: 18px; text-align: center; font-weight: 400; }
.cart-remove { background: none; border: none; cursor: pointer; font-family: var(--sans); font-size: .46rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(24,28,22,.3); margin-top: .4rem; padding: 0; transition: color .18s; display: block; }
.cart-remove:hover { color: #b33; }
.cart-summary { margin-top: 2rem; }
.cart-totals { border-top: 1px solid var(--rule); padding-top: 1.5rem; }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: .6rem; }
.cart-total-label { font-family: var(--sans); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); font-weight: 300; }
.cart-total-val { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }
.cart-note { font-family: var(--sans); font-size: .52rem; color: var(--mid); font-weight: 300; margin-bottom: 1.25rem; line-height: 1.6; }
.cart-checkout-btn {
  background: var(--forest); color: var(--cream); border: none;
  font-family: var(--sans); font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  padding: 1.1rem; cursor: pointer; font-weight: 400; width: 100%;
  position: relative; overflow: hidden; transition: color .3s; margin-bottom: .6rem;
}
.cart-checkout-btn::before { content: ''; position: absolute; inset: 0; background: var(--gold2); transform: scaleX(0); transform-origin: left; transition: transform .36s cubic-bezier(.16,1,.3,1); }
.cart-checkout-btn:hover::before { transform: scaleX(1); }
.cart-checkout-btn span { position: relative; z-index: 1; }
.cart-checkout-btn:hover span { color: var(--forest); }
.cart-continue { background: none; border: 1px solid rgba(24,28,22,.13); font-family: var(--sans); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); padding: .75rem; cursor: pointer; font-weight: 300; width: 100%; transition: all .2s; text-align: center; display: block; text-decoration: none; }
.cart-continue:hover { border-color: var(--forest); background: rgba(30,61,40,.03); }
.cart-trust { display: flex; justify-content: center; gap: 1.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
.cart-trust-item { font-family: var(--sans); font-size: .46rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(24,28,22,.35); display: flex; align-items: center; gap: .3rem; }

/* ── RESPONSIVE ── */
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 360px; }
  .hero-left { padding: 3.5rem 1.75rem 2rem; }
  .ftag { display: none; }
  .pdp { grid-template-columns: 1fr; }
  .gallery { display: flex; flex-direction: column; gap: .6rem; padding: 1.5rem; border-right: none; border-bottom: 1px solid var(--rule); position: static; }
  .info { padding: 2rem 1.5rem; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .bg { grid-template-columns: 1fr; }
  .bens-h { grid-template-columns: 1fr; }
  .story { grid-template-columns: 1fr; }
  .sv { min-height: 280px; }
  .stxt { padding: 2.75rem 1.75rem; }
  .bens, .cert, .email, .testi { padding: 3rem 1.75rem; }
  .footer { padding: 2.25rem 1.75rem 1.25rem; }
  .ft { grid-template-columns: 1fr; gap: 1.75rem; }
  .nav-links { display: none; }
  .nav { padding: 0 1.25rem; }
  .nav-menu-btn { display: flex; }
  .sticky-atc { display: block; }
  .testi-grid { grid-template-columns: 1fr; gap: 1rem; }
  .bcs { grid-template-columns: 1fr; }
  .bcs.two-col { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .bens-tags { align-items: flex-start; }
  .tcard { padding: 1.5rem; }
  .cart-item { grid-template-columns: 64px 1fr auto; gap: .85rem; }
  .cart-item-img { width: 64px; height: 64px; }
  .dr { flex-direction: column; align-items: flex-start; gap: .3rem; }
  .pdp-price { font-size: 2rem; }
}

/* ── SINGLE PRODUCT PRICE ROW ── */
.single-price-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--sage-pale);
  border: 1px solid rgba(30,61,40,.1);
}
.sp-price {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--forest); line-height: 1; font-weight: 400;
}
.sp-price-detail { display: flex; flex-direction: column; gap: .18rem; }
.sp-note {
  font-family: var(--sans); font-size: .58rem;
  color: var(--mid); font-weight: 300; letter-spacing: .04em;
}
.sp-shipping {
  font-family: var(--sans); font-size: .5rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--moss); font-weight: 400;
}

/* ══════════════════════════════════════════════
   MOBILE-FIRST ENHANCEMENTS
   ══════════════════════════════════════════════ */

/* Safe-area padding for iPhone home indicator */
body { padding-bottom: env(safe-area-inset-bottom, 0); }

/* Sticky ATC — bigger and more prominent on mobile */
.sticky-atc {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--forest); color: var(--cream);
  z-index: 200; padding: .85rem 1.25rem;
  padding-bottom: calc(.85rem + env(safe-area-inset-bottom, 0));
  box-shadow: 0 -4px 24px rgba(30,61,40,.22);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.sticky-atc.visible { transform: translateY(0); }
.sticky-atc-inner {
  display: flex; align-items: center; gap: 1rem;
  max-width: 480px; margin: 0 auto;
}
.sticky-atc-info { flex: 1; }
.sticky-atc-name {
  font-family: var(--mincho); font-size: .88rem; display: block;
  color: var(--cream); letter-spacing: .04em;
}
.sticky-atc-price {
  font-family: var(--serif); font-size: 1.1rem; color: var(--gold2);
}
.sticky-atc-btn {
  background: var(--gold2); color: var(--forest);
  border: none; font-family: var(--sans);
  font-size: .64rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 500; padding: .85rem 1.4rem;
  cursor: pointer; white-space: nowrap; min-height: 48px;
  transition: background .2s;
  -webkit-tap-highlight-color: transparent;
}
.sticky-atc-btn:hover { background: var(--gold); }

/* ATC button — bigger touch target */
.atc-btn {
  min-height: 52px;
  font-size: .68rem;
  -webkit-tap-highlight-color: transparent;
}

/* Nav cart count — bigger tap area on mobile */
@media (max-width: 880px) {
  .nav-cart { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: flex-end; }
  .nav-menu-btn { min-width: 44px; min-height: 44px; }

  /* Reduce scroll-reveal delay on mobile for snappier feel */
  .d1, .d2, .d3, .d4, .d5, .d6 { transition-delay: 0s; }

  /* Better collection padding from nav */
  .coll-wrap { padding-top: 2rem; }
}

/* Quick-buy toast notification */
.pqb-toast {
  position: fixed; bottom: calc(80px + env(safe-area-inset-bottom, 0));
  left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--forest); color: var(--cream);
  font-family: var(--sans); font-size: .62rem; letter-spacing: .1em;
  padding: .65rem 1.2rem; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s cubic-bezier(.16,1,.3,1);
  z-index: 300;
}
.pqb-toast.show {
  opacity: 1; transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════════════
   ELABORATE BACKGROUND PATTERNS
   ═══════════════════════════════════════════════════ */

/* ── BODY: diamond lattice watermark ── */
body {
  background-color: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Cpath d='M24 1 L47 24 L24 47 L1 24 Z' fill='none' stroke='%231e3d28' stroke-opacity='0.028' stroke-width='0.8'/%3E</svg%3E"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='0.9' fill='%23a8882a' fill-opacity='0.2'/%3E</svg%3E");
  background-size: 48px 48px, 24px 24px;
}

/* ── HERO: seigaiha (ocean wave) replaces simple grid ── */
.hero-grid-bg {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='32'%3E%3Ccircle cx='32' cy='32' r='30' fill='none' stroke='%231e3d28' stroke-opacity='0.06' stroke-width='1'/%3E%3Ccircle cx='0' cy='32' r='30' fill='none' stroke='%231e3d28' stroke-opacity='0.06' stroke-width='1'/%3E%3Ccircle cx='64' cy='32' r='30' fill='none' stroke='%231e3d28' stroke-opacity='0.06' stroke-width='1'/%3E%3Ccircle cx='16' cy='0' r='30' fill='none' stroke='%231e3d28' stroke-opacity='0.06' stroke-width='1'/%3E%3Ccircle cx='48' cy='0' r='30' fill='none' stroke='%231e3d28' stroke-opacity='0.06' stroke-width='1'/%3E</svg%3E"),
    radial-gradient(ellipse 80% 60% at 75% 55%, rgba(122,170,130,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 10% 10%, rgba(216,234,218,.55) 0%, transparent 55%),
    radial-gradient(ellipse 30% 40% at 85% 10%, rgba(168,136,42,.06) 0%, transparent 50%);
  background-size: 64px 32px, 100% 100%, 100% 100%, 100% 100%;
}
/* Additional gold shimmer ring in hero */
.hero::after {
  content: '';
  position: absolute;
  top: 50%; left: 62%;
  width: clamp(300px, 48vw, 600px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(168,136,42,.055) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none; z-index: 1;
}

/* ── STATS BAR: diagonal hatching ── */
.stats {
  background-color: var(--forest);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cline x1='0' y1='16' x2='16' y2='0' stroke='%23f4f1ea' stroke-opacity='0.065' stroke-width='0.6'/%3E</svg%3E"), linear-gradient(180deg, rgba(255,255,255,.025) 0%, transparent 100%);
  background-size: 16px 16px, 100% 100%;
}
/* Gold shimmer top & bottom borders */
.stats::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,176,96,.55), transparent);
}
.stats::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,176,96,.3), transparent);
  pointer-events: none;
}

/* ── BENEFITS: asanoha (hemp leaf) geometric ── */
.bens {
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='49'%3E%3Cpolygon points='28,1 55,25 28,48 1,25' fill='none' stroke='%231e3d28' stroke-opacity='0.04' stroke-width='0.7'/%3E%3Cline x1='28' y1='1' x2='28' y2='48' stroke='%231e3d28' stroke-opacity='0.02' stroke-width='0.4'/%3E%3Cline x1='1' y1='25' x2='55' y2='25' stroke='%231e3d28' stroke-opacity='0.02' stroke-width='0.4'/%3E%3Cline x1='55' y1='1' x2='1' y2='48' stroke='%231e3d28' stroke-opacity='0.015' stroke-width='0.4'/%3E%3Cline x1='1' y1='1' x2='55' y2='48' stroke='%231e3d28' stroke-opacity='0.015' stroke-width='0.4'/%3E</svg%3E");
  background-size: 56px 49px;
}

/* ── STORY visual (dark side): seigaiha waves ── */
.sv {
  background-color: var(--forest);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='32'%3E%3Ccircle cx='32' cy='32' r='30' fill='none' stroke='%23f4f1ea' stroke-opacity='0.09' stroke-width='1'/%3E%3Ccircle cx='0' cy='32' r='30' fill='none' stroke='%23f4f1ea' stroke-opacity='0.09' stroke-width='1'/%3E%3Ccircle cx='64' cy='32' r='30' fill='none' stroke='%23f4f1ea' stroke-opacity='0.09' stroke-width='1'/%3E%3Ccircle cx='16' cy='0' r='30' fill='none' stroke='%23f4f1ea' stroke-opacity='0.09' stroke-width='1'/%3E%3Ccircle cx='48' cy='0' r='30' fill='none' stroke='%23f4f1ea' stroke-opacity='0.09' stroke-width='1'/%3E</svg%3E"),
    radial-gradient(ellipse 70% 70% at 50% 110%, rgba(45,92,56,.6) 0%, transparent 60%);
  background-size: 64px 32px, 100% 100%;
}

/* ── STORY text side: warm washi paper feel ── */
.stxt {
  background-color: var(--bg2);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Cpath d='M24 1 L47 24 L24 47 L1 24 Z' fill='none' stroke='%231e3d28' stroke-opacity='0.028' stroke-width='0.8'/%3E</svg%3E"),
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(168,136,42,.06) 0%, transparent 55%);
  background-size: 48px 48px, 100% 100%;
}

/* ── CERTIFICATION: subtle sage gradient ── */
.cert {
  background:
    radial-gradient(ellipse 55% 70% at 0% 50%, rgba(122,170,130,.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(168,136,42,.06) 0%, transparent 55%),
    var(--sage-pale);
}

/* ── TESTIMONIALS: faint diamond + warm glow ── */
.testi {
  background-color: var(--bg);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48'%3E%3Cpath d='M24 1 L47 24 L24 47 L1 24 Z' fill='none' stroke='%231e3d28' stroke-opacity='0.028' stroke-width='0.8'/%3E</svg%3E"),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(168,136,42,.05) 0%, transparent 65%);
  background-size: 48px 48px, 100% 100%;
}

/* ── EMAIL SIGNUP: botanical leaf branches ── */
.email {
  background-color: var(--forest);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cpath d='M10 110 Q30 70 60 60 Q90 50 110 10' fill='none' stroke='%237aaa82' stroke-opacity='0.32' stroke-width='0.9'/%3E%3Cpath d='M60 60 Q48 42 38 30' fill='none' stroke='%237aaa82' stroke-opacity='0.25' stroke-width='0.6'/%3E%3Cpath d='M60 60 Q76 46 82 34' fill='none' stroke='%237aaa82' stroke-opacity='0.25' stroke-width='0.6'/%3E%3Cpath d='M82 34 Q90 24 95 16' fill='none' stroke='%237aaa82' stroke-opacity='0.18' stroke-width='0.5'/%3E%3Ccircle cx='38' cy='30' r='2.2' fill='%237aaa82' fill-opacity='0.18'/%3E%3Ccircle cx='82' cy='34' r='2.2' fill='%237aaa82' fill-opacity='0.18'/%3E%3Ccircle cx='95' cy='16' r='1.6' fill='%237aaa82' fill-opacity='0.14'/%3E</svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cline x1='0' y1='16' x2='16' y2='0' stroke='%23f4f1ea' stroke-opacity='0.065' stroke-width='0.6'/%3E</svg%3E"),
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(45,92,56,.5) 0%, transparent 70%);
  background-size: 120px 120px, 16px 16px, 100% 100%;
}
/* Richer gold shimmer for email section */
.email::before {
  content: '千';
  position: absolute;
  font-family: var(--mincho); font-size: 22rem; color: rgba(255,255,255,.018);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none; font-weight: 500;
  background: none; width: auto; height: auto; display: block;
}
.email::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 35% 40% at 5%  10%, rgba(168,136,42,.08) 0%, transparent 55%),
    radial-gradient(ellipse 35% 40% at 95% 90%, rgba(168,136,42,.08) 0%, transparent 55%);
  pointer-events: none; z-index: 1;
}
.email-pre, .email-h2, .email-sub, .email-form, .email-note { position: relative; z-index: 2; }

/* ── FOOTER: tight diamond grid ── */
.footer {
  background-color: var(--forest2);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36'%3E%3Cpath d='M18 1 L35 18 L18 35 L1 18 Z' fill='none' stroke='%23f4f1ea' stroke-opacity='0.06' stroke-width='0.8'/%3E</svg%3E"),
    linear-gradient(180deg, rgba(255,255,255,.018) 0%, transparent 40%);
  background-size: 36px 36px, 100% 100%;
}

/* ── PDP white section: very faint dot grid ── */
.pdp-wrap {
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='0.9' fill='%23a8882a' fill-opacity='0.2'/%3E</svg%3E");
  background-size: 24px 24px;
}



/* Fix: ensure Add to Cart button is always clickable above app widgets */
.pdp-atc,
#atc-main-btn,
.atc-btn {
  position: relative;
  z-index: 50 !important;
  pointer-events: all !important;
}

.pdp-lean {
  position: relative;
  z-index: 10;
}



/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   デスクトップ 全幅レイアウト（PC専用）
   モバイルは @media (max-width: 880px) で保護されているため影響なし
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (min-width: 881px) {

  /* ── ナビゲーション ── */
  .nav { padding: 0 3.5rem; }

  /* ━━ 商品ページ：pdp-wrap を全幅2カラムグリッドに ━━
     HTML構造: pdp-wrap > pdp-gallery (左) + pdp-lean (右) */
  .pdp-wrap {
    display: grid;
    grid-template-columns: 55% 45%;
  }

  /* pdp-wrap::before はグリッドの最初の子になってしまうため非表示に */
  .pdp-wrap::before {
    display: none;
  }

  /* 左カラム：ギャラリーを画面の高さいっぱいに固定 */
  .pdp-gallery {
    position: sticky;
    top: var(--nav-h);
    height: calc(100vh - var(--nav-h));
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--rule);
    overflow: hidden;
  }

  .pdp-slides {
    flex: 1;
    min-height: 0;
  }

  .pdp-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pdp-slide img {
    width: 75%;
    height: 100%;
    object-fit: contain;
  }

  /* 右カラム：情報パネルをスクロール可能に */
  .pdp-lean {
    overflow-y: auto;
    max-height: calc(100vh - var(--nav-h));
    position: sticky;
    top: var(--nav-h);
  }

  /* ── コレクションページ：全幅・4列 ── */
  .coll-wrap {
    max-width: none;
    padding: 3rem 3.5rem 6rem;
  }
  .coll-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* ── カートページ ── */
  .cart-wrap { max-width: 860px; }
}

/* ━━ 大画面（1400px以上）さらに広げる ━━ */
@media (min-width: 1400px) {
  .nav  { padding: 0 5rem; }

  .pdp-slide img { width: 82%; }

  .coll-wrap { padding: 3.5rem 5rem 7rem; }
  .coll-grid { grid-template-columns: repeat(5, 1fr); }

  .bens  { padding: 5rem 5rem; }
  .cert  { padding: 4rem 5rem; }
  .testi { padding: 5.5rem 5rem; }
  .email { padding: 5rem 5rem; }
  .footer { padding: 3.5rem 5rem 2rem; }
  .hero-left { padding: 5rem 6rem 4rem 6rem; }
}
.pdp-shipping-note {
  display: block;
  font-size: 11px;
  margin-top: 1px !important;
  color: #1a3a2a;
  opacity: 0.7;
  letter-spacing: 0.2px;
}
.pdp-shipping-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pdp-shipping-note a:hover {
  opacity: 0.7;
}

.pdp-price-row {
  border-top: none !important;
}
.pdp-title-row {
  border-bottom: none !important;
}

.pdp-title {
  font-size: 42px !important;
  font-weight: 500 !important;
  color:rgb(31, 101, 66) !important;
  letter-spacing: 2px !important;
  line-height: 1.2 !important;
  margin: 60px 0 8px 0 !important;
  font-family: 'Klee One', cursive !important;
font-weight: 400 !important;
}

.pdp-price {
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif !important;
  font-size: 25px !important;
  font-weight: 400 !important;
}
.pdp-price-row {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}
.pdp-shipping-note {
  margin-top: -20px !important;
}
.pdp-features {
  margin-top: 0px !important;
}
#pdp-lean {
  gap: 0 !important;
}

.pdp-shipping-note {
  margin: 4px 0 0 0 !important;
}

.pdp-features {
  margin-top: 12px !important;
}
.pdp-price-row {
  margin-top: 24px !important;
}
@media (max-width: 880px) {
  .pdp-shipping-note {
    margin-top: 8px !important;
  }
  .pdp-price-row {
    margin-bottom: 12px !important;
  }
  .pdp-title {
    font-size: 52px !important;
    margin: 40px 0 24px 0 !important;
  }
}
@media (max-width: 880px) {
  .pdp-title {
    font-size: 28px !important;
    margin: 0 0 -5px 0 !important;
  }
.pdp-price {
  font-family: 'Jost', sans-serif !important;
  font-size: 25px !important;
  font-weight: 400 !important;
}
  .pdp-price-row {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .pdp-shipping-note {
    margin-top: 2px !important;
  }
}
/* ── Footer layout: brand left, 3 links right ── */
.ft {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 40px !important;
}

.ft > div:first-child {
  flex: 1;
  max-width: 400px;
}

.ft > div:not(:first-child) {
  flex: 0 0 auto;
}

.ft > div:nth-child(2) {
  margin-left: auto;
}

@media (max-width: 880px) {
  .ft {
    flex-wrap: wrap;
    gap: 30px 20px !important;
  }
  .ft > div:first-child {
    flex: 1 0 100%;
    max-width: 100%;
  }
  .ft > div:nth-child(2) {
    margin-left: 0;
  }
}

/* ── Footer contact (email + IG) ── */
.fcontact {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.fcontact-email {
  font-size: 14px;
  color: #f5f1e8;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 241, 232, 0.6);
  padding-bottom: 3px;
  letter-spacing: 0.3px;
  transition: border-color 0.2s ease;
}

.fcontact-email:hover {
  border-color: #f5f1e8;
}

.fcontact-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f5f1e8;
  opacity: 1;
  transition: transform 0.2s ease;
}

.fcontact-ig:hover {
  transform: scale(1.15);
}

.fcontact-ig svg {
  width: 22px;
  height: 22px;
  stroke: #f5f1e8;
}

/* ── Footer links: Shop / Shipping / Privacy color ── */
.fch,
.fch a {
  color: #f5f1e8 !important;
  opacity: 1 !important;
}

.fch a {
  text-decoration: underline;
  text-decoration-color: rgba(245, 241, 232, 0.5);
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s ease;
}

.fch a:hover {
  text-decoration-color: #f5f1e8;
}
/* ── Footer links: position top, medium size ── */
.ft {
  align-items: flex-start !important;
}

.fch {
  font-size: 12px !important;
  letter-spacing: 1.3px !important;
}

.fch a {
  font-size: 12px !important;
}

@media (max-width: 880px) {
  .fch {
    font-size: 11px !important;
    letter-spacing: 1px !important;
  }
  .fch a {
    font-size: 11px !important;
  }
}
}