/* ═══════════════════════════════════════════════════════════
   Sakura House — Japanese Restaurant Theme
   Extends the base style.css with sakura palette + hovers
   ═══════════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap");

:root {
  /* Japanese palette override */
  --bg:          #fdf8f2;
  --bg-alt:      #f5ede0;
  --bg-deep:     #1a1208;
  --fg:          #1a1208;
  --fg-soft:     #5c4a35;
  --accent:      #c0392b;      /* beni-red */
  --accent-hover:#922b21;
  --accent-gold: #b7860d;      /* kincha gold */
  --sakura:      #e8a0b0;      /* cherry blossom */
  --matcha:      #4a7c59;      /* matcha green */
  --border:      #e5d9c8;

  --font-display: "Noto Serif JP", "Playfair Display", Georgia, serif;
}

/* ─── Hero ─────────────────────────────────────────────────── */
.jh-hero {
  min-height: 88vh;
  background:
    linear-gradient(160deg, rgba(26,18,8,0.65) 0%, rgba(26,18,8,0.42) 60%, rgba(192,57,43,0.15) 100%),
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.012) 0px,
      rgba(255,255,255,0.012) 1px,
      transparent 1px,
      transparent 40px
    ),
    linear-gradient(135deg, #1a1208 0%, #2e1a0e 40%, #4a1a0a 70%, #1a1208 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.jh-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(192,57,43,0.08) 0%, transparent 70%);
}
.jh-hero-inner {
  position: relative;
  z-index: 1;
}
.jh-hero-inner h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: -0.03em;
}
.jh-hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Marquee ribbon ────────────────────────────────────────── */
.jh-ribbon {
  background: var(--accent);
  color: #fff;
  overflow: hidden;
  padding: 0.6rem 0;
  white-space: nowrap;
}
.jh-ribbon-track {
  display: inline-block;
  animation: jh-marquee 28s linear infinite;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.jh-ribbon-track span {
  display: inline-block;
  margin: 0 2.5rem;
}
@keyframes jh-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── About section ─────────────────────────────────────────── */
.jh-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.jh-about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
.jh-stat {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.jh-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.jh-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--type-3xl);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.jh-stat-label {
  display: block;
  font-size: var(--type-xs);
  color: var(--fg-soft);
  margin-top: var(--space-2);
}

/* ─── Signature dish cards ──────────────────────────────────── */
.jh-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-8);
}
.jh-dish-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 340ms cubic-bezier(0.22,1,0.36,1),
              box-shadow 340ms cubic-bezier(0.22,1,0.36,1);
}
.jh-dish-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
.jh-dish-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 500ms cubic-bezier(0.22,1,0.36,1);
}
.jh-dish-card:hover .jh-dish-img {
  transform: scale(1.06);
}
/* placeholder images via CSS gradient art */
.jh-dish-img--sushi    { background: linear-gradient(135deg, #2d1b1b 0%, #5c2d2d 40%, #8a3324 70%, #c97a5c 100%); }
.jh-dish-img--ramen    { background: linear-gradient(135deg, #1a0f00 0%, #4a2800 40%, #8a5c2a 70%, #c8a06a 100%); }
.jh-dish-img--yakitori { background: linear-gradient(135deg, #1a1000 0%, #3d2800 40%, #7a5020 70%, #c8901c 100%); }
.jh-dish-img--mochi    { background: linear-gradient(135deg, #2d0a1a 0%, #7a2d5a 40%, #c46090 70%, #e8a0b0 100%); }

.jh-dish-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--matcha);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
}
.jh-dish-badge--red  { background: var(--accent); }
.jh-dish-badge--gold { background: var(--accent-gold); }

.jh-dish-body {
  padding: var(--space-6);
}
.jh-dish-body h3 {
  font-family: var(--font-display);
  font-size: var(--type-xl);
  margin-bottom: var(--space-2);
}
.jh-dish-body p {
  color: var(--fg-soft);
  font-size: var(--type-sm);
  margin: 0;
}
.jh-dish-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-6);
}
.jh-price {
  font-size: var(--type-lg);
  font-weight: 700;
  color: var(--accent);
}
.jh-order-btn {
  background: var(--accent);
  color: #fff;
  padding: 6px 16px;
  border-radius: var(--radius);
  font-size: var(--type-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 200ms ease, transform 200ms ease;
  display: inline-block;
}
.jh-order-btn:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
}

/* ─── CTA band ──────────────────────────────────────────────── */
.jh-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.jh-cta-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.jh-btn-light {
  background: #fff;
  color: var(--accent);
}
.jh-btn-light:hover {
  background: var(--bg-alt);
  color: var(--accent-hover);
}

/* ─── Hours / location ──────────────────────────────────────── */
.jh-hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.jh-location-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.jh-map-placeholder {
  background: linear-gradient(135deg, #1a1208 0%, #2d1f14 100%);
  padding: var(--space-16);
  text-align: center;
  color: #fff;
}
.jh-map-pin {
  font-size: 3rem;
  display: block;
  margin-bottom: var(--space-4);
}
.jh-map-placeholder p {
  color: rgba(255,255,255,0.8);
  font-size: var(--type-lg);
  margin: 0;
}
.jh-location-links {
  padding: var(--space-6);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  box-shadow: inset 0 0 0 2px var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* ─── Page hero (inner pages) ───────────────────────────────── */
.jh-page-hero {
  background: linear-gradient(135deg, #1a1208 0%, #2e1a0e 50%, #4a1a0a 100%);
  color: #fff;
  text-align: center;
  padding: var(--space-24) var(--space-8) var(--space-16);
}
.jh-page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--type-4xl);
  color: #fff;
  margin-bottom: var(--space-4);
}
.jh-page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: var(--type-lg);
  max-width: 560px;
  margin: 0 auto;
}
.jh-page-hero--dark {
  background: linear-gradient(135deg, #0e0906 0%, #1a1208 60%, #2a1800 100%);
}

/* ─── Category sticky nav (menu page) ──────────────────────── */
.jh-cat-nav {
  position: sticky;
  top: 60px;
  z-index: 9;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  padding: 0 var(--space-8);
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.jh-cat-nav::-webkit-scrollbar { height: 0; }
.jh-cat-nav a {
  flex-shrink: 0;
  padding: var(--space-4) var(--space-6);
  font-size: var(--type-sm);
  font-weight: 600;
  color: var(--fg-soft);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 200ms ease, border-color 200ms ease;
  white-space: nowrap;
}
.jh-cat-nav a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ─── Menu sections (menu page) ────────────────────────────── */
.jh-menu-section {
  margin-bottom: var(--space-24);
  scroll-margin-top: 120px;
}
.jh-menu-section-head {
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  border-bottom: 2px solid var(--border);
  padding-bottom: var(--space-4);
  margin-bottom: var(--space-12);
}
.jh-menu-section-head h2 {
  font-size: var(--type-3xl);
  font-family: var(--font-display);
}
.jh-menu-section-jp {
  font-family: var(--font-display);
  font-size: var(--type-lg);
  color: var(--fg-soft);
  opacity: 0.6;
}

.jh-menu-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-6);
}

/* ─── Menu cards with varied hover effects ──────────────────── */
.jh-menu-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.jh-menu-card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  transition: transform 400ms cubic-bezier(0.22,1,0.36,1),
              filter 400ms ease;
  flex-shrink: 0;
}
.jh-menu-card-body {
  padding: var(--space-5) var(--space-6) var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.jh-menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}
.jh-menu-card-top h3 {
  font-family: var(--font-display);
  font-size: var(--type-lg);
  flex: 1;
}
.jh-menu-card-body p {
  color: var(--fg-soft);
  font-size: var(--type-sm);
  flex: 1;
  margin: 0;
}
.jh-menu-card-actions {
  margin-top: var(--space-5);
}

/* Hover effect A: LIFT (translate + shadow) */
.jh-hover-lift {
  transition: transform 300ms cubic-bezier(0.22,1,0.36,1),
              box-shadow 300ms cubic-bezier(0.22,1,0.36,1),
              border-color 300ms ease;
}
.jh-hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26,18,8,0.16);
  border-color: var(--accent);
}
.jh-hover-lift:hover .jh-menu-card-img {
  transform: scale(1.05);
}

/* Hover effect B: GLOW (sakura glow + colour reveal) */
.jh-hover-glow {
  transition: box-shadow 350ms ease, transform 350ms ease;
}
.jh-hover-glow:hover {
  box-shadow: 0 0 0 3px var(--sakura), 0 12px 36px rgba(192,57,43,0.18);
  transform: translateY(-4px);
}
.jh-hover-glow:hover .jh-menu-card-img {
  filter: brightness(1.08) saturate(1.15);
  transform: scale(1.04);
}
.jh-hover-glow:hover .jh-menu-card-top h3 {
  color: var(--accent);
}

/* Hover effect C: SLIDE (image slides right, body slides in) */
.jh-hover-slide {
  transition: transform 300ms ease, box-shadow 300ms ease;
  overflow: hidden;
}
.jh-hover-slide:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.jh-hover-slide .jh-menu-card-img {
  transition: transform 450ms cubic-bezier(0.22,1,0.36,1);
  transform-origin: left center;
}
.jh-hover-slide:hover .jh-menu-card-img {
  transform: scale(1.08) translateX(4px);
}
.jh-hover-slide .jh-menu-card-body {
  transition: background 300ms ease;
}
.jh-hover-slide:hover .jh-menu-card-body {
  background: #fffaf5;
}

/* Hover effect D: TILT (3D perspective tilt on mouseover via CSS + custom prop) */
.jh-hover-tilt {
  transition: transform 300ms ease, box-shadow 300ms ease;
  transform-style: preserve-3d;
  perspective: 800px;
}
.jh-hover-tilt:hover {
  transform: perspective(800px) rotateY(-4deg) rotateX(2deg) translateY(-6px);
  box-shadow: 8px 16px 40px rgba(26,18,8,0.18);
}
.jh-hover-tilt:hover .jh-menu-card-img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

/* Placeholder image colours per dish */
.jh-img--edamame       { background: linear-gradient(135deg, #1a3320 0%, #2d6040 50%, #4a9060 100%); }
.jh-img--gyoza         { background: linear-gradient(135deg, #2a1808 0%, #5c3020 50%, #9c6040 100%); }
.jh-img--miso          { background: linear-gradient(135deg, #1a1400 0%, #3d3000 50%, #7a6020 100%); }
.jh-img--karaage       { background: linear-gradient(135deg, #2a1400 0%, #6a3400 50%, #c88040 100%); }
.jh-img--nigiri        { background: linear-gradient(135deg, #1a0000 0%, #4a1010 50%, #8a2020 70%, #e07060 100%); }
.jh-img--sashimi       { background: linear-gradient(135deg, #0a1a2a 0%, #1a3a5a 50%, #2a6090 70%, #60b0e0 100%); }
.jh-img--omakase       { background: linear-gradient(135deg, #1a0a00 0%, #4a2800 40%, #8a4820 70%, #e09060 100%); }
.jh-img--maki          { background: linear-gradient(135deg, #0a1a0a 0%, #1a3a1a 40%, #2a6a2a 70%, #5aaa5a 100%); }
.jh-img--tonkotsu      { background: linear-gradient(135deg, #1a0e00 0%, #4a2c00 40%, #8a5a1a 70%, #d0a060 100%); }
.jh-img--shoyu         { background: linear-gradient(135deg, #100800 0%, #3a1c00 40%, #703a10 70%, #c07030 100%); }
.jh-img--veggie-ramen  { background: linear-gradient(135deg, #0a180a 0%, #1e3c1e 40%, #3a6c3a 70%, #70a870 100%); }
.jh-img--yaki-udon     { background: linear-gradient(135deg, #1a1000 0%, #3c2800 40%, #703a00 70%, #c08020 100%); }
.jh-img--yakitori2     { background: linear-gradient(135deg, #1a0800 0%, #4a1800 40%, #8a3800 70%, #d07020 100%); }
.jh-img--salmon-teriyaki { background: linear-gradient(135deg, #2a0a00 0%, #6a2000 40%, #c04820 70%, #e08050 100%); }
.jh-img--katsu         { background: linear-gradient(135deg, #1e1000 0%, #4c2c00 40%, #8a5a10 70%, #d0a040 100%); }
.jh-img--tempura       { background: linear-gradient(135deg, #1e1600 0%, #4e3800 40%, #8e6a10 70%, #d0a830 100%); }
.jh-img--donburi       { background: linear-gradient(135deg, #1a0000 0%, #4a1010 40%, #9a3030 70%, #e07050 100%); }
.jh-img--mochi2        { background: linear-gradient(135deg, #280a18 0%, #6a2050 40%, #c06090 70%, #e8a0c0 100%); }
.jh-img--matcha-cake   { background: linear-gradient(135deg, #081808 0%, #1e481e 40%, #3a8a3a 70%, #70c070 100%); }

/* Tags */
.jh-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 99px;
  margin-left: 6px;
  vertical-align: middle;
}
.jh-tag--vegan  { background: #d4edda; color: #155724; }
.jh-tag--chef   { background: #fff3cd; color: #856404; }
.jh-tag--fan    { background: #f8d7da; color: #721c24; }
.jh-tag--new    { background: #d1ecf1; color: #0c5460; }

/* Add-to-order button */
.jh-add-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 8px 18px;
  font-size: var(--type-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.jh-add-btn:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(192,57,43,0.28);
}

/* ─── Drink grid ────────────────────────────────────────────── */
.jh-drink-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
}
.jh-drink-item {
  display: flex;
  justify-content: space-between;
  padding: var(--space-4) var(--space-2);
  border-bottom: 1px solid var(--border);
  font-size: var(--type-base);
  transition: background 200ms ease;
}
.jh-drink-item:hover {
  background: var(--bg-alt);
}
.jh-drink-item span:last-child {
  font-weight: 700;
  color: var(--accent);
}

/* ─── Order page ─────────────────────────────────────────────── */
.jh-section-title {
  font-family: var(--font-display);
  font-size: var(--type-2xl);
  margin: 0 0 var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid var(--border);
}
.jh-order-toggle {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.jh-toggle-btn {
  padding: var(--space-3) var(--space-8);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--fg-soft);
  font-size: var(--type-base);
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
}
.jh-toggle-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.jh-toggle-btn.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.jh-order-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-12);
  align-items: start;
}

/* Category filter tabs */
.jh-order-cats {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}
.jh-cat-btn {
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: var(--bg);
  color: var(--fg-soft);
  font-size: var(--type-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
}
.jh-cat-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.jh-cat-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* Order item rows */
.jh-order-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.jh-order-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.jh-order-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(192,57,43,0.1);
  transform: translateX(2px);
}
.jh-oi-img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius);
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.jh-oi-body {
  flex: 1;
  min-width: 0;
}
.jh-oi-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-1);
}
.jh-oi-top strong {
  font-family: var(--font-display);
  font-size: var(--type-base);
}
.jh-oi-body p {
  color: var(--fg-soft);
  font-size: var(--type-xs);
  margin: 0;
}
.jh-oi-add {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jh-oi-add:hover {
  background: var(--accent-hover);
  transform: scale(1.15) rotate(90deg);
}
.jh-oi-add.jh-added {
  background: var(--matcha);
  transform: scale(1.2);
}

/* Cart */
.jh-cart {
  position: sticky;
  top: 100px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow);
}
.jh-cart-items {
  min-height: 80px;
  margin-bottom: var(--space-4);
}
.jh-cart-empty {
  color: var(--fg-soft);
  font-size: var(--type-sm);
  text-align: center;
  padding: var(--space-8) 0;
  margin: 0;
}
.jh-cart-row {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--border);
}
.jh-cart-row-name {
  font-size: var(--type-sm);
  font-weight: 600;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.jh-cart-row-controls {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.jh-cart-row-controls button {
  width: 26px;
  height: 26px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-alt);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background 150ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jh-cart-row-controls button:hover { background: var(--border); }
.jh-cart-row-controls span {
  min-width: 20px;
  text-align: center;
  font-weight: 700;
}
.jh-cart-row-price {
  font-weight: 700;
  color: var(--accent);
  font-size: var(--type-sm);
}
.jh-cart-remove {
  background: none;
  border: none;
  color: var(--fg-soft);
  cursor: pointer;
  font-size: 0.75rem;
  padding: 0 4px;
  transition: color 150ms ease;
}
.jh-cart-remove:hover { color: var(--accent); }
.jh-cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: var(--type-lg);
  padding: var(--space-4) 0;
  border-top: 2px solid var(--fg);
  margin-bottom: var(--space-6);
}

/* Checkout form */
.jh-checkout-form {
  margin-top: var(--space-6);
}
.jh-form-group {
  margin-bottom: var(--space-5);
}
.jh-form-group label {
  display: block;
  font-size: var(--type-sm);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--fg);
}
.jh-form-group input,
.jh-form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: var(--type-base);
  color: var(--fg);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.jh-form-group input:focus,
.jh-form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}
.jh-submit-btn {
  width: 100%;
  justify-content: center;
  opacity: 1;
  transition: opacity 200ms ease, background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.jh-submit-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.jh-form-note {
  text-align: center;
  font-size: var(--type-xs);
  color: var(--fg-soft);
  margin: var(--space-3) 0 0;
}

/* Thank-you state */
.jh-thankyou {
  text-align: center;
  padding: var(--space-24) var(--space-8);
  max-width: 480px;
  margin: 0 auto;
}
.jh-thankyou-icon { font-size: 4rem; margin-bottom: var(--space-6); }
.jh-thankyou h2  { font-family: var(--font-display); font-size: var(--type-3xl); }
.jh-thankyou p   { color: var(--fg-soft); font-size: var(--type-lg); margin-top: var(--space-4); }

/* ─── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .jh-about-grid   { grid-template-columns: 1fr; }
  .jh-hours-grid   { grid-template-columns: 1fr; }
  .jh-order-layout { grid-template-columns: 1fr; }
  .jh-cart         { position: static; }
  .jh-cta-inner    { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .jh-about-stats  { grid-template-columns: 1fr 1fr; }
  .jh-card-grid    { grid-template-columns: 1fr; }
  .jh-menu-card-grid { grid-template-columns: 1fr; }
}
