/* =========================================================================
   Sushi Haus Bremen – Design System
   Leitidee: "Nori & Reispapier" – tiefes Schwarz, warmes Cremeweiß,
   ein einziger Gold-Akzent für jede Handlungsaufforderung.
   ========================================================================= */

@import url('fonts.css');

:root {
  /* Farben */
  --nori: #0e0e10;
  --nori-soft: #18181c;
  --nori-line: #2c2c31;
  --gold: #d4af37;
  --gold-light: #e8ca6b;
  --gold-dark: #a8862a;
  --cream: #faf7f2;
  --cream-deep: #f2ece0;
  --ink: #1a1a1a;
  --stone: #6b7280;
  --stone-light: #9a9a9a;
  --line: #e7e1d8;
  --white: #ffffff;
  --coral: #e63946;
  --wasabi: #5f7a3d;
  --wasabi-bg: #eef2e6;
  --coral-bg: #fbeaec;
  --gold-bg: #fbf3dd;

  /* Typografie */
  --font-display: 'Playfair Display', 'Iowan Old Style', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1260px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 14px -6px rgba(14, 14, 16, .18);
  --shadow-md: 0 16px 40px -16px rgba(14, 14, 16, .35);
  --shadow-gold: 0 10px 26px -10px rgba(212, 175, 55, .55);
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
svg { width: 1em; height: 1em; flex-shrink: 0; display: inline-block; vertical-align: -0.125em; }
.btn svg, .add-btn svg, .link-more svg, .diet-chip svg { width: 18px; height: 18px; }
.empty-state svg { width: 46px; height: 46px; color: var(--stone); margin-bottom: 14px; }
.badge svg { width: 12px; height: 12px; }
.icon-badge svg { width: 30px; height: 30px; }
.status-track .dot svg { width: 14px; height: 14px; }
.search-field svg { width: 18px; height: 18px; }
.thumb .placeholder svg { width: 30px; height: 30px; }
.cart-line .ph svg, .suggestion-chip .ph svg { width: 22px; height: 22px; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
p { margin: 0 0 1em; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--gold); color: var(--nori); padding: 10px 18px;
  border-radius: var(--radius-sm); font-weight: 600; transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

::selection { background: var(--gold); color: var(--nori); }

/* ---------------------------------------------------------------------- *
 * Buttons
 * ---------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: .95rem; border: 1.5px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: var(--nori);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-secondary {
  background: transparent; border-color: var(--ink); color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--white); }
.btn-secondary--light { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-secondary--light:hover { background: var(--white); color: var(--nori); }
.btn-dark { background: var(--nori); color: var(--white); }
.btn-dark:hover { background: #000; }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: .85rem; }
.btn-ghost { background: transparent; color: var(--gold-dark); padding: 8px 10px; }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; padding: 0; border-radius: 50%;
  background: rgba(255,255,255,.08); color: var(--white); border: 1px solid rgba(255,255,255,.18);
}
.btn-icon svg { width: 20px; height: 20px; }
.btn-icon:hover { background: rgba(255,255,255,.18); }

/* ---------------------------------------------------------------------- *
 * Badges & Tags
 * ---------------------------------------------------------------------- */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .72rem; font-weight: 700; letter-spacing: .02em;
  padding: 5px 11px; border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.badge-beliebt { background: var(--gold-bg); color: var(--gold-dark); }
.badge-scharf { background: var(--coral-bg); color: var(--coral); }
.badge-vegetarisch, .badge-vegan { background: var(--wasabi-bg); color: var(--wasabi); }
.badge-status { background: var(--cream-deep); color: var(--stone); }
.badge-neutral { background: rgba(255,255,255,.14); color: var(--white); }

/* ---------------------------------------------------------------------- *
 * Header
 * ---------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--nori); color: var(--white);
  border-bottom: 1px solid var(--nori-line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); flex: none; white-space: nowrap; }
.brand svg { color: var(--gold); width: 30px; height: 30px; flex: none; }
.brand strong { font-size: 1.18rem; letter-spacing: .06em; line-height: 1; display: block; white-space: nowrap; }
.brand span { font-size: .62rem; color: var(--stone-light); letter-spacing: .18em; text-transform: uppercase; white-space: nowrap; }
.site-header .container { flex-wrap: nowrap; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-size: .88rem; font-weight: 600; letter-spacing: .02em; color: var(--white);
  opacity: .82; position: relative; padding: 6px 0;
}
.main-nav a:hover, .main-nav a.active { opacity: 1; color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.cart-toggle { position: relative; }
.cart-count {
  position: absolute; top: -6px; right: -6px; background: var(--gold); color: var(--nori);
  font-size: .68rem; font-weight: 800; width: 19px; height: 19px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-toggle { display: none; }

.status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 600; padding: 5px 12px; border-radius: var(--radius-pill);
  background: rgba(95, 122, 61, .18); color: #a9d17f;
}
.status-pill.closed { background: rgba(230, 57, 70, .18); color: #f3a4ab; }
.status-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

/* ---------------------------------------------------------------------- *
 * Hero
 * ---------------------------------------------------------------------- */
.hero {
  background: var(--nori); color: var(--white); position: relative; overflow: hidden;
  padding: 64px 0 0;
}
.hero .container {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero-eyebrow {
  color: var(--gold); font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  font-size: .78rem; margin-bottom: 18px; display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ''; width: 26px; height: 1.5px; background: var(--gold); }
.hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem); color: var(--white); margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p.lead { font-size: 1.08rem; color: #d8d5cf; max-width: 46ch; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-figure { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.hero-figure img { width: 100%; height: 460px; object-fit: cover; }
.hero-figure .price-tag {
  position: absolute; left: 22px; bottom: 22px; background: rgba(14,14,16,.82);
  backdrop-filter: blur(6px); border: 1px solid rgba(212,175,55,.4);
  padding: 12px 18px; border-radius: var(--radius-md); font-size: .85rem;
}
.hero-figure .price-tag strong { color: var(--gold); font-family: var(--font-display); font-size: 1.15rem; display: block; }

.trust-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  padding: 30px 0; border-top: 1px solid var(--nori-line);
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item svg { color: var(--gold); width: 26px; height: 26px; flex: none; }
.trust-item strong { display: block; font-size: .92rem; }
.trust-item span { font-size: .8rem; color: var(--stone-light); }

.info-bar { background: var(--nori-soft); color: var(--white); border-top: 1px solid var(--nori-line); }
.info-bar .container {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 22px 24px;
}
.info-bar .item { display: flex; align-items: center; gap: 12px; }
.info-bar .item svg { color: var(--gold); width: 22px; height: 22px; flex: none; }
.info-bar .item strong { display: block; font-size: .92rem; }
.info-bar .item span { font-size: .8rem; color: var(--stone-light); }

.savings-banner {
  background: var(--gold-bg); border: 1px solid #ecd9a0; border-radius: var(--radius-md);
  padding: 18px 22px; display: flex; align-items: center; gap: 14px; margin: 34px 0;
}
.savings-banner svg { color: var(--gold-dark); width: 26px; height: 26px; flex: none; }
.savings-banner strong { color: var(--gold-dark); }

/* ---------------------------------------------------------------------- *
 * Section helpers
 * ---------------------------------------------------------------------- */
.section { padding: 68px 0; }
.section-tight { padding: 40px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--nori); color: var(--white); }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px;
  margin-bottom: 32px; flex-wrap: wrap;
}
.section-head .eyebrow {
  color: var(--gold-dark); font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  font-size: .74rem; margin-bottom: 8px; display: block;
}
.section-dark .section-head .eyebrow { color: var(--gold); }
.section-head h2 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); margin: 0; }
.section-dark .section-head h2 { color: var(--white); }
.link-more { font-weight: 700; color: var(--gold-dark); display: inline-flex; align-items: center; gap: 6px; }
.link-more svg { width: 16px; height: 16px; }

/* ---------------------------------------------------------------------- *
 * Category chip nav
 * ---------------------------------------------------------------------- */
.cat-scroller {
  display: flex; gap: 10px; overflow-x: auto; padding: 4px 0 6px;
  scrollbar-width: none;
}
.cat-scroller::-webkit-scrollbar { display: none; }
.cat-chip {
  flex: none; display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--radius-pill); border: 1.5px solid var(--line);
  background: var(--white); font-weight: 600; font-size: .86rem; color: var(--ink);
}
.cat-chip svg { width: 18px; height: 18px; color: var(--gold-dark); }
.cat-chip:hover { border-color: var(--gold); }
.cat-chip.active { background: var(--nori); border-color: var(--nori); color: var(--white); }
.cat-chip.active svg { color: var(--gold); }
.cat-nav-sticky {
  position: sticky; top: var(--header-h); z-index: 60; background: var(--cream);
  border-bottom: 1px solid var(--line); padding: 14px 0;
}

/* ---------------------------------------------------------------------- *
 * Product grid & card
 * ---------------------------------------------------------------------- */
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.product-card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease;
  position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.thumb {
  position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--cream-deep);
}
.thumb picture, .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb .placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px; color: var(--stone); background:
    repeating-linear-gradient(135deg, var(--cream-deep), var(--cream-deep) 10px, #ece5d6 10px, #ece5d6 20px);
  text-align: center; padding: 14px;
}
.thumb .placeholder svg { width: 30px; height: 30px; color: var(--gold-dark); }
.thumb .placeholder span { font-size: .72rem; }
.product-card .badges {
  position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; flex-wrap: wrap;
}
.product-card .body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card .unit { font-size: .74rem; color: var(--stone); text-transform: uppercase; letter-spacing: .04em; }
.product-card h3 { font-size: 1.02rem; margin: 0; font-family: var(--font-sans); font-weight: 700; }
.product-card .desc { font-size: .84rem; color: var(--stone); flex: 1; margin: 0; }
.product-card .row-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 4px; }
.product-card .price { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.add-btn {
  display: inline-flex; align-items: center; gap: 6px; background: var(--nori); color: var(--white);
  border-radius: var(--radius-pill); padding: 9px 16px; font-weight: 600; font-size: .82rem;
  border: none; transition: background .15s ease;
}
.add-btn:hover { background: var(--gold); color: var(--nori); }
.add-btn svg { width: 16px; height: 16px; }
.add-btn.is-added { background: var(--wasabi); color: var(--white); }

/* ---------------------------------------------------------------------- *
 * Search / filter bar (Speisekarte)
 * ---------------------------------------------------------------------- */
.menu-toolbar {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 26px;
}
.search-field {
  flex: 1 1 260px; position: relative;
}
.search-field svg {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--stone);
}
.search-field input {
  width: 100%; padding: 13px 16px 13px 44px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--line); background: var(--white); font-size: .92rem;
}
.search-field input:focus { outline: none; border-color: var(--gold); }
.diet-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.diet-chip {
  padding: 9px 15px; border-radius: var(--radius-pill); border: 1.5px solid var(--line);
  background: var(--white); font-size: .82rem; font-weight: 600;
}
.diet-chip.active { background: var(--wasabi); border-color: var(--wasabi); color: var(--white); }
.result-count { font-size: .85rem; color: var(--stone); margin-bottom: 18px; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--stone); }

/* ---------------------------------------------------------------------- *
 * Sticky category jump (Speisekarte full page)
 * ---------------------------------------------------------------------- */
.category-block { padding-top: 26px; scroll-margin-top: calc(var(--header-h) + 66px); }
.category-block h2 { font-size: 1.5rem; }
.category-block .cat-desc { color: var(--stone); margin-bottom: 20px; max-width: 60ch; }

/* ---------------------------------------------------------------------- *
 * Newsletter / promo banner
 * ---------------------------------------------------------------------- */
.promo-banner {
  background: var(--nori); color: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center;
  margin: 10px 0 0;
}
.promo-banner .content { padding: 44px; }
.promo-banner h3 { color: var(--white); font-size: 1.6rem; }
.promo-banner img { height: 100%; width: 100%; object-fit: cover; min-height: 260px; }

/* ---------------------------------------------------------------------- *
 * About split
 * ---------------------------------------------------------------------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.split img { border-radius: var(--radius-lg); width: 100%; height: 430px; object-fit: cover; box-shadow: var(--shadow-md); }
.check-list { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 10px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.check-list svg { width: 18px; height: 18px; color: var(--wasabi); flex: none; }

/* ---------------------------------------------------------------------- *
 * Footer
 * ---------------------------------------------------------------------- */
.site-footer { background: var(--nori); color: #cfcac0; padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h4 { color: var(--white); font-size: .92rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--font-sans); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid a { font-size: .88rem; opacity: .82; }
.footer-grid a:hover { opacity: 1; color: var(--gold); }
.footer-brand p { font-size: .88rem; max-width: 34ch; opacity: .78; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-bottom {
  border-top: 1px solid var(--nori-line); padding-top: 22px; display: flex;
  justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: .78rem; opacity: .65;
}
.footer-bottom nav { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------------------------------------------------------------------- *
 * Cart drawer
 * ---------------------------------------------------------------------- */
.cart-drawer-backdrop {
  position: fixed; inset: 0; background: rgba(14,14,16,.55); z-index: 190;
  opacity: 0; pointer-events: none; transition: opacity .2s ease;
}
.cart-drawer-backdrop.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 100%);
  background: var(--cream); z-index: 191; box-shadow: -20px 0 50px rgba(0,0,0,.3);
  transform: translateX(100%); transition: transform .25s ease;
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; background: var(--nori); color: var(--white);
}
.cart-drawer-head h2 { color: var(--white); font-size: 1.15rem; margin: 0; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 18px 22px; }
.cart-line { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-line img, .cart-line .ph { width: 62px; height: 62px; border-radius: var(--radius-sm); object-fit: cover; flex: none; background: var(--cream-deep); }
.cart-line .ph { display: flex; align-items: center; justify-content: center; color: var(--gold-dark); }
.cart-line .info { flex: 1; min-width: 0; }
.cart-line .info strong { display: block; font-size: .9rem; }
.cart-line .info .unit { font-size: .74rem; color: var(--stone); }
.qty-stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: var(--radius-pill); overflow: hidden; margin-top: 6px; }
.qty-stepper button {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; background: var(--white); border: none; font-weight: 700; color: var(--ink);
}
.qty-stepper svg { width: 14px; height: 14px; }
.qty-stepper button:hover { background: var(--cream-deep); }
.qty-stepper span { width: 26px; text-align: center; font-size: .85rem; font-weight: 700; }
.cart-line .remove { color: var(--coral); font-size: .74rem; font-weight: 700; margin-top: 6px; display: inline-block; }
.cart-line .line-price { font-weight: 700; font-family: var(--font-display); white-space: nowrap; }
.cart-drawer-foot { padding: 18px 22px 24px; border-top: 1px solid var(--line); background: var(--white); }
.summary-row { display: flex; justify-content: space-between; font-size: .9rem; margin-bottom: 8px; color: var(--stone); }
.summary-row.total { color: var(--ink); font-weight: 800; font-size: 1.1rem; font-family: var(--font-display); border-top: 1px solid var(--line); padding-top: 10px; margin-top: 10px; }
.min-order-progress { background: var(--cream-deep); border-radius: var(--radius-pill); height: 8px; overflow: hidden; margin: 12px 0; }
.min-order-progress span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--wasabi)); }
.suggestion-row { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px; margin: 14px 0; }
.suggestion-chip {
  flex: none; width: 128px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 10px; text-align: center;
}
.suggestion-chip img, .suggestion-chip .ph { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 6px; margin-bottom: 6px; background: var(--cream-deep); }
.suggestion-chip strong { font-size: .76rem; display: block; margin-bottom: 4px; }
.suggestion-chip button { width: 100%; }

/* ---------------------------------------------------------------------- *
 * Cart & Checkout page
 * ---------------------------------------------------------------------- */
.cart-page-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: flex-start; }
.summary-card {
  background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--line);
  padding: 26px; position: sticky; top: calc(var(--header-h) + 20px);
}
.cart-table-line { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-table-line img, .cart-table-line .ph { width: 84px; height: 84px; border-radius: var(--radius-sm); object-fit: cover; background: var(--cream-deep); }
.cart-table-line .ph { display: flex; align-items: center; justify-content: center; color: var(--gold-dark); }

.checkout-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: flex-start; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px; margin-bottom: 22px; }
.form-card h3 { font-size: 1.05rem; margin-bottom: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .82rem; font-weight: 700; margin-bottom: 6px; }
.field .hint { font-size: .76rem; color: var(--stone); margin-top: 4px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  background: var(--cream); font-size: .92rem;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.field-row { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; }
.field-row-3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; }
.toggle-group { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.toggle-option { border: 1.5px solid var(--line); border-radius: var(--radius-md); padding: 16px; cursor: pointer; }
.toggle-option input { display: none; }
.toggle-option strong { display: block; }
.toggle-option span { font-size: .8rem; color: var(--stone); }
.toggle-option:has(input:checked) { border-color: var(--gold); background: var(--gold-bg); }
.radio-card { border: 1.5px solid var(--line); border-radius: var(--radius-md); padding: 14px 16px; display: flex; align-items: center; gap: 12px; margin-bottom: 10px; cursor: pointer; }
.radio-card:has(input:checked) { border-color: var(--gold); background: var(--gold-bg); }
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: .88rem; margin-bottom: 20px; }
.alert-error { background: var(--coral-bg); color: #9b1c27; }
.alert-success { background: var(--wasabi-bg); color: #3c521f; }

/* ---------------------------------------------------------------------- *
 * Order confirmation / status
 * ---------------------------------------------------------------------- */
.confirmation-card {
  max-width: 640px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--line); padding: 46px; text-align: center;
}
.confirmation-card .icon-badge {
  width: 66px; height: 66px; border-radius: 50%; background: var(--wasabi-bg); color: var(--wasabi);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.order-number { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-dark); }
.status-track { display: flex; justify-content: space-between; margin: 34px 0; }
.status-track .step { flex: 1; text-align: center; position: relative; }
.status-track .step::before {
  content: ''; position: absolute; top: 13px; left: -50%; width: 100%; height: 2px; background: var(--line); z-index: 0;
}
.status-track .step:first-child::before { display: none; }
.status-track .step.done::before { background: var(--wasabi); }
.status-track .dot {
  width: 28px; height: 28px; border-radius: 50%; background: var(--white); border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; position: relative; z-index: 1;
}
.status-track .step.done .dot { background: var(--wasabi); border-color: var(--wasabi); color: var(--white); }
.status-track .step.current .dot { background: var(--gold); border-color: var(--gold); color: var(--nori); }
.status-track .label { font-size: .74rem; color: var(--stone); }

/* ---------------------------------------------------------------------- *
 * Generic content pages (About, FAQ, Legal, Allergens, Contact)
 * ---------------------------------------------------------------------- */
.page-hero { background: var(--nori); color: var(--white); padding: 56px 0 44px; }
.page-hero h1 { color: var(--white); margin-bottom: 6px; }
.page-hero p { color: var(--stone-light); margin: 0; }
.prose { max-width: 74ch; }
.prose h2 { font-size: 1.3rem; margin-top: 2em; }
.prose ul { padding-left: 1.2em; }
.legal-nav { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.legal-nav a { padding: 8px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-pill); font-size: .82rem; font-weight: 600; }
.legal-nav a.active { background: var(--nori); color: var(--white); border-color: var(--nori); }

.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq-item summary { font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 18px; height: 18px; color: var(--gold-dark); transition: transform .2s ease; flex: none; }
.faq-item[open] summary svg { transform: rotate(45deg); }
.faq-item p { margin-top: 12px; color: var(--stone); }

.allergen-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.allergen-table th, .allergen-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.allergen-table th { font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; color: var(--stone); }
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-md); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px; margin-bottom: 16px; }
.contact-info-card .row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.contact-info-card .row svg { width: 20px; height: 20px; color: var(--gold-dark); flex: none; margin-top: 2px; }
.map-embed { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); height: 220px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.review-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 22px; }
.review-stars { color: var(--gold); display: flex; gap: 2px; margin-bottom: 10px; }
.review-stars svg { width: 16px; height: 16px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ---------------------------------------------------------------------- *
 * Utility
 * ---------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack { display: grid; gap: 10px; }
.divider { height: 1px; background: var(--line); margin: 26px 0; border: none; }

/* ---------------------------------------------------------------------- *
 * Responsive
 * ---------------------------------------------------------------------- */
@media (max-width: 980px) {
  body { overflow-x: hidden; }
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-actions { gap: 8px; }
  .header-actions .status-pill { display: none; }
  .header-actions > a.btn-primary { display: none; }
  .site-header .container { padding: 0 16px; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .hero .container { grid-template-columns: 1fr; }
  .hero-figure img { height: 320px; }
  .split, .contact-grid, .checkout-grid, .cart-page-grid { grid-template-columns: 1fr; }
  .promo-banner { grid-template-columns: 1fr; }
  .promo-banner img { min-height: 200px; }
  .trust-row, .info-bar .container, .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .summary-card { position: static; }
}

@media (max-width: 720px) {
  .hero-cta .btn span, .hero-cta .btn { white-space: nowrap; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .section { padding: 46px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .field-row, .field-row-3 { grid-template-columns: 1fr; }
  .toggle-group { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .container { padding: 0 16px; }
}

/* ---------------------------------------------------------------------- *
 * Mobile nav drawer
 * ---------------------------------------------------------------------- */
.mobile-nav {
  position: fixed; inset: 0; background: var(--nori); z-index: 195; color: var(--white);
  transform: translateY(-100%); transition: transform .25s ease; padding: 24px; overflow-y: auto;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav .close-row { display: flex; justify-content: flex-end; margin-bottom: 30px; }
.mobile-nav a { display: block; font-size: 1.2rem; font-family: var(--font-display); padding: 14px 0; border-bottom: 1px solid var(--nori-line); }
