/** Shopify CDN: Minification failed

Line 2597:0 All "@import" rules must come first

**/
/* ============================================================
   SEBUYA — Modern Interactions (used by sebuya-modern.js)
   Free-ship bar · Live ticker · Back-to-top · Reveals · Glass header
   ============================================================ */

/* Scroll fade-in — fast + subtle so it never feels like "loading" */
.sx-reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s cubic-bezier(.2,.8,.2,1), transform 0.35s cubic-bezier(.2,.8,.2,1);
}
.sx-reveal.sx-in { opacity: 1; transform: none; }
/* On mobile, skip the fade entirely — direct paint feels more native */
@media (max-width: 989px) {
  .sx-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* Respect reduced motion — show immediately */
@media (prefers-reduced-motion: reduce) {
  .sx-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Free shipping progress bar */
.sx-ship {
  background: linear-gradient(180deg, #fff7e6 0%, #fff 100%);
  border-bottom: 1px solid #f3e6cf;
  position: relative;
}
.sx-ship__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 8px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #2a1c00;
}
.sx-ship__icon { font-size: 16px; line-height: 1; }
.sx-ship__msg { flex: 1; font-weight: 500; }
.sx-ship__msg strong { color: #0a0a0a; font-weight: 800; }
.sx-ship__cur {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  color: #b8001c;
}
.sx-ship__target { font-size: 12px; color: #8a8a8a; }
.sx-ship__bar {
  height: 3px;
  background: rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.sx-ship__fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, #ffb84d 0%, #ff6b00 50%, #e60023 100%);
  width: 0%;
  transition: width 0.6s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 0 12px rgba(255, 107, 0, 0.5);
}
.sx-ship__fill::after {
  /* shimmer */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  animation: shipShimmer 2s linear infinite;
}
@keyframes shipShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.sx-ship--done .sx-ship__fill { background: linear-gradient(90deg, #1fb556, #0f8d3d); }
.sx-ship--done .sx-ship__icon { animation: shipParty 0.6s ease-out 2; }
@keyframes shipParty {
  0%, 100% { transform: scale(1) rotate(0); }
  50% { transform: scale(1.3) rotate(15deg); }
}

@media (max-width: 600px) {
  .sx-ship__inner { padding: 7px 16px; font-size: 12px; gap: 8px; }
  .sx-ship__target { display: none; }
}

/* Live purchase ticker */
.sx-ticker {
  position: fixed;
  left: 20px;
  bottom: 80px;
  z-index: 90;
  width: 320px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(10, 10, 10, 0.18), 0 0 0 1px rgba(10, 10, 10, 0.04);
  padding: 12px 16px 12px 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #0a0a0a;
  opacity: 0;
  transform: translateX(-110%) scale(.95);
  transition: opacity 0.45s cubic-bezier(.2,.8,.2,1), transform 0.45s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.sx-ticker--show {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
.sx-ticker__avatar {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e60023, #b8001c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sx-ticker__avatar svg { width: 18px; height: 18px; }
.sx-ticker__pulse {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid #e60023;
  animation: tkPulse 1.4s ease-out infinite;
}
@keyframes tkPulse {
  0%   { transform: scale(.9); opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}
.sx-ticker__body { flex: 1; min-width: 0; }
.sx-ticker__head { font-size: 12.5px; color: #4a4a4a; line-height: 1.3; }
.sx-ticker__head strong { color: #0a0a0a; font-weight: 800; }
.sx-ticker__ago {
  display: block;
  font-size: 10.5px;
  color: #8a8a8a;
  margin-top: 1px;
  letter-spacing: 0.03em;
}
.sx-ticker__prod {
  font-weight: 700;
  font-size: 13px;
  margin-top: 3px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sx-ticker__verified {
  font-size: 10.5px;
  color: #1fb556;
  font-weight: 700;
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.sx-ticker__close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: transparent;
  border: 0;
  color: #8a8a8a;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 4px;
}
.sx-ticker__close:hover { background: #f5f5f7; color: #0a0a0a; }

@media (max-width: 600px) {
  .sx-ticker { left: 12px; right: 12px; bottom: 86px; width: auto; max-width: none; }
}

/* Back to top with circular progress ring */
.sx-backtop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px;
  height: 50px;
  border: 0;
  background: #fff;
  color: #0a0a0a;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.18);
  cursor: pointer;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px) scale(.8);
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.sx-backtop--show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.sx-backtop:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(10, 10, 10, 0.25);
}
.sx-backtop__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: stroke-dashoffset 0.2s linear;
}
.sx-backtop__icon { width: 18px; height: 18px; position: relative; z-index: 1; }
@media (max-width: 749px) {
  .sx-backtop { bottom: 80px; right: 12px; width: 44px; height: 44px; }
}

/* Header glassmorphism on scroll */
.sx-h--scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: rgba(229, 229, 231, 0.6);
}
.sx-h--scrolled .sx-h-main { padding: 10px 0; transition: padding 0.25s; }
.sx-h-main { transition: padding 0.25s; }

/* Section number ribbon ("01 — DEAL", "02 — TOP 10" etc.) */
.sx-snum {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-bottom: 6px;
}
.sx-snum::before {
  content: '';
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.sx-snum--gold { color: #b8870a; }
.sx-snum--warm { color: #a85f30; }
.sx-snum--red { color: #8c1d2b; }
.sx-snum--plum { color: #5e3a4d; }

/* Quick-view eye overlay on product cards */
.sx-card__quick {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  background: rgba(10, 10, 10, 0.92);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s cubic-bezier(.2,.8,.2,1);
  z-index: 3;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}
.sx-card__quick svg { width: 14px; height: 14px; }
.sx-card:hover .sx-card__quick {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Brand cards — country-coded color hover */
.sx-brand {
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 18px 20px;
  min-width: 150px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  text-decoration: none;
  color: #0a0a0a;
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
}
.sx-brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-grad, transparent);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.sx-brand > * { position: relative; z-index: 1; }
.sx-brand__flag {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 2px;
  transition: transform 0.3s;
}
.sx-brand__name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.sx-brand__country {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  font-weight: 700;
  opacity: 0.55;
  transition: color 0.3s, opacity 0.3s;
}
.sx-brand:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(10, 10, 10, 0.15);
  border-color: transparent;
}
.sx-brand:hover::before { opacity: 1; }
.sx-brand:hover .sx-brand__flag { transform: scale(1.2) rotate(-6deg); }
.sx-brand:hover .sx-brand__name { color: #fff; }
.sx-brand:hover .sx-brand__country { color: #fff; opacity: 0.8; }
.sx-brand[data-cc="kr"] { --bg-grad: linear-gradient(135deg, #c8243a 0%, #0a3b8c 100%); }
.sx-brand[data-cc="jp"] { --bg-grad: linear-gradient(135deg, #e60023 0%, #1a1a1a 100%); }
.sx-brand[data-cc="cn"] { --bg-grad: linear-gradient(135deg, #d4af37 0%, #b8001c 100%); }
.sx-brand[data-cc="id"] { --bg-grad: linear-gradient(135deg, #c8243a 0%, #ffffff 100%); }
.sx-brand[data-cc="th"] { --bg-grad: linear-gradient(135deg, #1f3a7a 0%, #c8243a 100%); }
.sx-brand[data-cc="vn"] { --bg-grad: linear-gradient(135deg, #c8243a 0%, #d4af37 100%); }
.sx-brand[data-cc="id"]:hover .sx-brand__name,
.sx-brand[data-cc="id"]:hover .sx-brand__country { color: #0a0a0a; }

/* Cartoon tile 3D tilt — driven by JS var --rx/--ry */
.sx-cartoon {
  transform: perspective(800px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.18s cubic-bezier(.2,.8,.2,1), box-shadow 0.2s;
  transform-style: preserve-3d;
  will-change: transform;
}
.sx-cartoon:hover .sx-cartoon__emoji {
  animation: tileEmojiBounce 0.6s cubic-bezier(.2,.8,.2,1.4);
}
@keyframes tileEmojiBounce {
  0% { transform: translateY(0) scale(1); }
  35% { transform: translateY(-8px) scale(1.18); }
  70% { transform: translateY(0) scale(0.95); }
  100% { transform: translateY(0) scale(1); }
}

/* Card spice & diet attrs */
.sx-card__attrs {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.sx-attr {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 6px;
  border-radius: 6px;
  background: #f5f5f7;
  color: #0a0a0a;
  line-height: 1;
}
.sx-attr--spice {
  background: transparent;
  padding: 2px 0;
}
.sx-chili {
  font-size: 12px;
  line-height: 1;
  filter: grayscale(1);
  opacity: 0.25;
  transition: all 0.3s;
}
.sx-chili--on {
  filter: none;
  opacity: 1;
  animation: chiliPop 0.4s ease-out backwards;
}
.sx-chili--on:nth-child(1) { animation-delay: 0s; }
.sx-chili--on:nth-child(2) { animation-delay: 0.08s; }
.sx-chili--on:nth-child(3) { animation-delay: 0.16s; }
.sx-chili--on:nth-child(4) { animation-delay: 0.24s; }
@keyframes chiliPop {
  0% { transform: scale(.5); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.sx-attr[data-d="v"] { background: #e8f5e8; color: #1f7a3e; }
.sx-attr[data-d="gf"] { background: #fff4e0; color: #8c5a00; }
.sx-attr[data-d="halal"] { background: #e8eef9; color: #1c3c80; }

/* Brand row marquee enhancement */
.sx-brands {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.sx-brands__track {
  display: flex;
  gap: 16px;
  animation: bMarquee 48s linear infinite;
  width: max-content;
}
.sx-brands:hover .sx-brands__track { animation-play-state: paused; }
@keyframes bMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Stats banner — dark dramatic with gradient text */
.sx-stats-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 50%, #3a0010 100%) !important;
  color: #fff !important;
  border-radius: 18px;
  margin: 32px auto;
  max-width: 1376px;
  position: relative;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}
.sx-stats-section::before {
  /* override the global section watermark and add subtle inner glow */
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 90, 0, 0.12), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(230, 0, 35, 0.15), transparent 50%);
  pointer-events: none;
  z-index: 0;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  opacity: 1;
}
.sx-stats-section .sx-wrap {
  padding-top: 36px;
  padding-bottom: 36px;
  position: relative;
  z-index: 1;
}
.sx-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.sx-stats__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.sx-stats__item::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}
.sx-stats__item:last-child::after { display: none; }

.sx-stats__num {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  background: linear-gradient(135deg, #ffd24a 0%, #ff6b00 60%, #ff3a4d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.sx-stats__num sup {
  font-size: 0.55em;
  vertical-align: super;
  color: #ff6b00;
  -webkit-text-fill-color: #ff6b00;
}
.sx-stats__lbl {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85) !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.40);
}

@media (max-width: 749px) {
  .sx-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .sx-stats__item:nth-child(2n)::after { display: none; }
}

/* ============================================================
   📱 MOBILE HERO (sx-mhero) — editorial typography
   Hidden on desktop, visible on mobile (≤749px)
   ============================================================ */
.sx-mhero {
  display: none;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.sx-mhero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Noto Serif JP', serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffd24a;
  align-self: flex-start;
  margin-bottom: 14px;
}
.sx-mhero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffd24a;
  box-shadow: 0 0 0 3px rgba(255, 210, 74, 0.20);
}
.sx-mhero__title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sx-mhero__title-l1 { color: #fff; }
.sx-mhero__title-l2 {
  background: linear-gradient(135deg, #ffd24a 0%, #ff8a00 50%, #ff3a4d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 900;
}
.sx-mhero__sub {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px;
  line-height: 1.3;
}
.sx-mhero__sub-dot { opacity: 0.4; }
.sx-mhero__ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sx-mhero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.sx-mhero__cta:active { transform: scale(0.97); }
.sx-mhero__cta--primary {
  background: linear-gradient(135deg, #ff8a00 0%, #e60023 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(230, 0, 35, 0.32);
}
.sx-mhero__cta--primary strong {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.sx-mhero__cta-flame {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.sx-mhero__cta-flame svg { width: 100%; height: 100%; }
.sx-mhero__cta--ghost {
  background: rgba(255, 255, 255, 0.10);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
}
.sx-mhero__cta--ghost svg { width: 13px; height: 13px; }
@media (max-width: 380px) {
  .sx-mhero__title { font-size: 32px; }
  .sx-mhero__cta { padding: 11px 10px; font-size: 12px; }
}

/* ============================================================
   📜 CATEGORY SCROLL INDICATOR
   Edge fade + bouncing chevron hint (mobile)
   ============================================================ */
@media (max-width: 749px) {
  .sx-cartoon-grid {
    /* Restore edge fade so users see "more" */
    mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 32px), transparent 100%) !important;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 32px), transparent 100%) !important;
  }
  /* Wrapping parent gets pseudo arrows */
  .sx-tiles, .sx-section--tight:has(.sx-cartoon-grid) {
    position: relative;
  }
  /* Animated chevron at right edge — bounces sideways to signal scroll */
  .sx-section--tight:has(.sx-cartoon-grid)::after {
    content: '›';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #c8203a, #8c0018);
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(200, 32, 58, 0.40);
    animation: catSwipeHint 1.6s cubic-bezier(.4, 0, .6, 1) infinite;
  }
  @keyframes catSwipeHint {
    0%, 100% { transform: translateY(-50%) translateX(0); opacity: 1; }
    50%      { transform: translateY(-50%) translateX(-6px); opacity: 0.65; }
  }
  /* Hide arrow after scroll (JS adds this class) */
  .sx-section--tight.sx-cats-scrolled::after { opacity: 0; transition: opacity 0.4s; }

  /* Small "Wischen" label above category strip */
  .sx-section--tight:has(.sx-cartoon-grid) .sx-wrap::before {
    content: 'Wischen für mehr →';
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.40);
    text-align: right;
    padding: 0 4px 6px;
    margin-top: -4px;
  }
}

/* ============================================================
   ⚡ PERFORMANCE OPTIMIZATION LAYER ⚡
   Reduces GPU/CPU load — esp. critical for mobile (battery, heat)
   ============================================================ */

/* ===== GLOBAL: kill unnecessary continuous animations ===== */
/* These were running on every sale card + every product card constantly */
.sx-card__badge--sale { animation: none !important; }   /* no more pulse on every sale card */
.sx-ship__fill::after { display: none !important; }     /* no shimmer line on free-ship bar (constant repaint) */

/* Recipe card image zoom on hover — extra paint layer */
.sx-rcp-card:hover .sx-rcp-card__media img,
.sx-recipes__card:hover .sx-recipes__img {
  transform: none !important;
}

/* Cart icon shake on card hover (was firing on every card hover) */
.sx-card:hover .sx-card__btn-icon { animation: none !important; }

/* Sebuya card image zoom on hover (kept main, but no double scale on secondary) */
.sx-card:hover .sx-card__media img { transform: scale(1.02) !important; }

/* Card image hover swap kept but lighter transition */
.sx-card__img--main, .sx-card__img--hover {
  transition: opacity 0.25s ease !important;
}
.sx-card:hover .sx-card__img--main { transform: none !important; opacity: 0; }
.sx-card:hover .sx-card__img--hover { transform: none !important; opacity: 1; }
.sx-card:hover .sx-card__img--main:only-child { opacity: 1 !important; transform: scale(1.02) !important; }

/* Hanko stamp scale on hover (was always animating subtle) */
.sx-card:hover .sx-card__hanko { transform: rotate(-6deg) !important; transition: none !important; }

/* Fav heart pop animation — keep but smoother */
.sx-card__fav { transition: color 0.15s, background 0.15s, transform 0.15s !important; }

/* Sebuya card lift on hover — keep but no shadow growth (cheap) */
.sx-card-wrap .sx-card { transition: transform 0.2s, border-color 0.2s !important; }
.sx-card:hover { box-shadow: 0 8px 18px rgba(10, 10, 10, 0.08) !important; }


/* Lazy-paint only the FAR-below-fold heavy sections so the rest of the page
   feels seamless on scroll. Each section reserves estimated height via
   contain-intrinsic-size to avoid layout jumps when it does paint. */
.sx-foot {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

/* Comprehensive prefers-reduced-motion — kills all decorative motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============================================================
   📱 MOBILE PERFORMANCE OVERRIDES (≤ 989px)
   Disables GPU-intensive effects that cause heating/lag
   ============================================================ */
@media (max-width: 989px) {
  /* 1. KILL mix-blend-mode (expensive on mobile GPU) */
  .sx-strip__blob,
  .sx-promo__blob,
  .sx-rcp__blob,
  .sx-nl__blob,
  .sx-foot__blob,
  .sx-country__blob,
  .sxc-hero-blob,
  .sxp__media-blob {
    mix-blend-mode: normal !important;
    opacity: 0.35 !important;
  }

  /* 2. REDUCE blur radius (80-100px → 40px) — half the GPU cost */
  .sx-strip__blob,
  .sx-promo__blob,
  .sx-rcp__blob,
  .sx-nl__blob,
  .sx-country__blob,
  .sxc-hero-blob,
  .sxp__media-blob {
    filter: blur(40px) !important;
  }
  .sx-foot__blob {
    filter: blur(50px) !important;
  }

  /* 3. STOP infinite blob animations on mobile (static blobs OK, no GPU work) */
  .sx-strip__blob,
  .sx-promo__blob,
  .sx-rcp__blob,
  .sx-nl__blob,
  .sx-foot__blob,
  .sx-country__blob,
  .sxc-hero-blob,
  .sxp__media-blob,
  .sx-strip__sun,
  .sx-strip__seigaiha,
  .sx-promo__seigaiha,
  .sx-rcp__seigaiha,
  .sx-nl__seigaiha,
  .sx-foot__seigaiha,
  .sx-country__seigaiha {
    animation: none !important;
  }

  /* 4. KILL decorative particles entirely on mobile */
  .sx-strip__dot,
  .sx-promo__steam,
  .sx-rcp__steam,
  .sx-country__dot,
  .sx-sakura,
  .sx-strip__brush,
  .sx-strip__torii,
  .sxc-strip { /* the animated top gradient strip on collection */
    animation: none !important;
  }
  .sxc-strip {
    background: linear-gradient(90deg, #c8203a 0%, #c8a253 50%, #c8203a 100%) !important;
  }

  /* 5. KILL lantern swing + glow (expensive transform animations) */
  .sx-promo__lantern,
  .sx-promo__lantern-glow {
    animation: none !important;
    /* lantern hidden on mobile already, but ensure no work */
  }

  /* 6. SIMPLIFY backdrop-filter (heavy on mobile) — reduce blur radius */
  .sx-strip__card,
  .sx-strip__badge,
  .sx-strip__cta,
  .sx-country__eyebrow,
  .sx-country__cta,
  .sx-promo__chip,
  .sx-rcp__chip,
  .sx-rcp-card,
  .sx-nl__field,
  .sx-nl__chip,
  .sx-h-search,
  .sx-h--scrolled,
  .sx-cart-toast,
  .sx-card__fav,
  .sx-h-side__count,
  .sxc-bar,
  .sx-rv,
  .sx-ticker,
  .sx-backtop {
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
  }

  /* 7. REMOVE will-change after initial paint (was triggering permanent layers) */
  .sx-strip__blob,
  .sx-promo__blob,
  .sx-rcp__blob,
  .sx-nl__blob,
  .sx-foot__blob,
  .sx-country__blob,
  .sx-cats-blob,
  .sxp__media-blob,
  .sxc-hero-blob,
  .sx-brands__track,
  .sx-pdish {
    will-change: auto !important;
  }

  /* 8. STOP shimmer/pulse animations on title gradients (low value, high cost) */
  .sx-promo__title-accent,
  .sx-country__title-accent,
  .sx-rcp__title-accent,
  .sx-nl__title-accent,
  .sxc-head__title-text {
    animation: none !important;
    background-position: 50% 50% !important;
  }
  .sx-h-logo__tag-line {
    animation: none !important;
    background-position: 0% 50% !important;
  }
  .sx-ship__fill::after { animation: none !important; } /* free ship shimmer */

  /* 9. STOP marquee animation when window not focused (browser pause already, but ensure) */
  /* keep marquee on but slower */
  .sx-brands__track { animation-duration: 90s !important; }

  /* 10. STOP brand-row mask-image (creates extra paint layer) */
  .sx-brands {
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }

  /* 11. STOP dot pulse animations (chip dots, etc.) — small but multiplied */
  .sx-promo__chip-dot,
  .sx-nl__chip-dot,
  .sx-rcp__chip-dot,
  .sx-rv__close,
  .sx-ticker__pulse,
  .sxc-chip-active span,
  .sxc-head__eyebrow-dot,
  .sxc-bar__count strong {
    animation: none !important;
  }

  /* 12. ICON pulse on rich section headers — keep ONE not all */
  .sx-icon-box, .sx-flame {
    animation: none !important;
  }

  /* 13. COUNTDOWN cell separators — stop blink */
  .sx-countdown__sep,
  .sx-countdown__pulse {
    animation: none !important;
  }

  /* 14. SAKURA fall — kept hidden on mobile already, ensure no animation */
  .sx-sakura { display: none !important; animation: none !important; }
}

/* ============================================================
   ⭐ MOBILE 100% RESPONSIVE OVERRIDE LAYER ⭐
   Comprehensive fixes for tablet (≤989), mobile (≤749), tiny (≤480)
   ============================================================ */

/* ===== TABLET (≤ 989px) ===== */
@media (max-width: 989px) {
  /* Header */
  .sx-h-main__inner { gap: 14px; padding: 0 16px; }
  .sx-h-search { max-width: 100%; }

  /* Hero strip */
  .sx-strip__torii { width: 200px; height: 170px; right: 2%; opacity: 0.06; }

  /* Section paddings tighter */
  .sx-section,
  .sx-promo,
  .sx-rcp,
  .sx-nl { margin-left: 12px; margin-right: 12px; }

  /* Country split — stacks */
  .sx-countries { gap: 12px; }
  .sx-country__motif { width: 280px; height: 280px; right: -40px; opacity: 0.28; }
  .sx-country__pills { display: none; } /* Already there but ensure */

  /* Stats bigger numbers */
  .sx-stats__num { font-size: clamp(32px, 6vw, 44px); }

  /* Brand marquee gap */
  .sx-brands__track { gap: 10px; }
  .sx-brand { min-width: 130px; padding: 14px 16px; }

  /* PDP — already 1-col but tighten */
  .sxp__inner { gap: 20px; }
}

/* ===== MOBILE (≤ 749px) ===== */
@media (max-width: 749px) {

  /* ============================================================
     🔧 MOBILE AUDIT FIXES — issues found during testing
     ============================================================ */

  /* FIX 1: Live ticker hidden on mobile (overlaps content + redundant with cart toast) */
  .sx-ticker { display: none !important; }

  /* FIX 2: Rich section "Alle X" pill inline with title on mobile */
  .sx-rhead {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-rows: auto auto !important;
    grid-template-areas:
      "title more"
      "countdown countdown" !important;
    align-items: center !important;
    column-gap: 10px !important;
    row-gap: 0 !important;
    margin-bottom: 16px !important;
  }
  .sx-rhead__title {
    grid-area: title !important;
    display: flex !important;
    align-items: center !important;
    flex-direction: row !important;
    gap: 10px !important;
  }
  .sx-rhead .sx-section__more {
    grid-area: more !important;
    align-self: center !important;
    padding: 6px 12px !important;
    font-size: 10.5px !important;
    margin-left: 0 !important;
  }
  .sx-rhead .sx-section__more::after { font-size: 12px; }
  .sx-countdown {
    grid-area: countdown !important;
    margin-top: 12px !important;
    width: 100%;
    justify-content: center !important;
  }

  /* FIX 3: Brand marquee card padding + size on mobile */
  .sx-brand {
    padding: 12px 14px !important;
    min-width: 100px !important;
    border-radius: 10px !important;
  }
  .sx-brands { margin-top: 4px !important; }
  .sx-brand__flag { font-size: 14px !important; margin-bottom: 1px !important; }
  .sx-brand__name { font-size: 11px !important; }
  .sx-brand__country { font-size: 8.5px !important; opacity: 0.5 !important; }
  /* Bring back small mask edge fade for mobile */
  .sx-brands {
    mask-image: linear-gradient(90deg, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%) !important;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%) !important;
  }

  /* FIX 4: Hot Deals "BIS ZU 40% RABATT" stamp — smaller on mobile, position adjusted */
  .sx-stamp {
    font-size: 8.5px !important;
    padding: 3px 7px !important;
    margin-bottom: 4px !important;
  }

  /* COMPACT SECTION HEADER on mobile — hide decorations, shrink icon, kill subtitle */
  .sx-rhead .sx-snum { display: none !important; } /* "01 — DEAL" decoration noise on mobile */
  .sx-rhead .sx-section__sub { display: none !important; } /* subtitle redundant on small screens */
  .sx-rhead .sx-icon-box,
  .sx-rhead .sx-flame {
    width: 40px !important;
    height: 40px !important;
    border-radius: 11px !important;
    animation: none !important; /* save GPU */
  }
  .sx-rhead .sx-icon-box svg,
  .sx-rhead .sx-flame svg {
    width: 22px !important;
    height: 22px !important;
  }
  .sx-rhead__title {
    flex-wrap: wrap !important;
    gap: 10px !important;
    align-items: center !important;
  }
  .sx-rhead__title > div {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }
  .sx-rhead .sx-section__title {
    font-size: 20px !important;
    line-height: 1.15 !important;
    margin: 0 !important;
  }
  .sx-rhead .sx-stamp {
    margin: 0 !important;
  }
  /* Stone lantern silhouette: too dominant in rhead area, hide on mobile */
  .sx-lantern-stone { display: none !important; }

  /* FIX 5: Back-to-top — smaller, more subtle on mobile */
  .sx-backtop {
    width: 40px !important;
    height: 40px !important;
    bottom: 76px !important;
    right: 10px !important;
  }
  .sx-backtop__icon { width: 14px !important; height: 14px !important; }

  /* FIX 6: Newsletter description must not get cut off */
  .sx-nl__sub {
    max-width: none !important;
    padding-right: 0;
  }
  .sx-nl__inner {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  /* FIX 7: Stats numbers should be readable */
  .sx-stats__num { font-size: 30px !important; }
  .sx-stats__lbl { font-size: 10px !important; letter-spacing: 0.08em !important; }

  /* FIX 8: Review cards — better spacing */
  .sx-review { padding: 16px !important; }
  .sx-review h4 { font-size: 14px !important; }
  .sx-review p { font-size: 13px !important; }

  /* FIX 9: Promo dish cards stay neat */
  .sx-promo__right {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    padding: 4px 0 !important;
  }

  /* FIX 10: Section more pill base size already set, ensure right margin */
  .sx-section__more { margin-left: auto; }

  /* ⭐ MOBILE HERO — editorial typography (cleaner) ⭐ */
  /* Hide ALL desktop hero elements on mobile */
  .sx-strip__badge,
  .sx-strip__cards,
  .sx-strip > .sx-strip__inner > .sx-strip__cta {
    display: none !important;
  }
  .sx-strip__inner::before { display: none !important; }
  .sx-strip__inner {
    padding: 28px 20px 28px !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  /* Show mobile-only block */
  .sx-mhero {
    display: flex !important;
    flex-direction: column !important;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .sx-strip { overflow: hidden; }
  .sx-strip__inner > * { min-width: 0; max-width: 100%; }
  .sx-mhero__title { word-break: normal; overflow-wrap: anywhere; }

  /* ⭐ CARTOON TILES — horizontal scroll circles (Instagram-stories style) ⭐ */
  .sx-tiles { padding: 16px 0 !important; }
  .sx-tiles > .sx-section__title,
  .sx-tiles__head { padding-left: 16px; padding-right: 16px; }
  .sx-cartoon-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 14px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 16px !important;
    margin: 0 -16px;
    scrollbar-width: none;
  }
  .sx-cartoon-grid::-webkit-scrollbar { display: none; }
  .sx-cartoon {
    flex: 0 0 auto;
    width: 76px;
    height: auto !important;
    min-height: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    scroll-snap-align: start;
    color: var(--sx-ink) !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }
  .sx-cartoon::before,
  .sx-cartoon::after { display: none !important; }
  .sx-cartoon__emoji {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    font-size: 28px !important;
    margin: 0 auto 6px !important;
    border-radius: 50%;
    transition: transform 0.2s cubic-bezier(.34, 1.56, .64, 1);
    /* category-specific bg via data-c on parent */
    background: var(--sx-soft);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  .sx-cartoon[data-c="terracotta"] .sx-cartoon__emoji { background: linear-gradient(140deg, #d99d75, #b86a3d); }
  .sx-cartoon[data-c="sand"] .sx-cartoon__emoji { background: linear-gradient(140deg, #f0e3c2, #d4ba83); }
  .sx-cartoon[data-c="crimson"] .sx-cartoon__emoji { background: linear-gradient(140deg, #b03b48, #8c1d2b); }
  .sx-cartoon[data-c="plum"] .sx-cartoon__emoji { background: linear-gradient(140deg, #b88197, #8d5570); }
  .sx-cartoon[data-c="indigo"] .sx-cartoon__emoji { background: linear-gradient(140deg, #6e7eb0, #444f7d); }
  .sx-cartoon[data-c="slate"] .sx-cartoon__emoji { background: linear-gradient(140deg, #aab8c2, #7c8e9b); }
  .sx-cartoon[data-c="matcha"] .sx-cartoon__emoji { background: linear-gradient(140deg, #91a779, #5e7a4c); }
  .sx-cartoon[data-c="black"] .sx-cartoon__emoji { background: linear-gradient(140deg, #2a2a2a, #0a0a0a); color: #fff; }
  .sx-cartoon:hover .sx-cartoon__emoji,
  .sx-cartoon:active .sx-cartoon__emoji { transform: scale(1.08); }
  .sx-cartoon__label {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-align: center;
    line-height: 1.2;
    display: block;
    color: var(--sx-ink) !important;
  }
  .sx-cartoon__sub { display: none !important; }

  /* ⭐ PRODUCT CARDS — back to 2-col with image-prominent layout ⭐ */
  .sx-grid--5, .sx-grid--4, .sx-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }
  .sx-card-wrap .sx-card { border-radius: 14px !important; }

  /* IMAGE: bigger, more prominent */
  .sx-card__media {
    padding: 10px !important;
    background: #fff;
  }
  .sx-card__media::before { display: none !important; }
  .sx-card__media .sx-card__img {
    inset: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    object-fit: contain;
  }

  /* BODY: less text, only essentials */
  .sx-card__body { padding: 10px 12px 12px !important; gap: 4px !important; }
  .sx-card__brand {
    font-size: 9.5px !important;
    letter-spacing: 0.06em !important;
    margin-bottom: 1px !important;
  }
  .sx-card__title {
    font-size: 13px !important;
    font-weight: 700 !important;
    -webkit-line-clamp: 1 !important; /* 1 line only on mobile */
    min-height: 0 !important;
    line-height: 1.3 !important;
  }

  /* PRICE: prominent */
  .sx-card__price-row {
    gap: 6px !important;
    align-items: baseline;
    margin-top: 4px !important;
  }
  .sx-card__price-now {
    font-size: 16px !important;
    font-weight: 900 !important;
  }
  .sx-card__price-now--sale { font-size: 17px !important; }
  .sx-card__price-old { font-size: 11px !important; }

  /* HIDE non-essential text */
  .sx-card__unit { display: none !important; } /* hide €/kg */
  .sx-card__stock { display: none !important; } /* hide stock pill on mobile */
  .sx-card__attrs { display: none !important; } /* hide spice/diet badges */
  .sx-card__rating { display: none !important; } /* hide stars on mobile */
  .sx-card__sep { display: none !important; } /* hide bamboo separator */

  /* CTA: simpler */
  .sx-card__cta { padding-top: 8px !important; }
  .sx-card__btn {
    font-size: 11.5px !important;
    padding: 9px 10px !important;
    border-width: 1.5px !important;
    gap: 5px !important;
    border-radius: 10px !important;
  }
  .sx-card__btn-icon { width: 13px !important; height: 13px !important; }
  .sx-card__btn-text { display: inline !important; }

  /* Badges + hanko smaller */
  .sx-card__fav { width: 30px !important; height: 30px !important; font-size: 14px !important; top: 8px !important; right: 8px !important; }
  .sx-card__hanko { width: 36px !important; height: 36px !important; top: 8px !important; right: 8px !important; }
  .sx-card__hanko-kanji { font-size: 14px !important; }
  .sx-card__hanko-label { font-size: 5px !important; }
  .sx-card__badge--sale { width: 44px !important; height: 22px !important; top: 6px !important; left: 6px !important; }
  .sx-card__badge--sale > span:not(.sx-card__badge-brush) { font-size: 10px !important; }
  .sx-card__qv { display: none !important; }

  /* ⭐ STREET FOOD PROMO — mobile polish ⭐ */
  .sx-promo { margin: 18px 10px !important; border-radius: 14px !important; }
  .sx-promo__inner {
    padding: 22px 16px 18px !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .sx-promo__lantern { display: none !important; }
  .sx-promo__steam { display: none; }
  .sx-promo__chip { font-size: 10px !important; padding: 5px 11px !important; letter-spacing: 0.12em !important; }
  .sx-promo__title { font-size: 26px !important; line-height: 1.05; }
  .sx-promo__sub { font-size: 13px !important; }
  .sx-promo__cta { padding: 11px 18px !important; font-size: 12.5px !important; }
  .sx-promo__hint { font-size: 11px !important; }
  .sx-promo__right { height: auto !important; min-height: 0 !important; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 4px 0; }
  .sx-pdish {
    position: static !important;
    animation: none !important;
    transform: none !important;
    padding: 8px 10px !important;
    gap: 8px !important;
  }
  .sx-pdish:hover { transform: none !important; }
  .sx-pdish__emoji { font-size: 18px !important; }
  .sx-pdish b { font-size: 11.5px !important; }
  .sx-pdish i { font-size: 9.5px !important; }

  /* ⭐ KOREA / JAPAN TILES — mobile polish ⭐ */
  .sx-countries { gap: 10px !important; }
  .sx-country { min-height: 260px !important; border-radius: 16px !important; }
  .sx-country__content { padding: 22px 18px 18px !important; min-height: 260px !important; gap: 10px !important; }
  .sx-country__top { gap: 8px; }
  .sx-country__flag { font-size: 22px !important; }
  .sx-country__eyebrow { font-size: 9.5px !important; padding: 5px 10px !important; letter-spacing: 0.12em !important; }
  .sx-country__title { font-size: 24px !important; line-height: 1.0; }
  .sx-country__sub { font-size: 12.5px !important; }
  .sx-country__chips { gap: 4px !important; margin: 2px 0 4px !important; }
  .sx-country__chips span { font-size: 10px !important; padding: 4px 8px !important; }
  .sx-country__cta { padding: 9px 16px !important; font-size: 12px !important; gap: 6px !important; }
  .sx-country__cta svg { width: 14px; height: 14px; }
  .sx-country__motif { width: 180px !important; height: 180px !important; right: -40px !important; opacity: 0.20 !important; }

  /* ⭐ RECIPES — mobile polish ⭐ */
  .sx-rcp { margin: 18px 10px !important; border-radius: 16px !important; }
  .sx-rcp__inner { padding: 24px 16px !important; }
  .sx-rcp__head { gap: 10px !important; margin-bottom: 22px !important; }
  .sx-rcp__chip { font-size: 9.5px !important; padding: 5px 11px !important; }
  .sx-rcp__title { font-size: 22px !important; line-height: 1.05; }
  .sx-rcp__sub { font-size: 12.5px !important; }
  .sx-rcp__grid-recipes { grid-template-columns: 1fr !important; gap: 10px !important; }
  .sx-rcp-card { border-radius: 14px !important; }
  .sx-rcp-card__body { padding: 14px 16px 16px !important; gap: 6px !important; }
  .sx-rcp-card__meta { font-size: 9px !important; }
  .sx-rcp-card__title { font-size: 15px !important; }
  .sx-rcp-card__sub { font-size: 12.5px !important; }
  .sx-rcp-card__cta { font-size: 11.5px !important; }
  .sx-rcp-card__tag { font-size: 9.5px !important; padding: 4px 8px !important; }
  .sx-rcp-card__time { font-size: 9.5px !important; padding: 4px 8px !important; }
  .sx-rcp__more { padding: 11px 20px !important; font-size: 12px !important; gap: 6px !important; }
  .sx-rcp__more svg { width: 14px; height: 14px; }

  /* Header utility strip — drop more items + tighter */
  .sx-h-util { padding: 6px 0; font-size: 10.5px; }
  .sx-h-util__inner { gap: 5px; padding: 0 8px; }
  .sx-h-util__inner > span:nth-child(n+3) { display: none; }
  .sx-h-util__inner > .sx-h-util__dot:nth-child(n+2) { display: none; }

  /* Free shipping bar mobile */
  .sx-ship__inner { padding: 6px 12px; gap: 6px; font-size: 11.5px; }
  .sx-ship__target { display: none; }
  .sx-ship__cur { font-size: 11.5px; }
  .sx-ship__icon { font-size: 14px; }

  /* Logo */
  .sx-h-logo__img { height: 38px; }
  .sx-h-logo__text { font-size: 22px; }
  .sx-h-logo__icon { font-size: 28px; }
  .sx-h-logo__tag-kanji { display: none; }
  .sx-h-logo__tag { font-size: 8px; letter-spacing: 0.12em; }
  .sx-h-logo__tag-dot { width: 4px; height: 4px; }

  /* Search button text shrink */
  .sx-h-search__submit { padding: 8px 12px; font-size: 11px; letter-spacing: 0.04em; }
  .sx-h-search input { padding: 10px 8px; font-size: 14px; }
  .sx-h-search__icon svg { width: 16px; height: 16px; }

  /* Header right icons mobile */
  .sx-h-side { gap: 2px; }
  .sx-h-side__item { padding: 6px 8px; }
  .sx-h-side__count { font-size: 9px; min-width: 16px; height: 16px; }

  /* Hero strip mobile */
  .sx-strip__inner { padding: 16px 14px; gap: 12px; }
  .sx-strip__torii { display: none; }
  .sx-strip__sun { width: 100px; height: 100px; }
  .sx-strip__cards { grid-template-columns: 1fr; gap: 8px; }
  .sx-strip__card { padding: 10px 12px; }
  .sx-strip__card-icon { width: 34px; height: 34px; }
  .sx-strip__card-icon svg { width: 16px; height: 16px; }
  .sx-strip__card-lead { font-size: 12px; }
  .sx-strip__card-sub { font-size: 10.5px; }
  .sx-strip__badge { width: 96px; height: 96px; align-self: center; }
  .sx-strip__badge-big { font-size: 32px; }
  .sx-strip__badge-pctsym { font-size: 16px; }
  .sx-strip__badge-tag { font-size: 7px; }
  .sx-strip__cta { padding: 11px 16px; font-size: 12.5px; align-self: stretch; justify-content: center; }
  .sx-sakura { display: none; } /* keep mobile clean */

  /* Rich section headers mobile */
  .sx-rhead { gap: 10px; margin-bottom: 20px; }
  .sx-rhead__title { gap: 10px; }
  .sx-icon-box, .sx-flame { width: 46px; height: 46px; border-radius: 12px; }
  .sx-icon-box svg, .sx-flame svg { width: 26px; height: 26px; }
  .sx-snum { font-size: 9px; letter-spacing: 0.18em; }
  .sx-stamp { font-size: 9.5px; padding: 3px 8px; }
  .sx-section__title { font-size: 22px !important; }
  .sx-section__sub { font-size: 13px !important; }

  /* Countdown mobile */
  .sx-countdown { padding: 6px 10px; gap: 6px; }
  .sx-countdown__lbl { font-size: 10.5px; }
  .sx-countdown__cell { padding: 4px 6px 3px; min-width: 34px; }
  .sx-countdown__cell strong { font-size: 13px; }
  .sx-countdown__cell small { font-size: 8px; }

  /* Product card grid 2-col */
  .sx-grid--5, .sx-grid--4, .sx-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .sx-card__media { padding: 12px; }
  .sx-card__media .sx-card__img { inset: 12px; width: calc(100% - 24px); height: calc(100% - 24px); }
  .sx-card__body { padding: 10px 11px 10px; gap: 4px; }
  .sx-card__brand { font-size: 9.5px; }
  .sx-card__title { font-size: 13px !important; -webkit-line-clamp: 2; min-height: 2.4em; }
  .sx-card__price-now { font-size: 14.5px; }
  .sx-card__price-now--sale { font-size: 16px; }
  .sx-card__price-old { font-size: 11.5px; }
  .sx-card__unit { font-size: 10.5px; }
  .sx-card__stock { font-size: 10px; padding: 2px 6px; }
  .sx-card__btn { font-size: 11px; padding: 8px 10px; }
  .sx-card__btn-icon { width: 13px; height: 13px; }
  .sx-card__fav { width: 32px; height: 32px; font-size: 15px; top: 8px; right: 8px; }
  .sx-card__hanko { width: 42px; height: 42px; top: 8px; right: 8px; }
  .sx-card__hanko-kanji { font-size: 16px; }
  .sx-card__hanko-label { font-size: 5.5px; }
  .sx-card__badge--sale { width: 50px; height: 26px; top: 6px; left: 6px; }
  .sx-card__badge--sale > span:not(.sx-card__badge-brush) { font-size: 11px; }
  .sx-card__sep { padding: 0 11px; margin-top: 8px; }
  .sx-card__cta { padding-top: 8px; }
  .sx-card__attrs { gap: 3px; margin-top: 6px; }
  .sx-attr { font-size: 9px; padding: 2px 5px; }
  .sx-chili { font-size: 10px; }
  .sx-card__rating { font-size: 11px; gap: 4px; }
  .sx-star { font-size: 11px; }
  .sx-card__rating-num, .sx-card__rating-cnt { font-size: 10.5px; }
  .sx-card__qv { display: none; }

  /* Country tiles mobile */
  .sx-country { min-height: 280px; }
  .sx-country__content { padding: 24px 20px 20px; min-height: 280px; max-width: 100%; }
  .sx-country__motif { width: 220px; height: 220px; right: -50px; opacity: 0.18; }
  .sx-country__title { font-size: 26px !important; }

  /* Recipes mobile */
  .sx-rcp { margin: 24px 12px; border-radius: 16px; }
  .sx-rcp__inner { padding: 28px 18px; }
  .sx-rcp__title { font-size: 26px !important; }
  .sx-rcp__sub { font-size: 13px; }
  .sx-rcp__grid-recipes { grid-template-columns: 1fr; gap: 12px; }
  .sx-rcp__more { padding: 12px 22px; font-size: 13px; }

  /* Promo banner mobile */
  .sx-promo { margin: 24px 12px; border-radius: 16px; }
  .sx-promo__inner { padding: 28px 18px 22px; gap: 18px; }
  .sx-promo__title { font-size: 28px !important; }
  .sx-promo__sub { font-size: 13.5px; }
  .sx-promo__right { height: 220px; }
  .sx-pdish { padding: 7px 12px 7px 9px; gap: 7px; }
  .sx-pdish__emoji { font-size: 18px; }
  .sx-pdish b { font-size: 11px; }
  .sx-pdish i { font-size: 9.5px; }

  /* Stats banner mobile */
  .sx-stats-section { margin: 16px 12px; border-radius: 14px; }
  .sx-stats-section .sx-wrap { padding: 28px 16px; }
  .sx-stats__num { font-size: 28px !important; }
  .sx-stats__lbl { font-size: 10.5px; }

  /* Brand marquee mobile */
  .sx-brand { min-width: 110px; padding: 12px 14px; }
  .sx-brand__name { font-size: 11px; }
  .sx-brand__country { font-size: 8.5px; }
  .sx-brand__flag { font-size: 15px; }

  /* Newsletter mobile */
  .sx-nl { margin: 20px 12px; border-radius: 16px; }
  .sx-nl__inner { padding: 28px 18px; gap: 16px; }
  .sx-nl__title { font-size: 26px !important; }
  .sx-nl__sub { font-size: 13.5px; }
  .sx-nl__perks span { font-size: 11px; padding: 5px 10px; }
  .sx-nl__field { padding: 5px 5px 5px 14px; border-radius: 14px; }
  .sx-nl__field input { font-size: 14px; padding: 11px 0; }
  .sx-nl__submit { padding: 10px 14px; font-size: 12.5px; }
  .sx-nl__legal { font-size: 10.5px; }

  /* Trust row mobile already 2x2 */
  .sx-trust-row { padding: 24px 0; }
  .sx-trust__cell { padding: 16px 10px; gap: 6px; }
  .sx-trust__icon { width: 42px; height: 42px; border-radius: 10px; }
  .sx-trust__icon svg { width: 20px; height: 20px; }
  .sx-trust__cell strong { font-size: 12.5px; }
  .sx-trust__cell span { font-size: 11px; }

  /* Footer mobile */
  .sx-foot__inner { padding: 36px 18px 24px; gap: 22px; }
  .sx-foot__h { font-size: 11px; }
  .sx-foot__col ul a { font-size: 13.5px; padding: 2px 0; }
  .sx-foot__logo { font-size: 24px; }
  .sx-foot__logo-icon { font-size: 30px; }
  .sx-foot__desc { font-size: 13px; }
  .sx-foot__social a { width: 34px; height: 34px; }
  .sx-foot__social a svg { width: 15px; height: 15px; }
  .sx-foot__bottom-inner { padding: 14px 18px; gap: 12px; }
  .sx-foot__copy { font-size: 11.5px; }
  .sx-foot__payment span { font-size: 9.5px; padding: 4px 7px; }

  /* PDP mobile fine-tuning */
  .sxp { padding: 18px 0 32px; }
  .sxp__inner { padding: 0 14px; gap: 18px; }
  .sxp__media { padding: 16px; border-radius: 16px; }
  .sxp__main-img { border-radius: 12px; }
  .sxp__thumb { width: 56px; height: 56px; }
  .sxp__title { font-size: 22px !important; }
  .sxp__price-now { font-size: 26px; }
  .sxp__price-old { font-size: 15px; }
  .sxp__form { padding: 14px; border-radius: 12px; }
  .sxp__add { padding: 0 16px; font-size: 13px; min-height: 46px; }
  .sxp__qty-btn { width: 34px; font-size: 17px; }
  .sxp__qty-input { width: 38px; font-size: 14px; }
  .sxp__perks { gap: 8px; }
  .sxp__perk { padding: 10px; gap: 8px; }
  .sxp__perk-icon { font-size: 18px; }
  .sxp__perk strong { font-size: 11.5px; }
  .sxp__perk span { font-size: 10.5px; }

  /* Collection page mobile */
  .sxc-head { padding: 22px 0 26px; }
  .sxc-head__inner { padding: 0 18px; }
  .sxc-head__kanji { font-size: clamp(140px, 32vw, 220px); opacity: 0.05; right: -8%; }
  .sxc-head__eyebrow { font-size: 12px; letter-spacing: 0.12em; }
  .sxc-head__title { font-size: 28px !important; gap: 10px; }
  .sxc-head__count { font-size: 12px; padding: 3px 9px; }
  .sxc-head__desc { font-size: 14px; margin-top: 12px; }
  .sxc-head__brush { width: 180px; height: 12px; }
  .sxc-bar__inner { padding: 10px 18px; }
  .sxc-active__inner { padding: 10px 18px; }
  .sxc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .sxc-bar__count { font-size: 12px; }
  .sxc-bar__count strong { font-size: 13.5px; }

  /* Quick view mobile bottom-sheet */
  .sx-qv__panel { max-height: 92vh; border-radius: 18px 18px 0 0; }
  .sx-qv__title { font-size: 19px; }
  .sx-qv__price strong { font-size: 22px; }
  .sx-qv__price s { font-size: 14px; }

  /* Wishlist drawer mobile full-width */
  .sx-wl__panel { max-width: 92%; }
  .sx-wl-item { grid-template-columns: 70px 1fr auto; padding: 10px; gap: 10px; }
  .sx-wl-item__media { width: 70px; height: 70px; }
  .sx-wl-item__title { font-size: 13px; }
  .sx-wl-item__add button { padding: 5px 9px; font-size: 10.5px; }

  /* Live ticker mobile — re-anchor above mobile bar */
  .sx-ticker { bottom: 80px; }

  /* Back to top mobile */
  .sx-backtop { bottom: 80px; right: 12px; width: 42px; height: 42px; }
  .sx-backtop__icon { width: 16px; height: 16px; }

  /* Cart toast mobile (already adjusted but ensure no overlap with mobile bar) */
  .sx-cart-toast { bottom: 80px !important; left: 12px !important; right: 12px !important; padding: 12px 14px; font-size: 12.5px; }

  /* Section more pill smaller */
  .sx-section__more { font-size: 11.5px; padding: 8px 14px; }
  .sx-section__more::after { font-size: 13px; }

  /* Cartoon tiles tighter on mobile */
  .sx-cartoon-grid { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; gap: 8px; }
  .sx-cartoon { padding: 14px 6px; min-height: 110px; }
  .sx-cartoon__emoji { font-size: 28px; }
  .sx-cartoon__label { font-size: 12px; }
  .sx-cartoon__sub { display: none; }
}

/* ===== TINY MOBILE (≤ 480px) ===== */
@media (max-width: 480px) {
  /* Even tighter spacing */
  .sx-h-util__inner > span:nth-child(n+2) { display: none; }
  .sx-h-util__inner > .sx-h-util__dot { display: none; }

  /* Free shipping bar smaller text */
  .sx-ship__msg strong { font-size: 11px; }

  /* Hero strip badge centered */
  .sx-strip__badge { width: 88px; height: 88px; }
  .sx-strip__badge-big { font-size: 28px; }

  /* Hero strip CTA */
  .sx-strip__cta-text { font-size: 12px; }

  /* Cartoon tiles 2-col on very small */
  .sx-cartoon-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 8px; }
  .sx-cartoon { min-height: 130px; padding: 18px 10px; }
  .sx-cartoon__emoji { font-size: 34px; }
  .sx-cartoon__label { font-size: 13px; }
  .sx-cartoon__sub { display: block; font-size: 10px; }

  /* Stats 1-col on tiny */
  .sx-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .sx-stats__item::after { display: none; }
  .sx-stats__num { font-size: 26px !important; }

  /* Promo dish cards smaller */
  .sx-promo__right { height: 180px; }
  .sx-pdish__emoji { font-size: 16px; }
  .sx-pdish b { font-size: 10px; }
  .sx-pdish i { font-size: 9px; }

  /* Newsletter perks wrap */
  .sx-nl__perks { gap: 6px; }
  .sx-nl__perks span { font-size: 10.5px; padding: 4px 9px; }

  /* Newsletter compact button at very tight widths */
  .sx-nl__submit { padding: 9px 12px !important; font-size: 12px !important; }
  .sx-nl__submit svg { display: none; }
  .sx-nl__field { padding: 4px 4px 4px 12px !important; }
  .sx-nl__field-icon { margin-right: 6px !important; }
  .sx-nl__field-icon svg { width: 16px !important; height: 16px !important; }
  .sx-nl__field input { font-size: 13px !important; padding: 10px 0 !important; }

  /* Country chips smaller */
  .sx-country__chips span { font-size: 10px; padding: 4px 8px; }

  /* PDP qty + add stack */
  .sxp__qty-row { grid-template-columns: 1fr; gap: 8px; }
  .sxp__qty { justify-self: stretch; }
  .sxp__fav.sx-card__fav { grid-column: 1; width: 100%; height: 42px; min-height: 42px; }

  /* Collection hero kanji smaller */
  .sxc-head__kanji { font-size: clamp(100px, 28vw, 160px); right: -10%; }
  .sxc-head__hanko { width: 56px; height: 56px; }
  .sxc-head__hanko-kanji { font-size: 18px; }

  /* Footer 1-col already on 600px, ensure compact */
  .sx-foot__col { gap: 10px; }
  .sx-foot__payment { gap: 5px; }
}

/* Prevent horizontal scroll globally on mobile */
@media (max-width: 989px) {
  html, body { overflow-x: hidden; }
}

/* ============================================================
   SEBUYA — Custom Header (sebuya-header.liquid)
   Modern, e-commerce, 3-tier: utility / main / category
   ============================================================ */

.sx-h {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e5e5e7;
  font-family: inherit;
}

/* Utility bar (top tiny strip) */
.sx-h-util {
  background: #0a0a0a;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 7px 0;
  text-align: center;
  letter-spacing: 0.02em;
  overflow: hidden;
}
.sx-h-util__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 16px;
  font-weight: 500;
}
.sx-h-util__dot { opacity: 0.4; }

/* Main row */
.sx-h-main {
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}
.sx-h-main__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

/* Hamburger (mobile only) */
.sx-h-burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.sx-h-burger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #0a0a0a;
  border-radius: 2px;
}

/* Logo + tagline */
.sx-h-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.sx-h-logo__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
}
.sx-h-logo__img { display: block; height: 56px; width: auto; max-width: 200px; }
.sx-h-logo__text {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sx-h-logo__icon {
  font-size: 38px;
  color: #e60023;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(230, 0, 35, 0.25));
}
@media (max-width: 900px) {
  .sx-h-logo__img { height: 42px; }
  .sx-h-logo__text { font-size: 24px; }
  .sx-h-logo__icon { font-size: 30px; }
}
.sx-h-logo__tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0a0a0a;
  position: relative;
}
.sx-h-logo__tag-dot {
  width: 5px;
  height: 5px;
  background: #e60023;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(230, 0, 35, 0.18);
  animation: tagPulse 2.4s ease-in-out infinite;
}
@keyframes tagPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}
.sx-h-logo__tag-line {
  background: linear-gradient(90deg, #0a0a0a 0%, #b8001c 60%, #0a0a0a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: tagShimmer 5s linear infinite;
}
@keyframes tagShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.sx-h-logo__tag-kanji {
  color: #b8001c;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 9px;
  padding-left: 6px;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
@media (max-width: 600px) {
  .sx-h-logo__tag-kanji { display: none; }
  .sx-h-logo__tag { font-size: 8.5px; letter-spacing: 0.14em; }
}

/* Big search — Neo-Edo: cream washi bg + vermillion→gold gradient border + warm inner shadow */
.sx-h-search {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 620px;
  border-radius: 999px;
  transition: all 0.25s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
  padding-left: 18px;
  /* Dual-layer: cream fill + gradient border (vermillion → kinpaku gold) */
  background:
    linear-gradient(#fefcf8, #fefcf8) padding-box,
    linear-gradient(135deg, #c8203a 0%, #c8a253 50%, #c8203a 100%) border-box;
  border: 1.5px solid transparent;
  box-shadow:
    inset 0 1px 2px rgba(200, 32, 58, 0.06),
    0 3px 12px rgba(200, 32, 58, 0.10);
  position: relative;
}
.sx-h-search::before {
  /* subtle warm wash on inside */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(250, 246, 239, 0.5), transparent 60%);
  pointer-events: none;
}
.sx-h-search:hover {
  background:
    linear-gradient(#fffaf0, #fffaf0) padding-box,
    linear-gradient(135deg, #c8203a 0%, #ff8a00 50%, #c8a253 100%) border-box;
  box-shadow:
    inset 0 1px 2px rgba(200, 32, 58, 0.10),
    0 5px 18px rgba(200, 32, 58, 0.18);
}
.sx-h-search:focus-within {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #c8203a 0%, #ff8a00 30%, #ffd24a 70%, #c8203a 100%) border-box;
  box-shadow:
    inset 0 1px 2px rgba(200, 32, 58, 0.10),
    0 0 0 4px rgba(200, 162, 83, 0.18),
    0 8px 24px rgba(200, 32, 58, 0.22);
  transform: translateY(-1px);
}

/* Search submit button — vermillion + kinpaku gradient (matches border) */
.sx-h-search__submit {
  background: linear-gradient(135deg, #c8203a 0%, #8c0018 100%) !important;
  border: 0;
  color: #fff;
  padding: 11px 22px !important;
  margin: 3px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
  border-radius: 999px !important;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(.2,.8,.2,1);
  flex-shrink: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 2px 8px rgba(200, 32, 58, 0.30);
}
.sx-h-search__submit:hover {
  background: linear-gradient(135deg, #ff8a00 0%, #c8203a 100%) !important;
  transform: scale(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.30),
    0 6px 18px rgba(255, 138, 0, 0.40);
}

/* Search icon color tunes to vermillion */
.sx-h-search__icon { color: #c8203a; }
.sx-h-search:focus-within .sx-h-search__icon {
  color: #c8203a;
  filter: drop-shadow(0 0 4px rgba(200, 32, 58, 0.35));
}
.sx-h-search__icon {
  display: flex;
  color: #767676;
  flex-shrink: 0;
}
.sx-h-search:focus-within .sx-h-search__icon { color: #e60023; }
.sx-h-search input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 12px 14px;
  font-size: 14.5px;
  color: #0a0a0a;
  outline: none;
  min-width: 0;
  font-family: inherit;
}
.sx-h-search input::placeholder { color: #767676; font-style: normal; }
.sx-h-search__submit {
  background: #e60023;
  border: 0;
  color: #fff;
  padding: 10px 20px;
  margin: 3px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s;
  flex-shrink: 0;
}
.sx-h-search__submit:hover {
  background: #b8001c;
  transform: scale(1.03);
}
@media (max-width: 600px) {
  .sx-h-search__submit { padding: 8px 14px; font-size: 12px; }
}

/* Right side icons */
.sx-h-side {
  display: flex;
  align-items: center;
  gap: 4px;
}
.sx-h-side__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #0a0a0a;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
  transition: background 0.12s;
}
.sx-h-side__item:hover { background: #f5f5f7; color: #e60023; }
.sx-h-side__item svg { margin-bottom: 4px; }
.sx-h-side__count {
  position: absolute;
  top: 2px;
  right: 4px;
  background: #e60023;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* Category strip (bottom tier) */
.sx-h-cats {
  background: #fff;
  border-top: 1px solid #f0f0f0;
}
.sx-h-cats__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.sx-h-cats__inner::-webkit-scrollbar { display: none; }

.sx-h-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  text-decoration: none;
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.005em;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all 0.12s;
}
.sx-h-cat:hover {
  color: #e60023;
  border-bottom-color: #e60023;
}
.sx-h-cat--sale {
  color: #e60023;
}
.sx-h-cat--sale:hover {
  background: #e60023;
  color: #fff;
  border-bottom-color: #e60023;
}

/* Mobile drawer */
.sx-h-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 86%;
  max-width: 360px;
  background: #fff;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}
.sx-h-drawer::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.sx-h-drawer__inner {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sx-h-drawer__close {
  align-self: flex-end;
  background: transparent;
  border: 0;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  color: #0a0a0a;
}
.sx-h-drawer__link {
  display: block;
  padding: 14px 12px;
  text-decoration: none;
  color: #0a0a0a;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.12s;
}
.sx-h-drawer__link:hover { background: #f5f5f7; }
.sx-h-drawer__link--sale { color: #e60023; }
.sx-h-drawer hr { border: 0; border-top: 1px solid #e5e5e7; margin: 8px 0; }

/* Responsive header */
@media (max-width: 900px) {
  /* Stack header into 2 rows on mobile: row1 = burger+logo+icons | row2 = full-width search */
  .sx-h-main__inner {
    padding: 0 14px;
    gap: 10px;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "burger logo icons" "search search search";
    row-gap: 8px;
  }
  .sx-h-burger { display: flex; grid-area: burger; }
  .sx-h-logo { grid-area: logo; justify-self: center; }
  .sx-h-search { grid-area: search; max-width: 100%; }
  .sx-h-side { grid-area: icons; }
  .sx-h-logo__text { font-size: 20px; }
  .sx-h-logo img { height: 32px; }
  .sx-h-side__item span { display: none; }
  .sx-h-side__item { padding: 6px 6px; }
  .sx-h-side__item svg { margin-bottom: 0; }
  .sx-h-cats { display: none; }
  .sx-h-util__inner { gap: 6px; font-size: 11px; }
  .sx-h-search input { padding: 9px 14px; font-size: 14px; }
}

@media (max-width: 600px) {
  .sx-h-util__inner > span:nth-child(n+5) { display: none; }
  .sx-h-util__inner > .sx-h-util__dot:nth-child(n+4) { display: none; }
}

/* ============================================================
   SEBUYA — Hero Value Strip
   Glassmorphism cards + animated abstract red/black background
   ============================================================ */
.sx-strip {
  position: relative;
  background: #0a0a0a;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

/* Animated abstract background — drifting blobs + grid + noise */
.sx-strip__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.sx-strip__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  mix-blend-mode: screen;
  will-change: transform;
}
.sx-strip__blob--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at 30% 30%, #ff3a4d 0%, #b8001c 45%, transparent 70%);
  top: -250px;
  left: -150px;
  animation: blobDrift1 18s ease-in-out infinite;
  opacity: 0.7;
}
.sx-strip__blob--2 {
  width: 640px;
  height: 640px;
  background: radial-gradient(circle at 60% 60%, #ff8a00 0%, #d12500 45%, transparent 70%);
  top: -180px;
  right: -150px;
  animation: blobDrift2 22s ease-in-out infinite;
  opacity: 0.6;
}
.sx-strip__blob--3 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at 50% 50%, #e60023 0%, transparent 65%);
  bottom: -200px;
  left: 35%;
  animation: blobDrift3 26s ease-in-out infinite;
  opacity: 0.55;
}
@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, 40px) scale(1.08); }
  66% { transform: translate(-40px, 60px) scale(0.95); }
}
@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-60px, 80px) scale(1.1); }
  66% { transform: translate(50px, -30px) scale(0.92); }
}
@keyframes blobDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-100px, -60px) scale(1.15); }
}

.sx-strip__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.sx-strip__noise {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' seed='5'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* Japanese sun — slowly breathing + drifting red disc */
.sx-strip__sun {
  position: absolute;
  top: 20px;
  right: 8%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 95, 95, 0.9) 0%, rgba(230, 0, 35, 0.6) 50%, rgba(184, 0, 28, 0) 75%);
  filter: blur(2px);
  animation: sunBreath 6s ease-in-out infinite, sunDrift 28s ease-in-out infinite;
  mix-blend-mode: screen;
  opacity: 0.7;
}
@keyframes sunBreath {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 0.85; }
}
@keyframes sunDrift {
  0%, 100% { translate: 0 0; }
  50% { translate: -40px 20px; }
}

/* Seigaiha (wave) pattern — slowly drifting horizontally */
.sx-strip__seigaiha {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0 50%, transparent 19px, rgba(255, 255, 255, 0.04) 20px, rgba(255, 255, 255, 0.04) 21px, transparent 22px),
    radial-gradient(circle at 30px 50%, transparent 19px, rgba(255, 210, 74, 0.06) 20px, rgba(255, 210, 74, 0.06) 21px, transparent 22px),
    radial-gradient(circle at 60px 50%, transparent 19px, rgba(255, 255, 255, 0.04) 20px, rgba(255, 255, 255, 0.04) 21px, transparent 22px);
  background-size: 60px 60px;
  opacity: 0.45;
  animation: seigaihaDrift 30s linear infinite;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
@keyframes seigaihaDrift {
  0% { background-position: 0 0, 0 0, 0 0; }
  100% { background-position: 240px 0, 240px 0, 240px 0; }
}

/* Floating dots — rise upward like particles */
.sx-strip__dot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 74, 0.65) 0%, rgba(255, 138, 0, 0) 70%);
  animation: dotRise 14s linear infinite;
  pointer-events: none;
}
.sx-strip__dot--1 { width: 12px; height: 12px; left: 8%;  bottom: -20px; animation-delay: 0s; }
.sx-strip__dot--2 { width: 8px;  height: 8px;  left: 22%; bottom: -20px; animation-delay: 3s; animation-duration: 18s; }
.sx-strip__dot--3 { width: 14px; height: 14px; left: 45%; bottom: -20px; animation-delay: 6s; animation-duration: 16s; background: radial-gradient(circle, rgba(255, 95, 95, 0.55) 0%, rgba(230, 0, 35, 0) 70%); }
.sx-strip__dot--4 { width: 10px; height: 10px; left: 62%; bottom: -20px; animation-delay: 2s; animation-duration: 20s; }
.sx-strip__dot--5 { width: 7px;  height: 7px;  left: 78%; bottom: -20px; animation-delay: 8s; animation-duration: 15s; background: radial-gradient(circle, rgba(255, 95, 95, 0.5) 0%, transparent 70%); }
.sx-strip__dot--6 { width: 11px; height: 11px; left: 92%; bottom: -20px; animation-delay: 5s; animation-duration: 17s; }
@keyframes dotRise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translateY(-120px) translateX(20px); }
  90%  { opacity: 1; }
  100% { transform: translateY(-260px) translateX(-15px); opacity: 0; }
}

/* Calligraphy brush strokes — drawn slowly across */
.sx-strip__brush {
  position: absolute;
  top: 30%;
  left: -5%;
  width: 110%;
  height: 80px;
  pointer-events: none;
  opacity: 0.85;
  animation: brushPulse 8s ease-in-out infinite;
}
.sx-strip__brush path {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: brushDraw 14s ease-in-out infinite;
}
.sx-strip__brush path:nth-child(2) {
  animation-delay: 1.5s;
}
@keyframes brushDraw {
  0% { stroke-dashoffset: 800; }
  35% { stroke-dashoffset: 0; }
  60% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -800; }
}
@keyframes brushPulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 0.5; }
}

/* Reduce motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .sx-strip__blob, .sx-strip__sun, .sx-strip__seigaiha, .sx-strip__dot, .sx-strip__brush path {
    animation: none !important;
  }
}

/* Inner grid layout */
.sx-strip__inner {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: stretch;
}

/* ===== 40% Glass Badge (smaller, no rotating ring) ===== */
.sx-strip__badge {
  position: relative;
  width: 124px;
  height: 124px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0%, rgba(230, 0, 35, 0.20) 100%);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 50%;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -2px 6px rgba(230, 0, 35, 0.18),
    0 8px 28px rgba(230, 0, 35, 0.28);
  padding: 10px;
  align-self: center;
}
.sx-strip__badge-tag {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffd24a;
  margin-bottom: 1px;
  text-shadow: 0 0 10px rgba(255, 210, 74, 0.55);
}
.sx-strip__badge-big {
  font-size: 42px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  display: flex;
  align-items: baseline;
  background: linear-gradient(135deg, #fff 0%, #ffd24a 60%, #ff8a00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sx-strip__badge-pctsym {
  font-size: 22px;
  margin-left: 1px;
}
.sx-strip__badge-small {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 1px;
}

/* ===== Glass value cards ===== */
.sx-strip__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.sx-strip__cards {
  align-self: center;
}
.sx-strip__card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 6px 18px rgba(0, 0, 0, 0.20);
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
}
.sx-strip__card::before {
  /* subtle gradient sheen */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.sx-strip__card:hover {
  transform: translateY(-3px);
  border-color: rgba(230, 0, 35, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 32px rgba(230, 0, 35, 0.25);
}
.sx-strip__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(230, 0, 35, 0.22), rgba(255, 138, 0, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: #ffd24a;
}
.sx-strip__card-icon svg { width: 18px; height: 18px; }
.sx-strip__card-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.sx-strip__card-lead {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.005em;
  line-height: 1.2;
  color: #fff;
}
.sx-strip__card-sub {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
  line-height: 1.3;
}

/* ===== Glass CTA (smaller) ===== */
.sx-strip__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 138, 0, 0.20));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 6px 18px rgba(255, 138, 0, 0.18);
  align-self: center;
}
.sx-strip__cta:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.35), rgba(230, 0, 35, 0.4));
  border-color: rgba(255, 210, 74, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 14px 36px rgba(255, 138, 0, 0.45);
}
.sx-strip__cta-icon {
  display: flex;
  width: 18px;
  height: 18px;
}
.sx-strip__cta-icon svg { width: 100%; height: 100%; filter: drop-shadow(0 0 6px rgba(255, 138, 0, 0.5)); }
.sx-strip__cta-arrow {
  display: flex;
  width: 14px;
  height: 14px;
  transition: transform 0.25s;
}
.sx-strip__cta-arrow svg { width: 100%; height: 100%; }
.sx-strip__cta:hover .sx-strip__cta-arrow {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1100px) {
  .sx-strip__inner { grid-template-columns: auto 1fr; }
  .sx-strip__cta { grid-column: 1 / -1; justify-self: stretch; justify-content: center; }
}
@media (max-width: 749px) {
  .sx-strip__inner { grid-template-columns: 1fr; gap: 14px; padding: 18px 14px; }
  .sx-strip__badge { justify-self: center; width: 110px; height: 110px; }
  .sx-strip__badge-big { font-size: 36px; }
  .sx-strip__badge-pctsym { font-size: 18px; }
  .sx-strip__cards { grid-template-columns: 1fr; gap: 8px; }
}

/* ============================================================
   CARTOON CATEGORY TILES — colorful, modern, fun
   ============================================================ */
.sx-cartoon-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
}
.sx-cartoon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding: 22px 12px 18px;
  border-radius: 18px;
  min-height: 150px;
  overflow: hidden;
  transition: all 0.2s cubic-bezier(.2,.8,.2,1);
  isolation: isolate;
}
.sx-cartoon::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: transform 0.3s;
}
.sx-cartoon::after {
  /* Cartoon doodle decoration top-right */
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  z-index: -1;
}
.sx-cartoon:hover { transform: translateY(-6px) rotate(-1deg); }
.sx-cartoon:hover::before { transform: scale(1.05); }

.sx-cartoon__emoji {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 8px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
  transition: transform 0.25s;
}
.sx-cartoon:hover .sx-cartoon__emoji {
  transform: scale(1.15) rotate(-8deg);
}
.sx-cartoon__label {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 3px;
}
.sx-cartoon__sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.85;
  line-height: 1.3;
}

/* Cartoon tile color variants — muted, sophisticated Asian palette */
.sx-cartoon[data-c="terracotta"]::before { background: linear-gradient(140deg, #d99d75 0%, #b86a3d 100%); }
.sx-cartoon[data-c="terracotta"] { color: #fff; box-shadow: 0 4px 14px rgba(184, 106, 61, 0.18); }

.sx-cartoon[data-c="sand"]::before { background: linear-gradient(140deg, #f0e3c2 0%, #d4ba83 100%); }
.sx-cartoon[data-c="sand"] { color: #3d2e0e; box-shadow: 0 4px 14px rgba(212, 186, 131, 0.22); }

.sx-cartoon[data-c="crimson"]::before { background: linear-gradient(140deg, #b03b48 0%, #8c1d2b 100%); }
.sx-cartoon[data-c="crimson"] { color: #fff; box-shadow: 0 4px 14px rgba(140, 29, 43, 0.22); }

.sx-cartoon[data-c="plum"]::before { background: linear-gradient(140deg, #b88197 0%, #8d5570 100%); }
.sx-cartoon[data-c="plum"] { color: #fff; box-shadow: 0 4px 14px rgba(141, 85, 112, 0.18); }

.sx-cartoon[data-c="indigo"]::before { background: linear-gradient(140deg, #6e7eb0 0%, #444f7d 100%); }
.sx-cartoon[data-c="indigo"] { color: #fff; box-shadow: 0 4px 14px rgba(68, 79, 125, 0.18); }

.sx-cartoon[data-c="slate"]::before { background: linear-gradient(140deg, #aab8c2 0%, #7c8e9b 100%); }
.sx-cartoon[data-c="slate"] { color: #1a2530; box-shadow: 0 4px 14px rgba(124, 142, 155, 0.18); }

.sx-cartoon[data-c="matcha"]::before { background: linear-gradient(140deg, #91a779 0%, #5e7a4c 100%); }
.sx-cartoon[data-c="matcha"] { color: #fff; box-shadow: 0 4px 14px rgba(94, 122, 76, 0.20); }

.sx-cartoon[data-c="black"]::before { background: linear-gradient(140deg, #2a2a2a 0%, #0a0a0a 100%); }
.sx-cartoon[data-c="black"] { color: #fff; box-shadow: 0 4px 14px rgba(10, 10, 10, 0.30); }
.sx-cartoon[data-c="black"]::after {
  background: rgba(230, 0, 35, 0.25);
}

/* Slightly soften the corner decoration globally */
.sx-cartoon::after {
  background: rgba(255, 255, 255, 0.10);
}

@media (max-width: 1100px) {
  .sx-cartoon-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .sx-cartoon-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .sx-cartoon { padding: 18px 10px 14px; min-height: 120px; }
  .sx-cartoon__emoji { font-size: 36px; }
  .sx-cartoon__label { font-size: 14px; }
  .sx-cartoon__sub { font-size: 10.5px; }
}

/* ============================================================
   NEO-EDO LAYER — modern foundation + temple accent
   (Layers: washi bg · torii watermark · brush divider · kintsugi gold
    · Noto Serif JP · asanoha · sakura · stone lantern)
   ============================================================ */

/* Import Noto Serif JP for kanji accents */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700;900&display=swap');

/* Brand variables — warmer washi palette */
:root {
  --sx-washi: #faf6ef;            /* warm rice-paper cream */
  --sx-washi-soft: #f5efe2;       /* slightly darker washi */
  --sx-shu: #c8203a;              /* shu-iro vermillion (torii red) */
  --sx-sumi: #1a1a1a;             /* sumi ink black */
  --sx-kinpaku: #c8a253;          /* gold leaf */
  --sx-kinpaku-light: #e6c87a;    /* lighter kinpaku */
}

/* ===== LAYER 1: Washi paper accent (subtle, only header strip + body fallback) ===== */
body {
  background: #ffffff;  /* product zones must be pure white */
}
.sx-h-util { background: var(--sx-sumi); }
/* Header gets very subtle warm tint to feel "rice paper" */
.sx-h-main { background: #fefcf8; }
.sx-h-cats { background: #ffffff; }
.sx-h--scrolled { background: rgba(255, 255, 255, 0.92) !important; }

/* Product sections must be pure white */
.sx-section--soft {
  background: #ffffff !important;
}

/* Soften card surfaces — pure white */
.sx-card-wrap .sx-card,
.sx-rcp-card,
.sx-cartoon,
.sx-section__more,
.sx-h-search,
.sx-card__btn {
  background-color: #ffffff;
}

/* ===== LAYER 2: Torii silhouette watermark (hero + footer) ===== */
.sx-strip__torii {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 240px;
  z-index: 1;
  opacity: 0.08;
  animation: toriiSway 7s ease-in-out infinite;
  pointer-events: none;
  filter: drop-shadow(0 0 40px rgba(255, 138, 0, 0.18));
}
.sx-strip__torii svg { width: 100%; height: 100%; }
@keyframes toriiSway {
  0%, 100% { transform: translateY(-50%) rotate(-0.5deg); }
  50%      { transform: translateY(calc(-50% - 4px)) rotate(0.5deg); }
}

/* ===== LAYER 3: Brush stroke divider (between sections) ===== */
.sx-divider {
  position: relative;
  height: 70px;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}
.sx-divider svg {
  width: 100%;
  max-width: 600px;
  height: 100%;
}
.sx-divider path {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: dividerDraw 10s ease-in-out infinite;
}
.sx-divider path:nth-child(2) { animation-delay: 0.6s; }
.sx-divider path:nth-child(3) { animation-delay: 1.2s; }
@keyframes dividerDraw {
  0%   { stroke-dashoffset: 800; }
  35%  { stroke-dashoffset: 0; }
  65%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -800; }
}
.sx-divider__seal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sx-shu);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  font-size: 17px;
  box-shadow: 0 4px 14px rgba(200, 32, 58, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  letter-spacing: 0;
}

/* ===== LAYER 4: Kintsugi gold accent lines ===== */
.sx-rcp-card,
.sx-country,
.sx-promo {
  position: relative;
}
.sx-rcp-card::after,
.sx-country::after,
.sx-promo::after {
  /* Kintsugi-style cracked gold line on top-right corner of premium cards */
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  width: 90px;
  height: 90px;
  pointer-events: none;
  border-top-right-radius: inherit;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 90' fill='none' stroke='%23c8a253' stroke-width='1.4' stroke-linecap='round'><path d='M50 0 L 70 18 L 62 32 L 80 38 L 90 30 M70 18 L 86 8'/><circle cx='66' cy='14' r='1.2' fill='%23c8a253'/><circle cx='82' cy='28' r='1' fill='%23c8a253'/></svg>");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
  opacity: 0.65;
  z-index: 5;
  filter: drop-shadow(0 0 4px rgba(200, 162, 83, 0.4));
}

/* ===== LAYER 5: Noto Serif JP for kanji elements ===== */
.sx-h-logo__tag-kanji,
.sx-country__eyebrow,
.sx-promo__lantern-body text,
.sx-divider__seal {
  font-family: 'Noto Serif JP', 'Inter', serif;
}
/* Generic kanji utility */
[lang="ja"], .sx-kanji {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
}

/* ===== LAYER 6: Asanoha (hemp leaf) pattern — newsletter/footer area ===== */
.sx-newsletter,
.shopify-section[id*="footer"] {
  position: relative;
}
.sx-newsletter::before,
.shopify-section[id*="footer"]::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%23c8203a' stroke-width='0.6' opacity='0.10'><polygon points='40,5 75,25 75,55 40,75 5,55 5,25'/><line x1='40' y1='5' x2='40' y2='75'/><line x1='5' y1='25' x2='75' y2='55'/><line x1='75' y1='25' x2='5' y2='55'/></g></svg>");
  background-size: 80px 80px;
  opacity: 0.5;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  z-index: 0;
}
.sx-newsletter > *,
.shopify-section[id*="footer"] > * { position: relative; z-index: 1; }

/* ===== LAYER 7: Sakura petal particles (in hero strip) ===== */
.sx-sakura {
  position: absolute;
  top: -20px;
  width: 18px;
  height: 18px;
  pointer-events: none;
  opacity: 0;
  animation: sakuraFall linear infinite;
  z-index: 2;
}
.sx-sakura svg { width: 100%; height: 100%; transform-origin: center; animation: sakuraSpin 4s ease-in-out infinite; }
.sx-sakura--1 { left: 12%; animation-duration: 22s; animation-delay: 2s; }
.sx-sakura--2 { left: 28%; animation-duration: 28s; animation-delay: 8s; }
.sx-sakura--3 { left: 58%; animation-duration: 24s; animation-delay: 14s; }
.sx-sakura--4 { left: 76%; animation-duration: 26s; animation-delay: 5s; }
.sx-sakura--5 { left: 90%; animation-duration: 30s; animation-delay: 18s; }
@keyframes sakuraFall {
  0%   { transform: translateY(0)    translateX(0)  rotate(0deg);   opacity: 0; }
  8%   { opacity: 0.85; }
  50%  { transform: translateY(220px) translateX(40px) rotate(180deg); }
  90%  { opacity: 0.85; }
  100% { transform: translateY(440px) translateX(-30px) rotate(360deg); opacity: 0; }
}
@keyframes sakuraSpin {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(20deg); }
}

/* ===== LAYER 8: Stone lantern silhouette (footer) ===== */
.sx-lantern-stone {
  position: absolute;
  bottom: 0;
  right: 3%;
  width: 90px;
  height: 160px;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   CUSTOM COLLECTION PAGE (sxc) — Sebuya category template
   LIGHT theme + Shopify filters + sort + mobile drawer
   ============================================================ */
.sxc {
  background: #ffffff;
  min-height: 60vh;
}

/* ===== NEO-EDO LIGHT HERO HEADER ===== */
/* Top vermillion→kinpaku accent strip (subtle, recurring brand motif) */
.sxc-strip {
  height: 4px;
  background: linear-gradient(90deg, #c8203a 0%, #c8a253 50%, #c8203a 100%);
  background-size: 200% 100%;
  animation: sxcStrip 8s linear infinite;
}
@keyframes sxcStrip {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.sxc-head {
  position: relative;
  background: #ffffff;
  padding: 32px 0 36px;
  border-bottom: 1px solid rgba(200, 32, 58, 0.08);
  overflow: hidden;
}
/* Giant ghost kanji watermark (background) */
.sxc-head__kanji {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(180px, 22vw, 320px);
  font-weight: 900;
  line-height: 0.9;
  color: rgba(200, 32, 58, 0.05);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.sxc-head__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.sxc-head__accent {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 138, 0, 0.06) 0%, transparent 35%),
    radial-gradient(circle at 100% 100%, rgba(200, 32, 58, 0.04) 0%, transparent 40%);
}
.sxc-crumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--sx-muted);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.sxc-crumb a {
  color: var(--sx-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.sxc-crumb a:hover { color: var(--sx-red); }
.sxc-crumb span[aria-hidden] { opacity: 0.4; }
.sxc-crumb__cur { color: var(--sx-ink); font-weight: 700; }

.sxc-head__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.sxc-head__main {
  flex: 1;
  min-width: 0;
}
.sxc-head__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Serif JP', serif;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sx-red);
  margin-bottom: 12px;
}
.sxc-head__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sx-red);
  box-shadow: 0 0 0 3px rgba(200, 32, 58, 0.16);
  animation: dotPulse 1.4s ease-in-out infinite;
}
.sxc-head__title {
  font-size: clamp(32px, 4.2vw, 52px) !important;
  font-weight: 900 !important;
  line-height: 1.02;
  letter-spacing: -0.025em !important;
  margin: 0 !important;
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
/* Neo-Edo gradient text: ink → vermillion → kinpaku */
.sxc-head__title-text {
  background: linear-gradient(135deg, #1a1a1a 0%, #1a1a1a 40%, #c8203a 75%, #c8a253 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.02;
  background-size: 200% 200%;
  animation: sxcTitleShimmer 8s ease-in-out infinite;
}
@keyframes sxcTitleShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.sxc-head__count {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--sx-red);
  background: linear-gradient(135deg, rgba(200, 32, 58, 0.10), rgba(200, 162, 83, 0.12));
  border: 1px solid rgba(200, 32, 58, 0.18);
  padding: 4px 11px;
  border-radius: 999px;
}
/* Brush stroke under title */
.sxc-head__brush {
  display: block;
  width: 240px;
  height: 14px;
  margin-top: 6px;
}
.sxc-head__desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--sx-ink);
  opacity: 0.72;
  margin: 14px 0 0;
  max-width: 60ch;
  font-weight: 500;
}

/* Hanko stamp at right (echo of homepage hero hanko stamps) */
.sxc-head__hanko {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  background: #c8203a;
  color: #fff;
  border-radius: 50%;
  font-family: 'Noto Serif JP', serif;
  box-shadow:
    0 8px 20px rgba(200, 32, 58, 0.30),
    inset 0 -3px 6px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
  border: 2.5px solid #fff;
  transform: rotate(-5deg);
  position: relative;
  flex-shrink: 0;
}
.sxc-head__hanko::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 50%;
}
.sxc-head__hanko-kanji {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  margin-top: 4px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.sxc-head__hanko-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin-top: 2px;
  opacity: 0.92;
}
@media (max-width: 749px) {
  .sxc-head__hanko { width: 64px; height: 64px; }
  .sxc-head__hanko-kanji { font-size: 22px; }
  .sxc-head__hanko-lbl { font-size: 6.5px; }
}

/* ===== TOOLBAR (Neo-Edo washi) ===== */
.sxc-bar {
  background:
    linear-gradient(180deg, #ffffff, #faf6ef 70%),
    #faf6ef;
  border-bottom: 1px solid rgba(200, 32, 58, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
  position: relative;
}
.sxc-bar::after {
  /* hairline shu accent below */
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 32, 58, 0.30), rgba(200, 162, 83, 0.30), transparent);
}
.sxc-bar__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sxc-bar__filter-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: #fff;
  border: 1.5px solid var(--sx-red);
  color: var(--sx-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.18s;
  box-shadow: 0 2px 8px rgba(200, 32, 58, 0.10);
}
.sxc-bar__filter-btn:hover {
  background: linear-gradient(135deg, #c8203a, #8c0018);
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(200, 32, 58, 0.30);
}
.sxc-bar__count {
  font-size: 13.5px;
  color: var(--sx-muted);
}
.sxc-bar__count strong {
  color: var(--sx-ink);
  font-weight: 900;
  font-size: 15px;
  margin-right: 4px;
}
.sxc-bar__sort {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sxc-bar__sort label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--sx-muted);
}
.sxc-bar__sort select {
  padding: 9px 36px 9px 14px;
  font-size: 13.5px;
  font-weight: 700;
  font-family: inherit;
  border: 1.5px solid rgba(0, 0, 0, 0.10);
  border-radius: 999px;
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat right 12px center;
  background-size: 14px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: var(--sx-ink);
  transition: all 0.15s;
}
.sxc-bar__sort select:hover { border-color: var(--sx-red); }
.sxc-bar__sort select:focus { outline: none; border-color: var(--sx-red); box-shadow: 0 0 0 3px rgba(230, 0, 35, 0.12); }

/* ===== ACTIVE FILTER CHIPS (Neo-Edo hanko-style) ===== */
.sxc-active {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.sxc-active__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.sxc-active__lbl {
  font-family: 'Noto Serif JP', serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sx-red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sxc-active__lbl::before {
  content: '✓';
  background: var(--sx-red);
  color: #fff;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
}
.sxc-chip-active {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: linear-gradient(135deg, rgba(200, 32, 58, 0.08), rgba(200, 162, 83, 0.12));
  border: 1px solid rgba(200, 32, 58, 0.25);
  color: var(--sx-ink);
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.18s cubic-bezier(.2,.8,.2,1);
}
.sxc-chip-active span {
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  color: var(--sx-red);
}
.sxc-chip-active:hover {
  background: linear-gradient(135deg, #c8203a, #8c0018);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(200, 32, 58, 0.30);
  transform: translateY(-1px);
}
.sxc-chip-active:hover span { color: #fff; }
.sxc-clear-all {
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sx-muted);
  text-decoration: none;
  margin-left: auto;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.15s;
}
.sxc-clear-all:hover { color: var(--sx-red); border-color: rgba(200, 32, 58, 0.18); background: rgba(200, 32, 58, 0.04); }

/* ===== MAIN: filters + grid ===== */
.sxc-main {
  background: #ffffff;
  padding: 28px 0 56px;
}
.sxc-main__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 32px;
  align-items: flex-start;
}

/* ===== FILTERS SIDEBAR ===== */
.sxc-filters {
  background: #fff;
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  padding-right: 4px;
}
.sxc-filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 8px;
  position: relative;
}
.sxc-filters__head::after {
  /* sumi-e brush underline */
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #c8203a 0%, #c8203a 30%, #c8a253 70%, transparent 100%);
  border-radius: 2px;
}
.sxc-filters__head h3 {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
  color: var(--sx-ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sxc-filters__head-kanji {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--sx-red);
  line-height: 1;
}
.sxc-filters__close {
  display: none;
  background: rgba(0, 0, 0, 0.05);
  border: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--sx-ink);
}
.sxc-filters__close svg { width: 14px; height: 14px; }

.sxc-fgroup {
  padding: 12px 0;
  position: relative;
}
.sxc-fgroup::after {
  /* delicate ink-dotted divider between groups */
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-image:
    radial-gradient(circle, rgba(200, 32, 58, 0.18) 1px, transparent 1.5px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  background-position: 0 50%;
}
.sxc-fgroup:last-child::after { display: none; }
.sxc-fgroup__sum {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  cursor: pointer;
  list-style: none;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--sx-ink);
  user-select: none;
}
.sxc-fgroup__sum::-webkit-details-marker { display: none; }
.sxc-fgroup__sum > span:first-child { flex: 1; }
.sxc-fgroup__badge {
  background: linear-gradient(135deg, #c8203a, #8c0018);
  color: #fff;
  font-size: 10.5px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 6px rgba(200, 32, 58, 0.25);
}
.sxc-fgroup__arrow {
  color: var(--sx-muted);
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1);
}
.sxc-fgroup[open] .sxc-fgroup__arrow { transform: rotate(180deg); color: var(--sx-red); }
.sxc-fgroup[open] .sxc-fgroup__sum > span:first-child { color: var(--sx-red); }

.sxc-fgroup__body {
  padding: 10px 0 4px;
}

.sxc-flist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 280px;
  overflow-y: auto;
}
.sxc-fopt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 6px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.12s;
  font-size: 13px;
}
.sxc-fopt:hover { background: rgba(0, 0, 0, 0.03); }
.sxc-fopt input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
/* Custom checkbox — vermillion hanko-style on active */
.sxc-fopt__check {
  width: 19px;
  height: 19px;
  border: 1.5px solid rgba(0, 0, 0, 0.20);
  border-radius: 5px;
  background: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(.34, 1.56, .64, 1);
  position: relative;
}
.sxc-fopt:hover .sxc-fopt__check {
  border-color: var(--sx-red);
}
.sxc-fopt__check::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2.2px solid #fff;
  border-bottom: 2.2px solid #fff;
  transform: rotate(-45deg) translate(1px, -2px) scale(0);
  opacity: 0;
  transition: all 0.2s cubic-bezier(.34, 1.56, .64, 1);
}
.sxc-fopt input:checked + .sxc-fopt__check {
  background: linear-gradient(135deg, #c8203a 0%, #8c0018 100%);
  border-color: var(--sx-red);
  box-shadow: 0 2px 6px rgba(200, 32, 58, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.20);
  transform: scale(1.05);
}
.sxc-fopt input:checked + .sxc-fopt__check::after {
  opacity: 1;
  transform: rotate(-45deg) translate(1px, -2px) scale(1);
}
.sxc-fopt__lbl {
  flex: 1;
  color: var(--sx-ink);
  line-height: 1.3;
}
.sxc-fopt__cnt {
  font-size: 11.5px;
  color: var(--sx-muted);
  font-variant-numeric: tabular-nums;
}
.sxc-fopt--empty {
  opacity: 0.45;
  cursor: not-allowed;
}

.sxc-fprice {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sxc-fprice__row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sxc-fprice label {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sxc-fprice label span {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--sx-muted);
}
.sxc-fprice input {
  width: 100%;
  padding: 9px 10px;
  border: 1.5px solid rgba(0, 0, 0, 0.10);
  border-radius: 8px;
  font-size: 13px;
  font-family: inherit;
  background: #fff;
  -moz-appearance: textfield;
}
.sxc-fprice input::-webkit-outer-spin-button,
.sxc-fprice input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.sxc-fprice input:focus { outline: none; border-color: var(--sx-red); box-shadow: 0 0 0 3px rgba(230, 0, 35, 0.10); }
.sxc-fprice__sep { color: var(--sx-muted); align-self: flex-end; padding-bottom: 8px; }
.sxc-fprice__apply {
  padding: 10px 16px;
  background: linear-gradient(135deg, #c8203a 0%, #8c0018 100%);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.18s;
  align-self: flex-start;
  box-shadow: 0 3px 10px rgba(200, 32, 58, 0.25);
}
.sxc-fprice__apply:hover {
  background: linear-gradient(135deg, #ff8a00 0%, #c8203a 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(200, 32, 58, 0.40);
}

.sxc-filters__empty {
  font-size: 13px;
  color: var(--sx-muted);
  padding: 20px 0;
  line-height: 1.5;
}
.sxc-filters__empty small { font-size: 11.5px; opacity: 0.85; }

.sxc-filters__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(2px);
  z-index: 998;
}

/* ===== GRID ===== */
.sxc-grid-wrap { min-width: 0; }
.sxc-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* ===== PAGINATION ===== */
.sxc-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
}
.sxc-pager__arrow,
.sxc-pager__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
  color: var(--sx-ink);
  background: #faf6ef;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.18s;
}
.sxc-pager__arrow:hover,
.sxc-pager__num:hover:not(.sxc-pager__num--active):not(.sxc-pager__num--dots) {
  background: var(--sx-ink);
  color: #fff;
  border-color: var(--sx-ink);
  transform: translateY(-1px);
}
.sxc-pager__num--active {
  background: linear-gradient(135deg, #ff8a00, #e60023);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(230, 0, 35, 0.30);
}
.sxc-pager__num--dots {
  background: transparent;
  border: 0;
  color: var(--sx-muted);
  cursor: default;
}

/* ===== EMPTY ===== */
.sxc-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--sx-muted);
}
.sxc-empty__icon {
  display: block;
  font-size: 80px;
  color: rgba(200, 32, 58, 0.30);
  margin-bottom: 16px;
}
.sxc-empty h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--sx-ink);
  margin: 0 0 8px;
}
.sxc-empty p {
  font-size: 14.5px;
  margin: 0 auto 20px;
  max-width: 40ch;
}
.sxc-empty__cta {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #ff8a00, #e60023);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(230, 0, 35, 0.30);
  transition: all 0.18s;
}
.sxc-empty__cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(230, 0, 35, 0.45); }

/* ===== RESPONSIVE ===== */
@media (max-width: 989px) {
  .sxc-main__inner { grid-template-columns: 1fr; padding: 0 20px; gap: 0; }
  .sxc-bar__filter-btn { display: inline-flex; }
  .sxc-filters {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 86%;
    max-width: 380px;
    background: #fff;
    padding: 20px;
    z-index: 999;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
    box-shadow: -20px 0 40px rgba(10, 10, 10, 0.18);
    max-height: 100vh;
  }
  .sxc-filters__close { display: inline-flex; }
  html.sxc-filters-open { overflow: hidden; }
  html.sxc-filters-open .sxc-filters { transform: none; }
  html.sxc-filters-open .sxc-filters__overlay { display: block; }
  .sxc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .sxc-head__inner,
  .sxc-bar__inner,
  .sxc-active__inner { padding-left: 20px; padding-right: 20px; }
}
@media (max-width: 749px) {
  .sxc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .sxc-bar__sort label { display: none; }
  .sxc-head__title { font-size: 26px !important; }
}

/* ============================================================
   CUSTOM PDP (sxp) — Sebuya product detail page
   ============================================================ */
.sxp {
  padding: 32px 0 48px;
  background: #ffffff;
}
.sxp__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: flex-start;
}
.sxp__inner > * { min-width: 0; }

/* ===== Gallery ===== */
.sxp__media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #faf6ef;
  padding: 24px;
  isolation: isolate;
}
.sxp__media-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.sxp__media-blob {
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.18) 0%, transparent 65%);
  top: -120px; right: -120px;
  filter: blur(60px);
  animation: blobDrift1 22s ease-in-out infinite;
}
.sxp__media-seigaiha {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0 50%, transparent 19px, rgba(200, 32, 58, 0.04) 20px, rgba(200, 32, 58, 0.04) 21px, transparent 22px),
    radial-gradient(circle at 30px 50%, transparent 19px, rgba(200, 162, 83, 0.05) 20px, rgba(200, 162, 83, 0.05) 21px, transparent 22px);
  background-size: 60px 60px;
  opacity: 0.6;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}

.sxp__main-img {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}
.sxp__main-img img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.08));
}
.sxp__main-ph { font-size: 80px; }
.sxp__main-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: linear-gradient(135deg, #ff3a4d, #b8001c);
  color: #fff;
  padding: 8px 14px;
  font-size: 16px;
  font-weight: 900;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(230, 0, 35, 0.35);
}

.sxp__thumbs {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.sxp__thumb {
  width: 68px; height: 68px;
  padding: 4px;
  background: #fff;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.18s;
  overflow: hidden;
}
.sxp__thumb img { width: 100%; height: 100%; object-fit: contain; }
.sxp__thumb:hover { border-color: var(--sx-red); transform: translateY(-2px); }
.sxp__thumb--active { border-color: var(--sx-red); box-shadow: 0 0 0 2px rgba(230, 0, 35, 0.18); }

/* ===== Info ===== */
.sxp__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sxp__crumb {
  font-size: 11.5px;
  color: var(--sx-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  letter-spacing: 0.02em;
}
.sxp__crumb a { color: var(--sx-muted); text-decoration: none; }
.sxp__crumb a:hover { color: var(--sx-red); }
.sxp__crumb span { opacity: 0.5; }

.sxp__brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sx-red);
  align-self: flex-start;
}
.sxp__brand-icon { font-size: 16px; }

.sxp__title {
  font-size: clamp(26px, 3.4vw, 38px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1;
  color: var(--sx-ink) !important;
  margin: 0 !important;
}

.sxp__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.sxp__stars { display: inline-flex; gap: 1px; font-size: 16px; }
.sxp__rating-num { font-weight: 800; color: var(--sx-ink); }
.sxp__rating-cnt { color: var(--sx-muted); }

.sxp__price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.sxp__price-now {
  font-size: 32px;
  font-weight: 900;
  color: var(--sx-red);
  letter-spacing: -0.02em;
}
.sxp__price-old {
  font-size: 18px;
  color: var(--sx-muted);
  font-weight: 500;
}
.sxp__price-save {
  background: linear-gradient(135deg, #ffd24a, #ff8a00);
  color: #2a1c00;
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 999px;
}

.sxp__short {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--sx-ink);
  opacity: 0.78;
}

.sxp__spice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(200, 32, 58, 0.06);
  border: 1px solid rgba(200, 32, 58, 0.18);
  border-radius: 999px;
  align-self: flex-start;
  font-size: 12px;
}
.sxp__spice-lbl { font-weight: 800; color: var(--sx-red); letter-spacing: 0.08em; text-transform: uppercase; }
.sxp__spice-chilis { font-size: 14px; }
.sxp__spice-num { font-weight: 800; color: var(--sx-ink); }

.sxp__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background: #faf6ef;
  border: 1px solid rgba(200, 32, 58, 0.10);
  border-radius: 16px;
  margin-top: 8px;
}
.sxp__variants { display: flex; flex-direction: column; gap: 6px; }
.sxp__variants-lbl {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--sx-muted);
}
.sxp__variants-select {
  padding: 12px 14px;
  font-size: 14.5px;
  font-family: inherit;
  border: 1.5px solid rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}

.sxp__qty-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: stretch;
}
.sxp__qty {
  display: inline-flex;
  align-items: stretch;
  background: #fff;
  border: 1.5px solid rgba(0, 0, 0, 0.10);
  border-radius: 12px;
  overflow: hidden;
}
.sxp__qty-btn {
  background: transparent;
  border: 0;
  width: 38px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: var(--sx-ink);
  transition: background 0.15s;
}
.sxp__qty-btn:hover { background: rgba(0, 0, 0, 0.04); color: var(--sx-red); }
.sxp__qty-input {
  width: 44px;
  text-align: center;
  border: 0;
  font-size: 15px;
  font-weight: 800;
  background: transparent;
  font-family: inherit;
  font-variant-numeric: tabular-nums;
  -moz-appearance: textfield;
}
.sxp__qty-input::-webkit-outer-spin-button,
.sxp__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.sxp__add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  background: linear-gradient(135deg, #ff8a00, #e60023);
  color: #fff;
  border: 0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(230, 0, 35, 0.30);
  transition: all 0.2s;
}
.sxp__add:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(230, 0, 35, 0.45); }
.sxp__add--out { background: var(--sx-muted) !important; box-shadow: none; cursor: not-allowed; }

.sxp__fav.sx-card__fav {
  position: static;
  width: 48px;
  height: 100%;
  min-height: 48px;
}

.sxp__stock {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--sx-ink);
  padding: 10px 12px;
  background: rgba(200, 32, 58, 0.06);
  border-radius: 8px;
  border-left: 3px solid var(--sx-red);
}
.sxp__stock strong { font-weight: 800; color: var(--sx-red); }
.sxp__stock-dot {
  width: 8px; height: 8px;
  background: var(--sx-red);
  border-radius: 50%;
  animation: dotPulse 1.4s ease-in-out infinite;
}

.sxp__perks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}
.sxp__perk {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}
.sxp__perk-icon { font-size: 22px; line-height: 1; flex-shrink: 0; }
.sxp__perk strong { display: block; font-size: 12px; font-weight: 800; color: var(--sx-ink); line-height: 1.2; }
.sxp__perk span { display: block; font-size: 11px; color: var(--sx-muted); margin-top: 2px; line-height: 1.3; }

.sxp__details {
  margin-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 14px;
}
.sxp__details summary {
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  color: var(--sx-ink);
}
.sxp__details summary::-webkit-details-marker { display: none; }
.sxp__details summary::after {
  content: '+';
  margin-left: auto;
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.2s;
}
.sxp__details[open] summary::after { transform: rotate(45deg); }
.sxp__details-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--sx-ink);
  opacity: 0.85;
  padding: 12px 0;
}

.sxp__share {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 12px;
  color: var(--sx-muted);
}
.sxp__share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #faf6ef;
  color: var(--sx-ink);
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.18s;
}
.sxp__share a:hover { background: var(--sx-red); color: #fff; border-color: var(--sx-red); transform: translateY(-2px); }

@media (max-width: 989px) {
  .sxp__inner { grid-template-columns: minmax(0, 1fr); gap: 24px; padding: 0 16px; }
  .sxp__perks { grid-template-columns: 1fr; }
  .sxp__qty-row { grid-template-columns: auto 1fr; }
  .sxp__fav.sx-card__fav { grid-column: 1 / -1; height: 44px; min-height: 44px; width: 100%; }
}

/* ============================================================
   RELATED PRODUCTS (sxp-related) — bottom of PDP
   ============================================================ */
.sxp-related {
  background: linear-gradient(180deg, #faf6ef 0%, #ffffff 100%);
  padding: 64px 0 48px;
  margin-top: 64px;
  border-top: 1px solid rgba(200, 162, 83, 0.18);
  position: relative;
  overflow: hidden;
}
.sxp-related::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #c8203a 0%, #c8a253 50%, #c8203a 100%);
  background-size: 200% 100%;
  animation: sxcStrip 8s linear infinite;
}
.sxp-related__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.sxp-related__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 16px;
  margin-bottom: 28px;
  row-gap: 6px;
}
.sxp-related__head--brand {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px dashed rgba(200, 162, 83, 0.22);
}
.sxp-related__eyebrow {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sx-red, #c8203a);
}
.sxp-related__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sx-red, #c8203a);
  box-shadow: 0 0 0 3px rgba(200, 32, 58, 0.16);
}
.sxp-related__dot--gold {
  background: #c8a253;
  box-shadow: 0 0 0 3px rgba(200, 162, 83, 0.18);
}
.sxp-related__title {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  color: var(--sx-ink, #1a1a1a);
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.sxp-related__title-sub {
  font-size: 0.55em;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.55);
  letter-spacing: 0;
}
.sxp-related__title--small { font-size: clamp(18px, 1.8vw, 22px); }
.sxp-related__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--sx-ink, #1a1a1a);
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 999px;
  background: #fff;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
  white-space: nowrap;
  align-self: end;
}
.sxp-related__more:hover {
  background: var(--sx-red, #c8203a);
  color: #fff;
  border-color: var(--sx-red, #c8203a);
  transform: translateY(-1px);
}
.sxp-related__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.sxp-related__grid--brand { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.sxp-related__grid > .sx-card-wrap { min-width: 0; }

@media (max-width: 989px) {
  .sxp-related { padding: 36px 0 28px; margin-top: 36px; }
  .sxp-related__inner { padding: 0 16px; }
  .sxp-related__head { margin-bottom: 18px; }
  .sxp-related__head--brand { margin-top: 32px; padding-top: 24px; }
  .sxp-related__title { font-size: 20px; }
  .sxp-related__title-sub { display: none; } /* shorter on mobile */
  .sxp-related__more { font-size: 11px; padding: 6px 11px; }
  .sxp-related__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .sxp-related__grid--brand {
    /* horizontal scroll on mobile so users can swipe more from brand */
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 16px;
    margin: 0 -16px;
    gap: 12px;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 32px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 32px), transparent 100%);
  }
  .sxp-related__grid--brand::-webkit-scrollbar { display: none; }
  .sxp-related__grid--brand > .sx-card-wrap {
    flex: 0 0 48%;
    scroll-snap-align: start;
    min-width: 0;
  }
}

/* ============================================================
   WISHLIST DRAWER (sx-wl)
   ============================================================ */
html.sx-no-scroll { overflow: hidden; }

.sx-wl {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}
.sx-wl__overlay {
  display: block !important; /* Dawn base.css `div:empty { display: none }` has higher specificity */
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.sx-wl__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #faf6ef;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
  box-shadow: -20px 0 40px rgba(10, 10, 10, 0.18);
}
.sx-wl--open { pointer-events: auto; }
.sx-wl--open .sx-wl__overlay { opacity: 1; }
.sx-wl--open .sx-wl__panel { transform: none; }

.sx-wl__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(200, 32, 58, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
  position: relative;
}
.sx-wl__head::after {
  /* shu accent line */
  content: '';
  position: absolute;
  bottom: -1px;
  left: 24px;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #c8203a, transparent);
  border-radius: 2px;
}
.sx-wl__eyebrow {
  font-family: 'Noto Serif JP', serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #c8203a;
  display: block;
  margin-bottom: 4px;
}
.sx-wl__title {
  font-size: 22px;
  font-weight: 900;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--sx-ink);
}
.sx-wl__count {
  font-size: 12px;
  font-weight: 600;
  color: var(--sx-muted);
  margin-top: 4px;
  display: block;
}
.sx-wl__close {
  background: rgba(10, 10, 10, 0.05);
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--sx-ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.18s;
}
.sx-wl__close:hover { background: var(--sx-red); color: #fff; transform: rotate(90deg); }
.sx-wl__close svg { width: 16px; height: 16px; }

.sx-wl__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sx-wl__empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--sx-muted);
}
.sx-wl__empty-icon {
  display: block;
  font-size: 56px;
  color: rgba(200, 32, 58, 0.25);
  margin-bottom: 12px;
}
.sx-wl__empty h4 {
  font-size: 17px;
  margin: 0 0 6px;
  color: var(--sx-ink);
  font-weight: 800;
}
.sx-wl__empty p {
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
}
.sx-wl__skeleton {
  height: 90px;
  background: linear-gradient(90deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.07) 50%, rgba(0,0,0,0.04) 100%);
  background-size: 200% 100%;
  border-radius: 12px;
  margin-bottom: 8px;
  animation: skeletonSlide 1.2s ease-in-out infinite;
}
@keyframes skeletonSlide {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.sx-wl-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  transition: all 0.2s;
}
.sx-wl-item:hover { border-color: rgba(200, 32, 58, 0.25); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06); }
.sx-wl-item__media {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: #faf6ef;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sx-wl-item__media img { width: 100%; height: 100%; object-fit: contain; padding: 6px; box-sizing: border-box; }
.sx-wl-item__ph { font-size: 24px; }
.sx-wl-item__body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.sx-wl-item__brand {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sx-muted);
}
.sx-wl-item__title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--sx-ink);
  text-decoration: none;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sx-wl-item__title:hover { color: var(--sx-red); }
.sx-wl-item__price {
  font-size: 14px;
  font-weight: 800;
  color: var(--sx-red);
  margin-top: 4px;
}
.sx-wl-item__price s { color: var(--sx-muted); font-weight: 500; font-size: 12px; margin-right: 4px; }
.sx-wl-item__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 6px;
}
.sx-wl-item__remove {
  background: transparent;
  border: 0;
  font-size: 18px;
  color: var(--sx-muted);
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 50%;
  line-height: 1;
  transition: all 0.15s;
}
.sx-wl-item__remove:hover { background: var(--sx-red); color: #fff; }
.sx-wl-item__add button {
  background: linear-gradient(135deg, #ff8a00, #e60023);
  color: #fff;
  border: 0;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(230, 0, 35, 0.25);
}

.sx-wl__foot {
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.7), transparent);
}
.sx-wl__more {
  display: block;
  text-align: center;
  background: var(--sx-ink);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  transition: all 0.18s;
}
.sx-wl__more:hover { background: var(--sx-red); transform: translateY(-1px); }

/* ============================================================
   QUICK VIEW MODAL (sx-qv)
   ============================================================ */
.sx-qv {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.sx-qv__overlay {
  display: block !important; /* Dawn base.css `div:empty { display: none }` has higher specificity */
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.sx-qv__panel {
  position: relative;
  background: #faf6ef;
  border-radius: 20px;
  width: 100%;
  max-width: 900px;
  max-height: 88vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: scale(0.92) translateY(20px);
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.30);
}
.sx-qv--open { pointer-events: auto; }
.sx-qv--open .sx-qv__overlay { opacity: 1; }
.sx-qv--open .sx-qv__panel { opacity: 1; transform: none; }

.sx-qv__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--sx-ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}
.sx-qv__close:hover { background: var(--sx-red); color: #fff; transform: rotate(90deg); }
.sx-qv__close svg { width: 16px; height: 16px; }

.sx-qv__body { flex: 1; overflow-y: auto; }
.sx-qv__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 80px 24px;
  color: var(--sx-muted);
}
.sx-qv__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(200, 32, 58, 0.15);
  border-top-color: var(--sx-red);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.sx-qv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 440px;
}
.sx-qv-grid__media {
  position: relative;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.sx-qv-grid__media img { max-width: 100%; max-height: 380px; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.08)); }
.sx-qv__ph { font-size: 60px; }
.sx-qv__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, #ff3a4d, #b8001c);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(230, 0, 35, 0.35);
}
.sx-qv-grid__info {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #faf6ef;
}
.sx-qv__brand {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sx-muted);
}
.sx-qv__title {
  font-size: 24px;
  font-weight: 900;
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--sx-ink);
}
.sx-qv__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 4px 0 8px;
}
.sx-qv__price strong { font-size: 26px; font-weight: 900; color: var(--sx-red); }
.sx-qv__price s { font-size: 16px; color: var(--sx-muted); }
.sx-qv__desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--sx-ink);
  opacity: 0.78;
  margin: 0;
}
.sx-qv__variants {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sx-qv__variants label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sx-muted);
}
.sx-qv__variants select {
  padding: 10px 14px;
  font-size: 14px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  cursor: pointer;
}
.sx-qv__cta-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}
.sx-qv__add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #ff8a00, #e60023);
  color: #fff;
  border: 0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(230, 0, 35, 0.30);
  transition: all 0.2s;
}
.sx-qv__add:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(230, 0, 35, 0.45); }
.sx-qv__more {
  text-align: center;
  font-size: 12.5px;
  color: var(--sx-muted);
  text-decoration: none;
  font-weight: 700;
}
.sx-qv__more:hover { color: var(--sx-red); }
.sx-qv__error { padding: 60px 24px; text-align: center; color: var(--sx-muted); }
.sx-qv__error a { color: var(--sx-red); font-weight: 800; }

@media (max-width: 749px) {
  .sx-qv { padding: 0; align-items: flex-end; }
  .sx-qv__panel { max-width: 100%; max-height: 92vh; border-radius: 20px 20px 0 0; }
  .sx-qv-grid { grid-template-columns: 1fr; min-height: 0; }
  .sx-qv-grid__media { padding: 24px; }
  .sx-qv-grid__media img { max-height: 200px; }
}

/* ============================================================
   RECENTLY VIEWED PEEK (sx-rv)
   ============================================================ */
.sx-rv {
  position: fixed;
  right: 24px;
  bottom: 84px;
  z-index: 88;
  width: 260px;
  max-width: calc(100vw - 48px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(10, 10, 10, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px) scale(0.92);
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.sx-rv--show { opacity: 1; transform: none; pointer-events: auto; }
.sx-rv__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: linear-gradient(135deg, #faf6ef, #fff);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.sx-rv__chip {
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #c8203a;
}
.sx-rv__close {
  background: transparent;
  border: 0;
  font-size: 16px;
  color: var(--sx-muted);
  cursor: pointer;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 4px;
}
.sx-rv__close:hover { color: var(--sx-ink); background: rgba(0, 0, 0, 0.05); }
.sx-rv__list {
  display: flex;
  flex-direction: column;
}
.sx-rv-item {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 9px 12px;
  text-decoration: none;
  color: var(--sx-ink);
  font-size: 12px;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.sx-rv-item:last-child { border-bottom: 0; }
.sx-rv-item:hover { background: #faf6ef; }
.sx-rv-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: #faf6ef;
  border-radius: 6px;
  padding: 4px;
  box-sizing: border-box;
}
.sx-rv-item__name { font-weight: 600; line-height: 1.2; }
.sx-rv-item__price { font-weight: 800; color: var(--sx-red); }
.sx-rv-item__ph { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: #faf6ef; border-radius: 6px; font-size: 18px; }

@media (max-width: 749px) {
  .sx-rv { display: none; } /* keep mobile clean */
}

/* ============================================================
   MOBILE MENU DRAWER — modern white redesign
   ============================================================ */
.sx-h-drawer {
  background: #ffffff;
  width: 88%;
  max-width: 380px;
}
.sx-h-drawer::before {
  /* warm side glow */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(ellipse at top right, rgba(255, 138, 0, 0.10), transparent 60%);
  pointer-events: none;
}
.sx-h-drawer::after {
  /* shu accent line on top */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c8203a, #c8a253, #c8203a);
  z-index: 2;
}
.sx-h-drawer__inner {
  padding: 24px 18px 28px;
  gap: 0;
  display: flex;
  flex-direction: column;
}

/* Header: logo + close */
.sx-h-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.sx-h-drawer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sx-h-drawer__brand-icon {
  font-size: 32px;
  color: #c8203a;
  filter: drop-shadow(0 2px 6px rgba(200, 32, 58, 0.30));
  line-height: 1;
}
.sx-h-drawer__brand-name {
  display: block;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #0a0a0a;
  line-height: 1;
}
.sx-h-drawer__brand-tag {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 8.5px;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: #c8203a;
  margin-top: 4px;
  text-transform: uppercase;
}
.sx-h-drawer__close {
  background: #faf6ef;
  border: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #0a0a0a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  transition: all 0.2s;
}
.sx-h-drawer__close:hover {
  background: linear-gradient(135deg, #c8203a, #8c0018);
  color: #fff;
  transform: rotate(90deg);
}
.sx-h-drawer__close svg { width: 18px; height: 18px; }

/* SALE prominent banner */
.sx-h-drawer__sale {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #ff3a4d 0%, #c8203a 50%, #8c0018 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 14px;
  margin-bottom: 22px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(200, 32, 58, 0.30);
  isolation: isolate;
}
.sx-h-drawer__sale-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 80% 50%, rgba(255, 210, 74, 0.30), transparent 50%);
}
.sx-h-drawer__sale-icon {
  font-size: 32px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}
.sx-h-drawer__sale strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sx-h-drawer__sale span {
  display: block;
  font-size: 12px;
  opacity: 0.92;
  margin-top: 2px;
  font-weight: 600;
}
.sx-h-drawer__sale-arrow {
  margin-left: auto;
  font-size: 24px;
  font-weight: 900;
}

/* Sections */
.sx-h-drawer__sec {
  margin-bottom: 18px;
}
.sx-h-drawer__sec-lbl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Serif JP', serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c8203a;
  padding-bottom: 8px;
  margin-bottom: 6px;
  position: relative;
  width: 100%;
}
.sx-h-drawer__sec-lbl::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 32, 58, 0.30), transparent);
}
.sx-h-drawer__sec-kanji {
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}
.sx-h-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sx-h-drawer__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #0a0a0a;
  text-decoration: none;
  position: relative;
  transition: all 0.18s cubic-bezier(.2,.8,.2,1);
}
.sx-h-drawer__link::before { display: none; }
.sx-h-drawer__link:hover {
  background: linear-gradient(90deg, rgba(200, 32, 58, 0.06), transparent);
  color: #c8203a;
  padding-left: 16px;
}
.sx-h-drawer__link-icon {
  font-size: 20px;
  line-height: 1;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}
.sx-h-drawer__link > span:nth-child(2) { flex: 1; }
.sx-h-drawer__link-arrow {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.25);
  font-weight: 400;
  transition: all 0.18s;
}
.sx-h-drawer__link:hover .sx-h-drawer__link-arrow {
  color: #c8203a;
  transform: translateX(3px);
}

/* Category-color hover accents */
.sx-h-drawer__link[data-color="terracotta"]:hover .sx-h-drawer__link-icon { transform: scale(1.15); }
.sx-h-drawer__link--plain {
  font-weight: 600;
  color: #4a4a4a;
}

/* Footer with social */
.sx-h-drawer__footer {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sx-h-drawer__social-lbl {
  font-family: 'Noto Serif JP', serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a8a8a;
}
.sx-h-drawer__social {
  display: flex;
  gap: 8px;
}
.sx-h-drawer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #faf6ef;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  color: #0a0a0a;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(.2,.8,.2,1);
}
.sx-h-drawer__social a:hover {
  background: linear-gradient(135deg, #c8203a, #8c0018);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 14px rgba(200, 32, 58, 0.30);
}

/* ============================================================
   GLOBAL COHESION — Asian watermark on light sections + dividers
   Ties dark and light sections into one visual language
   ============================================================ */

/* Subtle seigaiha watermark on light product sections — creates visual continuity */
.sx-section:not(.sx-promo):not(.sx-rcp):not(.sx-strip)::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 0 50%, transparent 19px, rgba(230, 0, 35, 0.03) 20px, rgba(230, 0, 35, 0.03) 21px, transparent 22px),
    radial-gradient(circle at 30px 50%, transparent 19px, rgba(255, 138, 0, 0.025) 20px, rgba(255, 138, 0, 0.025) 21px, transparent 22px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 40%, #000 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 40%, #000 60%, transparent 100%);
  opacity: 0.7;
}
.sx-section { position: relative; }
.sx-section > .sx-wrap,
.sx-section > * { position: relative; z-index: 1; }

/* Calligraphy stroke divider — placed between dark and light zones */
.sx-divider {
  position: relative;
  height: 60px;
  margin: 0 auto;
  max-width: 1440px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.sx-divider svg {
  width: 100%;
  height: 100%;
  opacity: 0.4;
}
.sx-divider path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: dividerDraw 6s ease-in-out infinite;
}
.sx-divider path:nth-child(2) { animation-delay: 0.6s; }
@keyframes dividerDraw {
  0%   { stroke-dashoffset: 600; }
  35%  { stroke-dashoffset: 0; }
  65%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -600; }
}

/* ============================================================
   SEBUYA HOMEPAGE — custom, MAOMAO × H-Mart vibe
   Self-contained (no Dawn class dependency)
   ============================================================ */

:root {
  --sx-red: #e60023;
  --sx-red-dark: #b8001c;
  --sx-black: #0a0a0a;
  --sx-ink: #1a1a1a;
  --sx-text: #2a2a2a;
  --sx-muted: #767676;
  --sx-soft: #f7f7f8;
  --sx-softer: #fbfbfc;
  --sx-border: #e5e5e7;
  --sx-yellow: #f7c531;
  --sx-radius: 10px;
  --sx-radius-sm: 6px;
  --sx-shadow-sm: 0 2px 6px rgba(10, 10, 10, 0.04);
  --sx-shadow-md: 0 8px 24px rgba(10, 10, 10, 0.08);
  --sx-shadow-lg: 0 20px 50px rgba(10, 10, 10, 0.12);
  --sx-gap: 16px;
  --sx-section-pad: 64px;
  --sx-page-pad: 32px;
}

/* Page-wide container — keep consistent with site */
.sx-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--sx-page-pad);
  padding-right: var(--sx-page-pad);
  box-sizing: border-box;
}

/* All headings reset for our own typographic system */
.sx-hero h1, .sx-section__title, .sx-promo__title, .sx-split__title,
.sx-recipe h3, .sx-review h4, .sx-newsletter h2 {
  font-family: inherit;
  color: var(--sx-ink);
  margin: 0;
  line-height: 1.15;
}

.sx-section {
  padding-top: var(--sx-section-pad);
  padding-bottom: var(--sx-section-pad);
  background: #fff;
}

.sx-section--soft { background: var(--sx-softer); }
.sx-section--tight { padding-top: 36px; padding-bottom: 36px; }

.sx-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.sx-section__head--center {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 36px;
}

.sx-section__head--flex { align-items: center; }

.sx-section__title {
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.015em;
}

.sx-section__sub {
  margin: 6px 0 0;
  color: var(--sx-muted);
  font-size: 14.5px;
}

.sx-section__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--sx-ink);
  text-decoration: none;
  white-space: nowrap;
  padding: 9px 16px;
  background: var(--sx-softer);
  border: 1px solid var(--sx-border);
  border-radius: 999px;
  letter-spacing: 0.01em;
  transition: all 0.2s cubic-bezier(.2,.8,.2,1);
  justify-self: end;
  align-self: center;
}
.sx-section__more::after {
  content: '→';
  font-size: 14px;
  transition: transform 0.2s;
  display: inline-block;
}
.sx-section__more:hover {
  background: var(--sx-ink);
  color: #fff;
  border-color: var(--sx-ink);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(10, 10, 10, 0.20);
}
.sx-section__more:hover::after {
  transform: translateX(3px);
}

.sx-eyebrow,
.sx-newsletter__eyebrow,
.sx-promo__eyebrow,
.sx-split__eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sx-red);
  margin-bottom: 8px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.sx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 22px;
  border-radius: var(--sx-radius-sm);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.15s;
  cursor: pointer;
  border: 1.5px solid transparent;
  line-height: 1;
}
.sx-btn--primary {
  background: var(--sx-red);
  color: #fff;
  border-color: var(--sx-red);
}
.sx-btn--primary:hover {
  background: var(--sx-red-dark);
  border-color: var(--sx-red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(230, 0, 35, 0.3);
}
.sx-btn--ghost {
  background: transparent;
  color: var(--sx-ink);
  border-color: var(--sx-ink);
}
.sx-btn--ghost:hover {
  background: var(--sx-ink);
  color: #fff;
}
.sx-btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.sx-btn--ghost-light:hover {
  background: #fff;
  color: var(--sx-ink);
}

/* ============================================================
   HERO
   ============================================================ */
.sx-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.sx-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.sx-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sx-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(230, 0, 35, 0.18) 100%);
}
.sx-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px var(--sx-page-pad);
  width: 100%;
}
.sx-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--sx-red);
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.sx-hero__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 18ch;
  color: #fff;
  margin: 0 0 16px;
}
.sx-hero__sub {
  font-size: clamp(15px, 1.2vw, 17px);
  max-width: 42ch;
  line-height: 1.5;
  margin: 0 0 28px;
  opacity: 0.95;
  color: #fff;
}
.sx-hero__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.sx-hero__trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
}

/* ============================================================
   CATEGORY TILES
   ============================================================ */
.sx-cats {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
}
.sx-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--sx-ink);
  background: #fff;
  border: 1px solid var(--sx-border);
  border-radius: var(--sx-radius);
  padding: 14px 8px 16px;
  transition: all 0.15s;
}
.sx-cat:hover {
  transform: translateY(-3px);
  box-shadow: var(--sx-shadow-md);
  border-color: transparent;
  color: var(--sx-red);
}
.sx-cat__media {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sx-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.sx-cat__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sx-cat__media--gradient {
  background: linear-gradient(135deg, var(--sx-red), var(--sx-red-dark));
  color: #fff;
  font-size: 32px;
}
.sx-cat__label {
  font-size: 13.5px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.01em;
}
.sx-cat--sale .sx-cat__label { color: var(--sx-red); }

/* ============================================================
   RICH SECTION HEADER — shared across Hot Deals / Bestseller / etc.
   ============================================================ */
.sx-rhead {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}
.sx-rhead__title {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Icon box — shared container for all section icons */
.sx-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  position: relative;
  flex-shrink: 0;
  animation: iconPulse 3s ease-in-out infinite;
}
.sx-icon-box svg {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.18));
}
@keyframes iconPulse {
  0%, 100% { transform: scale(1) rotate(-1.5deg); }
  50% { transform: scale(1.03) rotate(1.5deg); }
}

/* Per-icon gradient + shadow variants */
.sx-icon-box[data-i="flame"] {
  background: radial-gradient(circle at 35% 30%, #fff8d4 0%, #ffe3a0 28%, #ffb84d 60%, #ff8a00 100%);
  box-shadow: 0 8px 22px rgba(255, 138, 0, 0.30), 0 0 0 1px rgba(255, 184, 77, 0.25), inset 0 -2px 0 rgba(255, 138, 0, 0.18);
}
.sx-icon-box[data-i="star"] {
  background: radial-gradient(circle at 35% 30%, #fff8d4 0%, #ffe89a 30%, #f5b800 75%, #d99100 100%);
  box-shadow: 0 8px 22px rgba(217, 145, 0, 0.28), 0 0 0 1px rgba(245, 184, 0, 0.25), inset 0 -2px 0 rgba(217, 145, 0, 0.18);
}
.sx-icon-box[data-i="noodle"] {
  background: radial-gradient(circle at 35% 30%, #fff5e3 0%, #ffd99c 35%, #d49855 75%, #9c5e2d 100%);
  box-shadow: 0 8px 22px rgba(156, 94, 45, 0.25), 0 0 0 1px rgba(212, 152, 85, 0.25), inset 0 -2px 0 rgba(156, 94, 45, 0.15);
}
.sx-icon-box[data-i="bottle"] {
  background: radial-gradient(circle at 35% 30%, #ffd5d5 0%, #e88080 35%, #b03b48 75%, #8c1d2b 100%);
  box-shadow: 0 8px 22px rgba(140, 29, 43, 0.28), 0 0 0 1px rgba(176, 59, 72, 0.25), inset 0 -2px 0 rgba(140, 29, 43, 0.18);
}
.sx-icon-box[data-i="bbtea"] {
  background: radial-gradient(circle at 35% 30%, #f0d9e8 0%, #c896b8 35%, #8d5570 75%, #5e3a4d 100%);
  box-shadow: 0 8px 22px rgba(141, 85, 112, 0.25), 0 0 0 1px rgba(200, 150, 184, 0.22), inset 0 -2px 0 rgba(141, 85, 112, 0.16);
}
.sx-icon-box[data-i="spark"] {
  background: radial-gradient(circle at 35% 30%, #ffe3d4 0%, #ffb8b8 35%, #ff7a8e 75%, #d9304d 100%);
  box-shadow: 0 8px 22px rgba(217, 48, 77, 0.25), 0 0 0 1px rgba(255, 122, 142, 0.25), inset 0 -2px 0 rgba(217, 48, 77, 0.15);
}
.sx-icon-box[data-i="snow"] {
  background: radial-gradient(circle at 35% 30%, #e8f4ff 0%, #b0d4f5 35%, #6ba8d9 75%, #3a6ba0 100%);
  box-shadow: 0 8px 22px rgba(58, 107, 160, 0.25), 0 0 0 1px rgba(107, 168, 217, 0.25), inset 0 -2px 0 rgba(58, 107, 160, 0.15);
}

/* Backward compat: old .sx-flame still works (alias) */
.sx-flame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: radial-gradient(circle at 35% 30%, #fff8d4 0%, #ffe3a0 28%, #ffb84d 60%, #ff8a00 100%);
  box-shadow: 0 8px 22px rgba(255, 138, 0, 0.30), 0 0 0 1px rgba(255, 184, 77, 0.25), inset 0 -2px 0 rgba(255, 138, 0, 0.18);
  position: relative;
  animation: iconPulse 3s ease-in-out infinite;
  flex-shrink: 0;
}
.sx-flame svg {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.25));
}

.sx-stamp {
  display: inline-block;
  background: linear-gradient(135deg, #ff3a4d, var(--sx-red-dark));
  color: #fff;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.14em;
  padding: 4px 9px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
  box-shadow: 0 3px 10px rgba(230, 0, 35, 0.25);
}
.sx-stamp--gold {
  background: linear-gradient(135deg, #ffd24a, #c98700);
  color: #2a1c00;
  box-shadow: 0 3px 10px rgba(201, 135, 0, 0.28);
}
.sx-stamp--warm {
  background: linear-gradient(135deg, #ffb380, #c97849);
  color: #fff;
  box-shadow: 0 3px 10px rgba(201, 120, 73, 0.25);
}
.sx-stamp--red {
  background: linear-gradient(135deg, #c83a4d, #7a1020);
  color: #fff;
  box-shadow: 0 3px 10px rgba(122, 16, 32, 0.25);
}
.sx-stamp--plum {
  background: linear-gradient(135deg, #b88197, #5e3a4d);
  color: #fff;
  box-shadow: 0 3px 10px rgba(94, 58, 77, 0.25);
}
.sx-stamp--cool {
  background: linear-gradient(135deg, #7eb8d9, #3a6ba0);
  color: #fff;
  box-shadow: 0 3px 10px rgba(58, 107, 160, 0.25);
}

/* ============================================================
   COUNTDOWN — modern flash-deal pill cells
   ============================================================ */
.sx-countdown {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding: 10px 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(10, 10, 10, 0.06), 0 0 0 1px rgba(230, 0, 35, 0.08);
}
.sx-countdown__pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sx-red);
  box-shadow: 0 0 0 4px rgba(230, 0, 35, 0.18);
  flex-shrink: 0;
  animation: dotPulse 1.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.65; }
}
.sx-countdown__lbl {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sx-ink);
  white-space: nowrap;
}
.sx-countdown__cells {
  display: flex;
  align-items: center;
  gap: 2px;
}
.sx-countdown__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--sx-softer);
  border: 1px solid var(--sx-border);
  padding: 6px 10px 5px;
  border-radius: 8px;
  min-width: 46px;
  position: relative;
}
.sx-countdown__cell::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 25%;
  right: 25%;
  height: 2px;
  background: var(--sx-red);
  border-radius: 2px;
}
.sx-countdown__cell strong {
  display: block;
  font-size: 19px;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: var(--sx-ink);
  letter-spacing: -0.02em;
}
.sx-countdown__cell small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sx-muted);
  margin-top: 3px;
  font-weight: 700;
}
.sx-countdown__sep {
  color: var(--sx-red);
  font-weight: 900;
  font-size: 18px;
  align-self: flex-start;
  margin-top: 4px;
  animation: blink 1s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

@media (max-width: 989px) {
  .sx-rhead {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .sx-rhead__title { gap: 12px; }
  .sx-icon-box, .sx-flame { width: 52px; height: 52px; }
  .sx-icon-box svg, .sx-flame svg { width: 30px; height: 30px; }
  .sx-countdown { padding: 8px 10px; gap: 8px; }
  .sx-countdown__cell { padding: 5px 7px 4px; min-width: 38px; }
  .sx-countdown__cell strong { font-size: 15px; }
}

/* ============================================================
   PRODUCT GRID + CARDS
   ============================================================ */
.sx-grid {
  display: grid;
  gap: var(--sx-gap);
  list-style: none;
  padding: 0;
  margin: 0;
}
.sx-grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.sx-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.sx-card-wrap {
  list-style: none;
}

.sx-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: var(--sx-ink);
  background: #fff;
  border: 1px solid var(--sx-border);
  border-radius: var(--sx-radius);
  overflow: hidden;
  transition: all 0.15s;
  position: relative;
}
.sx-card:hover {
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--sx-shadow-md);
}

.sx-card__media {
  position: relative;
  aspect-ratio: 1;
  background: #ffffff;
  overflow: hidden;
  padding: 16px;
  box-sizing: border-box;
}
.sx-card__media .sx-card__img {
  position: absolute;
  inset: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  object-fit: contain;
  transition: opacity 0.45s ease, transform 0.5s ease;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.06));
  z-index: 1;
}
.sx-card__img--hover {
  opacity: 0;
  z-index: 2;
}
.sx-card:hover .sx-card__img--main { opacity: 0; transform: scale(0.98); }
.sx-card:hover .sx-card__img--hover { opacity: 1; transform: scale(1.05); }
/* Fallback when no secondary image exists */
.sx-card:hover .sx-card__img--main:only-child {
  opacity: 1;
  transform: scale(1.05) translateY(-2px);
}

/* Mini review stars */
.sx-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--sx-muted);
  margin: 4px 0 0;
  line-height: 1;
}
.sx-card__stars {
  display: inline-flex;
  gap: 1px;
}
.sx-star {
  font-size: 13px;
  color: #ddd;
  line-height: 1;
  font-family: serif;
}
.sx-star--on { color: #f5b800; }
.sx-star--half {
  background: linear-gradient(90deg, #f5b800 50%, #ddd 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sx-card__rating-num {
  font-weight: 800;
  color: var(--sx-ink);
  font-size: 12px;
}
.sx-card__rating-cnt {
  font-size: 11px;
  color: var(--sx-muted);
}

/* Card hover: subtle red glow + lift */
.sx-card-wrap .sx-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s, border-color 0.3s;
  border: 1px solid var(--sx-border);
  border-radius: 14px;
  overflow: hidden;
}
.sx-card__media-link,
.sx-card__body-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.sx-card__body-link { flex: 1; }

/* Title line-clamp 2 — consistent card height */
.sx-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
  line-height: 1.3;
}

/* ============================================================
   HANKO STAMP — Japanese red seal
   ============================================================ */
.sx-card__hanko {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #c8203a;
  color: #fff;
  border-radius: 50%;
  font-family: 'Noto Serif JP', serif;
  box-shadow:
    0 4px 12px rgba(200, 32, 58, 0.35),
    inset 0 -2px 4px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
  transform: rotate(-6deg);
  animation: hankoStamp 0.6s cubic-bezier(.34, 1.56, .64, 1) backwards;
  border: 2px solid #fff;
  pointer-events: none;
}
.sx-card__hanko::before {
  /* inner ring */
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}
.sx-card__hanko-kanji {
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  margin-top: 2px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}
.sx-card__hanko-label {
  font-family: 'Inter', sans-serif;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-top: 1px;
  opacity: 0.95;
}
.sx-card__hanko[data-h="vegan"] { background: #5e7a4c; box-shadow: 0 4px 12px rgba(94, 122, 76, 0.35), inset 0 -2px 4px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.20); }
.sx-card__hanko[data-h="best"] { background: #b8870a; box-shadow: 0 4px 12px rgba(184, 135, 10, 0.35), inset 0 -2px 4px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.20); }
.sx-card:hover .sx-card__hanko {
  transform: rotate(-3deg) scale(1.05);
  transition: transform 0.3s;
}
@keyframes hankoStamp {
  0%   { transform: rotate(-20deg) scale(1.5); opacity: 0; }
  60%  { transform: rotate(-3deg) scale(0.95); opacity: 1; }
  100% { transform: rotate(-6deg) scale(1); opacity: 1; }
}

/* ============================================================
   SUMI-E BRUSH-STYLE DISCOUNT BADGE
   ============================================================ */
.sx-card__badge--sale {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  width: 64px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  padding: 0;
  border: none;
  filter: drop-shadow(0 4px 10px rgba(200, 32, 58, 0.35));
}
.sx-card__badge-brush {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.sx-card__badge--sale > span:not(.sx-card__badge-brush) {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 900;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  font-family: 'Inter', sans-serif;
}

/* ============================================================
   BAMBOO SEPARATOR BEFORE CTA
   ============================================================ */
.sx-card__sep {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  margin-top: 12px;
}
.sx-card__sep-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sx-kinpaku, #c8a253);
  flex-shrink: 0;
}
.sx-card__sep-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sx-border), transparent);
}

/* ============================================================
   AJAX CART STATES + MOBILE FILLED CTA
   ============================================================ */
.sx-card__form { width: 100%; }
.sx-card__btn {
  width: 100%;
  cursor: pointer;
  position: relative;
}
.sx-card__btn-check {
  width: 18px;
  height: 18px;
  position: absolute;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.25s, transform 0.25s cubic-bezier(.34, 1.56, .64, 1);
}
.sx-card__btn--loading {
  color: transparent !important;
}
.sx-card__btn--loading .sx-card__btn-icon,
.sx-card__btn--loading .sx-card__btn-text { opacity: 0; }
.sx-card__btn--loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: var(--sx-red);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.sx-card__btn--done {
  background: #1fb556 !important;
  color: #fff !important;
  border-color: #1fb556 !important;
}
.sx-card__btn--done .sx-card__btn-icon,
.sx-card__btn--done .sx-card__btn-text { opacity: 0; }
.sx-card__btn--done .sx-card__btn-check { opacity: 1; transform: scale(1); position: static; }

/* Touch devices: filled red CTA always (more visible on mobile) */
@media (hover: none) {
  .sx-card__btn {
    background: var(--sx-red) !important;
    color: #fff !important;
    border-color: var(--sx-red) !important;
    box-shadow: 0 3px 10px rgba(230, 0, 35, 0.20);
  }
}

/* ============================================================
   CART TOAST (success notification)
   ============================================================ */
.sx-cart-toast {
  position: fixed;
  top: 100px;
  right: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--sx-border);
  border-left: 4px solid #1fb556;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translateX(20px) scale(.95);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(.34, 1.56, .64, 1);
  max-width: 360px;
  font-size: 13.5px;
}
.sx-cart-toast--show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.sx-cart-toast__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #1fb556;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
}
.sx-cart-toast__msg {
  flex: 1;
  font-weight: 600;
  color: var(--sx-ink);
  line-height: 1.3;
}
.sx-cart-toast__link {
  font-size: 12px;
  font-weight: 800;
  color: var(--sx-red);
  text-decoration: none;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(230, 0, 35, 0.08);
  transition: all 0.2s;
}
.sx-cart-toast__link:hover {
  background: var(--sx-red);
  color: #fff;
}

/* Header cart count bounce */
.sx-bounce {
  animation: cartCountBounce 0.5s cubic-bezier(.34, 1.56, .64, 1);
}
@keyframes cartCountBounce {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.4); }
  100% { transform: scale(1); }
}

@media (max-width: 600px) {
  .sx-cart-toast { top: auto; bottom: 80px; left: 12px; right: 12px; max-width: none; }
}
.sx-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 0, 35, 0.30);
  box-shadow:
    0 14px 32px rgba(230, 0, 35, 0.10),
    0 4px 12px rgba(10, 10, 10, 0.06);
}

/* Add-to-cart button micro-animation on click */
.sx-card__btn:active {
  transform: scale(0.96);
}
.sx-card__btn-icon {
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1.4);
}
.sx-card:hover .sx-card__btn-icon {
  animation: cartShake 0.5s ease-in-out;
}
@keyframes cartShake {
  0%, 100% { transform: translateX(0) rotate(0); }
  25% { transform: translateX(-2px) rotate(-8deg); }
  75% { transform: translateX(2px) rotate(8deg); }
}

/* Fav heart micro pulse on hover */
.sx-card__fav {
  transition: all 0.2s cubic-bezier(.2,.8,.2,1.4);
}
.sx-card__fav:hover {
  transform: scale(1.2);
  color: var(--sx-red) !important;
}

/* Discount badge gentle pulse for sale items */
.sx-card__badge--sale {
  animation: salePulse 2.5s ease-in-out infinite;
}
@keyframes salePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
.sx-card:hover .sx-card__media img {
  transform: scale(1.05);
}
.sx-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 32px;
  color: var(--sx-muted);
}

.sx-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  background: var(--sx-red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 4px 8px;
  border-radius: 3px;
  line-height: 1.2;
}
.sx-card__badge--out {
  background: var(--sx-muted);
}

.sx-card__fav {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(10, 10, 10, 0.06);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sx-ink);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
  transition: all 0.2s cubic-bezier(.34, 1.56, .64, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.sx-card__fav:hover {
  color: var(--sx-red);
  transform: scale(1.15);
  background: #fff;
  box-shadow: 0 4px 14px rgba(230, 0, 35, 0.18);
}
.sx-card__fav--on {
  color: var(--sx-red) !important;
  background: linear-gradient(135deg, #fff 0%, #ffe8ee 100%);
  border-color: rgba(230, 0, 35, 0.25);
  box-shadow: 0 4px 14px rgba(230, 0, 35, 0.25);
}
.sx-card__fav--pop {
  animation: favPop 0.5s cubic-bezier(.34, 1.56, .64, 1);
}

/* Quick view trigger on card (appears on hover, below fav) */
.sx-card__qv {
  position: absolute;
  top: 52px;
  right: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: rgba(10, 10, 10, 0.92);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s, transform 0.25s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
  backdrop-filter: blur(8px);
}
.sx-card__qv svg { flex-shrink: 0; }
.sx-card:hover .sx-card__qv {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.sx-card__qv:hover {
  background: var(--sx-red);
}
@media (hover: none) {
  .sx-card__qv { display: none; }
}
@keyframes favPop {
  0% { transform: scale(1); }
  30% { transform: scale(1.45); }
  60% { transform: scale(0.92); }
  100% { transform: scale(1); }
}

/* Wishlist count badge (header Liste link) */
.sx-h-side__count--wl {
  background: linear-gradient(135deg, #ff8a00, #e60023) !important;
}

/* Floating heart particles when adding to wishlist */
.sx-fav-particle {
  position: fixed;
  z-index: 1000;
  font-size: 20px;
  color: var(--sx-red);
  pointer-events: none;
  animation: favFloat 0.9s ease-out forwards;
  text-shadow: 0 2px 6px rgba(230, 0, 35, 0.45);
  font-family: serif;
}
@keyframes favFloat {
  0% { transform: translate(-50%, -50%) scale(0.5) rotate(0deg); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translate(calc(-50% + var(--dx, 0px)), -120px) scale(1.4) rotate(20deg); opacity: 0; }
}
.sx-fav-particle:nth-child(odd) { --dx: 18px; }
.sx-fav-particle:nth-child(even) { --dx: -18px; }

.sx-card__body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sx-card__brand {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sx-muted);
  margin-bottom: 4px;
}

.sx-card__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 8px;
  color: var(--sx-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}

.sx-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 2px;
}

.sx-card__price-now {
  font-size: 16px;
  font-weight: 800;
  color: var(--sx-ink);
}
.sx-card__price-now--sale {
  color: var(--sx-red);
  font-size: 17px;
}
.sx-card__price-old {
  font-size: 13px;
  color: var(--sx-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.sx-card__unit {
  font-size: 11.5px;
  color: var(--sx-muted);
  margin-bottom: 4px;
}

.sx-card__stock {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sx-red);
  background: rgba(230, 0, 35, 0.08);
  padding: 3px 7px;
  border-radius: 3px;
  margin-top: 4px;
  align-self: flex-start;
}

.sx-card__cta {
  margin-top: auto;
  padding-top: 12px;
}
/* Card CTA — clean outlined, minimal premium */
.sx-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--sx-ink);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all 0.2s cubic-bezier(.2,.8,.2,1);
  border: 1.5px solid var(--sx-ink);
  box-shadow: none;
}
.sx-card__btn-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke-width: 2.2;
  transition: transform 0.2s;
}
.sx-card:hover .sx-card__btn {
  background: var(--sx-ink);
  color: #fff;
  border-color: var(--sx-ink);
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(10, 10, 10, 0.18);
}
.sx-card:hover .sx-card__btn-icon {
  transform: translateX(-1px) rotate(-3deg);
}
.sx-card__btn--out {
  background: #fff;
  color: var(--sx-muted);
  border-color: var(--sx-border);
}
.sx-card:hover .sx-card__btn--out {
  background: #fff;
  color: var(--sx-muted);
  border-color: var(--sx-border);
  transform: none;
  box-shadow: none;
}

/* Bring card body slightly tighter to allow image breathing room */
.sx-card__body {
  padding: 4px 14px 14px;
}

/* ============================================================
   STREET FOOD WEEK — editorial dramatic promo
   ============================================================ */
.sx-promo {
  position: relative;
  max-width: 1440px;
  margin: 48px auto;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #0a0a0a;
  color: #fff;
  isolation: isolate;
}

/* ===== Background ===== */
.sx-promo__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.sx-promo__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: screen;
  will-change: transform;
}
.sx-promo__blob--1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #ff3a4d 0%, #b8001c 50%, transparent 70%);
  top: -160px;
  left: -100px;
  opacity: 0.65;
  animation: blobDrift1 18s ease-in-out infinite;
}
.sx-promo__blob--2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #ffb300 0%, #d12500 50%, transparent 70%);
  bottom: -120px;
  right: -100px;
  opacity: 0.55;
  animation: blobDrift2 22s ease-in-out infinite;
}
.sx-promo__blob--3 {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, #e60023 0%, transparent 65%);
  top: 30%;
  left: 40%;
  opacity: 0.45;
  animation: blobDrift3 26s ease-in-out infinite;
}
.sx-promo__seigaiha {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0 50%, transparent 19px, rgba(255, 255, 255, 0.05) 20px, rgba(255, 255, 255, 0.05) 21px, transparent 22px),
    radial-gradient(circle at 30px 50%, transparent 19px, rgba(255, 210, 74, 0.07) 20px, rgba(255, 210, 74, 0.07) 21px, transparent 22px),
    radial-gradient(circle at 60px 50%, transparent 19px, rgba(255, 255, 255, 0.05) 20px, rgba(255, 255, 255, 0.05) 21px, transparent 22px);
  background-size: 60px 60px;
  opacity: 0.5;
  animation: seigaihaDrift 30s linear infinite;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
.sx-promo__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.sx-promo__steam {
  position: absolute;
  width: 5px;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.18) 50%, transparent);
  border-radius: 50%;
  filter: blur(3px);
  animation: steamRise 5s linear infinite;
}
.sx-promo__steam--1 { left: 15%; bottom: 0; animation-delay: 0s; }
.sx-promo__steam--2 { left: 30%; bottom: 0; animation-delay: 1.7s; animation-duration: 6s; }
.sx-promo__steam--3 { left: 22%; bottom: 0; animation-delay: 3s; animation-duration: 4.5s; }
@keyframes steamRise {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  20%  { opacity: 0.8; }
  100% { transform: translateY(-260px) scale(2); opacity: 0; }
}

/* ===== Hanging Lantern (top-right) ===== */
.sx-promo__lantern {
  position: absolute;
  top: 0;
  right: 8%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-origin: 50% 0;
  animation: lanternSwing 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes lanternSwing {
  0%, 100% { transform: rotate(-2.5deg); }
  50%      { transform: rotate(2.5deg); }
}
.sx-promo__lantern-string {
  width: 1.5px;
  height: 28px;
  background: linear-gradient(180deg, transparent, #d4af37);
}
.sx-promo__lantern-body {
  width: 72px;
  height: 90px;
  position: relative;
  filter: drop-shadow(0 12px 24px rgba(230, 0, 35, 0.45));
}
.sx-promo__lantern-body svg { width: 100%; height: 100%; }
.sx-promo__lantern-glow {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 95, 95, 0.30) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  animation: lanternGlow 3s ease-in-out infinite;
}
@keyframes lanternGlow {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;   transform: translateX(-50%) scale(1.08); }
}

/* ===== Inner editorial split ===== */
.sx-promo__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  padding: 56px 56px;
  align-items: center;
  min-height: 380px;
}

/* LEFT — typography */
.sx-promo__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.sx-promo__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd24a;
}
.sx-promo__chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffd24a;
  box-shadow: 0 0 12px rgba(255, 210, 74, 0.8);
  animation: dotPulse 1.4s ease-in-out infinite;
}
.sx-promo__title {
  font-size: clamp(34px, 4.5vw, 56px) !important;
  font-weight: 900 !important;
  line-height: 1.02;
  letter-spacing: -0.025em !important;
  margin: 0 !important;
  color: #fff !important;
}
.sx-promo__title-accent {
  background: linear-gradient(135deg, #ffd24a 0%, #ff8a00 50%, #ff3a4d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: titleShimmer 6s ease-in-out infinite;
  display: inline-block;
}
@keyframes titleShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.sx-promo__sub {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  max-width: 42ch;
  margin: 4px 0 12px !important;
}
.sx-promo__sub strong {
  color: #fff;
  font-weight: 800;
  background: linear-gradient(180deg, transparent 60%, rgba(255, 138, 0, 0.35) 60%);
  padding: 0 2px;
}
.sx-promo__cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.sx-promo__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #ff8a00 0%, #e60023 100%);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 10px 30px rgba(230, 0, 35, 0.40),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: all 0.25s cubic-bezier(.2,.8,.2,1);
}
.sx-promo__cta:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 14px 38px rgba(230, 0, 35, 0.55);
}
.sx-promo__cta svg { width: 18px; height: 18px; transition: transform 0.25s; }
.sx-promo__cta:hover svg { transform: translateX(3px); }
.sx-promo__hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
}

/* RIGHT — floating dish cards */
.sx-promo__right {
  position: relative;
  height: 320px;
  min-width: 0;
}
.sx-pdish {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  color: #fff;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 10px 24px rgba(0, 0, 0, 0.30);
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
  white-space: nowrap;
}
.sx-pdish__emoji {
  font-size: 28px;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}
.sx-pdish b {
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.sx-pdish i {
  display: block;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.03em;
  margin-top: 1px;
}
.sx-pdish:hover {
  transform: translateY(-6px) scale(1.04) !important;
  border-color: rgba(255, 210, 74, 0.45);
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 14px 30px rgba(230, 0, 35, 0.30);
}

/* Floating positions with individual slow drift */
.sx-pdish--1 { top: 5%;   left: 5%;  animation: dishFloat1 7s ease-in-out infinite; }
.sx-pdish--2 { top: 25%;  right: 0;  animation: dishFloat2 8s ease-in-out infinite; }
.sx-pdish--3 { bottom: 25%; left: 20%; animation: dishFloat3 6s ease-in-out infinite; }
.sx-pdish--4 { bottom: 5%;  right: 18%; animation: dishFloat4 9s ease-in-out infinite; }

@keyframes dishFloat1 { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-10px) rotate(-1deg); } }
@keyframes dishFloat2 { 0%,100% { transform: translateY(0) rotate(2deg);  } 50% { transform: translateY(8px)  rotate(1deg); } }
@keyframes dishFloat3 { 0%,100% { transform: translateY(0) rotate(1deg);  } 50% { transform: translateY(-8px) rotate(-1deg); } }
@keyframes dishFloat4 { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(10px) rotate(2deg); } }

/* Responsive */
@media (max-width: 989px) {
  .sx-promo { margin: 32px 16px; border-radius: 18px; }
  .sx-promo__inner { grid-template-columns: 1fr; padding: 36px 28px 24px; min-height: auto; gap: 24px; }
  .sx-promo__right { height: 260px; }
  .sx-promo__lantern { right: 16px; transform: scale(0.7); transform-origin: 50% 0; }
  .sx-pdish__emoji { font-size: 22px; }
  .sx-pdish b { font-size: 13px; }
}
@media (max-width: 600px) {
  .sx-promo__inner { padding: 28px 20px 20px; }
  .sx-promo__right { height: 240px; }
  .sx-promo__lantern { display: none; }
  .sx-pdish { padding: 8px 14px 8px 10px; gap: 8px; }
  .sx-pdish__emoji { font-size: 20px; }
  .sx-pdish b { font-size: 12px; }
  .sx-pdish i { font-size: 10px; }
  .sx-promo__cta { padding: 12px 18px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .sx-promo__blob, .sx-promo__seigaiha, .sx-promo__steam, .sx-promo__lantern, .sx-promo__lantern-glow,
  .sx-promo__chip-dot, .sx-promo__title-accent, .sx-pdish {
    animation: none !important;
  }
}

/* ============================================================
   KOREA + JAPAN 2-UP — dramatic dark glass tiles
   ============================================================ */
.sx-countries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.sx-country {
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
  background: #0a0a0a;
  border-radius: 22px;
  overflow: hidden;
  min-height: 380px;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
}
.sx-country:hover {
  transform: translateY(-4px);
}
.sx-country__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.sx-country__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(75px);
  mix-blend-mode: screen;
  will-change: transform;
}
.sx-country--kr .sx-country__blob--a {
  width: 460px; height: 460px;
  background: radial-gradient(circle, #e60023 0%, #8c0018 50%, transparent 70%);
  top: -150px; right: -120px;
  opacity: 0.70;
  animation: blobDrift1 20s ease-in-out infinite;
}
.sx-country--kr .sx-country__blob--b {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #0a3b8c 0%, #1f3a7a 50%, transparent 70%);
  bottom: -120px; left: -100px;
  opacity: 0.55;
  animation: blobDrift2 24s ease-in-out infinite;
}
.sx-country--jp .sx-country__blob--a {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #ff5a5a 0%, #b8001c 50%, transparent 70%);
  top: -160px; right: -130px;
  opacity: 0.70;
  animation: blobDrift1 22s ease-in-out infinite;
}
.sx-country--jp .sx-country__blob--b {
  width: 360px; height: 360px;
  background: radial-gradient(circle, #ff8a00 0%, #d12500 50%, transparent 70%);
  bottom: -120px; left: -80px;
  opacity: 0.50;
  animation: blobDrift2 26s ease-in-out infinite;
}
.sx-country__seigaiha {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0 50%, transparent 19px, rgba(255, 255, 255, 0.04) 20px, rgba(255, 255, 255, 0.04) 21px, transparent 22px),
    radial-gradient(circle at 30px 50%, transparent 19px, rgba(255, 210, 74, 0.05) 20px, rgba(255, 210, 74, 0.05) 21px, transparent 22px);
  background-size: 60px 60px;
  opacity: 0.45;
  animation: seigaihaDrift 35s linear infinite;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}

/* Decorative Asian motif (taegeuk for KR, rising sun for JP) — bigger, more prominent right side */
.sx-country__motif {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  width: 360px;
  height: 360px;
  opacity: 0.35;
  animation: motifSpin 80s linear infinite;
  pointer-events: none;
}
.sx-country--jp .sx-country__motif {
  animation: motifBreath 7s ease-in-out infinite;
  opacity: 0.45;
}
@keyframes motifSpin {
  to { transform: rotate(360deg); }
}
@keyframes motifBreath {
  0%, 100% { transform: scale(1); opacity: 0.18; }
  50%      { transform: scale(1.08); opacity: 0.25; }
}

/* Floating dots inside country tiles */
.sx-country__dot {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 74, 0.7) 0%, transparent 70%);
  pointer-events: none;
}
.sx-country__dot--1 { width: 10px; height: 10px; left: 15%; bottom: -20px; animation: dotRise 14s linear infinite; }
.sx-country__dot--2 { width: 7px;  height: 7px;  left: 45%; bottom: -20px; animation: dotRise 18s linear infinite; animation-delay: 4s; }
.sx-country__dot--3 { width: 9px;  height: 9px;  left: 75%; bottom: -20px; animation: dotRise 16s linear infinite; animation-delay: 8s; background: radial-gradient(circle, rgba(255, 95, 95, 0.6) 0%, transparent 70%); }

/* Floating specialty pills (right side fill) */
.sx-country__pills {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.sx-cpill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px 7px 10px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 6px 18px rgba(0, 0, 0, 0.30);
  will-change: transform;
}
.sx-cpill > span { font-size: 14px; line-height: 1; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4)); }
.sx-cpill--1 { top: 12%;  right: 12%; animation: cpFloat1 7s ease-in-out infinite; }
.sx-cpill--2 { top: 28%;  right: 32%; animation: cpFloat2 8s ease-in-out infinite; }
.sx-cpill--3 { top: 48%;  right: 8%;  animation: cpFloat3 9s ease-in-out infinite; }
.sx-cpill--4 { top: 65%;  right: 28%; animation: cpFloat4 6.5s ease-in-out infinite; }
.sx-cpill--5 { top: 80%;  right: 14%; animation: cpFloat1 8.5s ease-in-out infinite; animation-delay: 1s; }

@keyframes cpFloat1 { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-8px) rotate(-1deg); } }
@keyframes cpFloat2 { 0%,100% { transform: translateY(0) rotate(2deg); }  50% { transform: translateY(6px)  rotate(0deg); } }
@keyframes cpFloat3 { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-10px) rotate(0deg); } }
@keyframes cpFloat4 { 0%,100% { transform: translateY(0) rotate(3deg); }  50% { transform: translateY(8px)  rotate(1deg); } }

/* Country content (left-anchored, leaves right side for motif+pills) */
.sx-country__content {
  position: relative;
  z-index: 3;
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  height: 100%;
  min-height: 400px;
  justify-content: flex-end;
  max-width: 56%;
}

@media (max-width: 749px) {
  .sx-country__content { max-width: 100%; }
  .sx-country__pills { display: none; }
}
.sx-country__top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sx-country__flag {
  font-size: 24px;
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}
.sx-country__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffd24a;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 12px;
  border-radius: 999px;
}
.sx-country__title {
  font-size: clamp(28px, 3.4vw, 40px) !important;
  font-weight: 900 !important;
  line-height: 1.02;
  letter-spacing: -0.025em !important;
  color: #fff !important;
  margin: 0 !important;
}
.sx-country__title-accent {
  background: linear-gradient(135deg, #ffd24a 0%, #ff8a00 50%, #ff3a4d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: titleShimmer 6s ease-in-out infinite;
  display: inline-block;
}
.sx-country__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.70);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.sx-country__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0 8px;
}
.sx-country__chips span {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.sx-country__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 138, 0, 0.20));
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: all 0.25s cubic-bezier(.2,.8,.2,1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.sx-country__cta svg { width: 16px; height: 16px; transition: transform 0.25s; }
.sx-country:hover .sx-country__cta {
  background: linear-gradient(135deg, #ff8a00 0%, #e60023 100%);
  border-color: rgba(255, 210, 74, 0.5);
  box-shadow: 0 8px 22px rgba(230, 0, 35, 0.40);
}
.sx-country:hover .sx-country__cta svg {
  transform: translateX(3px);
}

@media (max-width: 989px) {
  .sx-countries { grid-template-columns: 1fr; gap: 14px; }
  .sx-country { min-height: 320px; }
  .sx-country__content { padding: 28px 24px 24px; min-height: 320px; }
  .sx-country__motif { width: 220px; height: 220px; }
}

/* ============================================================
   RECIPE INSPIRATION — dramatic dark glass container
   ============================================================ */
.sx-rcp {
  position: relative;
  max-width: 1440px;
  margin: 48px auto;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #0a0a0a;
  color: #fff;
  isolation: isolate;
}
.sx-rcp__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.sx-rcp__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  mix-blend-mode: screen;
  will-change: transform;
}
.sx-rcp__blob--1 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, #ff8a00 0%, #b8001c 50%, transparent 70%);
  top: -180px; left: -120px;
  opacity: 0.60;
  animation: blobDrift1 22s ease-in-out infinite;
}
.sx-rcp__blob--2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, #5e7a4c 0%, #2d4520 50%, transparent 70%);
  top: -100px; right: -100px;
  opacity: 0.45;
  animation: blobDrift2 26s ease-in-out infinite;
}
.sx-rcp__blob--3 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, #e60023 0%, transparent 65%);
  bottom: -200px; left: 40%;
  opacity: 0.40;
  animation: blobDrift3 30s ease-in-out infinite;
}
.sx-rcp__seigaiha {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0 50%, transparent 19px, rgba(255, 255, 255, 0.04) 20px, rgba(255, 255, 255, 0.04) 21px, transparent 22px),
    radial-gradient(circle at 30px 50%, transparent 19px, rgba(255, 210, 74, 0.06) 20px, rgba(255, 210, 74, 0.06) 21px, transparent 22px);
  background-size: 64px 64px;
  opacity: 0.40;
  animation: seigaihaDrift 32s linear infinite;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
.sx-rcp__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.sx-rcp__steam {
  position: absolute;
  width: 4px;
  height: 100px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.20) 50%, transparent);
  border-radius: 50%;
  filter: blur(3px);
  animation: steamRise 6s linear infinite;
}
.sx-rcp__steam--1 { left: 12%; bottom: 0; animation-delay: 0s; }
.sx-rcp__steam--2 { left: 28%; bottom: 0; animation-delay: 1.4s; animation-duration: 5s; }
.sx-rcp__steam--3 { left: 50%; bottom: 0; animation-delay: 2.5s; animation-duration: 7s; }
.sx-rcp__steam--4 { left: 72%; bottom: 0; animation-delay: 3.2s; animation-duration: 5.5s; }
.sx-rcp__steam--5 { left: 88%; bottom: 0; animation-delay: 4.5s; }

.sx-rcp__inner {
  position: relative;
  z-index: 2;
  padding: 56px 48px;
}
.sx-rcp__head {
  text-align: center;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.sx-rcp__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffd24a;
}
.sx-rcp__chip-icon { display: flex; }
.sx-rcp__title {
  font-size: clamp(32px, 4.5vw, 52px) !important;
  font-weight: 900 !important;
  line-height: 1.02;
  letter-spacing: -0.025em !important;
  margin: 0 !important;
  color: #fff !important;
}
.sx-rcp__title-accent {
  background: linear-gradient(135deg, #ffd24a 0%, #ff8a00 50%, #ff3a4d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: titleShimmer 6s ease-in-out infinite;
  display: inline-block;
}
.sx-rcp__sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 56ch;
  line-height: 1.55;
  margin: 0;
}

/* Recipe cards in glass style on dark bg */
.sx-rcp__grid-recipes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sx-rcp-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 28px rgba(0, 0, 0, 0.30);
}
.sx-rcp-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 210, 74, 0.40);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 40px rgba(230, 0, 35, 0.25);
}
.sx-rcp-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.sx-rcp-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.sx-rcp-card:hover .sx-rcp-card__media img {
  transform: scale(1.08);
}
.sx-rcp-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.10em;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.sx-rcp-card__tag--hot  { background: linear-gradient(135deg, #ff8a00, #e60023); color: #fff; box-shadow: 0 4px 12px rgba(230, 0, 35, 0.45); }
.sx-rcp-card__tag--new  { background: linear-gradient(135deg, #ffd24a, #ff8a00); color: #2a1c00; box-shadow: 0 4px 12px rgba(255, 138, 0, 0.45); }
.sx-rcp-card__tag--chef { background: rgba(0, 0, 0, 0.55); color: #fff; border: 1px solid rgba(255, 255, 255, 0.20); }
.sx-rcp-card__time {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 10px;
  font-size: 10.5px;
  font-weight: 800;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  letter-spacing: 0.02em;
}
.sx-rcp-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sx-rcp-card__meta {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.55);
}
.sx-rcp-card__title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.005em;
  margin: 0;
  color: #fff;
  line-height: 1.25;
}
.sx-rcp-card__sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.45;
}
.sx-rcp-card__cta {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffd24a;
  margin-top: 4px;
  transition: gap 0.2s;
}
.sx-rcp-card:hover .sx-rcp-card__cta {
  color: #ff8a00;
}

.sx-rcp__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 36px auto 0;
  padding: 14px 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: all 0.25s cubic-bezier(.2,.8,.2,1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  align-self: center;
}
.sx-rcp__more svg { width: 16px; height: 16px; transition: transform 0.25s; }
.sx-rcp__more:hover {
  background: linear-gradient(135deg, #ff8a00 0%, #e60023 100%);
  border-color: rgba(255, 210, 74, 0.45);
  box-shadow: 0 10px 28px rgba(230, 0, 35, 0.40);
}
.sx-rcp__more:hover svg { transform: translateX(3px); }
.sx-rcp__inner > .sx-rcp__more { display: flex; }

@media (max-width: 989px) {
  .sx-rcp { margin: 32px 16px; border-radius: 18px; }
  .sx-rcp__inner { padding: 36px 24px; }
  .sx-rcp__grid-recipes { grid-template-columns: 1fr; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .sx-country__blob, .sx-country__seigaiha, .sx-country__motif, .sx-country__dot, .sx-country__title-accent,
  .sx-rcp__blob, .sx-rcp__seigaiha, .sx-rcp__steam, .sx-rcp__title-accent {
    animation: none !important;
  }
}

/* ============================================================
   SPLIT 2-UP
   ============================================================ */
.sx-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sx-gap);
}
.sx-split__tile {
  position: relative;
  min-height: 280px;
  border-radius: var(--sx-radius);
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: #fff;
  padding: 36px 32px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: transform 0.18s;
}
.sx-split__tile:hover { transform: scale(1.01); }
.sx-split__eyebrow {
  color: #fff;
  margin-bottom: 6px;
  display: inline-block;
}
.sx-split__title {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  margin: 0 0 6px;
  color: #fff;
}
.sx-split__tile p {
  margin: 0 0 14px;
  font-size: 14px;
  opacity: 0.9;
  color: #fff;
}

/* ============================================================
   BRANDS
   ============================================================ */
.sx-brands {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.sx-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--sx-soft);
  border-radius: var(--sx-radius);
  padding: 28px 12px;
  text-decoration: none;
  color: var(--sx-ink);
  transition: all 0.15s;
  border: 1px solid transparent;
  min-height: 110px;
}
.sx-brand:hover {
  background: #fff;
  border-color: var(--sx-border);
  box-shadow: var(--sx-shadow-md);
  transform: translateY(-2px);
}
.sx-brand__name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.sx-brand__country {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--sx-muted);
}

/* ============================================================
   RECIPES
   ============================================================ */
.sx-recipes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.sx-recipe {
  background: #fff;
  border-radius: var(--sx-radius);
  overflow: hidden;
  border: 1px solid var(--sx-border);
  text-decoration: none;
  color: var(--sx-ink);
  transition: all 0.18s;
  display: flex;
  flex-direction: column;
}
.sx-recipe:hover {
  transform: translateY(-4px);
  box-shadow: var(--sx-shadow-lg);
}
.sx-recipe__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sx-soft);
}
.sx-recipe__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.sx-recipe:hover .sx-recipe__media img { transform: scale(1.05); }
.sx-recipe__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--sx-red);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 3px;
}
.sx-recipe__body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sx-recipe__meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--sx-muted);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.sx-recipe__body h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  line-height: 1.2;
}
.sx-recipe__body p {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--sx-muted);
  line-height: 1.5;
  flex: 1;
}
.sx-recipe__cta {
  font-size: 14px;
  font-weight: 800;
  color: var(--sx-red);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.sx-reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.sx-review {
  background: var(--sx-soft);
  border-radius: var(--sx-radius);
  padding: 24px 26px;
  border: 1px solid var(--sx-border);
}
.sx-review__stars {
  color: var(--sx-yellow);
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.sx-review h4 {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.sx-review p {
  font-size: 14px;
  color: var(--sx-text);
  line-height: 1.55;
  margin: 0 0 12px;
}
.sx-review__author {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--sx-muted);
}

/* ============================================================
   NEWSLETTER (sx-nl) — dramatic dark with envelope icon + glass form
   ============================================================ */
.sx-nl {
  position: relative;
  max-width: 1440px;
  margin: 48px auto;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #0a0a0a;
  color: #fff;
  isolation: isolate;
}
.sx-nl__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.sx-nl__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  mix-blend-mode: screen;
  will-change: transform;
}
.sx-nl__blob--1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, #ff3a4d 0%, #b8001c 50%, transparent 70%);
  top: -180px; left: -120px;
  opacity: 0.65;
  animation: blobDrift1 22s ease-in-out infinite;
}
.sx-nl__blob--2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, #ffd24a 0%, #ff8a00 50%, transparent 70%);
  bottom: -160px; right: -100px;
  opacity: 0.45;
  animation: blobDrift2 26s ease-in-out infinite;
}
.sx-nl__seigaiha {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0 50%, transparent 19px, rgba(255, 255, 255, 0.04) 20px, rgba(255, 255, 255, 0.04) 21px, transparent 22px),
    radial-gradient(circle at 30px 50%, transparent 19px, rgba(255, 210, 74, 0.06) 20px, rgba(255, 210, 74, 0.06) 21px, transparent 22px);
  background-size: 60px 60px;
  opacity: 0.40;
  animation: seigaihaDrift 32s linear infinite;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}

.sx-nl__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  padding: 56px 48px;
  align-items: center;
}
.sx-nl__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sx-nl__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffd24a;
  align-self: flex-start;
}
.sx-nl__chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffd24a;
  box-shadow: 0 0 12px rgba(255, 210, 74, 0.7);
  animation: dotPulse 1.4s ease-in-out infinite;
}
.sx-nl__title {
  font-size: clamp(28px, 3.6vw, 44px) !important;
  font-weight: 900 !important;
  line-height: 1.05;
  letter-spacing: -0.025em !important;
  margin: 0 !important;
  color: #fff !important;
}
.sx-nl__title-accent {
  background: linear-gradient(135deg, #ffd24a 0%, #ff8a00 50%, #ff3a4d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: titleShimmer 6s ease-in-out infinite;
  display: inline-block;
}
.sx-nl__sub {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  max-width: 42ch;
  margin: 0 !important;
}
.sx-nl__sub strong { color: #fff; font-weight: 800; }
.sx-nl__perks {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.sx-nl__perks span {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  border-radius: 999px;
}

.sx-nl__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sx-nl__field {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-radius: 16px;
  padding: 6px 6px 6px 18px;
  transition: all 0.2s;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.sx-nl__field:focus-within {
  border-color: rgba(255, 210, 74, 0.6);
  box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.sx-nl__field-icon { display: flex; color: rgba(255, 255, 255, 0.55); margin-right: 12px; }
.sx-nl__field-icon svg { width: 20px; height: 20px; }
.sx-nl__field input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 13px 0;
  color: #fff;
  font-size: 15px;
  outline: none;
  min-width: 0;
  font-family: inherit;
}
.sx-nl__field input::placeholder { color: rgba(255, 255, 255, 0.45); }
.sx-nl__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #ff8a00 0%, #e60023 100%);
  color: #fff;
  border: 0;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(.2,.8,.2,1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 6px 18px rgba(230, 0, 35, 0.30);
}
.sx-nl__submit svg { width: 16px; height: 16px; transition: transform 0.2s; }
.sx-nl__submit:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 10px 24px rgba(230, 0, 35, 0.45); }
.sx-nl__submit:hover svg { transform: translateX(3px); }
.sx-nl__legal {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.01em;
}

@media (max-width: 989px) {
  .sx-nl { margin: 32px 16px; border-radius: 18px; overflow: hidden; }
  .sx-nl__inner {
    grid-template-columns: minmax(0, 1fr);
    padding: 32px 22px;
    gap: 20px;
    max-width: 100%;
  }
  .sx-nl__left, .sx-nl__right {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    overflow-wrap: anywhere;
  }
  .sx-nl__sub { max-width: 100%; }
  .sx-nl__form { width: 100%; min-width: 0; gap: 12px; }
  .sx-nl__field {
    padding: 6px 6px 6px 14px;
    min-width: 0;
    max-width: 100%;
    flex-wrap: nowrap;
  }
  .sx-nl__field-icon { margin-right: 8px; }
  .sx-nl__field-icon svg { width: 18px; height: 18px; }
  .sx-nl__field input {
    min-width: 0;
    flex: 1 1 0;
    width: 100%;
    font-size: 14px;
    padding: 11px 0;
  }
  .sx-nl__submit {
    flex-shrink: 0;
    padding: 10px 14px;
    font-size: 12.5px;
    gap: 6px;
  }
  .sx-nl__submit svg { width: 14px; height: 14px; }
}

/* ============================================================
   TRUST ROW — modern glass cards
   ============================================================ */
.sx-trust-row {
  background: #ffffff;
  padding: 48px 0;
}
.sx-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.sx-trust__cell {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 18px;
  background: #faf6ef;
  border: 1px solid #efe8db;
  border-radius: 16px;
  transition: all 0.25s cubic-bezier(.2,.8,.2,1);
  cursor: default;
}
.sx-trust__cell:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 0, 35, 0.30);
  box-shadow: 0 14px 30px rgba(230, 0, 35, 0.08);
  background: #fff;
}
.sx-trust__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(230, 0, 35, 0.12), rgba(255, 138, 0, 0.10));
  border: 1px solid rgba(230, 0, 35, 0.20);
  border-radius: 14px;
  color: #e60023;
  margin-bottom: 4px;
}
.sx-trust__icon svg { width: 26px; height: 26px; }
.sx-trust__cell strong {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--sx-ink);
  letter-spacing: -0.005em;
}
.sx-trust__cell span {
  font-size: 12.5px;
  color: var(--sx-muted);
  font-weight: 500;
}
@media (max-width: 749px) {
  .sx-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .sx-trust__cell { padding: 18px 12px; }
}

/* ============================================================
   CUSTOM FOOTER (sx-foot)
   ============================================================ */
.sx-foot {
  position: relative;
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.75);
  overflow: hidden;
  isolation: isolate;
  margin-top: 24px;
}
.sx-foot__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.sx-foot__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  mix-blend-mode: screen;
  will-change: transform;
}
.sx-foot__blob--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #b8001c 0%, transparent 70%);
  top: -200px; left: -100px;
  opacity: 0.45;
  animation: blobDrift1 28s ease-in-out infinite;
}
.sx-foot__blob--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #ffd24a 0%, transparent 70%);
  bottom: -120px; right: -80px;
  opacity: 0.25;
  animation: blobDrift2 32s ease-in-out infinite;
}
.sx-foot__seigaiha {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0 50%, transparent 19px, rgba(255, 255, 255, 0.025) 20px, rgba(255, 255, 255, 0.025) 21px, transparent 22px),
    radial-gradient(circle at 30px 50%, transparent 19px, rgba(255, 210, 74, 0.04) 20px, rgba(255, 210, 74, 0.04) 21px, transparent 22px);
  background-size: 70px 70px;
  opacity: 0.4;
  animation: seigaihaDrift 35s linear infinite;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, transparent 100%);
}

.sx-foot__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 32px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.sx-foot__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sx-foot__col--brand {
  max-width: 340px;
}
.sx-foot__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.sx-foot__logo-icon {
  font-size: 34px;
  color: #e60023;
  filter: drop-shadow(0 2px 6px rgba(230, 0, 35, 0.40));
}
.sx-foot__tagline {
  font-family: 'Noto Serif JP', serif;
  font-size: 10px;
  letter-spacing: 0.20em;
  font-weight: 700;
  color: rgba(255, 210, 74, 0.85);
  text-transform: uppercase;
  margin-top: -4px;
}
.sx-foot__desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 8px 0 0;
}
.sx-foot__social {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.sx-foot__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(.2,.8,.2,1);
}
.sx-foot__social a svg { width: 17px; height: 17px; }
.sx-foot__social a:hover {
  background: linear-gradient(135deg, #ff8a00, #e60023);
  border-color: transparent;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 18px rgba(230, 0, 35, 0.35);
}

.sx-foot__h {
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffd24a;
  margin: 0 0 4px;
  padding-bottom: 8px;
  position: relative;
}
.sx-foot__h::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #ff8a00, transparent);
  border-radius: 2px;
}
.sx-foot__col ul {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sx-foot__col ul a {
  color: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.sx-foot__col ul a:hover {
  color: #ffd24a;
  padding-left: 4px;
}
.sx-foot__sale {
  color: #ff8a00 !important;
  font-weight: 700 !important;
}
.sx-foot__contact {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.sx-foot__contact a {
  color: #ffd24a !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
}

/* Footer bottom */
.sx-foot__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}
.sx-foot__bottom-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.sx-foot__copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}
.sx-foot__payment {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.sx-foot__payment span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.80);
  text-transform: uppercase;
  transition: all 0.15s;
}
.sx-foot__payment span:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

@media (max-width: 989px) {
  .sx-foot__inner { grid-template-columns: 1fr 1fr; padding: 48px 24px 24px; gap: 28px; }
}
@media (max-width: 600px) {
  .sx-foot__inner { grid-template-columns: 1fr; }
  .sx-foot__bottom-inner { flex-direction: column; align-items: flex-start; padding: 16px 20px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .sx-grid--5 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sx-cats { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .sx-brands { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 850px) {
  :root { --sx-section-pad: 44px; --sx-page-pad: 18px; }
  .sx-hero { min-height: 460px; }
  .sx-hero__content { padding: 60px 18px; }
  .sx-grid--5,
  .sx-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sx-cats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sx-cat__media { width: 60px; height: 60px; }
  .sx-cat__label { font-size: 12px; }
  .sx-brands { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sx-recipes { grid-template-columns: 1fr; }
  .sx-reviews { grid-template-columns: 1fr; }
  .sx-split { grid-template-columns: 1fr; }
  .sx-promo__overlay { max-width: 100%; padding: 32px 24px; min-height: 280px; }
  .sx-newsletter__inner { grid-template-columns: 1fr; gap: 20px; }
  .sx-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .sx-section__head { gap: 12px; }
  .sx-section__head--flex .sx-countdown { order: 3; width: 100%; justify-content: flex-start; }
  .sx-countdown__cell { min-width: 38px; padding: 5px 6px 3px; }
  .sx-countdown__cell strong { font-size: 14px; }
}

@media (max-width: 480px) {
  .sx-cats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sx-grid--5,
  .sx-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .sx-card__body { padding: 10px 10px 12px; }
  .sx-hero__title { font-size: clamp(26px, 9vw, 38px); }
  .sx-hero__cta-row .sx-btn { flex: 1; }
}

/* ============================================================
   📜 STORY / B2B / CAREER pages — shared styles (sxst / sxb2b / sxcar)
   Neo-Edo light, vermillion + kinpaku
   ============================================================ */
.sxst {
  background: #ffffff;
  color: #1a1a1a;
  position: relative;
  overflow-x: clip;
}
.sxst__strip {
  height: 4px;
  background: linear-gradient(90deg, #c8203a 0%, #c8a253 50%, #c8203a 100%);
  background-size: 200% 100%;
  animation: sxlegStrip 8s linear infinite;
}
.sxst__wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.sxst__wrap--narrow { max-width: 880px; }
.sxst__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Serif JP', serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c8203a;
  margin-bottom: 12px;
}
.sxst__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #c8203a;
  box-shadow: 0 0 0 3px rgba(200, 32, 58, 0.18);
}
.sxst__h2 {
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: #1a1a1a;
}
.sxst__h2 em {
  font-style: italic;
  font-weight: 900;
  background: linear-gradient(135deg, #ffd24a 0%, #ff8a00 50%, #ff3a4d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sxst__head { margin-bottom: 36px; }
.sxst__head--center { text-align: center; }
.sxst__head--center .sxst__eyebrow { justify-content: center; }
.sxst__head-sub {
  max-width: 64ch;
  margin: 8px auto 0;
  font-size: 15.5px;
  color: rgba(26, 26, 26, 0.65);
  line-height: 1.55;
}

/* ===== HERO ===== */
.sxst-hero {
  position: relative;
  background: linear-gradient(180deg, #faf6ef 0%, #ffffff 100%);
  padding: 64px 0 56px;
  overflow: hidden;
  isolation: isolate;
}
.sxst-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.sxst-hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.sxst-hero__blob--1 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.16) 0%, transparent 65%);
  top: -180px; left: -120px;
}
.sxst-hero__blob--2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(200, 32, 58, 0.14) 0%, transparent 65%);
  bottom: -160px; right: -100px;
}
.sxst-hero__kanji {
  position: absolute;
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  font-size: clamp(220px, 26vw, 380px);
  color: rgba(200, 32, 58, 0.05);
  bottom: -50px;
  right: 4%;
  line-height: 0.8;
  user-select: none;
}
.sxst-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.sxst-hero__title {
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 0 0 18px;
  color: #1a1a1a;
}
.sxst-hero__title-accent {
  background: linear-gradient(135deg, #ffd24a 0%, #ff8a00 50%, #ff3a4d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.sxst-hero__sub {
  max-width: 72ch;
  margin: 0 auto 28px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.75);
}
.sxst-hero__sub strong { color: #1a1a1a; font-weight: 800; }
.sxst-hero__ctas {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.sxst-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.18s, background 0.18s, color 0.18s;
}
.sxst-hero__cta--primary {
  background: linear-gradient(135deg, #ff8a00 0%, #e60023 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(230, 0, 35, 0.28);
}
.sxst-hero__cta--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(230, 0, 35, 0.38); }
.sxst-hero__cta--ghost {
  background: #fff;
  border: 1.5px solid rgba(26, 26, 26, 0.16);
  color: #1a1a1a;
}
.sxst-hero__cta--ghost:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.sxst-hero__cta--ghost-dark {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  backdrop-filter: blur(6px);
}
.sxst-hero__cta--ghost-dark:hover { background: #fff; color: #1a1a1a; }

/* ===== MISSION (story page) ===== */
.sxst-mission { padding: 80px 0 64px; }
.sxst-mission__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.sxst-mission__left p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.75);
  margin: 0 0 16px;
}
.sxst-mission__left p strong { color: #1a1a1a; font-weight: 800; }
.sxst-mission__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.sxst-mission__card {
  background: linear-gradient(180deg, #faf6ef 0%, #fff 100%);
  border: 1px solid rgba(200, 162, 83, 0.22);
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sxst-mission__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #c8203a, #c8a253);
}
.sxst-mission__card-icon { font-size: 28px; display: block; margin-bottom: 6px; }
.sxst-mission__card strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}
.sxst-mission__card span {
  display: block;
  font-size: 12.5px;
  color: rgba(26, 26, 26, 0.6);
  margin-top: 4px;
  line-height: 1.4;
}

/* ===== TIMELINE ===== */
.sxst-timeline {
  background: #faf6ef;
  padding: 80px 0 64px;
}
.sxst-timeline__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  position: relative;
}
.sxst-timeline__list::before {
  content: '';
  position: absolute;
  left: 56px;
  top: 18px; bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, #c8203a, #c8a253);
  opacity: 0.4;
}
.sxst-timeline__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: start;
  position: relative;
  padding-left: 0;
}
.sxst-timeline__year {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 900;
  color: #c8203a;
  background: #fff;
  border: 2px solid #c8203a;
  border-radius: 999px;
  padding: 6px 16px;
  display: inline-block;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
  text-align: center;
  align-self: start;
}
.sxst-timeline__body {
  background: #fff;
  border: 1px solid rgba(200, 162, 83, 0.22);
  border-radius: 12px;
  padding: 18px 22px;
}
.sxst-timeline__body h3 {
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 6px;
  color: #1a1a1a;
}
.sxst-timeline__body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.7);
  margin: 0;
}

/* ===== VALUES ===== */
.sxst-values { padding: 80px 0 64px; }
.sxst-values__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.sxst-value {
  background: #fff;
  border: 1px solid rgba(200, 162, 83, 0.18);
  border-radius: 16px;
  padding: 26px 22px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.sxst-value:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 32, 58, 0.35);
  box-shadow: 0 12px 28px rgba(26, 26, 26, 0.06);
}
.sxst-value__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 14px;
}
.sxst-value__icon[data-c="red"] { background: linear-gradient(135deg, #ffd5d5, #b03b48); }
.sxst-value__icon[data-c="gold"] { background: linear-gradient(135deg, #fff2cc, #c8a253); }
.sxst-value__icon[data-c="ink"] { background: linear-gradient(135deg, #d4d4d4, #1a1a1a); color: #fff; }
.sxst-value__icon[data-c="matcha"] { background: linear-gradient(135deg, #e2efd0, #5e7a4c); }
.sxst-value__icon[data-c="plum"] { background: linear-gradient(135deg, #f0d9e8, #8d5570); }
.sxst-value__icon[data-c="terracotta"] { background: linear-gradient(135deg, #f0d4be, #b86a3d); }
.sxst-value h3 {
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 8px;
  color: #1a1a1a;
  letter-spacing: -0.015em;
}
.sxst-value p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.7);
  margin: 0;
}

/* ===== QUOTE ===== */
.sxst-quote {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1a1a 50%, #4a1822 100%);
  color: #fff;
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.sxst-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255, 138, 0, 0.18) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(200, 32, 58, 0.18) 0%, transparent 50%);
  pointer-events: none;
}
.sxst-quote__mark {
  position: absolute;
  top: 30px;
  left: 20%;
  font-family: 'Noto Serif JP', serif;
  font-size: 220px;
  font-weight: 900;
  color: rgba(255, 210, 74, 0.12);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.sxst-quote__text {
  position: relative;
  z-index: 1;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 32px;
  color: #fff;
  letter-spacing: -0.01em;
}
.sxst-quote__by {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: left;
}
.sxst-quote__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd24a, #ff8a00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(255, 138, 0, 0.35);
}
.sxst-quote__by strong { display: block; font-size: 15px; font-weight: 800; color: #fff; }
.sxst-quote__by span { display: block; font-size: 12px; color: rgba(255, 255, 255, 0.6); letter-spacing: 0.03em; }

/* ===== ORIGINS ===== */
.sxst-origins { padding: 80px 0 64px; background: #faf6ef; }
.sxst-origins__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.sxst-origin {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  border: 1px solid rgba(200, 162, 83, 0.2);
  border-radius: 14px;
  padding: 22px 20px;
  text-decoration: none;
  color: #1a1a1a;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.sxst-origin:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 32, 58, 0.35);
  box-shadow: 0 12px 28px rgba(26, 26, 26, 0.06);
}
.sxst-origin__flag { font-size: 32px; margin-bottom: 6px; }
.sxst-origin strong { font-size: 16px; font-weight: 900; }
.sxst-origin span { font-size: 12.5px; color: rgba(26, 26, 26, 0.55); }
.sxst-origin em { font-size: 12.5px; color: #c8203a; font-style: normal; font-weight: 700; margin-top: 2px; }

/* ===== CTA box ===== */
.sxst-cta { padding: 64px 0 80px; }
.sxst-cta__box {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1414 100%);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sxst-cta__box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 138, 0, 0.2) 0%, transparent 50%);
}
.sxst-cta__lantern {
  position: relative;
  z-index: 1;
  font-size: 56px;
  display: inline-block;
  margin-bottom: 12px;
  filter: drop-shadow(0 6px 14px rgba(255, 138, 0, 0.4));
}
.sxst-cta__box h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  color: #fff;
}
.sxst-cta__box p {
  position: relative;
  z-index: 1;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 22px;
}
.sxst-cta__buttons {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== B2B Stats row ===== */
.sxb2b-stats { padding: 56px 0; background: #faf6ef; border-block: 1px solid rgba(200, 162, 83, 0.18); }
.sxb2b-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
}
.sxb2b-stats__item { padding: 12px; }
.sxb2b-stats__item strong {
  display: block;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 900;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, #ff8a00, #c8203a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.sxb2b-stats__item span {
  display: block;
  font-size: 13px;
  color: rgba(26, 26, 26, 0.65);
  margin-top: 8px;
  line-height: 1.4;
}

/* ===== B2B steps ===== */
.sxb2b-steps { padding: 80px 0; }
.sxb2b-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.sxb2b-steps__item {
  background: #fff;
  border: 1px solid rgba(200, 162, 83, 0.22);
  border-radius: 16px;
  padding: 26px 22px;
  position: relative;
}
.sxb2b-steps__num {
  display: inline-block;
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px #c8203a;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
  line-height: 1;
}
.sxb2b-steps__item h3 {
  font-size: 17px;
  font-weight: 900;
  margin: 0 0 8px;
  color: #1a1a1a;
}
.sxb2b-steps__item p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(26, 26, 26, 0.7);
  margin: 0;
}

/* ===== B2B FAQ ===== */
.sxb2b-faq { padding: 80px 0; background: #faf6ef; }
.sxb2b-faq__list { display: flex; flex-direction: column; gap: 10px; }
.sxb2b-faq details {
  background: #fff;
  border: 1px solid rgba(200, 162, 83, 0.2);
  border-radius: 12px;
  padding: 4px 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sxb2b-faq details[open] {
  border-color: rgba(200, 32, 58, 0.3);
  box-shadow: 0 6px 18px rgba(26, 26, 26, 0.04);
}
.sxb2b-faq summary {
  cursor: pointer;
  font-size: 15.5px;
  font-weight: 700;
  padding: 16px 20px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #1a1a1a;
}
.sxb2b-faq summary::-webkit-details-marker { display: none; }
.sxb2b-faq summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: #c8203a;
  transition: transform 0.2s;
}
.sxb2b-faq details[open] summary::after { transform: rotate(45deg); }
.sxb2b-faq details p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.7);
}

/* ===== B2B + Career form ===== */
.sxb2b-form { padding: 80px 0; }
.sxb2b-form__form {
  background: #fff;
  border: 1px solid rgba(200, 162, 83, 0.22);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sxb2b-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sxb2b-form__field { display: flex; flex-direction: column; gap: 6px; }
.sxb2b-form__field span {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.65);
}
.sxb2b-form__field input,
.sxb2b-form__field select,
.sxb2b-form__field textarea {
  width: 100%;
  background: #faf6ef;
  border: 1.5px solid rgba(200, 162, 83, 0.25);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14.5px;
  font-family: inherit;
  color: #1a1a1a;
  transition: border-color 0.15s, background 0.15s;
}
.sxb2b-form__field input:focus,
.sxb2b-form__field select:focus,
.sxb2b-form__field textarea:focus {
  outline: none;
  border-color: #c8203a;
  background: #fff;
}
.sxb2b-form__field textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.sxb2b-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #ff8a00 0%, #e60023 100%);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.18s;
  align-self: flex-start;
  margin-top: 8px;
  box-shadow: 0 6px 18px rgba(230, 0, 35, 0.28);
}
.sxb2b-form__submit:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(230, 0, 35, 0.38); }
.sxb2b-form__note {
  font-size: 12px;
  color: rgba(26, 26, 26, 0.55);
  margin: 4px 0 0;
}
.sxb2b-form__note a { color: #c8203a; text-decoration: underline; }
.sxb2b-form__success {
  background: linear-gradient(135deg, #e6f7e6, #d1f1d1);
  border: 1px solid #5cb85c;
  border-radius: 12px;
  padding: 16px 20px;
  color: #2d5a2d;
}
.sxb2b-form__success span { display: inline-block; font-size: 22px; font-weight: 900; margin-right: 8px; }
.sxb2b-form__success strong { font-weight: 800; }
.sxb2b-form__success p { margin: 4px 0 0; font-size: 14px; }
.sxb2b-form__error {
  background: linear-gradient(135deg, #ffe6e6, #ffd4d4);
  border: 1px solid #c8203a;
  border-radius: 12px;
  padding: 14px 18px;
  color: #8c1d2b;
}
.sxb2b-form__error ul { margin: 6px 0 0; padding-left: 22px; font-size: 13.5px; }

/* ===== Career jobs ===== */
.sxcar-jobs { padding: 80px 0 60px; background: #faf6ef; }
.sxcar-jobs__list { display: flex; flex-direction: column; gap: 12px; }
.sxcar-job {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  background: #fff;
  border: 1px solid rgba(200, 162, 83, 0.22);
  border-radius: 14px;
  padding: 22px 24px;
  text-decoration: none;
  color: #1a1a1a;
  align-items: center;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.sxcar-job:hover {
  transform: translateX(4px);
  border-color: rgba(200, 32, 58, 0.4);
  box-shadow: 0 8px 22px rgba(26, 26, 26, 0.06);
}
.sxcar-job__tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
}
.sxcar-job__tag--ops { background: rgba(200, 32, 58, 0.12); color: #8c1d2b; }
.sxcar-job__tag--marketing { background: rgba(200, 162, 83, 0.20); color: #8e7028; }
.sxcar-job__tag--product { background: rgba(94, 122, 76, 0.18); color: #3d5e2d; }
.sxcar-job__tag--support { background: rgba(141, 85, 112, 0.18); color: #5e3a4d; }
.sxcar-job__tag--tech { background: rgba(58, 107, 160, 0.18); color: #2e567f; }
.sxcar-job h3 {
  font-size: 19px;
  font-weight: 900;
  margin: 0 0 4px;
  letter-spacing: -0.015em;
  color: #1a1a1a;
}
.sxcar-job p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(26, 26, 26, 0.7);
  margin: 0;
}
.sxcar-job__right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.sxcar-job__meta {
  font-size: 12px;
  color: rgba(26, 26, 26, 0.55);
  letter-spacing: 0.02em;
}
.sxcar-job__cta {
  font-size: 13px;
  font-weight: 800;
  color: #c8203a;
  letter-spacing: 0.02em;
}

/* ===== MOBILE (≤989px) ===== */
@media (max-width: 989px) {
  .sxst__wrap { padding: 0 18px; }
  .sxst-hero { padding: 40px 0 36px; }
  .sxst-hero__title { font-size: 30px !important; }
  .sxst-hero__sub { font-size: 14.5px; }
  .sxst-hero__cta { padding: 12px 18px; font-size: 13px; }
  .sxst-hero__kanji { font-size: clamp(160px, 38vw, 240px); opacity: 0.06; }

  .sxst-mission { padding: 48px 0 36px; }
  .sxst-mission__grid { grid-template-columns: 1fr; gap: 28px; }
  .sxst-mission__right { grid-template-columns: 1fr 1fr; }
  .sxst__h2 { font-size: 24px; }

  .sxst-timeline { padding: 48px 0 36px; }
  .sxst-timeline__list::before { left: 22px; }
  .sxst-timeline__item { grid-template-columns: 60px 1fr; gap: 12px; }
  .sxst-timeline__year { font-size: 14px; padding: 4px 8px; min-width: 60px; }
  .sxst-timeline__body { padding: 14px 16px; }
  .sxst-timeline__body h3 { font-size: 16px; }
  .sxst-timeline__body p { font-size: 13.5px; }

  .sxst-values { padding: 48px 0 36px; }
  .sxst-values__grid { grid-template-columns: 1fr; gap: 14px; }
  .sxst-value { padding: 20px 18px; }
  .sxst-value__icon { width: 44px; height: 44px; font-size: 22px; }

  .sxst-quote { padding: 56px 0 44px; }
  .sxst-quote__text { font-size: 18px; }
  .sxst-quote__mark { font-size: 140px; top: 10px; left: 10px; }

  .sxst-origins { padding: 48px 0 36px; }
  .sxst-origins__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .sxst-origin { padding: 16px 14px; }
  .sxst-origin__flag { font-size: 26px; }

  .sxst-cta { padding: 36px 0 48px; }
  .sxst-cta__box { padding: 36px 22px; border-radius: 16px; }
  .sxst-cta__box h2 { font-size: 22px; }
  .sxst-cta__box p { font-size: 14px; }

  .sxb2b-stats { padding: 32px 0; }
  .sxb2b-stats__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .sxb2b-stats__item strong { font-size: 24px; }
  .sxb2b-stats__item span { font-size: 11.5px; }

  .sxb2b-steps { padding: 48px 0; }
  .sxb2b-steps__list { grid-template-columns: 1fr; gap: 12px; }
  .sxb2b-steps__item { padding: 18px 18px; }

  .sxb2b-faq { padding: 48px 0; }
  .sxb2b-faq summary { padding: 14px 16px; font-size: 14.5px; }
  .sxb2b-faq details p { padding: 0 16px 14px; font-size: 13.5px; }

  .sxb2b-form { padding: 48px 0; }
  .sxb2b-form__form { padding: 22px 18px; gap: 12px; }
  .sxb2b-form__row { grid-template-columns: 1fr; gap: 12px; }
  .sxb2b-form__submit { width: 100%; align-self: stretch; }

  .sxcar-jobs { padding: 48px 0 36px; }
  .sxcar-job { grid-template-columns: 1fr; gap: 10px; padding: 18px 18px; }
  .sxcar-job__right { flex-direction: row; align-items: center; justify-content: space-between; text-align: left; }
  .sxcar-job h3 { font-size: 17px; }
  .sxcar-job p { font-size: 13.5px; }
}

/* ============================================================
   👤 ACCOUNT PAGES — Login / Register / Dashboard / Addresses / Order
   Class prefix: .sxa (Sebuya Account) — Neo-Edo light
   ============================================================ */
.sxa {
  background: #ffffff;
  color: #1a1a1a;
  min-height: calc(100vh - 200px);
  position: relative;
  overflow: hidden;
}
.sxa__strip {
  height: 4px;
  background: linear-gradient(90deg, #c8203a 0%, #c8a253 50%, #c8203a 100%);
  background-size: 200% 100%;
  animation: sxlegStrip 8s linear infinite;
}

/* ===== Split layout (login / register) ===== */
.sxa__split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 720px;
}

/* LEFT brand panel */
.sxa__brand {
  position: relative;
  background: linear-gradient(160deg, #2a1414 0%, #1a0a0a 60%, #4a1822 100%);
  color: #fff;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  isolation: isolate;
}
.sxa__brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 138, 0, 0.20) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(200, 32, 58, 0.25) 0%, transparent 55%);
  pointer-events: none;
  z-index: -1;
}
.sxa__brand--reverse::before {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 210, 74, 0.20) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(200, 32, 58, 0.25) 0%, transparent 55%);
}
.sxa__brand-kanji {
  position: absolute;
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  font-size: 320px;
  color: rgba(255, 210, 74, 0.06);
  bottom: -60px;
  right: -10px;
  line-height: 0.8;
  user-select: none;
  z-index: 0;
}
.sxa__brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.sxa__brand-logo span { font-size: 22px; }
.sxa__brand-logo strong {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #fff 0%, #ffd24a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sxa__brand-eyebrow {
  position: relative;
  z-index: 1;
  font-family: 'Noto Serif JP', serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #ffd24a;
  text-transform: uppercase;
}
.sxa__brand-title {
  position: relative;
  z-index: 1;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}
.sxa__brand-sub {
  position: relative;
  z-index: 1;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 40ch;
}
.sxa__brand-perks {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 12px 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sxa__brand-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.88);
}
.sxa__brand-perks li span { font-size: 16px; }
.sxa__brand-rating {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: #ffd24a;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.sxa__brand-rating em { color: rgba(255, 255, 255, 0.85); font-style: normal; font-weight: 700; }

/* RIGHT form panel */
.sxa__panel {
  background: #ffffff;
  padding: 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sxa__panel-head { margin-bottom: 24px; }
.sxa__panel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c8203a;
  margin-bottom: 10px;
}
.sxa__panel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #c8203a;
  box-shadow: 0 0 0 3px rgba(200, 32, 58, 0.18);
}
.sxa__panel-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: #1a1a1a;
}
.sxa__panel-sub {
  font-size: 14.5px;
  color: rgba(26, 26, 26, 0.65);
  margin: 0;
  line-height: 1.55;
}
.sxa__panel-sub a { color: #c8203a; text-decoration: none; font-weight: 700; }
.sxa__panel-sub a:hover { text-decoration: underline; }
.sxa__panel-sub-title { font-size: 18px; font-weight: 900; margin: 8px 0 4px; color: #1a1a1a; }

/* ===== Form ===== */
.sxa__form { display: flex; flex-direction: column; gap: 14px; max-width: 440px; }
.sxa__field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sxa__field { display: flex; flex-direction: column; gap: 6px; position: relative; }
.sxa__field > span {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.65);
}
.sxa__field input,
.sxa__field select,
.sxa__field textarea {
  width: 100%;
  background: #faf6ef;
  border: 1.5px solid rgba(200, 162, 83, 0.25);
  border-radius: 10px;
  padding: 13px 14px;
  font-size: 14.5px;
  font-family: inherit;
  color: #1a1a1a;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.sxa__field input:focus,
.sxa__field select:focus,
.sxa__field textarea:focus {
  outline: none;
  border-color: #c8203a;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200, 32, 58, 0.12);
}
.sxa__forgot {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 12px;
  color: #c8203a;
  text-decoration: none;
  font-weight: 700;
}
.sxa__forgot:hover { text-decoration: underline; }
.sxa__hint { font-size: 11.5px; color: rgba(26, 26, 26, 0.55); margin-top: 2px; }
.sxa__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(26, 26, 26, 0.75);
  cursor: pointer;
}
.sxa__check input { width: 17px; height: 17px; margin-top: 1px; accent-color: #c8203a; flex-shrink: 0; }
.sxa__legal { font-size: 12px; color: rgba(26, 26, 26, 0.55); line-height: 1.55; margin: 0; }
.sxa__legal a { color: #c8203a; text-decoration: underline; }

/* Buttons */
.sxa__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #ff8a00 0%, #e60023 100%);
  color: #fff;
  border: 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 6px 18px rgba(230, 0, 35, 0.28);
}
.sxa__submit:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(230, 0, 35, 0.38); }
.sxa__submit--inline { padding: 10px 18px; font-size: 13px; }
.sxa__ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 24px;
  background: #fff;
  border: 1.5px solid rgba(200, 162, 83, 0.3);
  color: #1a1a1a;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.sxa__ghost:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.sxa__ghost--small { padding: 7px 14px; font-size: 12.5px; }
.sxa__ghost--danger { color: #c8203a; border-color: rgba(200, 32, 58, 0.3); }
.sxa__ghost--danger:hover { background: #c8203a; color: #fff; border-color: #c8203a; }
.sxa__btn-row { display: flex; gap: 10px; flex-wrap: wrap; }
.sxa__btn-row .sxa__submit { flex: 1; }
.sxa__btn-row .sxa__ghost { flex: 0 0 auto; }
.sxa__sep {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 6px 0;
  font-size: 12px;
  color: rgba(26, 26, 26, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.sxa__sep i { flex: 1; height: 1px; background: rgba(200, 162, 83, 0.3); }
.sxa__sep em { font-style: normal; font-weight: 700; }

/* Alerts */
.sxa__alert {
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.5;
}
.sxa__alert strong { display: block; font-weight: 800; margin-bottom: 4px; }
.sxa__alert p { margin: 0; }
.sxa__alert ul { margin: 6px 0 0; padding-left: 22px; font-size: 13px; }
.sxa__alert--error { background: linear-gradient(135deg, #ffe6e6, #ffd4d4); color: #8c1d2b; border: 1px solid #c8203a; }
.sxa__alert--success { background: linear-gradient(135deg, #e6f7e6, #d1f1d1); color: #2d5a2d; border: 1px solid #5cb85c; }

/* Recover form */
.sxa__recover {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(200, 162, 83, 0.22);
}

/* ============================================================
   DASHBOARD (sxa-dash)
   ============================================================ */
.sxa-dash {
  background: #faf6ef;
}
.sxa-dash__hero {
  background: linear-gradient(180deg, #fff 0%, #faf6ef 100%);
  border-bottom: 1px solid rgba(200, 162, 83, 0.18);
  padding: 48px 0 36px;
}
.sxa-dash__hero--compact { padding: 32px 0 24px; }
.sxa-dash__hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.sxa-dash__crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(26, 26, 26, 0.55);
  margin-bottom: 14px;
}
.sxa-dash__crumb a { color: rgba(26, 26, 26, 0.7); text-decoration: none; }
.sxa-dash__crumb a:hover { color: #c8203a; }
.sxa-dash__crumb span[aria-hidden] { opacity: 0.4; }
.sxa-dash__greeting {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 900;
  letter-spacing: -0.025em;
  margin: 6px 0 8px;
  color: #1a1a1a;
  line-height: 1.1;
}
.sxa-dash__name {
  background: linear-gradient(135deg, #ff8a00 0%, #c8203a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.sxa-dash__sub {
  font-size: 15px;
  color: rgba(26, 26, 26, 0.65);
  margin: 0;
  line-height: 1.55;
  max-width: 64ch;
}
.sxa-dash__sub strong { color: #1a1a1a; font-weight: 800; }

.sxa-dash__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 32px 64px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

/* Sidebar */
.sxa-dash__side {
  position: sticky;
  top: 92px;
  background: #fff;
  border: 1px solid rgba(200, 162, 83, 0.2);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sxa-dash__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8a00, #e60023);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 8px;
  box-shadow: 0 6px 18px rgba(230, 0, 35, 0.28);
}
.sxa-dash__side-name { font-size: 15px; font-weight: 900; color: #1a1a1a; }
.sxa-dash__side-email { font-size: 12.5px; color: rgba(26, 26, 26, 0.55); margin-bottom: 12px; }
.sxa-dash__chip {
  display: inline-block;
  background: rgba(200, 32, 58, 0.10);
  color: #8c1d2b;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 14px;
}
.sxa-dash__nav { display: flex; flex-direction: column; gap: 2px; margin-top: 6px; }
.sxa-dash__nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: rgba(26, 26, 26, 0.78);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.sxa-dash__nav-item:hover { background: #faf6ef; color: #c8203a; }
.sxa-dash__nav-item--active { background: rgba(200, 32, 58, 0.08); color: #c8203a; }
.sxa-dash__nav-item span { font-size: 16px; opacity: 0.85; }
.sxa-dash__nav-item em {
  margin-left: auto;
  background: rgba(200, 32, 58, 0.12);
  color: #c8203a;
  font-style: normal;
  font-weight: 800;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 999px;
}
.sxa-dash__nav-item--logout { color: rgba(26, 26, 26, 0.55); }
.sxa-dash__nav-item--logout:hover { color: #c8203a; background: rgba(200, 32, 58, 0.06); }
.sxa-dash__nav hr { border: 0; border-top: 1px solid rgba(200, 162, 83, 0.2); margin: 8px 0; }

/* Main column */
.sxa-dash__main { display: flex; flex-direction: column; gap: 22px; min-width: 0; }

/* Stats grid */
.sxa-dash__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.sxa-dash__stat {
  background: #fff;
  border: 1px solid rgba(200, 162, 83, 0.2);
  border-radius: 14px;
  padding: 18px 16px;
  position: relative;
  overflow: hidden;
}
.sxa-dash__stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #c8203a, #c8a253);
}
.sxa-dash__stat-icon { font-size: 20px; display: block; margin-bottom: 6px; }
.sxa-dash__stat strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}
.sxa-dash__stat span {
  display: block;
  font-size: 12px;
  color: rgba(26, 26, 26, 0.6);
  margin-top: 4px;
}

/* Cards */
.sxa-dash__card {
  background: #fff;
  border: 1px solid rgba(200, 162, 83, 0.2);
  border-radius: 16px;
  padding: 24px 26px;
}
.sxa-dash__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.sxa-dash__card-head h2 {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.015em;
  margin: 0;
  color: #1a1a1a;
}
.sxa-dash__card-more {
  font-size: 12.5px;
  font-weight: 700;
  color: #c8203a;
  text-decoration: none;
}
.sxa-dash__card-more:hover { text-decoration: underline; }

/* Order list */
.sxa-orders { display: flex; flex-direction: column; gap: 10px; }
.sxa-order {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  background: #faf6ef;
  border: 1px solid rgba(200, 162, 83, 0.2);
  border-radius: 12px;
  padding: 14px 18px;
  text-decoration: none;
  color: #1a1a1a;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.sxa-order:hover {
  transform: translateX(4px);
  border-color: #c8203a;
  box-shadow: 0 6px 18px rgba(26, 26, 26, 0.05);
}
.sxa-order__head { display: flex; justify-content: space-between; align-items: center; }
.sxa-order__num { font-weight: 900; font-size: 15px; color: #1a1a1a; }
.sxa-order__date { font-size: 12.5px; color: rgba(26, 26, 26, 0.55); }
.sxa-order__body { display: flex; gap: 8px; flex-wrap: wrap; }
.sxa-order__status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(200, 32, 58, 0.10);
  color: #8c1d2b;
}
.sxa-order__status--fulfilled { background: rgba(94, 122, 76, 0.18); color: #3d5e2d; }
.sxa-order__paid {
  display: inline-flex;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(200, 162, 83, 0.18);
  color: #8e7028;
}
.sxa-order__paid--refund { background: rgba(141, 85, 112, 0.15); color: #5e3a4d; }
.sxa-order__foot { display: flex; align-items: center; gap: 14px; padding-top: 4px; }
.sxa-order__items { font-size: 13px; color: rgba(26, 26, 26, 0.55); }
.sxa-order__total { font-size: 16px; font-weight: 900; color: #1a1a1a; margin-left: auto; }
.sxa-order__arrow { font-size: 18px; color: #c8203a; }

/* Address */
.sxa-addr {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.55;
  position: relative;
}
.sxa-addr strong { font-size: 15.5px; font-weight: 800; }
.sxa-addr__badge {
  position: absolute;
  top: 0; right: 0;
  background: linear-gradient(135deg, #ffd24a, #c8a253);
  color: #5a3d0a;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 999px;
}
.sxa-addr__edit {
  margin-top: 8px;
  display: inline-flex;
  font-size: 12.5px;
  font-weight: 700;
  color: #c8203a;
  text-decoration: none;
  align-self: flex-start;
}
.sxa-addr__edit:hover { text-decoration: underline; }

/* Empty state */
.sxa-dash__empty {
  text-align: center;
  padding: 36px 24px;
  background: #faf6ef;
  border-radius: 12px;
  border: 1px dashed rgba(200, 162, 83, 0.4);
}
.sxa-dash__empty--compact { padding: 18px 22px; text-align: left; display: flex; align-items: center; gap: 14px; justify-content: space-between; flex-wrap: wrap; }
.sxa-dash__empty-icon { font-size: 40px; display: block; margin-bottom: 8px; opacity: 0.5; }
.sxa-dash__empty h3 { font-size: 17px; font-weight: 900; margin: 0 0 4px; color: #1a1a1a; }
.sxa-dash__empty p { font-size: 13.5px; color: rgba(26, 26, 26, 0.6); margin: 0 0 14px; }
.sxa-dash__empty-text { font-size: 13px; color: rgba(26, 26, 26, 0.55); margin: 0; }

/* ============================================================
   ADDRESSES PAGE (sxa-addr-card)
   ============================================================ */
.sxa-addr-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 32px 64px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.sxa-addr-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(200, 162, 83, 0.22);
  border-radius: 14px;
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 14px;
  color: #1a1a1a;
}
.sxa-addr-card__name { font-size: 15.5px; font-weight: 800; margin-bottom: 4px; }
.sxa-addr-card__actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(200, 162, 83, 0.22);
}
.sxa-addr-card__delete { display: inline; margin: 0; }
.sxa-addr-card--new {
  background: #faf6ef;
  border: 2px dashed rgba(200, 32, 58, 0.3);
  padding: 0;
  align-self: start;
}
.sxa-addr-card__open {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
}
.sxa-addr-card__open:hover { background: rgba(200, 32, 58, 0.04); }
.sxa-addr-card__open span {
  font-size: 32px;
  font-weight: 300;
  color: #c8203a;
  line-height: 1;
}
.sxa-addr-card__open strong { font-size: 15px; font-weight: 800; color: #1a1a1a; }
.sxa-addr-card__open em { font-size: 12px; font-style: normal; color: rgba(26, 26, 26, 0.55); }
.sxa-addr-form { padding: 20px 22px; border-top: 1px dashed rgba(200, 162, 83, 0.22); }
.sxa-addr-form h3 { font-size: 16px; font-weight: 900; margin: 0 0 14px; color: #1a1a1a; }

/* ============================================================
   ORDER DETAIL
   ============================================================ */
.sxa-order-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 32px 64px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.sxa-order-status {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(200, 162, 83, 0.2);
  border-radius: 16px;
  padding: 22px 24px;
}
.sxa-order-status__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.sxa-order-status__item span {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #faf6ef;
  color: rgba(26, 26, 26, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  border: 2px solid rgba(200, 162, 83, 0.3);
}
.sxa-order-status__item strong { font-size: 13.5px; font-weight: 800; color: rgba(26, 26, 26, 0.55); }
.sxa-order-status__item em { font-size: 11px; font-style: normal; color: rgba(26, 26, 26, 0.45); }
.sxa-order-status__item.is-done span { background: linear-gradient(135deg, #ff8a00, #c8203a); color: #fff; border-color: transparent; }
.sxa-order-status__item.is-done strong { color: #1a1a1a; }
.sxa-order-status__line {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #c8a253, #c8203a);
  border-radius: 1px;
  opacity: 0.3;
}

.sxa-track-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff8a00, #e60023);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  align-self: flex-start;
  box-shadow: 0 6px 18px rgba(230, 0, 35, 0.28);
  transition: transform 0.15s;
}
.sxa-track-cta:hover { transform: translateY(-2px); }

.sxa-li-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.sxa-li {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  background: #faf6ef;
  border-radius: 12px;
}
.sxa-li__img { width: 80px; height: 80px; border-radius: 8px; overflow: hidden; background: #fff; display: block; }
.sxa-li__img img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.sxa-li__ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 30px; }
.sxa-li__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sxa-li__body strong { font-size: 14.5px; font-weight: 700; color: #1a1a1a; }
.sxa-li__variant { font-size: 12.5px; color: rgba(26, 26, 26, 0.55); }
.sxa-li__brand {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c8203a;
}
.sxa-li__qty { font-size: 12.5px; color: rgba(26, 26, 26, 0.65); }
.sxa-li__total { font-size: 16px; font-weight: 900; color: #1a1a1a; }

.sxa-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.sxa-totals { width: 100%; border-collapse: collapse; font-size: 14px; }
.sxa-totals td { padding: 6px 0; color: rgba(26, 26, 26, 0.75); }
.sxa-totals td:last-child { text-align: right; font-weight: 600; color: #1a1a1a; }
.sxa-totals__total td { padding-top: 12px !important; border-top: 1px solid rgba(200, 162, 83, 0.3); font-size: 17px; font-weight: 900; color: #1a1a1a; }
.sxa-totals__total td:first-child { color: #1a1a1a; }

.sxa-dash__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.7);
  text-decoration: none;
  align-self: flex-start;
  margin-top: 10px;
}
.sxa-dash__back:hover { color: #c8203a; }

/* ============================================================
   MOBILE (≤989px) — all account pages
   ============================================================ */
@media (max-width: 989px) {
  .sxa__split { grid-template-columns: 1fr; min-height: auto; }
  .sxa__brand {
    padding: 32px 22px 36px;
    text-align: center;
    align-items: center;
  }
  .sxa__brand-kanji { font-size: 220px; bottom: -30px; right: -30px; opacity: 0.07; }
  .sxa__brand-title { font-size: 24px; }
  .sxa__brand-sub { max-width: 100%; font-size: 13.5px; }
  .sxa__brand-perks { align-items: flex-start; max-width: 280px; }
  .sxa__brand-rating { margin: 16px 0 0; padding-top: 16px; align-self: center; }
  .sxa__panel { padding: 32px 22px 40px; }
  .sxa__panel-title { font-size: 24px; }

  .sxa__form { max-width: 100%; }
  .sxa__field-row { grid-template-columns: 1fr; gap: 14px; }
  .sxa__btn-row { flex-direction: column; }
  .sxa__btn-row .sxa__ghost { width: 100%; }

  .sxa-dash__hero { padding: 28px 0 22px; }
  .sxa-dash__hero-inner { padding: 0 18px; }
  .sxa-dash__greeting { font-size: 24px; }
  .sxa-dash__sub { font-size: 13.5px; }
  .sxa-dash__grid { grid-template-columns: 1fr; padding: 22px 18px 48px; gap: 18px; }
  .sxa-dash__side { position: static; top: auto; padding: 20px 18px; }
  .sxa-dash__avatar { width: 52px; height: 52px; font-size: 22px; }
  .sxa-dash__stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .sxa-dash__stat { padding: 14px 14px; }
  .sxa-dash__stat strong { font-size: 19px; }
  .sxa-dash__card { padding: 18px 18px; }
  .sxa-dash__card-head h2 { font-size: 16px; }

  .sxa-order__total { font-size: 15px; }

  .sxa-addr-grid { grid-template-columns: 1fr; padding: 22px 18px 48px; }

  .sxa-order-detail { padding: 22px 18px 48px; }
  .sxa-order-status {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 18px;
  }
  .sxa-order-status__line { display: none; }
  .sxa-li { grid-template-columns: 60px 1fr auto; gap: 12px; padding: 10px; }
  .sxa-li__img { width: 60px; height: 60px; }
  .sxa-summary-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   🛒 SEBUYA CART DRAWER (sx-cart) — slides in from right
   ============================================================ */
.sx-cart {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}
.sx-cart__overlay {
  display: block !important; /* Dawn's div:empty { display:none } would hide */
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.50);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.sx-cart__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
  box-shadow: -20px 0 40px rgba(10, 10, 10, 0.18);
}
.sx-cart--open { pointer-events: auto; }
.sx-cart--open .sx-cart__overlay { opacity: 1; }
.sx-cart--open .sx-cart__panel { transform: none; }

/* Header */
.sx-cart__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(200, 162, 83, 0.18);
  background: linear-gradient(180deg, #faf6ef 0%, #fff 100%);
}
.sx-cart__eyebrow {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c8203a;
  margin-bottom: 6px;
}
.sx-cart__title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0;
  color: #1a1a1a;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.sx-cart__title em {
  font-style: normal;
  font-size: 13px;
  background: rgba(200, 32, 58, 0.10);
  color: #c8203a;
  font-weight: 800;
  padding: 2px 9px;
  border-radius: 999px;
}
.sx-cart__close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.06);
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1a1a1a;
  transition: background 0.18s, transform 0.18s;
  flex-shrink: 0;
}
.sx-cart__close:hover { background: rgba(200, 32, 58, 0.12); color: #c8203a; transform: rotate(90deg); }
.sx-cart__close svg { width: 18px; height: 18px; }

/* Free shipping bar */
.sx-cart__ship {
  padding: 14px 24px 10px;
  background: linear-gradient(180deg, #fff 0%, #faf6ef 100%);
  border-bottom: 1px solid rgba(200, 162, 83, 0.18);
}
.sx-cart__ship-bar {
  height: 6px;
  background: rgba(200, 162, 83, 0.18);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.sx-cart__ship-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #ff8a00, #c8203a, #ffd24a);
  background-size: 200% 100%;
  animation: sxCartShimmer 3s linear infinite;
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(.2,.8,.2,1);
}
@keyframes sxCartShimmer { 0%{background-position:0 0}100%{background-position:200% 0} }
.sx-cart__ship-msg {
  font-size: 13px;
  color: rgba(26, 26, 26, 0.75);
  display: block;
  line-height: 1.4;
}
.sx-cart__ship-msg strong { font-weight: 800; color: #c8203a; }

/* Body */
.sx-cart__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 12px 16px 8px;
}
.sx-cart__items { display: flex; flex-direction: column; gap: 12px; }

/* Cart item */
.sx-cart-item {
  display: grid;
  grid-template-columns: 80px 1fr 28px;
  gap: 14px;
  align-items: start;
  padding: 14px;
  background: #faf6ef;
  border: 1px solid rgba(200, 162, 83, 0.20);
  border-radius: 12px;
  position: relative;
  transition: border-color 0.18s, background 0.18s;
}
.sx-cart-item:hover { border-color: rgba(200, 32, 58, 0.35); }
.sx-cart-item__media {
  width: 80px; height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sx-cart-item__media img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.sx-cart-item__media span { font-size: 32px; }
.sx-cart-item__body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.sx-cart-item__brand {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8203a;
}
.sx-cart-item__title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sx-cart-item__title:hover { color: #c8203a; }
.sx-cart-item__variant { font-size: 11.5px; color: rgba(26, 26, 26, 0.55); }
.sx-cart-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 6px;
}
.sx-cart-item__qty {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(200, 162, 83, 0.30);
  border-radius: 8px;
  overflow: hidden;
}
.sx-cart-item__qty button {
  width: 26px; height: 26px;
  border: 0;
  background: transparent;
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.sx-cart-item__qty button:hover { background: rgba(200, 32, 58, 0.10); color: #c8203a; }
.sx-cart-item__qty input {
  width: 34px;
  border: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  background: transparent;
  color: #1a1a1a;
  -moz-appearance: textfield;
}
.sx-cart-item__qty input::-webkit-outer-spin-button,
.sx-cart-item__qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.sx-cart-item__price { display: flex; align-items: baseline; gap: 6px; font-size: 12px; color: rgba(26, 26, 26, 0.5); }
.sx-cart-item__price strong { font-size: 15px; font-weight: 900; color: #1a1a1a; }
.sx-cart-item__price s { font-size: 11.5px; }
.sx-cart-item__remove {
  width: 24px; height: 24px;
  border: 0;
  background: transparent;
  color: rgba(26, 26, 26, 0.4);
  font-size: 20px;
  font-weight: 300;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s, transform 0.15s;
  flex-shrink: 0;
}
.sx-cart-item__remove:hover { background: rgba(200, 32, 58, 0.12); color: #c8203a; transform: rotate(90deg); }

/* Empty state */
.sx-cart__empty {
  text-align: center;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.sx-cart__empty-icon { font-size: 56px; opacity: 0.5; margin-bottom: 4px; }
.sx-cart__empty h4 { font-size: 18px; font-weight: 900; margin: 0; color: #1a1a1a; }
.sx-cart__empty p { font-size: 13.5px; color: rgba(26, 26, 26, 0.6); margin: 0 0 8px; max-width: 28ch; line-height: 1.5; }
.sx-cart__shop-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #ff8a00 0%, #e60023 100%);
  color: #fff;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
  margin-top: 4px;
  box-shadow: 0 6px 18px rgba(230, 0, 35, 0.28);
}
.sx-cart__shop-cta:hover { transform: translateY(-2px); }

/* Footer */
.sx-cart__foot {
  border-top: 1px solid rgba(200, 162, 83, 0.18);
  padding: 16px 20px 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sx-cart__totals { display: flex; flex-direction: column; gap: 4px; padding-bottom: 4px; }
.sx-cart__totals-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 15px;
  color: #1a1a1a;
}
.sx-cart__totals-row strong { font-weight: 900; font-size: 18px; }
.sx-cart__totals-row--small { font-size: 12px; color: rgba(26, 26, 26, 0.55); }
.sx-cart__totals-row--small span:last-child { font-style: italic; }
.sx-cart__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ff8a00 0%, #e60023 100%);
  color: #fff;
  padding: 16px 22px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.18s;
  box-shadow: 0 8px 22px rgba(230, 0, 35, 0.30);
}
.sx-cart__checkout:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(230, 0, 35, 0.40); }
.sx-cart__checkout strong {
  background: rgba(255, 255, 255, 0.18);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 900;
}
.sx-cart__view-cart {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.65);
  text-decoration: none;
  padding: 6px;
}
.sx-cart__view-cart:hover { color: #c8203a; }
.sx-cart__perks {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 11px;
  color: rgba(26, 26, 26, 0.55);
  padding-top: 8px;
  border-top: 1px dashed rgba(200, 162, 83, 0.22);
}

@media (max-width: 480px) {
  .sx-cart__panel { max-width: 100%; }
  .sx-cart__head { padding: 18px 18px 14px; }
  .sx-cart__title { font-size: 19px; }
  .sx-cart__ship { padding: 12px 18px 8px; }
  .sx-cart__body { padding: 10px 14px; }
  .sx-cart-item { padding: 12px; grid-template-columns: 64px 1fr 24px; gap: 10px; }
  .sx-cart-item__media { width: 64px; height: 64px; }
  .sx-cart__foot { padding: 14px 18px 16px; }
  .sx-cart__checkout { padding: 14px 18px; font-size: 14px; }
  .sx-cart__perks { font-size: 10px; gap: 10px; }
}

/* ============================================================
   🔥 PDP URGENCY WIDGETS (sxp-urgency)
   ============================================================ */
.sxp-urgency {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0 18px;
  background: linear-gradient(180deg, #faf6ef 0%, #fff 100%);
  border: 1px solid rgba(200, 162, 83, 0.20);
  border-radius: 12px;
  padding: 12px 14px;
}
.sxp-urgency__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.3;
  color: rgba(26, 26, 26, 0.78);
}
.sxp-urgency__item strong {
  font-weight: 900;
  color: #1a1a1a;
  font-variant-numeric: tabular-nums;
}
.sxp-urgency__icon { font-size: 14px; }
.sxp-urgency__pulse {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2d8a3e;
  flex-shrink: 0;
}
.sxp-urgency__pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #2d8a3e;
  animation: sxpPulse 1.8s ease-out infinite;
}
@keyframes sxpPulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
.sxp-urgency__item--viewers strong { color: #2d8a3e; }
.sxp-urgency__item--sold strong { color: #c8203a; }
.sxp-urgency__item--stock {
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.10), rgba(200, 32, 58, 0.10));
  border-left: 3px solid #c8203a;
  padding: 8px 12px;
  border-radius: 8px;
  margin-top: 4px;
}
.sxp-urgency__item--stock strong { color: #c8203a; }

@media (prefers-reduced-motion: reduce) {
  .sxp-urgency__pulse::after { animation: none; }
}

/* ============================================================
   🔍 SEARCH PAGE (sxs) + BLOG + ARTICLE
   ============================================================ */
.sxs {
  background: #ffffff;
  color: #1a1a1a;
  min-height: 60vh;
  position: relative;
}
.sxs__strip {
  height: 4px;
  background: linear-gradient(90deg, #c8203a 0%, #c8a253 50%, #c8203a 100%);
  background-size: 200% 100%;
  animation: sxlegStrip 8s linear infinite;
}
.sxs__head {
  background: linear-gradient(180deg, #faf6ef 0%, #fff 100%);
  border-bottom: 1px solid rgba(200, 162, 83, 0.18);
  position: relative;
  overflow: hidden;
  padding: 44px 0 36px;
}
.sxs__head-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.sxs__kanji {
  position: absolute;
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  font-size: clamp(160px, 20vw, 260px);
  color: rgba(200, 32, 58, 0.05);
  top: -10px;
  right: 4%;
  line-height: 0.85;
  user-select: none;
  z-index: 0;
}
.sxs__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Serif JP', serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c8203a;
  margin-bottom: 10px;
}
.sxs__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #c8203a;
  box-shadow: 0 0 0 3px rgba(200, 32, 58, 0.18);
}
.sxs__title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 10px;
  color: #1a1a1a;
}
.sxs__title-q {
  display: block;
  font-size: 0.6em;
  font-weight: 500;
  font-style: italic;
  color: rgba(26, 26, 26, 0.6);
  margin-top: 4px;
  letter-spacing: 0;
}
.sxs__sub {
  font-size: 15.5px;
  color: rgba(26, 26, 26, 0.65);
  margin: 6px 0 18px;
  line-height: 1.55;
  max-width: 56ch;
}

/* Search form */
.sxs__form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid rgba(200, 162, 83, 0.30);
  border-radius: 999px;
  padding: 6px 6px 6px 18px;
  margin-top: 18px;
  max-width: 640px;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.sxs__form:focus-within {
  border-color: #c8203a;
  box-shadow: 0 0 0 4px rgba(200, 32, 58, 0.12);
}
.sxs__form-icon { color: rgba(26, 26, 26, 0.5); display: flex; }
.sxs__form-icon svg { width: 20px; height: 20px; }
.sxs__form input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 11px 0;
  font-size: 15px;
  color: #1a1a1a;
  outline: none;
  min-width: 0;
}
.sxs__form input::placeholder { color: rgba(26, 26, 26, 0.4); }
.sxs__form button {
  background: linear-gradient(135deg, #ff8a00, #e60023);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(230, 0, 35, 0.22);
}
.sxs__form button:hover { transform: translateY(-1px); }

.sxs__suggest {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 13px;
  align-items: center;
  color: rgba(26, 26, 26, 0.7);
}
.sxs__suggest a {
  background: #faf6ef;
  border: 1px solid rgba(200, 162, 83, 0.3);
  border-radius: 999px;
  padding: 5px 12px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.sxs__suggest a:hover { background: #c8203a; color: #fff; border-color: #c8203a; }

/* Body */
.sxs__body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 32px 64px;
}
.sxs__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.sxs__grid > .sx-card-wrap { min-width: 0; }

.sxs__item-other {
  background: #faf6ef;
  border: 1px solid rgba(200, 162, 83, 0.2);
  border-radius: 12px;
  padding: 18px 20px;
}
.sxs__item-other a { color: #1a1a1a; text-decoration: none; display: block; }
.sxs__item-other strong { display: block; font-size: 16px; font-weight: 800; margin: 6px 0 4px; }
.sxs__item-other p { font-size: 13.5px; color: rgba(26, 26, 26, 0.6); margin: 0; line-height: 1.5; }
.sxs__item-type {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8203a;
  background: rgba(200, 32, 58, 0.10);
  padding: 3px 9px;
  border-radius: 999px;
}

/* Empty + popular */
.sxs__empty {
  text-align: center;
  padding: 48px 24px;
  background: #faf6ef;
  border-radius: 16px;
  border: 1px dashed rgba(200, 162, 83, 0.4);
}
.sxs__empty-icon { font-size: 48px; opacity: 0.55; }
.sxs__empty h2 { font-size: 22px; font-weight: 900; margin: 8px 0 4px; color: #1a1a1a; }
.sxs__empty p { font-size: 14px; color: rgba(26, 26, 26, 0.65); margin: 0 0 16px; }
.sxs__pop-cats { display: inline-flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.sxs__pop-cats a {
  background: #fff;
  border: 1.5px solid rgba(200, 162, 83, 0.3);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.sxs__pop-cats a:hover { background: #c8203a; color: #fff; border-color: #c8203a; }

.sxs__pop-h {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sxs__pop-h--top { margin-top: 36px; }
.sxs__pop-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.sxs__pop-tags a {
  background: #faf6ef;
  border: 1px solid rgba(200, 162, 83, 0.25);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
}
.sxs__pop-tags a:hover { background: #c8203a; color: #fff; border-color: #c8203a; transform: translateY(-1px); }

/* Pagination */
.sxs__pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 32px;
}
.sxs__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  background: #fff;
  border: 1.5px solid rgba(200, 162, 83, 0.25);
  border-radius: 8px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.sxs__page:hover { background: #faf6ef; border-color: #c8203a; color: #c8203a; }
.sxs__page--current { background: #c8203a; color: #fff; border-color: #c8203a; cursor: default; }
.sxs__page--current:hover { background: #c8203a; color: #fff; }
.sxs__page--arrow { font-weight: 700; }
.sxs__page--dots { background: transparent; border-color: transparent; color: rgba(26, 26, 26, 0.4); cursor: default; }

/* ============================================================
   📰 BLOG
   ============================================================ */
.sxs-blog__body { padding-top: 24px; }
.sxs-blog__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(200, 162, 83, 0.18);
}
.sxs-blog__tag {
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid rgba(200, 162, 83, 0.25);
  color: #1a1a1a;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.sxs-blog__tag:hover { background: #c8203a; color: #fff; border-color: #c8203a; }
.sxs-blog__tag--active { background: #c8203a; color: #fff; border-color: #c8203a; }

.sxs-blog__featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  text-decoration: none;
  color: #1a1a1a;
  background: linear-gradient(135deg, #faf6ef 0%, #fff 100%);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 36px;
  transition: transform 0.2s;
}
.sxs-blog__featured:hover { transform: translateY(-3px); }
.sxs-blog__featured-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.sxs-blog__featured-media img { width: 100%; height: 100%; object-fit: cover; }
.sxs-blog__featured-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 80px; background: #faf6ef; }
.sxs-blog__featured-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: linear-gradient(135deg, #ff8a00, #e60023);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(230, 0, 35, 0.30);
}
.sxs-blog__featured-body { padding: 28px 32px 28px 0; }
.sxs-blog__featured-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8203a;
  margin-bottom: 8px;
}
.sxs-blog__featured-body h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 10px;
}
.sxs-blog__featured-body p {
  font-size: 15px;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
  margin: 0 0 14px;
}
.sxs-blog__featured-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(26, 26, 26, 0.55);
  margin-bottom: 14px;
}
.sxs-blog__featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 800;
  color: #c8203a;
}

.sxs-blog__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.sxs-blog__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #1a1a1a;
  background: #fff;
  border: 1px solid rgba(200, 162, 83, 0.20);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  height: 100%;
}
.sxs-blog__card:hover { transform: translateY(-3px); border-color: rgba(200, 32, 58, 0.35); box-shadow: 0 12px 28px rgba(26, 26, 26, 0.06); }
.sxs-blog__card-media { aspect-ratio: 16/10; overflow: hidden; background: #faf6ef; }
.sxs-blog__card-media img { width: 100%; height: 100%; object-fit: cover; }
.sxs-blog__card-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.sxs-blog__card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.sxs-blog__card-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8203a;
}
.sxs-blog__card h3 { font-size: 17px; font-weight: 900; letter-spacing: -0.015em; line-height: 1.25; margin: 0; color: #1a1a1a; }
.sxs-blog__card p { font-size: 13.5px; color: rgba(26, 26, 26, 0.65); line-height: 1.55; margin: 0; flex: 1; }
.sxs-blog__card-meta { display: flex; gap: 12px; font-size: 11.5px; color: rgba(26, 26, 26, 0.5); margin-top: 4px; }

/* ============================================================
   📄 ARTICLE
   ============================================================ */
.sxs-article {
  background: #fff;
  display: block;
}
.sxs-article__head { position: relative; }
.sxs-article__hero { aspect-ratio: 21/9; overflow: hidden; position: relative; max-height: 500px; }
.sxs-article__hero img { width: 100%; height: 100%; object-fit: cover; }
.sxs-article__hero-fade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.55) 100%); }
.sxs-article__head-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 32px 24px;
  position: relative;
  z-index: 1;
}
.sxs-article__crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(26, 26, 26, 0.55);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.sxs-article__crumb a { color: rgba(26, 26, 26, 0.7); text-decoration: none; }
.sxs-article__crumb a:hover { color: #c8203a; }
.sxs-article__crumb span[aria-hidden] { opacity: 0.4; }
.sxs-article__tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.sxs-article__tag {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c8203a;
  background: rgba(200, 32, 58, 0.10);
  padding: 4px 10px;
  border-radius: 999px;
  text-decoration: none;
}
.sxs-article__tag:hover { background: #c8203a; color: #fff; }
.sxs-article__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #1a1a1a;
  margin: 0 0 18px;
}
.sxs-article__meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(26, 26, 26, 0.65);
  align-items: center;
}
.sxs-article__author { display: inline-flex; align-items: center; gap: 10px; }
.sxs-article__avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8a00, #c8203a);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif JP', serif;
}
.sxs-article__avatar--small { width: 28px; height: 28px; font-size: 12px; }
.sxs-article__author strong { color: #1a1a1a; font-weight: 700; }

.sxs-article__body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 56px;
  align-items: start;
}
.sxs-article__content {
  font-size: 17px;
  line-height: 1.75;
  color: #1a1a1a;
}
.sxs-article__content p { margin: 0 0 18px; }
.sxs-article__content h2 { font-size: 28px; font-weight: 900; letter-spacing: -0.02em; margin: 36px 0 14px; padding-bottom: 8px; border-bottom: 1px solid rgba(200, 162, 83, 0.22); }
.sxs-article__content h3 { font-size: 22px; font-weight: 900; margin: 28px 0 12px; }
.sxs-article__content h4 { font-size: 18px; font-weight: 800; margin: 22px 0 10px; }
.sxs-article__content a { color: #c8203a; text-decoration: underline; text-decoration-color: rgba(200, 32, 58, 0.4); text-underline-offset: 3px; }
.sxs-article__content blockquote {
  margin: 28px 0;
  padding: 18px 24px;
  background: #faf6ef;
  border-left: 4px solid #c8203a;
  border-radius: 0 12px 12px 0;
  font-size: 18px;
  font-style: italic;
  color: rgba(26, 26, 26, 0.85);
}
.sxs-article__content img { max-width: 100%; height: auto; border-radius: 12px; margin: 18px 0; }
.sxs-article__content ul, .sxs-article__content ol { margin: 0 0 18px; padding-left: 24px; }
.sxs-article__content li { margin-bottom: 6px; }

.sxs-article__aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sxs-article__share, .sxs-article__tag-cloud, .sxs-article__shop-cta {
  background: linear-gradient(180deg, #faf6ef 0%, #fff 100%);
  border: 1px solid rgba(200, 162, 83, 0.22);
  border-radius: 14px;
  padding: 18px 20px;
}
.sxs-article__share strong, .sxs-article__tag-cloud strong {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.55);
  margin-bottom: 10px;
}
.sxs-article__share > div { display: flex; gap: 8px; }
.sxs-article__share a,
.sxs-article__copy {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(200, 162, 83, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.sxs-article__share a:hover, .sxs-article__copy:hover { background: #c8203a; color: #fff; border-color: #c8203a; }
.sxs-article__share svg { width: 16px; height: 16px; }
.sxs-article__copy { font: inherit; }
.sxs-article__copy.is-copied { background: #2d8a3e; color: #fff; border-color: #2d8a3e; }
.sxs-article__tag-cloud > div { display: flex; gap: 6px; flex-wrap: wrap; }
.sxs-article__tag-cloud a {
  font-size: 12px;
  font-weight: 600;
  color: rgba(26, 26, 26, 0.7);
  background: #fff;
  border: 1px solid rgba(200, 162, 83, 0.25);
  padding: 4px 10px;
  border-radius: 999px;
  text-decoration: none;
}
.sxs-article__tag-cloud a:hover { background: #c8203a; color: #fff; border-color: #c8203a; }
.sxs-article__shop-cta { text-align: center; }
.sxs-article__shop-icon { font-size: 32px; display: block; margin-bottom: 6px; }
.sxs-article__shop-cta strong { display: block; font-size: 15px; font-weight: 900; color: #1a1a1a; margin-bottom: 4px; }
.sxs-article__shop-cta p { font-size: 13px; color: rgba(26, 26, 26, 0.6); margin: 0 0 12px; line-height: 1.45; }
.sxs-article__shop-cta a {
  display: inline-block;
  background: linear-gradient(135deg, #ff8a00, #e60023);
  color: #fff;
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(230, 0, 35, 0.25);
}

/* Comments */
.sxs-article__comments {
  background: #faf6ef;
  padding: 56px 0;
  border-top: 1px solid rgba(200, 162, 83, 0.22);
}
.sxs-article__comments-inner { max-width: 920px; margin: 0 auto; padding: 0 32px; }
.sxs-article__comments h2 { font-size: 24px; font-weight: 900; margin: 0 0 20px; }
.sxs-article__comment-list { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.sxs-article__comment {
  background: #fff;
  border: 1px solid rgba(200, 162, 83, 0.20);
  border-radius: 12px;
  padding: 16px 20px;
}
.sxs-article__comment-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 13px; }
.sxs-article__comment-head strong { color: #1a1a1a; font-weight: 700; }
.sxs-article__comment-head span:last-child { color: rgba(26, 26, 26, 0.5); }
.sxs-article__comment-body { font-size: 14px; line-height: 1.6; color: rgba(26, 26, 26, 0.8); }
.sxs-article__comment-form { background: #fff; border: 1px solid rgba(200, 162, 83, 0.22); border-radius: 14px; padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.sxs-article__comment-form h3 { font-size: 17px; font-weight: 900; margin: 0 0 4px; }
.sxs-article__comment-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sxs-article__comment-form label { display: flex; flex-direction: column; gap: 4px; }
.sxs-article__comment-form span { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(26, 26, 26, 0.55); }
.sxs-article__comment-form input,
.sxs-article__comment-form textarea {
  background: #faf6ef;
  border: 1.5px solid rgba(200, 162, 83, 0.25);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
}
.sxs-article__comment-form input:focus,
.sxs-article__comment-form textarea:focus { outline: none; border-color: #c8203a; background: #fff; }
.sxs-article__comment-form button {
  align-self: flex-start;
  background: linear-gradient(135deg, #ff8a00, #e60023);
  color: #fff;
  border: 0;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  margin-top: 4px;
  box-shadow: 0 4px 12px rgba(230, 0, 35, 0.25);
}

/* MOBILE */
@media (max-width: 989px) {
  .sxs__head { padding: 28px 0 24px; }
  .sxs__head-inner { padding: 0 18px; }
  .sxs__title { font-size: 24px !important; }
  .sxs__kanji { font-size: clamp(120px, 35vw, 180px); }
  .sxs__form { padding: 4px 4px 4px 14px; }
  .sxs__form input { font-size: 14px; padding: 10px 0; }
  .sxs__form button { padding: 9px 16px; font-size: 12.5px; }
  .sxs__body { padding: 22px 18px 48px; }
  .sxs__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .sxs__page { min-width: 32px; height: 32px; font-size: 13px; padding: 0 9px; }

  .sxs-blog__featured { grid-template-columns: 1fr; gap: 0; }
  .sxs-blog__featured-body { padding: 22px 22px 26px; }
  .sxs-blog__grid { grid-template-columns: 1fr; gap: 16px; }

  .sxs-article__head-inner { padding: 22px 18px 18px; }
  .sxs-article__title { font-size: 26px !important; }
  .sxs-article__body { grid-template-columns: 1fr; padding: 18px 18px 48px; gap: 32px; }
  .sxs-article__content { font-size: 15.5px; }
  .sxs-article__content h2 { font-size: 22px; }
  .sxs-article__content h3 { font-size: 18px; }
  .sxs-article__aside { position: static; top: auto; }
  .sxs-article__comments { padding: 36px 0; }
  .sxs-article__comments-inner { padding: 0 18px; }
  .sxs-article__comment-row { grid-template-columns: 1fr; }
}

/* ============================================================
   🍪 COOKIE BANNER (GDPR-compliant, Sebuya style)
   ============================================================ */
.sx-cookie {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 9998;
  background: #ffffff;
  border: 1px solid rgba(200, 162, 83, 0.30);
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(10, 10, 10, 0.18);
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
  animation: sxCookieIn 0.5s cubic-bezier(.2,.8,.2,1);
}
@keyframes sxCookieIn { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.sx-cookie__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
}
.sx-cookie__copy { display: flex; align-items: flex-start; gap: 12px; }
.sx-cookie__icon { font-size: 32px; line-height: 1; flex-shrink: 0; }
.sx-cookie__copy strong { display: block; font-size: 15px; font-weight: 900; color: #1a1a1a; margin-bottom: 4px; }
.sx-cookie__copy p { font-size: 13px; color: rgba(26, 26, 26, 0.7); margin: 0; line-height: 1.5; max-width: 60ch; }
.sx-cookie__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.sx-cookie__btn {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1.5px solid;
  transition: transform 0.15s, background 0.18s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
}
.sx-cookie__btn--decline { background: #fff; color: #1a1a1a; border-color: rgba(26, 26, 26, 0.20); }
.sx-cookie__btn--decline:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.sx-cookie__btn--config { background: #faf6ef; color: #c8203a; border-color: rgba(200, 32, 58, 0.30); }
.sx-cookie__btn--config:hover { background: rgba(200, 32, 58, 0.10); }
.sx-cookie__btn--accept {
  background: linear-gradient(135deg, #ff8a00, #e60023);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(230, 0, 35, 0.25);
}
.sx-cookie__btn--accept:hover { transform: translateY(-1px); }
.sx-cookie__legal {
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 11px;
  color: rgba(26, 26, 26, 0.5);
  text-decoration: underline;
}
.sx-cookie__legal:hover { color: #c8203a; }
.sx-cookie__panel {
  border-top: 1px solid rgba(200, 162, 83, 0.22);
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #faf6ef;
}
.sx-cookie__panel header { display: flex; justify-content: space-between; align-items: center; }
.sx-cookie__panel header strong { font-size: 14px; font-weight: 900; color: #1a1a1a; }
.sx-cookie__panel header button { background: transparent; border: 0; font-size: 24px; cursor: pointer; color: rgba(26, 26, 26, 0.55); }
.sx-cookie__opt {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(200, 162, 83, 0.22);
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
}
.sx-cookie__opt strong { display: block; font-size: 14px; font-weight: 800; color: #1a1a1a; margin-bottom: 2px; }
.sx-cookie__opt em { display: block; font-size: 12.5px; font-style: normal; color: rgba(26, 26, 26, 0.6); line-height: 1.45; }
.sx-cookie__opt input[type="checkbox"] { width: 38px; height: 22px; appearance: none; background: rgba(26, 26, 26, 0.18); border-radius: 999px; position: relative; cursor: pointer; transition: background 0.2s; }
.sx-cookie__opt input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: transform 0.22s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
}
.sx-cookie__opt input[type="checkbox"]:checked { background: linear-gradient(135deg, #ff8a00, #c8203a); }
.sx-cookie__opt input[type="checkbox"]:checked::before { transform: translateX(16px); }
.sx-cookie__opt input[type="checkbox"]:disabled { background: rgba(200, 32, 58, 0.4); cursor: not-allowed; }
.sx-cookie__lock { font-size: 13px; color: rgba(26, 26, 26, 0.4); }

@media (max-width: 749px) {
  .sx-cookie { left: 8px; right: 8px; bottom: 8px; border-radius: 14px; }
  .sx-cookie__inner { grid-template-columns: 1fr; padding: 16px 18px 14px; gap: 14px; }
  .sx-cookie__actions { width: 100%; }
  .sx-cookie__btn { flex: 1; padding: 11px 12px; font-size: 12.5px; text-align: center; justify-content: center; }
  .sx-cookie__legal { position: static; align-self: flex-end; }
}

/* ============================================================
   📬 NEWSLETTER POPUP (10% Rabatt)
   ============================================================ */
.sx-nlpop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}
.sx-nlpop__overlay {
  display: block !important;
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.32s ease;
}
.sx-nlpop__panel {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  width: 92%;
  max-width: 460px;
  background: linear-gradient(160deg, #fff 0%, #faf6ef 100%);
  border-radius: 22px;
  padding: 36px 32px 28px;
  text-align: center;
  box-shadow: 0 30px 64px rgba(10, 10, 10, 0.30);
  opacity: 0;
  transition: opacity 0.32s ease, transform 0.32s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
}
.sx-nlpop--open { pointer-events: auto; }
.sx-nlpop--open .sx-nlpop__overlay { opacity: 1; }
.sx-nlpop--open .sx-nlpop__panel { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.sx-nlpop__close {
  position: absolute;
  top: 14px; right: 16px;
  width: 32px; height: 32px;
  background: rgba(26, 26, 26, 0.06);
  border: 0;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  color: rgba(26, 26, 26, 0.55);
  z-index: 2;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.sx-nlpop__close:hover { background: rgba(200, 32, 58, 0.12); color: #c8203a; transform: rotate(90deg); }
.sx-nlpop__kanji {
  position: absolute;
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  font-size: 280px;
  color: rgba(200, 32, 58, 0.05);
  top: -40px;
  right: -30px;
  line-height: 0.85;
  user-select: none;
  pointer-events: none;
}
.sx-nlpop__badge {
  display: inline-block;
  background: linear-gradient(135deg, #ffd24a, #c8a253);
  color: #5a3d0a;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.sx-nlpop h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 10px;
  color: #1a1a1a;
}
.sx-nlpop h2 span {
  background: linear-gradient(135deg, #ff8a00 0%, #c8203a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-size: 0.6em;
  display: block;
  margin-top: 4px;
}
.sx-nlpop p {
  position: relative;
  z-index: 1;
  font-size: 14.5px;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}
.sx-nlpop__form { display: flex; flex-direction: column; gap: 8px; }
.sx-nlpop__field {
  display: flex;
  background: #fff;
  border: 1.5px solid rgba(200, 162, 83, 0.30);
  border-radius: 999px;
  padding: 4px 4px 4px 18px;
  align-items: center;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.sx-nlpop__field:focus-within { border-color: #c8203a; box-shadow: 0 0 0 4px rgba(200, 32, 58, 0.12); }
.sx-nlpop__field input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 11px 0;
  font-size: 14.5px;
  color: #1a1a1a;
  outline: none;
  min-width: 0;
}
.sx-nlpop__field input::placeholder { color: rgba(26, 26, 26, 0.4); }
.sx-nlpop__field button {
  background: linear-gradient(135deg, #ff8a00, #e60023);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(230, 0, 35, 0.28);
}
.sx-nlpop__legal { font-size: 11px; color: rgba(26, 26, 26, 0.55); margin-top: 8px; line-height: 1.4; }
.sx-nlpop__legal a { color: #c8203a; text-decoration: underline; }
.sx-nlpop__no {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  font-size: 12.5px;
  color: rgba(26, 26, 26, 0.5);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 12px;
  font-style: italic;
}
.sx-nlpop__no:hover { color: #1a1a1a; }
.sx-nlpop__success {
  background: linear-gradient(135deg, #e6f7e6, #d1f1d1);
  border: 1px solid #5cb85c;
  border-radius: 12px;
  padding: 14px 18px;
  color: #2d5a2d;
  text-align: left;
}
.sx-nlpop__success strong { display: block; font-weight: 800; font-size: 15px; margin-bottom: 4px; }
.sx-nlpop__success p { margin: 0; font-size: 13.5px; }

@media (max-width: 480px) {
  .sx-nlpop__panel { padding: 32px 22px 24px; max-width: 92%; }
  .sx-nlpop__kanji { font-size: 200px; top: -20px; right: -20px; }
  .sx-nlpop h2 { font-size: 26px; }
  .sx-nlpop p { font-size: 13.5px; margin-bottom: 18px; }
  .sx-nlpop__field { padding: 3px 3px 3px 14px; }
  .sx-nlpop__field input { font-size: 13.5px; padding: 10px 0; }
  .sx-nlpop__field button { padding: 9px 16px; font-size: 12.5px; }
}

/* ============================================================
   🍎 iOS SAFARI SCROLL LAG FIX
   Targeted overrides to make scroll buttery on iPhone
   ============================================================ */
@media (max-width: 989px) {
  /* 1. KILL ALL backdrop-filter on mobile — iOS Safari's biggest scroll-lag culprit */
  .sx-nl__field,
  .sx-cookie,
  .sx-cookie__overlay,
  .sx-nlpop__overlay,
  .sx-wl__overlay,
  .sx-qv__overlay,
  .sx-cart__overlay,
  .sx-h--scrolled,
  .sx-h__inner,
  .sxst-hero__bg,
  .sxa__brand,
  .sx-nl__chip,
  .sx-nlpop__panel,
  .sxst-hero__cta--ghost,
  .sxst-hero__cta--ghost-dark,
  .sx-mhero__cta--ghost {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* 2. Promote scroll-critical sections to GPU compositing layer — solves frame drops */
  .sx-strip,
  .sx-section,
  .sx-promo,
  .sx-rcp,
  .sx-nl,
  .sx-foot,
  .sx-stats-section,
  .sxleg,
  .sxst,
  .sxs,
  .sxc {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  /* 3. Remove `position: fixed` background-attachment-like effects that cause repaint on scroll */
  body, html {
    /* native momentum scrolling on iOS */
    -webkit-overflow-scrolling: touch;
  }

  /* 4. Disable hover-triggered tilt/parallax effects on touch */
  @media (hover: none) {
    .sx-card-wrap:hover .sx-card,
    .sx-promo:hover,
    .sxst-value:hover,
    .sxst-origin:hover,
    .sxs-blog__card:hover {
      transform: none !important;
    }
  }

  /* 5. Limit content-visibility usage to only off-screen heavy sections — reserves space */
  .sx-foot, .sx-rcp, .sx-stats-section {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
  }

  /* 6. Reduce filter/drop-shadow chains on cards (each filter = separate compositing pass) */
  .sx-card-wrap .sx-card,
  .sxs-blog__card,
  .sxst-value,
  .sxst-origin {
    filter: none !important;
  }
  .sx-card-wrap .sx-card:hover,
  .sxs-blog__card:hover {
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.08) !important;
    /* keep box-shadow (cheaper) instead of filter: drop-shadow */
  }

  /* 7. Throttle smooth-scroll behavior — iOS Safari does it natively, override CSS would slow it */
  html {
    scroll-behavior: auto !important;
  }
}

/* iPhone specific (>=iOS 11 viewport meta) — extra aggressive */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 989px) {
    /* iOS Safari only: disable expensive border-image/gradients during scroll */
    .sx-strip__strip,
    .sxleg__strip,
    .sxc-strip,
    .sxst__strip,
    .sxs__strip,
    .sxa__strip {
      animation: none !important;
      background: linear-gradient(90deg, #c8203a 0%, #c8a253 50%, #c8203a 100%) !important;
    }

    /* Disable kanji watermark text shadow rendering */
    .sxst-hero__kanji,
    .sxst__brand-kanji,
    .sxa__brand-kanji,
    .sxleg__kanji,
    .sxs__kanji,
    .sx-nlpop__kanji,
    .sxc-head__kanji {
      opacity: 0.04 !important; /* less GPU than 0.05 + composite */
    }
  }
}
