/* ==========================================================================
   THE WAFFLE INN — "THE WAFFLE TABLE" DESIGN SYSTEM
   Editorial Food Magazine meets Modern Dessert Bar & Late-Night Café Culture
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Dancing+Script:wght@600;700&display=swap');

:root {
  /* The Waffle Table - Warm Ivory & Cream Editorial Palette */
  --bg-base: #fcf9f2;          /* Warm Ivory Ground */
  --bg-surface: #f5ede0;       /* Biscuit Table Ground */
  --bg-card: #ffffff;          /* Pure Paper Plate Card */
  --bg-card-warm: #faf3e6;     /* Subtle Warm Accent */
  --bg-subtle: #efe4d3;        /* Paper Dividers */
  
  /* Typography & Structural Depth */
  --text-main: #1f140e;        /* Deep Roasted Espresso */
  --text-body: #342217;        /* Dark Chocolate */
  --text-muted: #6b5749;       /* Warm Cocoa Muted */
  --text-faint: #9c8877;       /* Delicate Café Metadata */
  
  /* Brand Accents & Heat */
  --brand-crimson: #a62024;    /* Muted Burgundy / Berry Accent */
  --brand-crimson-dark: #8c181c;
  --brand-toffee: #d47822;     /* Toasted Caramel / Waffle Amber */
  --brand-butter: #e8a735;     /* Warm Honey Butter */
  --border-light: #e5d7c3;     /* Delicate Paper Border */
  --border-card: #e4d7c5;      /* Card Edges */
  --border-focus: #a62024;
  
  /* Night Mode Moment (One Atmospheric Evening Chapter) */
  --night-bg: #160f0a;         /* The Waffle Inn Cocoa */
  --night-surface: #221710;    /* Roasted Bean Surface */
  --night-card: #2c1e15;       /* Elevated Night Table */
  --night-border: #3d291c;
  --night-text: #f6efe6;
  --night-muted: #a69181;
  --night-accent: #e5933a;
  /* Compatibility Tokens for Checkout & Drawer */
  --cream: #fff8eb;
  --cream-muted: #cfc2ae;
  --gold: #e8a735;
  --accent-gold: #e8a735;
  --accent-red: #a62024;

  /* Geometry & Shadows */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --shadow-subtle: 0 4px 18px rgba(31, 20, 14, 0.05);
  --shadow-card: 0 8px 24px rgba(31, 20, 14, 0.07);
  --shadow-card-hover: 0 16px 36px rgba(31, 20, 14, 0.12);
  --shadow-float: 0 20px 45px rgba(31, 20, 14, 0.16);
  
  --transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);

  /* Mobile Safe Area */
  --sat: env(safe-area-inset-top, 0px);
  --sab: env(safe-area-inset-bottom, 0px);
  --sal: env(safe-area-inset-left, 0px);
  --sar: env(safe-area-inset-right, 0px);

  /* Legacy variable bridges for cart/ordering */
  --bg-primary: var(--bg-base);
  --bg-secondary: var(--bg-surface);
  --cream: var(--text-main);
  --cream-muted: var(--text-muted);
  --gold: var(--brand-toffee);
  --gold-glow: rgba(212, 120, 34, 0.25);
  --border: var(--border-card);
  --accent-red: var(--brand-crimson);
  --accent-green: #27ae60;
  --radius: var(--radius-md);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-base);
  color: var(--text-body);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden !important;
  touch-action: none;
}

a {
  text-decoration: none;
  color: inherit;
  touch-action: manipulation;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-main);
  line-height: 1.18;
  font-weight: 700;
}

.serif-italic {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.script-font {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
}

/* Subtle Waffle Grid Background Motif */
.waffle-texture-bg {
  background-image: 
    linear-gradient(to right, rgba(228, 215, 197, 0.28) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(228, 215, 197, 0.28) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Base Layout Containers */
.site-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   01. MINIMAL PRODUCT-FIRST NAVIGATION
   ========================================================================== */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(252, 249, 242, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.top-nav.scrolled {
  background: rgba(252, 249, 242, 0.98);
  box-shadow: 0 4px 20px rgba(31, 20, 14, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(68px + var(--sat));
  padding-top: var(--sat);
}

.brand-stamp {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  text-decoration: none;
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-toffee);
  box-shadow: 0 4px 12px rgba(212, 120, 34, 0.28);
  transition: var(--transition);
  flex-shrink: 0;
}

.brand-stamp:hover .brand-logo-img {
  transform: scale(1.08) rotate(4deg);
  box-shadow: 0 6px 18px rgba(212, 120, 34, 0.4);
}

.brand-icon-waffle {
  width: 36px;
  height: 36px;
  background: var(--brand-crimson);
  color: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 3px 10px rgba(166, 32, 36, 0.25);
  transition: var(--transition);
}

.brand-stamp:hover .brand-icon-waffle {
  transform: rotate(-8deg) scale(1.06);
}

.brand-title-wrap {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--text-main);
  line-height: 1;
}

.brand-subtitle {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-toffee);
  font-weight: 700;
  margin-top: 2px;
}

.nav-links-editorial {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link-item {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition);
  position: relative;
  padding: 6px 0;
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-crimson);
  transition: var(--transition);
}

.nav-link-item:hover, .nav-link-item.active {
  color: var(--brand-crimson);
}

.nav-link-item:hover::after, .nav-link-item.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text-main);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--text-main);
  transition: var(--transition);
}

.nav-cart-pill:hover {
  background: var(--brand-crimson);
  border-color: var(--brand-crimson);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(166, 32, 36, 0.28);
}

.cart-pill-count {
  background: var(--brand-toffee);
  color: #fff;
  padding: 1px 7px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-main);
  transition: var(--transition);
}

/* ==========================================================================
   02. EDITORIAL OPENING COVER (Asymmetric Magazine Layout)
   ========================================================================== */
.editorial-cover {
  padding-top: calc(100px + var(--sat));
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  background: var(--bg-base);
}

.cover-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.55fr 0.95fr;
  gap: 32px;
  align-items: center;
}

/* Left Column: Metadata, Manifesto, Unexpected statement */
.cover-col-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cover-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  width: fit-content;
}

.status-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #27ae60;
  box-shadow: 0 0 8px rgba(39, 174, 96, 0.6);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.cover-manifesto {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4.2vw, 54px);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.08;
  letter-spacing: -0.5px;
}

.cover-manifesto em {
  font-style: italic;
  color: var(--brand-crimson);
  font-weight: 400;
}

.cover-lead-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 380px;
}

.cover-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.btn-editorial-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-crimson);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 20px rgba(166, 32, 36, 0.28);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--brand-crimson);
}

.btn-editorial-primary:hover {
  background: var(--brand-crimson-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(166, 32, 36, 0.35);
}

.btn-editorial-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-main);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--border-card);
  transition: var(--transition);
  cursor: pointer;
}

.btn-editorial-secondary:hover {
  background: var(--bg-surface);
  border-color: var(--text-main);
  transform: translateY(-2px);
}

/* Center Column: Dominating Cropped Food Photography */
.cover-col-center {
  position: relative;
  display: flex;
  justify-content: center;
}

.cover-visual-stage {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  border: 4px solid #ffffff;
  background: #fff;
  transform: rotate(-1.5deg);
  transition: var(--transition-smooth);
}

.cover-visual-stage:hover {
  transform: rotate(0deg) scale(1.02);
}

.cover-hero-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.cover-order-slip {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slip-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-crimson);
}

.slip-dish {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
}

.slip-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-toffee);
}

/* Right Column: Stacked Kinetic Product Titles */
.cover-col-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-stack-index {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 2px solid var(--border-light);
  padding-left: 20px;
}

.stack-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--text-faint);
  text-decoration: none;
  transition: var(--transition);
}

.stack-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.stack-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}

.stack-item:hover .stack-name {
  color: var(--brand-crimson);
  transform: translateX(6px);
}

.stack-item:hover {
  color: var(--brand-crimson);
}

.cafe-ticker-pill {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==========================================================================
   03. CRAVING INDEX (Interactive Discovery Bar)
   ========================================================================== */
.craving-index-section {
  padding: 24px 0 48px;
  background: var(--bg-base);
  border-bottom: 1px solid var(--border-light);
}

.craving-bar-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-subtle);
  overflow-x: auto;
  scrollbar-width: none;
}

.craving-bar-wrapper::-webkit-scrollbar { display: none; }

.craving-bar-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-crimson);
  white-space: nowrap;
  padding: 0 12px;
}

.craving-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-body);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.craving-pill:hover {
  background: rgba(255, 255, 255, 0.7);
  color: var(--brand-crimson);
}

.craving-pill.active {
  background: var(--text-main);
  color: #fff;
  border-color: var(--text-main);
  box-shadow: 0 4px 12px rgba(31, 20, 14, 0.15);
}

/* ==========================================================================
   04. THE WAFFLE WALL (Pinned Menu Cards / Table Board)
   ========================================================================== */
.waffle-wall-section {
  padding: 70px 0;
  background: var(--bg-base);
}

.section-editorial-header {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
}

.editorial-header-left h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  letter-spacing: -0.5px;
}

.editorial-header-left p {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 6px;
}

.editorial-header-right {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-toffee);
}

/* Tactile Cards Grid */
.waffle-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: 28px;
}

.food-card-tactile {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  cursor: default;
}

.food-card-tactile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--brand-toffee);
}

.card-image-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-surface);
  margin-bottom: 14px;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.food-card-tactile:hover .card-image-wrap img {
  transform: scale(1.06);
}

.card-veg-indicator {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1.5px solid #27ae60;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.card-veg-indicator::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #27ae60;
  border-radius: 50%;
}

.card-badge-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(31, 20, 14, 0.82);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
}

.card-meta-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

.card-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-toffee);
  white-space: nowrap;
}

.card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.card-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed var(--border-light);
}

.btn-card-add {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1px solid var(--border-card);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-card-add:hover {
  background: var(--brand-crimson);
  color: #fff;
  border-color: var(--brand-crimson);
  box-shadow: 0 4px 12px rgba(166, 32, 36, 0.25);
}

/* ==========================================================================
   05. THE CHOCOLATE MOMENT (Visual Pause / High Contrast Feature)
   ========================================================================== */
.chocolate-moment {
  padding: 90px 0;
  background: linear-gradient(135deg, #2b180e 0%, #1a0e08 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.chocolate-moment::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(212, 120, 34, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(166, 32, 36, 0.15) 0%, transparent 60%);
}

.choco-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.choco-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 900;
  color: #fff;
  line-height: 1.02;
  letter-spacing: -1px;
}

.choco-headline em {
  font-style: italic;
  color: var(--brand-butter);
  font-weight: 400;
}

.choco-body {
  font-size: 16px;
  color: #d1c0b3;
  line-height: 1.7;
  margin: 20px 0 28px;
  max-width: 480px;
}

.choco-visual-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.choco-card-plate {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  background: #110905;
}

.choco-card-plate img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.choco-card-plate:hover img {
  transform: scale(1.05);
}

.choco-plate-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(17, 9, 5, 0.95), transparent);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

/* ==========================================================================
   06. THE PANCAKE PLATE (Plate-like Horizontal Composition)
   ========================================================================== */
.pancake-section {
  padding: 80px 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-light);
}

.pancake-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.pancake-hero-box {
  background: #fff;
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
}

.pancake-hero-box img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.pancake-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pancake-item-row {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.pancake-item-row:hover {
  border-color: var(--brand-toffee);
  transform: translateX(4px);
  box-shadow: var(--shadow-subtle);
}

.pancake-name-wrap h4 {
  font-size: 17px;
}

.pancake-name-wrap p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   07. CHILLED COUNTER (Tall Cards, Shakes & Cold Coffee)
   ========================================================================== */
.drinks-section {
  padding: 80px 0;
  background: var(--bg-base);
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.drink-card {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.drink-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-toffee);
}

.drink-cup-wrap {
  width: 130px;
  height: 130px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--bg-surface);
  box-shadow: var(--shadow-subtle);
}

.drink-cup-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   08. "INSIDE THE WAFFLE INN" (Night Mode Atmospheric Chapter)
   ========================================================================== */
.night-moment-section {
  padding: 90px 0;
  background: var(--night-bg);
  color: var(--night-text);
  position: relative;
  border-top: 1px solid var(--night-border);
  border-bottom: 1px solid var(--night-border);
}

.night-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
}

.night-header h2 {
  color: var(--night-text);
  font-size: clamp(32px, 4vw, 50px);
}

.night-header p {
  color: var(--night-muted);
  font-size: 15px;
  margin-top: 10px;
}

.night-gallery-trio {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  align-items: center;
}

.night-frame {
  background: var(--night-card);
  border: 1px solid var(--night-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  transition: var(--transition);
}

.night-frame:hover {
  transform: translateY(-4px);
  border-color: var(--night-accent);
}

.night-frame img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.night-frame.center img {
  height: 350px;
}

.night-caption {
  padding: 10px 4px 4px;
  font-size: 12px;
  color: var(--night-muted);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}

/* ==========================================================================
   09. "HOW DO YOU WANT IT?" (Decision-Based Ordering Hub)
   ========================================================================== */
.order-decision-hub {
  padding: 80px 0;
  background: var(--bg-base);
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.decision-card {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
}

.decision-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-crimson);
  box-shadow: var(--shadow-card-hover);
}

.decision-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.decision-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.decision-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
}

.decision-action-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-crimson);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   10. INSTAGRAM CONTACT SHEET
   ========================================================================== */
.insta-section {
  padding: 70px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-light);
}

.insta-grid-sheet {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.insta-thumb-box {
  background: #fff;
  padding: 6px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
  transition: var(--transition);
}

.insta-thumb-box:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--brand-crimson);
}

.insta-thumb-box img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-xs);
}

/* ==========================================================================
   11. CAFÉ LOCATION, MAP & FOOTER
   ========================================================================== */
.visit-section {
  padding: 80px 0;
  background: var(--bg-base);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 36px;
  align-items: center;
}

.visit-info-card {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.visit-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.v-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.v-text strong {
  display: block;
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 2px;
}

.v-text span {
  font-size: 13px;
  color: var(--text-muted);
}

.map-container {
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
}

.footer-editorial {
  background: var(--text-main);
  color: #fff;
  padding: 48px 0 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #bfaea0;
  flex-wrap: wrap;
  gap: 12px;
}

/* Toast Notice */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--text-main);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-float);
  z-index: 99999;
  display: none;
  animation: toastFade 0.3s ease;
}

@keyframes toastFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   12. RESPONSIVE REFINEMENT (Mobile-First Polish)
   ========================================================================== */
@media (max-width: 1024px) {
  .cover-grid {
    grid-template-columns: 1fr 1.2fr;
  }
  .cover-col-right {
    grid-column: span 2;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
  }
  .product-stack-index {
    flex-direction: row;
    flex-wrap: wrap;
    border-left: none;
    padding-left: 0;
  }
  .choco-grid, .pancake-split, .visit-grid {
    grid-template-columns: 1fr;
  }
  .night-gallery-trio {
    grid-template-columns: 1fr 1fr;
  }
  .night-frame.center {
    grid-column: span 2;
  }
  .insta-grid-sheet {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
    z-index: 1002;
  }

  .nav-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile Drawer Sliding from Right */
  .nav-links,
  .nav-links-editorial {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    right: -310px !important;
    width: 290px !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #fdfaf3 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: calc(85px + var(--sat, 0px)) 24px 30px !important;
    gap: 12px !important;
    box-shadow: -8px 0 32px rgba(31, 20, 14, 0.22) !important;
    border-left: 1px solid var(--border-light) !important;
    z-index: 1001 !important;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .nav-links.open,
  .nav-links-editorial.open {
    right: 0 !important;
    visibility: visible !important;
  }

  .nav-links .nav-link-item,
  .nav-links-editorial .nav-link-item {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: block;
  }

  .nav-links .nav-link-item:hover,
  .nav-links .nav-link-item.active,
  .nav-links-editorial .nav-link-item:hover,
  .nav-links-editorial .nav-link-item.active {
    color: var(--brand-crimson);
  }

  /* Backdrop Overlay */
  .nav-drawer-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(19, 13, 9, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .nav-drawer-backdrop.show {
    display: block !important;
    opacity: 1 !important;
  }

  body.menu-open {
    overflow: hidden !important;
    touch-action: none;
  }

  .cover-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cover-col-right {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }
  .product-stack-index {
    flex-direction: column;
  }
  .choco-visual-pair {
    grid-template-columns: 1fr;
  }
  .night-gallery-trio {
    grid-template-columns: 1fr;
  }
  .night-frame.center {
    grid-column: span 1;
  }
  .insta-grid-sheet {
    grid-template-columns: repeat(2, 1fr);
  }
  .food-card-tactile {
    padding: 14px;
  }
  .card-image-wrap {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .site-container {
    padding: 0 16px;
  }
  .cover-manifesto {
    font-size: 34px;
  }
  .btn-editorial-primary, .btn-editorial-secondary {
    width: 100%;
    justify-content: center;
  }
}
