/* ============================================================
   Flower-Mouth Cookie — Shared Stylesheet
   flowermouthcookie.com | Charlotte NC Late-Night Artisan Cookies
   ============================================================ */

/* ─── CSS Custom Properties ─────────────────────────────── */
:root {
  --bg: #0a0a0a;
  --bg2: #111118;
  --bg3: #181824;
  --magenta: #ff00cc;
  --magenta-dim: #cc0099;
  --teal: #00ffcc;
  --gold: #ffcc00;
  --purple: #9900ff;
  --white: #f0f0ff;
  --gray: #888899;
  --card-bg: #14141e;
  --border: #2a2a3a;
  --font-display: 'Georgia', serif;
  --font-body: system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --glow-magenta: 0 0 20px rgba(255,0,204,0.6), 0 0 60px rgba(255,0,204,0.2);
  --glow-teal: 0 0 20px rgba(0,255,204,0.6), 0 0 60px rgba(0,255,204,0.2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

img, svg, video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ─── Base Body ──────────────────────────────────────────── */
body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}

p {
  max-width: 72ch;
}

/* ─── Keyframe Animations ────────────────────────────────── */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes pulse-glow {
  0%, 100% {
    text-shadow: var(--glow-magenta);
    opacity: 1;
  }
  50% {
    text-shadow: 0 0 40px rgba(255,0,204,1), 0 0 100px rgba(255,0,204,0.4);
    opacity: 0.85;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes border-glow {
  0%, 100% {
    box-shadow: 0 0 8px rgba(255,0,204,0.4), inset 0 0 8px rgba(255,0,204,0.05);
    border-color: var(--magenta-dim);
  }
  50% {
    box-shadow: 0 0 24px rgba(255,0,204,0.8), inset 0 0 16px rgba(255,0,204,0.1);
    border-color: var(--magenta);
  }
}

@keyframes teal-pulse {
  0%, 100% {
    box-shadow: var(--glow-teal);
  }
  50% {
    box-shadow: 0 0 40px rgba(0,255,204,0.9), 0 0 100px rgba(0,255,204,0.4);
  }
}

@keyframes gold-shimmer {
  0%   { color: var(--gold); }
  50%  { color: #fff8cc; }
  100% { color: var(--gold); }
}

/* ─── Powered Bar ────────────────────────────────────────── */
.powered-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 6px 16px;
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

.powered-bar a {
  color: var(--magenta-dim);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.powered-bar a:hover {
  color: var(--magenta);
}

/* ─── Header / Nav ───────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--magenta);
  text-shadow: var(--glow-magenta);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--teal);
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

nav a:hover {
  color: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 0 12px rgba(0,255,204,0.25);
}

nav a.nav-cta {
  background: var(--magenta);
  color: #000;
  border-color: var(--magenta);
}

nav a.nav-cta:hover {
  background: var(--magenta-dim);
  border-color: var(--magenta-dim);
  box-shadow: var(--glow-magenta);
  color: #fff;
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 40%, rgba(153,0,255,0.18) 0%, transparent 65%),
              radial-gradient(ellipse at 20% 80%, rgba(255,0,204,0.14) 0%, transparent 55%),
              radial-gradient(ellipse at 85% 85%, rgba(0,255,204,0.1) 0%, transparent 50%),
              var(--bg);
  padding: 96px 24px 80px;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239900ff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--magenta);
  text-shadow: var(--glow-magenta);
  animation: pulse-glow 3s ease-in-out infinite;
  margin-bottom: 20px;
}

.hero-emoji {
  font-size: clamp(3rem, 8vw, 5rem);
  display: block;
  margin-bottom: 16px;
  animation: float 4s ease-in-out infinite;
  line-height: 1;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--white);
  transition: all 0.2s;
}

.badge:hover {
  border-color: var(--magenta-dim);
  color: var(--magenta);
}

.badge.badge-magenta {
  border-color: var(--magenta-dim);
  color: var(--magenta);
}

.badge.badge-teal {
  border-color: rgba(0,255,204,0.4);
  color: var(--teal);
}

.badge.badge-gold {
  border-color: rgba(255,204,0,0.4);
  color: var(--gold);
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--magenta);
  color: #000;
  border-color: var(--magenta);
}

.btn-primary:hover {
  background: transparent;
  color: var(--magenta);
  box-shadow: var(--glow-magenta);
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn-secondary:hover {
  background: var(--teal);
  color: #000;
  box-shadow: var(--glow-teal);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--white);
  color: var(--white);
}

/* ─── Sections ───────────────────────────────────────────── */
section {
  padding: 72px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 14px;
}

.section-title span {
  color: var(--magenta);
}

.section-title.teal span {
  color: var(--teal);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 60ch;
  margin-bottom: 48px;
}

.section-alt {
  background: var(--bg2);
}

.section-alt2 {
  background: var(--bg3);
}

/* ─── Marquee ────────────────────────────────────────────── */
.marquee-wrap {
  background: var(--magenta);
  overflow: hidden;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 32px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  flex-shrink: 0;
}

/* ─── Menu Cards ─────────────────────────────────────────── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.menu-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: fadeInUp 0.5s ease both;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--magenta), var(--purple), var(--teal));
  opacity: 0;
  transition: opacity 0.3s;
}

.menu-card:hover {
  border-color: var(--magenta-dim);
  box-shadow: var(--glow-magenta);
  transform: translateY(-4px);
}

.menu-card:hover::before {
  opacity: 1;
}

.menu-card-emoji {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
}

.menu-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 6px;
}

.menu-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.menu-card-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ─── Recipe Cards ───────────────────────────────────────── */
.recipe-grid {
  display: grid;
  gap: 40px;
}

.recipe-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  animation: border-glow 5s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.recipe-card:hover {
  transform: translateY(-3px);
}

.recipe-card-header {
  background: linear-gradient(135deg, var(--bg3), var(--bg2));
  padding: 28px 32px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.recipe-card-header::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,0,204,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.recipe-emoji {
  font-size: 3rem;
  margin-bottom: 10px;
  display: block;
  animation: float 5s ease-in-out infinite;
}

.recipe-name {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--magenta);
  margin-bottom: 6px;
}

.recipe-tagline {
  font-size: 0.95rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 8px;
}

.recipe-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}

.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.recipe-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.recipe-meta-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  font-weight: 700;
}

.recipe-meta-value {
  font-size: 0.92rem;
  color: var(--white);
  font-weight: 600;
}

.recipe-card-body {
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.recipe-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.recipe-ingredients {
  list-style: none;
}

.recipe-ingredients li {
  font-size: 0.9rem;
  color: var(--gray);
  padding: 5px 0;
  border-bottom: 1px solid rgba(42,42,58,0.6);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.recipe-ingredients li::before {
  content: '·';
  color: var(--teal);
  font-size: 1.2rem;
  line-height: 1.1;
  flex-shrink: 0;
}

.recipe-steps {
  counter-reset: steps;
}

.recipe-steps li {
  counter-increment: steps;
  font-size: 0.9rem;
  color: var(--gray);
  padding: 8px 0 8px 32px;
  position: relative;
  border-bottom: 1px solid rgba(42,42,58,0.6);
  line-height: 1.55;
}

.recipe-steps li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  background: var(--magenta);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.recipe-note {
  background: rgba(153,0,255,0.08);
  border: 1px solid rgba(153,0,255,0.2);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--white);
  margin-top: 16px;
  grid-column: 1 / -1;
}

.recipe-note strong {
  color: var(--gold);
}

/* ─── Order Form ─────────────────────────────────────────── */
.order-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-label span {
  color: var(--magenta);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--magenta-dim);
  box-shadow: 0 0 0 3px rgba(255,0,204,0.12);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888899' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  background: var(--bg3);
  color: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-hint {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 6px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--magenta);
  color: #000;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid var(--magenta);
  animation: border-glow 3s ease-in-out infinite;
  letter-spacing: 0.02em;
}

.form-submit:hover {
  background: transparent;
  color: var(--magenta);
  box-shadow: var(--glow-magenta);
}

/* ─── FAQ Accordion ──────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: var(--magenta-dim);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--magenta);
}

.faq-icon {
  color: var(--magenta);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

.faq-answer p {
  padding-top: 16px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ─── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 56px 24px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--magenta);
  text-shadow: 0 0 16px rgba(255,0,204,0.4);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 18px;
  line-height: 1.6;
  max-width: 28ch;
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--gray);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-hours-item {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 6px;
}

.footer-hours-item strong {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray);
}

.footer-powered {
  font-size: 0.8rem;
  color: var(--gray);
}

.footer-powered a {
  color: var(--magenta-dim);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-powered a:hover {
  color: var(--magenta);
}

/* ─── Neighborhood Grid ──────────────────────────────────── */
.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.neighborhood-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.neighborhood-card:hover {
  border-color: var(--teal);
  box-shadow: 0 0 16px rgba(0,255,204,0.2);
  transform: translateY(-2px);
}

.neighborhood-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--teal);
  font-weight: 700;
}

.neighborhood-card-desc {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
}

.neighborhood-card-link {
  font-size: 0.78rem;
  color: var(--magenta-dim);
  margin-top: 4px;
  font-weight: 600;
}

/* ─── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  padding: 14px 24px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--magenta-dim);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--magenta);
}

.breadcrumb-sep {
  color: var(--border);
  user-select: none;
}

.breadcrumb span[aria-current] {
  color: var(--white);
}

/* ─── AI Prompts Box ─────────────────────────────────────── */
.ai-prompts-box {
  background: linear-gradient(135deg, rgba(153,0,255,0.08), rgba(0,255,204,0.05));
  border: 1px solid rgba(153,0,255,0.3);
  border-radius: 16px;
  padding: 32px;
  margin: 0 auto 48px;
  max-width: 840px;
}

.ai-prompts-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}

.ai-prompts-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 6px;
}

.ai-prompts-sub {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.ai-prompts-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ai-prompt-item {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.875rem;
  color: var(--teal);
  font-family: 'Courier New', monospace;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.ai-prompt-item:hover {
  border-color: var(--teal);
  background: rgba(0,255,204,0.05);
  padding-right: 80px;
}

.ai-prompt-item::after {
  content: 'copy';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--magenta);
  opacity: 0;
  transition: opacity 0.2s;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ai-prompt-item:hover::after {
  opacity: 1;
}

/* ─── Stats / Info Strip ─────────────────────────────────── */
.info-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 40px 0;
}

.info-strip-item {
  background: var(--card-bg);
  padding: 24px 20px;
  text-align: center;
}

.info-strip-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--magenta);
  font-weight: 700;
  text-shadow: 0 0 12px rgba(255,0,204,0.4);
  display: block;
  margin-bottom: 4px;
}

.info-strip-label {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ─── Delivery Area Map Text ─────────────────────────────── */
.delivery-note {
  background: rgba(0,255,204,0.06);
  border: 1px solid rgba(0,255,204,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--white);
}

.delivery-note-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.delivery-note strong {
  color: var(--teal);
}

/* ─── Highlight / Pull Quote ─────────────────────────────── */
.pull-quote {
  border-left: 3px solid var(--magenta);
  padding: 16px 24px;
  margin: 32px 0;
  background: rgba(255,0,204,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  font-style: italic;
}

.pull-quote cite {
  display: block;
  font-size: 0.8rem;
  font-style: normal;
  color: var(--gold);
  margin-top: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── Tags ───────────────────────────────────────────────── */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.78rem;
  color: var(--gray);
  transition: all 0.2s;
}

.tag:hover {
  border-color: var(--magenta-dim);
  color: var(--magenta);
}

/* ─── Hours Table ────────────────────────────────────────── */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.hours-table tr {
  border-bottom: 1px solid var(--border);
}

.hours-table td {
  padding: 10px 0;
  color: var(--gray);
}

.hours-table td:first-child {
  color: var(--white);
  font-weight: 600;
  width: 140px;
}

.hours-table td:last-child {
  color: var(--teal);
  font-weight: 700;
}

/* ─── Payment Pills ──────────────────────────────────────── */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.payment-pill {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─── Social Proof / Note Strip ─────────────────────────── */
.note-strip {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

.note-strip strong {
  color: var(--gold);
}

/* ─── Anchor utility ─────────────────────────────────────── */
.anchor-offset {
  scroll-margin-top: 90px;
}

/* ─── Divider ─────────────────────────────────────────────── */
hr.fancy {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--magenta), transparent);
  margin: 40px 0;
  opacity: 0.4;
}

/* ─── Responsive: 900px ──────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .recipe-card-body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero {
    padding: 72px 20px 60px;
  }

  nav {
    gap: 6px;
  }

  nav a {
    font-size: 0.8rem;
    padding: 5px 11px;
  }

  .nav-logo {
    font-size: 1.1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .info-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── Responsive: 600px ──────────────────────────────────── */
@media (max-width: 600px) {
  html { font-size: 15px; }

  .hero {
    padding: 56px 16px 48px;
  }

  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
    gap: 10px;
  }

  nav {
    width: 100%;
    gap: 5px;
  }

  nav a {
    font-size: 0.75rem;
    padding: 4px 10px;
  }

  section {
    padding: 52px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .neighborhood-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-badges {
    gap: 7px;
  }

  .badge {
    font-size: 0.77rem;
    padding: 5px 12px;
  }

  .recipe-card-header {
    padding: 20px;
  }

  .recipe-card-body {
    padding: 20px;
  }

  .info-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .breadcrumb {
    padding: 10px 16px;
  }

  .ai-prompts-box {
    padding: 20px 16px;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 18px 16px;
  }
}

@media (max-width: 400px) {
  .neighborhood-grid {
    grid-template-columns: 1fr;
  }
}
