/* ================================================
   JAPANESE FOOD STATION SL — Style v2
   Elevated Muji-Japanese premium design
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

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

:root {
  --white:     #fafaf8;
  --off-white: #f4f2ec;
  --paper:     #e8e5de;
  --ink-light: #9a9890;
  --ink:       #3a3835;
  --ink-dark:  #1a1917;
  --red:       #c0392b;
  --red-hover: #a93226;
  --red-pale:  #fdf0ee;
  --red-dim:   rgba(192,57,43,0.08);
  --gold:      #b5933a;
  --green:     #27ae60;

  --font-serif: 'Noto Serif JP', serif;
  --font-sans:  'DM Sans', sans-serif;

  --nav-h:     64px;
  --max-w:     1320px;
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 4px rgba(26,25,23,0.06);
  --shadow:    0 4px 20px rgba(26,25,23,0.09);
  --shadow-lg: 0 12px 48px rgba(26,25,23,0.15);
  --shadow-xl: 0 24px 80px rgba(26,25,23,0.18);

  --ease: cubic-bezier(0.4,0,0.2,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
  --transition: 0.22s var(--ease);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 28px;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(250,250,248,0.94);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(232,229,222,0.8);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 100%;
}

.nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.nav-logo .logo-mark {
  width: 38px; height: 38px;
  background: var(--ink-dark); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.nav-logo:hover .logo-mark { background: var(--red); }
.nav-logo .logo-mark span {
  color: var(--white); font-family: var(--font-serif);
  font-size: 17px; font-weight: 700;
}
.nav-logo .logo-text {
  font-family: var(--font-serif); font-size: 14px;
  font-weight: 500; color: var(--ink-dark); line-height: 1.2;
}
.nav-logo .logo-sub {
  font-size: 10px; color: var(--red);
  letter-spacing: 0.18em; text-transform: uppercase;
  font-family: var(--font-sans); font-weight: 400;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 12px; font-weight: 500; color: var(--ink);
  letter-spacing: 0.08em; text-transform: uppercase;
  position: relative; transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--red); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-search-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 16px; border: 1px solid var(--paper);
  border-radius: 24px; font-size: 12px; color: var(--ink-light);
  transition: all var(--transition); background: var(--off-white);
}
.nav-search-btn:hover {
  border-color: var(--ink-light); color: var(--ink);
  background: var(--white); box-shadow: var(--shadow-sm);
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink-dark); transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

.nav-mobile {
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--white); transform: translateX(100%);
  transition: transform 0.35s var(--ease); z-index: 999;
  padding: 32px 28px; display: flex; flex-direction: column; gap: 2px;
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  display: block; padding: 16px 0;
  font-size: 22px; font-family: var(--font-serif); font-weight: 300;
  color: var(--ink-dark); border-bottom: 1px solid var(--off-white);
  transition: color var(--transition); letter-spacing: -0.01em;
}
.nav-mobile a:hover { color: var(--red); }

/* ── SEARCH OVERLAY ── */
#search-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(26,25,23,0.7);
  backdrop-filter: blur(4px);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 100px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
#search-overlay.open { opacity: 1; pointer-events: all; }
.search-box {
  width: 100%; max-width: 580px; margin: 0 24px;
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-xl);
  transform: translateY(-16px) scale(0.98);
  transition: transform 0.25s var(--ease-spring);
}
#search-overlay.open .search-box { transform: translateY(0) scale(1); }
.search-input-wrap {
  display: flex; align-items: center; padding: 18px 22px;
  border-bottom: 1px solid var(--off-white);
}
.search-input-wrap svg { color: var(--ink-light); flex-shrink: 0; }
#search-input {
  flex: 1; border: none; outline: none;
  font-size: 16px; font-family: var(--font-sans);
  padding: 0 14px; background: transparent; color: var(--ink-dark);
}
#search-close { color: var(--ink-light); transition: color var(--transition); font-size: 18px; }
#search-close:hover { color: var(--red); }
#search-results { max-height: 420px; overflow-y: auto; }
.search-result-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 22px; border-bottom: 1px solid var(--off-white);
  cursor: pointer; transition: background var(--transition);
}
.search-result-item:hover { background: var(--off-white); }
.search-result-item .sri-name { font-size: 14px; font-weight: 500; }
.search-result-item .sri-cat { font-size: 11px; color: var(--ink-light); margin-top: 2px; }
.search-result-item .sri-price {
  margin-left: auto; font-size: 14px; font-weight: 600;
  color: var(--red); font-family: var(--font-serif); white-space: nowrap;
}
.search-empty { padding: 32px 22px; color: var(--ink-light); font-size: 14px; text-align: center; }

/* ── PAGE WRAPPER ── */
#page-home, #page-shop, #page-about, #page-contact {
  display: none; padding-top: var(--nav-h);
}
#page-home.active, #page-shop.active,
#page-about.active, #page-contact.active { display: block; }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}

/* Japanese seigaiha wave pattern background */
.hero-right {
  position: relative;
  background: var(--ink-dark);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  min-height: calc(100vh - var(--nav-h));
}
.hero-right::before {
  content: '';
  position: absolute; inset: -40px;
  background-image:
    radial-gradient(ellipse 60px 60px at 60px 60px,
      transparent 58px, rgba(255,255,255,0.04) 58px, rgba(255,255,255,0.04) 60px, transparent 60px),
    radial-gradient(ellipse 60px 60px at 0px 60px,
      transparent 58px, rgba(255,255,255,0.04) 58px, rgba(255,255,255,0.04) 60px, transparent 60px),
    radial-gradient(ellipse 60px 60px at 60px 0px,
      transparent 58px, rgba(255,255,255,0.04) 58px, rgba(255,255,255,0.04) 60px, transparent 60px),
    radial-gradient(ellipse 60px 60px at 0px 0px,
      transparent 58px, rgba(255,255,255,0.04) 58px, rgba(255,255,255,0.04) 60px, transparent 60px);
  background-size: 60px 60px;
  animation: patternDrift 40s linear infinite;
}
@keyframes patternDrift {
  from { transform: translate(0,0); }
  to   { transform: translate(60px, 60px); }
}

.hero-graphic {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px; padding: 48px;
}
.hero-kanji {
  font-family: var(--font-serif);
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 300;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  letter-spacing: -0.02em;
  user-select: none;
  animation: fadeIn 1.2s ease both;
}
.hero-circle {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(192,57,43,0.3);
  animation: pulse 4s ease-in-out infinite;
}
.hero-circle:nth-child(2) {
  width: 480px; height: 480px;
  border-color: rgba(192,57,43,0.12);
  animation-delay: 1s;
}
.hero-circle:nth-child(3) {
  width: 640px; height: 640px;
  border-color: rgba(192,57,43,0.06);
  animation-delay: 2s;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.7; }
}

.hero-product-float {
  position: absolute; z-index: 3;
  display: flex; flex-direction: column; gap: 12px;
}
.float-badge {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  padding: 10px 18px;
  font-size: 13px; color: rgba(255,255,255,0.75);
  display: flex; align-items: center; gap: 8px;
  animation: floatUp 3s ease-in-out infinite;
  white-space: nowrap;
}
.float-badge:nth-child(2) { animation-delay: 1s; margin-left: 32px; }
.float-badge:nth-child(3) { animation-delay: 2s; }
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-badge-corner {
  position: absolute; bottom: 36px; right: 36px; z-index: 4;
  background: var(--red); color: white;
  width: 88px; height: 88px; border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(192,57,43,0.4);
  animation: spin-slow 20s linear infinite;
}
.hero-badge-corner .num {
  font-family: var(--font-serif); font-size: 26px;
  font-weight: 700; line-height: 1;
}
.hero-badge-corner .txt {
  font-size: 9px; letter-spacing: 0.1em;
  text-transform: uppercase; opacity: 0.85;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* Counter-rotate inner content */
.hero-badge-corner > * { animation: spin-slow 20s linear infinite reverse; }

.hero-left {
  display: flex; align-items: center;
  padding: 80px 60px 80px 0;
  background: var(--white);
}
.hero-left-inner { max-width: 520px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--red);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 400; line-height: 1.18;
  color: var(--ink-dark); margin-bottom: 24px;
  letter-spacing: -0.02em;
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero h1 em { font-style: normal; color: var(--red); }

.hero-tagline {
  font-size: 16px; font-weight: 300; color: var(--ink-light);
  margin-bottom: 44px; line-height: 1.75; max-width: 420px;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.3s both;
}

.hero-trust {
  display: flex; align-items: center; gap: 20px;
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--paper);
  animation: fadeUp 0.7s ease 0.4s both;
}
.trust-item { display: flex; flex-direction: column; }
.trust-num {
  font-family: var(--font-serif); font-size: 22px;
  font-weight: 500; color: var(--ink-dark); line-height: 1;
}
.trust-lbl { font-size: 11px; color: var(--ink-light); margin-top: 3px; }
.trust-divider { width: 1px; height: 36px; background: var(--paper); }

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--ink-dark); padding: 13px 0;
  overflow: hidden; white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 25s linear infinite;
  color: rgba(250,250,248,0.35);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius-sm); transition: all var(--transition);
  white-space: nowrap; cursor: pointer; border: none;
  font-family: var(--font-sans);
}
.btn-primary {
  background: var(--ink-dark); color: var(--white);
}
.btn-primary:hover {
  background: var(--red); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.3);
}
.btn-outline {
  border: 1.5px solid var(--ink-dark); color: var(--ink-dark);
  background: transparent;
}
.btn-outline:hover {
  background: var(--ink-dark); color: var(--white);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366; color: #fff;
}
.btn-whatsapp:hover {
  background: #20ba5a; transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

/* ── SECTION TITLES ── */
.section-head { text-align: center; margin-bottom: 60px; }
.section-head .eyebrow {
  display: inline-block; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400; color: var(--ink-dark);
  letter-spacing: -0.02em; line-height: 1.2;
}
.section-head p {
  margin-top: 14px; color: var(--ink-light);
  font-size: 15px; font-weight: 300; max-width: 480px;
  margin-left: auto; margin-right: auto;
}

/* ── CATEGORIES ── */
.categories-section { padding: 100px 0; background: var(--white); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(156px, 1fr));
  gap: 14px;
}
.cat-card {
  aspect-ratio: 1;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; cursor: pointer;
  transition: all 0.25s var(--ease-spring);
  border: 1.5px solid transparent;
  text-align: center; padding: 20px;
  position: relative; overflow: hidden;
}
.cat-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--red-dim); opacity: 0;
  transition: opacity var(--transition);
}
.cat-card:hover {
  border-color: var(--red);
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow);
}
.cat-card:hover::before { opacity: 1; }
.cat-card .cat-icon { font-size: 30px; position: relative; }
.cat-card .cat-name {
  font-size: 12px; font-weight: 600; color: var(--ink);
  letter-spacing: 0.02em; position: relative;
}
.cat-card .cat-count {
  font-size: 11px; color: var(--ink-light); position: relative;
}

/* ── FEATURED ── */
.featured-section { padding: 100px 0; background: var(--off-white); }

/* ── PRODUCT CARD ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--paper);
  transition: all 0.28s var(--ease);
  cursor: pointer; position: relative;
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-img {
  aspect-ratio: 1; background: var(--off-white);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; color: var(--ink-light);
}
.product-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-img img { transform: scale(1.06); }
.img-placeholder-icon { font-size: 36px; opacity: 0.2; }
.img-placeholder-text {
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; opacity: 0.35;
  text-align: center; padding: 0 16px;
}

.product-badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 4px; z-index: 2;
}
.badge {
  display: inline-block; padding: 3px 9px;
  border-radius: 3px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.badge-out  { background: var(--ink-dark); color: var(--white); }
.badge-sale { background: var(--red); color: var(--white); }
.badge-new  { background: var(--gold); color: var(--white); }

.product-info { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-cat-tag {
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--red); margin-bottom: 7px;
}
.product-name {
  font-size: 14px; font-weight: 500; color: var(--ink-dark);
  line-height: 1.4; margin-bottom: 6px;
}
.product-desc {
  font-size: 12px; color: var(--ink-light); line-height: 1.55;
  margin-bottom: 16px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.product-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
  padding-top: 14px; border-top: 1px solid var(--off-white);
}
.product-price {
  font-family: var(--font-serif); font-size: 19px;
  font-weight: 500; color: var(--ink-dark); line-height: 1;
}
.product-price span { font-size: 11px; font-weight: 300; color: var(--ink-light); font-family: var(--font-sans); }

.wa-order-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 13px; background: #25D366; color: #fff;
  border-radius: var(--radius-sm); font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all var(--transition); flex-shrink: 0;
}
.wa-order-btn:hover { background: #20ba5a; transform: translateY(-1px); }
.wa-order-btn svg { width: 13px; height: 13px; }

/* ── PRODUCT MODAL ── */
#product-modal {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(26,25,23,0.6);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
#product-modal.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 700px; width: 100%; max-height: 90vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-xl);
  transform: scale(0.94) translateY(10px);
  transition: transform 0.28s var(--ease-spring);
  position: relative;
}
#product-modal.open .modal-box { transform: scale(1) translateY(0); }
.modal-img {
  aspect-ratio: 1; background: var(--off-white);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; color: var(--ink-light);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden; position: relative;
}
.modal-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.modal-img .img-placeholder-icon { font-size: 52px; opacity: 0.18; }
.modal-img .img-placeholder-text {
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; opacity: 0.35; text-align: center; padding: 0 20px;
}
.modal-body {
  padding: 36px; display: flex; flex-direction: column; gap: 16px;
}
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 1;
  width: 34px; height: 34px; background: var(--off-white);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: var(--ink-light); font-size: 16px;
  transition: all var(--transition); border: none; cursor: pointer;
}
.modal-close:hover { background: var(--red); color: white; }
.modal-body .modal-cat {
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--red);
}
.modal-body h3 {
  font-family: var(--font-serif); font-size: 24px;
  font-weight: 400; color: var(--ink-dark); line-height: 1.25;
}
.modal-body .modal-price {
  font-family: var(--font-serif); font-size: 32px;
  color: var(--ink-dark); line-height: 1;
}
.modal-body .modal-price small {
  font-size: 14px; font-weight: 300; color: var(--ink-light);
  font-family: var(--font-sans);
}
.modal-body .modal-desc {
  font-size: 14px; color: var(--ink-light); line-height: 1.75; flex: 1;
}
.modal-body .modal-actions {
  display: flex; flex-direction: column; gap: 10px; margin-top: 8px;
}
.modal-body .modal-actions .btn { justify-content: center; }

/* ── SHOP PAGE ── */
.shop-header {
  padding: 60px 0 36px; background: var(--off-white);
  border-bottom: 1px solid var(--paper); text-align: center;
}
.shop-header h1 {
  font-family: var(--font-serif); font-size: 44px;
  font-weight: 400; color: var(--ink-dark); letter-spacing: -0.02em;
}
.shop-header p { font-size: 15px; color: var(--ink-light); margin-top: 8px; font-weight: 300; }

.shop-controls {
  padding: 20px 0; background: var(--white);
  border-bottom: 1px solid var(--paper);
  position: sticky; top: var(--nav-h); z-index: 100;
  box-shadow: var(--shadow-sm);
}
.shop-controls-inner { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-scroll {
  display: flex; gap: 8px; flex-wrap: wrap;
  flex: 1; overflow-x: visible;
}
.filter-btn {
  flex-shrink: 0; padding: 8px 18px;
  border: 1.5px solid var(--paper); border-radius: 24px;
  font-size: 12px; font-weight: 500; color: var(--ink-light);
  transition: all var(--transition); white-space: nowrap;
  background: transparent; cursor: pointer; font-family: var(--font-sans);
}
.filter-btn:hover { border-color: var(--ink-light); color: var(--ink); }
.filter-btn.active { background: var(--red); color: white; border-color: var(--red); }
.shop-count { font-size: 12px; color: var(--ink-light); flex-shrink: 0; white-space: nowrap; }

.shop-body { padding: 52px 0 96px; }

.category-section { margin-bottom: 72px; }
.category-section-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px; padding-bottom: 16px;
  border-bottom: 1px solid var(--paper);
}
.category-section-header h3 {
  font-family: var(--font-serif); font-size: 24px;
  font-weight: 400; color: var(--ink-dark);
}
.category-section-header .cat-count-badge {
  font-size: 12px; color: var(--ink-light);
  background: var(--off-white); padding: 3px 10px;
  border-radius: 20px;
}

/* ── WHY US ── */
.why-section { padding: 100px 0; background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 2px; margin-top: 0; border: 1px solid var(--paper);
  border-radius: var(--radius); overflow: hidden;
}
.why-card {
  padding: 40px 32px; background: var(--white);
  border-right: 1px solid var(--paper);
  transition: background var(--transition);
}
.why-card:last-child { border-right: none; }
.why-card:hover { background: var(--off-white); }
.why-card .icon { font-size: 32px; margin-bottom: 18px; }
.why-card h4 {
  font-family: var(--font-serif); font-size: 18px;
  font-weight: 400; color: var(--ink-dark); margin-bottom: 10px;
}
.why-card p { font-size: 13px; color: var(--ink-light); line-height: 1.7; font-weight: 300; }

/* ── CTA ── */
.cta-section {
  padding: 100px 0; background: var(--ink-dark); text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '日本食';
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-serif); font-size: 200px; font-weight: 700;
  color: rgba(255,255,255,0.02); line-height: 1; pointer-events: none;
  white-space: nowrap;
}
.cta-section .eyebrow {
  display: block; color: var(--red); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 18px;
}
.cta-section h2 {
  font-family: var(--font-serif); font-size: clamp(28px,3vw,44px);
  font-weight: 400; color: var(--white); margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.cta-section p { color: rgba(250,250,248,0.45); font-size: 15px; margin-bottom: 44px; font-weight: 300; }
.cta-section .cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta-section .btn-outline {
  border-color: rgba(250,250,248,0.2); color: var(--white); background: transparent;
}
.cta-section .btn-outline:hover { background: rgba(250,250,248,0.08); border-color: rgba(250,250,248,0.4); }

/* ── ABOUT ── */
.about-hero {
  padding: 88px 0; background: var(--off-white); text-align: center;
}
.about-hero .eyebrow {
  display: block; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--red); margin-bottom: 18px;
}
.about-hero h1 {
  font-family: var(--font-serif); font-size: clamp(34px,4vw,56px);
  font-weight: 400; color: var(--ink-dark); letter-spacing: -0.02em;
}
.about-story {
  padding: 88px 0; display: grid;
  grid-template-columns: 1fr 1fr; gap: 88px; align-items: center;
}
.about-story-img {
  aspect-ratio: 4/3; background: var(--off-white); border-radius: var(--radius);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; color: var(--ink-light); overflow: hidden;
}
.about-story-img .placeholder-icon { font-size: 52px; opacity: 0.18; }
.about-story-img p { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.35; }
.about-text .section-label {
  display: block; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--red); margin-bottom: 18px;
}
.about-text h2 {
  font-family: var(--font-serif); font-size: 34px;
  font-weight: 400; color: var(--ink-dark); margin-bottom: 24px; line-height: 1.3;
}
.about-text p {
  font-size: 15px; color: var(--ink-light); line-height: 1.85;
  margin-bottom: 18px; font-weight: 300;
}
.about-values { padding: 88px 0; background: var(--off-white); }
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px,1fr));
  gap: 20px; margin-top: 52px;
}
.value-card {
  padding: 36px; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--paper);
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.value-card .val-icon { font-size: 30px; margin-bottom: 18px; }
.value-card h4 {
  font-family: var(--font-serif); font-size: 19px;
  font-weight: 400; color: var(--ink-dark); margin-bottom: 10px;
}
.value-card p { font-size: 13px; color: var(--ink-light); line-height: 1.7; font-weight: 300; }

/* ── CONTACT ── */
.contact-hero { padding: 88px 0; background: var(--off-white); text-align: center; }
.contact-hero .eyebrow {
  display: block; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--red); margin-bottom: 18px;
}
.contact-hero h1 {
  font-family: var(--font-serif); font-size: clamp(34px,4vw,56px);
  font-weight: 400; color: var(--ink-dark); letter-spacing: -0.02em;
}
.contact-body {
  padding: 88px 0; display: grid;
  grid-template-columns: 1fr 1.2fr; gap: 72px;
}
.contact-info h3 {
  font-family: var(--font-serif); font-size: 26px;
  font-weight: 400; color: var(--ink-dark); margin-bottom: 28px;
}
.contact-info-items { display: flex; flex-direction: column; gap: 22px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--off-white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.info-label {
  font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-light); margin-bottom: 3px;
}
.info-value { font-size: 14px; font-weight: 500; color: var(--ink-dark); }
.info-value a:hover { color: var(--red); }
.social-links { display: flex; gap: 10px; margin-top: 36px; }
.social-link {
  width: 42px; height: 42px; border: 1.5px solid var(--paper);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 17px; transition: all var(--transition);
}
.social-link:hover { border-color: var(--red); background: var(--red-pale); }
.contact-form h3 {
  font-family: var(--font-serif); font-size: 26px;
  font-weight: 400; color: var(--ink-dark); margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-light); margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--paper); border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-size: 14px; color: var(--ink-dark);
  background: var(--white); outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--ink-dark); }
.form-group textarea { min-height: 130px; resize: vertical; }
.wa-cta-block {
  background: #f0fdf4; border: 1.5px solid #86efac;
  border-radius: var(--radius-sm); padding: 20px;
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
}
.wa-cta-block .wa-icon { font-size: 28px; }
.wa-cta-block p { font-size: 13px; color: #15803d; flex: 1; line-height: 1.5; }
.wa-cta-block strong { display: block; margin-bottom: 2px; }

/* ── FOOTER ── */
footer {
  background: var(--ink-dark); color: var(--white);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 56px; margin-bottom: 56px;
}
.footer-brand .logo-mark {
  width: 42px; height: 42px; background: var(--red);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.footer-brand .logo-mark span {
  font-family: var(--font-serif); font-size: 19px; font-weight: 700; color: var(--white);
}
.footer-brand h4 {
  font-family: var(--font-serif); font-size: 18px;
  font-weight: 400; color: var(--white); margin-bottom: 10px;
}
.footer-brand p {
  font-size: 13px; color: rgba(250,250,248,0.38);
  line-height: 1.75; font-weight: 300; max-width: 280px;
}
.footer-col h5 {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(250,250,248,0.3); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 13px; color: rgba(250,250,248,0.6);
  transition: color var(--transition); cursor: pointer;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(250,250,248,0.07);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(250,250,248,0.25);
  flex-wrap: wrap; gap: 12px;
}

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--ink-dark); color: var(--white);
  padding: 14px 22px; border-radius: var(--radius);
  font-size: 13px; font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateY(80px) scale(0.9); opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease-spring);
}
.toast.show { transform: translateY(0) scale(1); opacity: 1; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 64px 0; order: 2; }
  .hero-right { min-height: 380px; order: 1; }
  .about-story { grid-template-columns: 1fr; gap: 48px; }
  .contact-body { grid-template-columns: 1fr; gap: 52px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card { border-right: none; border-bottom: 1px solid var(--paper); }
  .why-card:nth-child(odd) { border-right: 1px solid var(--paper); }
}

@media (max-width: 768px) {
  :root { --nav-h: 56px; }
  .nav-links, .nav-search-btn { display: none; }
  .nav-hamburger { display: flex; }
  .hero-left { padding: 52px 0; }
  .hero h1 { font-size: 34px; }
  .hero-trust { gap: 16px; }
  .categories-grid { grid-template-columns: repeat(auto-fill, minmax(130px,1fr)); }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 12px; }
  .modal-box { grid-template-columns: 1fr; }
  .modal-img { aspect-ratio: 4/3; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: none !important; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-info { padding: 13px; }
  .product-price { font-size: 16px; }
  .product-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
  .wa-order-btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .cta-section .cta-actions { flex-direction: column; align-items: center; }
  .hero-badge-corner { width: 70px; height: 70px; bottom: 20px; right: 20px; }
  .hero-badge-corner .num { font-size: 20px; }
}

/* ══════════════════════════════════════
   CART, ORDER MODALS, PRODUCT UPDATES
══════════════════════════════════════ */

/* Cart icon button */
.cart-btn {
  position: relative; display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border: 1.5px solid var(--paper);
  border-radius: 24px; font-size: 12px; color: var(--ink);
  background: var(--off-white); transition: all var(--transition); cursor: pointer;
  font-family: var(--font-sans); font-weight: 500;
}
.cart-btn:hover { border-color: var(--ink-light); background: var(--white); box-shadow: var(--shadow-sm); }
.cart-count {
  display: none; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--red); color: white;
  font-size: 10px; font-weight: 700; margin-left: 2px;
}

/* Add to cart button on card */
.cart-add-btn {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 14px; background: var(--ink-dark); color: white;
  border-radius: var(--radius-sm); font-size: 11px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: all var(--transition); border: none; cursor: pointer;
  font-family: var(--font-sans); flex-shrink: 0;
}
.cart-add-btn:hover { background: var(--red); transform: translateY(-1px); }
.cart-add-btn.disabled, .cart-add-btn:disabled {
  background: var(--paper); color: var(--ink-light); cursor: not-allowed; transform: none;
}

/* Cart Overlay */
#cart-overlay {
  position: fixed; inset: 0; z-index: 4000;
  background: rgba(26,25,23,0.5); backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
#cart-overlay.open { opacity: 1; pointer-events: all; }

/* Cart Drawer */
#cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 4001;
  width: 100%; max-width: 420px;
  background: var(--white);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}
#cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--paper); flex-shrink: 0;
}
.cart-header h3 {
  font-family: var(--font-serif); font-size: 20px;
  font-weight: 400; color: var(--ink-dark);
}
.cart-header-right { display: flex; align-items: center; gap: 12px; }
.cart-clear-btn {
  font-size: 11px; color: var(--ink-light); padding: 4px 10px;
  border: 1px solid var(--paper); border-radius: 12px;
  transition: all var(--transition); cursor: pointer; font-family: var(--font-sans);
}
.cart-clear-btn:hover { border-color: var(--red); color: var(--red); }
.cart-close-btn {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--off-white); color: var(--ink-light);
  font-size: 16px; transition: all var(--transition); cursor: pointer;
}
.cart-close-btn:hover { background: var(--red); color: white; }

#cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
#cart-footer { flex-shrink: 0; padding: 16px 24px; border-top: 1px solid var(--paper); background: var(--white); }

.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; height: 100%; text-align: center;
  color: var(--ink-light);
}
.cart-empty-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.3; }
.cart-empty p { font-size: 15px; }

.cart-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--off-white);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 60px; height: 60px; border-radius: var(--radius-sm);
  background: var(--off-white); flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 13px; font-weight: 500; color: var(--ink-dark); line-height: 1.3; }
.cart-item-price { font-size: 14px; font-weight: 600; color: var(--red); font-family: var(--font-serif); margin-top: 4px; }
.cart-item-cat { font-size: 11px; color: var(--ink-light); margin-top: 2px; }
.cart-item-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }

.qty-control {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--paper); border-radius: var(--radius-sm); overflow: hidden;
}
.qty-btn {
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  background: var(--off-white); font-size: 16px; color: var(--ink); cursor: pointer;
  transition: background var(--transition); border: none; font-family: var(--font-sans);
}
.qty-btn:hover { background: var(--paper); }
.qty-val {
  width: 32px; text-align: center; font-size: 13px;
  font-weight: 600; color: var(--ink-dark);
}
.cart-remove {
  font-size: 12px; color: var(--ink-light); cursor: pointer;
  transition: color var(--transition); padding: 2px;
}
.cart-remove:hover { color: var(--red); }

.cart-summary { display: flex; flex-direction: column; gap: 8px; }
.cart-summary-row {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--ink-light);
}
.cart-summary-row.total {
  font-size: 16px; font-weight: 600; color: var(--ink-dark);
  padding-top: 10px; border-top: 1px solid var(--paper); margin-top: 4px;
  font-family: var(--font-serif);
}
.btn-wa-cart {
  width: 100%; margin-top: 10px; padding: 12px;
  background: #25D366; color: white; border: none; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; cursor: pointer; font-family: var(--font-sans);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background var(--transition);
}
.btn-wa-cart:hover { background: #20ba5a; }

/* ── ORDER MODAL ── */
#order-modal {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(26,25,23,0.65); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px; opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
#order-modal.open { opacity: 1; pointer-events: all; }
.order-box {
  background: var(--white); border-radius: var(--radius-lg);
  width: 100%; max-width: 580px; max-height: 92vh; overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.28s var(--ease-spring);
}
#order-modal.open .order-box { transform: scale(1) translateY(0); }

.order-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px; border-bottom: 1px solid var(--paper);
}
.order-header h3 {
  font-family: var(--font-serif); font-size: 20px; font-weight: 400; color: var(--ink-dark);
}
.order-num-badge {
  font-family: var(--font-mono, monospace); font-size: 12px;
  color: var(--ink-light); background: var(--off-white);
  padding: 4px 10px; border-radius: 12px;
}
.order-body { padding: 24px 28px; display: flex; flex-direction: column; gap: 20px; }

.order-section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-light); margin-bottom: 10px;
}
.order-items-list {
  background: var(--off-white); border-radius: var(--radius-sm); padding: 14px 16px;
  display: flex; flex-direction: column; gap: 6px; max-height: 160px; overflow-y: auto;
}
.order-item-line {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--ink);
}
.order-totals { display: flex; flex-direction: column; gap: 6px; }
.order-total-row {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--ink-light);
}
.order-total-row.grand {
  font-size: 17px; font-weight: 600; color: var(--ink-dark);
  padding-top: 10px; border-top: 1px solid var(--paper);
  font-family: var(--font-serif);
}

.order-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.order-form-grid .full { grid-column: 1/-1; }
.order-field label {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-light); margin-bottom: 6px;
}
.order-field input, .order-field textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--paper); border-radius: var(--radius-sm);
  font-family: var(--font-sans); font-size: 14px; color: var(--ink-dark);
  background: var(--white); outline: none; transition: border-color var(--transition);
}
.order-field input:focus, .order-field textarea:focus { border-color: var(--ink-dark); }
.order-field textarea { min-height: 80px; resize: vertical; }

.pay-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pay-option {
  padding: 16px; border: 2px solid var(--paper); border-radius: var(--radius);
  cursor: pointer; text-align: center; transition: all var(--transition);
  background: var(--white);
}
.pay-option:hover { border-color: var(--ink-dark); }
.pay-option .pay-icon { font-size: 24px; margin-bottom: 8px; }
.pay-option .pay-label { font-size: 13px; font-weight: 600; color: var(--ink-dark); }
.pay-option .pay-sub { font-size: 11px; color: var(--ink-light); margin-top: 3px; }
.pay-option.whatsapp:hover, .pay-option.whatsapp:focus { border-color: #25D366; background: #f0fdf4; }
.pay-option.transfer:hover, .pay-option.transfer:focus { border-color: var(--blue, #5b9cf6); background: #eff6ff; }

/* ── CONFIRM MODAL ── */
#order-confirm-modal, #bank-transfer-modal {
  position: fixed; inset: 0; z-index: 6000;
  background: rgba(26,25,23,0.7); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
#order-confirm-modal.open, #bank-transfer-modal.open { opacity: 1; pointer-events: all; }
.confirm-box, .transfer-box {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 460px; width: 100%; padding: 40px 36px; text-align: center;
  box-shadow: var(--shadow-xl);
  transform: scale(0.94); transition: transform 0.28s var(--ease-spring);
}
#order-confirm-modal.open .confirm-box,
#bank-transfer-modal.open .transfer-box { transform: scale(1); }
.confirm-icon { font-size: 52px; margin-bottom: 20px; }
.confirm-box h3, .transfer-box h3 {
  font-family: var(--font-serif); font-size: 24px; font-weight: 400;
  color: var(--ink-dark); margin-bottom: 10px;
}
.confirm-box p, .transfer-box p { font-size: 14px; color: var(--ink-light); line-height: 1.7; margin-bottom: 8px; }
.confirm-order-num {
  font-family: monospace; font-size: 20px; font-weight: 700;
  color: var(--red); letter-spacing: 0.05em; margin: 16px 0;
  background: var(--off-white); padding: 10px 20px; border-radius: var(--radius-sm);
  display: inline-block;
}
.transfer-bank-details {
  background: var(--off-white); border-radius: var(--radius);
  padding: 20px; margin: 20px 0; text-align: left;
}
.bank-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--paper); font-size: 13px;
}
.bank-row:last-child { border-bottom: none; }
.bank-row .bl { color: var(--ink-light); }
.bank-row .bv { font-weight: 600; color: var(--ink-dark); }
.transfer-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }

/* ── MODAL STOCK BADGES ── */
.modal-stock-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 600;
}
.modal-stock-badge.in { background: #f0fdf4; color: #15803d; }
.modal-stock-badge.out { background: #fef2f2; color: var(--red); }

/* ── QTY SELECTOR IN MODAL ── */
.modal-qty-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.modal-qty-control {
  display: flex; align-items: center;
  border: 1.5px solid var(--paper); border-radius: var(--radius-sm); overflow: hidden;
}
.modal-qty-control button {
  width: 36px; height: 36px; background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer; transition: background var(--transition);
  border: none; color: var(--ink-dark);
}
.modal-qty-control button:hover { background: var(--paper); }
.modal-qty-control input {
  width: 48px; height: 36px; text-align: center;
  border: none; outline: none; font-size: 14px; font-weight: 600;
  font-family: var(--font-sans); color: var(--ink-dark); background: transparent;
}

/* ── LOGO IMAGE ── */
.nav-logo-img {
  height: 36px; width: 36px; border-radius: var(--radius-sm);
  object-fit: cover;
}

/* ── SOCIAL LINKS (footer colored) ── */
.social-link-fb   { color: #1877f2; }
.social-link-ig   { color: #e1306c; }
.social-link-tt   { color: var(--ink-dark); }

/* Toast types */
.toast.error { background: var(--red); }
.toast.success { background: var(--green); }

@media (max-width: 480px) {
  #cart-drawer { max-width: 100%; }
  .order-form-grid { grid-template-columns: 1fr; }
  .pay-options { grid-template-columns: 1fr; }
  .confirm-box, .transfer-box { padding: 28px 20px; }
}

/* ══════════════════════════════════════
   HERO PHOTO VERSION
══════════════════════════════════════ */

.hero-right-photo {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 8s ease;
  transform: scale(1.04);
}

.hero-right-photo:hover .hero-bg-photo {
  transform: scale(1);
}

/* Soft gradient overlay — light on right, slightly darkened bottom for badge */
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(250,250,248,0.18) 0%, transparent 60%),
    linear-gradient(to top, rgba(26,25,23,0.25) 0%, transparent 50%);
  z-index: 1;
}

.hero-photo-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 40px;
  gap: 20px;
}

.hero-kanji-subtle {
  font-family: var(--font-serif);
  font-size: clamp(100px, 14vw, 180px);
  font-weight: 300;
  color: rgba(192, 57, 43, 0.12);
  line-height: 1;
  letter-spacing: -0.02em;
  user-select: none;
  animation: fadeIn 1.5s ease both;
}

.float-badge-dark {
  background: rgba(26,25,23,0.55) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-color: rgba(255,255,255,0.12) !important;
  color: rgba(255,255,255,0.9) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Badge stays legible against light background */
.hero-badge-corner {
  z-index: 3;
  background: var(--red);
  box-shadow: 0 8px 24px rgba(192,57,43,0.5);
}

/* Mobile: stack photo above text, make it shorter */
@media (max-width: 1024px) {
  .hero-right-photo {
    min-height: 320px;
  }
  .hero-bg-photo {
    object-position: center 20%;
  }
  .hero-photo-content {
    padding: 32px 28px;
  }
  .hero-kanji-subtle {
    font-size: 80px;
  }
}

@media (max-width: 768px) {
  .hero-right-photo {
    min-height: 280px;
    order: 1;
  }
  .hero-left { order: 2; }
  .hero-kanji-subtle { font-size: 64px; }
  .float-badge { font-size: 11px; padding: 7px 14px; }
  .hero-photo-content { gap: 12px; }
}

/* ── SALE PRICE DISPLAY ── */
.price-original {
  font-size: 12px;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink-light);
  text-decoration: line-through;
  display: block;
  margin-bottom: 2px;
}
.product-price .price-original { font-size: 11px; }
.badge-sale {
  background: var(--red);
  color: white;
  font-weight: 700;
}
/* Hide delivery charge from hero trust bar on front page */
.hide-on-front { display: none !important; }
