:root {
  --background: 38 100% 97%;
  --foreground: 18 39% 13%;
  --primary: 12 92% 54%;
  --primary-foreground: 0 0% 100%;
  --secondary: 43 96% 56%;
  --secondary-foreground: 18 39% 13%;
  --muted: 32 34% 89%;
  --muted-foreground: 22 18% 42%;
  --destructive: 356 79% 48%;
  --destructive-foreground: 0 0% 100%;
  --border: 29 28% 82%;
  --card: 0 0% 100%;
  --card-foreground: 18 39% 13%;
  --shadow-sm: 0 6px 18px rgba(80, 35, 20, 0.08);
  --shadow-md: 0 14px 34px rgba(80, 35, 20, 0.13);
  --shadow-lg: 0 24px 70px rgba(80, 35, 20, 0.18);
  --transition-fast: 160ms ease;
  --transition-smooth: 280ms cubic-bezier(.2,.8,.2,1);
  --radius-sm: 0.65rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
}

.dark {
  --background: 18 30% 8%;
  --foreground: 39 76% 93%;
  --primary: 13 92% 61%;
  --primary-foreground: 0 0% 100%;
  --secondary: 43 94% 58%;
  --secondary-foreground: 18 39% 13%;
  --muted: 20 22% 16%;
  --muted-foreground: 35 21% 72%;
  --destructive: 356 76% 58%;
  --destructive-foreground: 0 0% 100%;
  --border: 20 22% 23%;
  --card: 18 26% 12%;
  --card-foreground: 39 76% 93%;
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 14px 34px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.36);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
button, a, input, textarea, select { transition: var(--transition-smooth); }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid hsl(var(--secondary));
  outline-offset: 3px;
}
.food-pattern {
  background-image:
    radial-gradient(circle at 20% 15%, hsl(var(--secondary) / 0.32), transparent 28%),
    radial-gradient(circle at 78% 8%, hsl(var(--primary) / 0.18), transparent 24%),
    radial-gradient(circle at 55% 90%, hsl(var(--secondary) / 0.2), transparent 30%);
}
.sizzle {
  position: relative;
  overflow: hidden;
}
.sizzle::after {
  content: "";
  position: absolute;
  inset: -60%;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.36), transparent 58%);
  transform: translateX(-80%) rotate(8deg);
  transition: transform 700ms ease;
}
.sizzle:hover::after { transform: translateX(75%) rotate(8deg); }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { scrollbar-width: none; }