
:root {
  --primary: #b45309;
  --hover: #92400e;
}
body {
  font-family: 'Outfit', 'Segoe UI', Roboto, sans-serif;
  background-color: #fdfaf6;
  color: #2b2d42;
  line-height: 1.6;
}
h1, h2, h3, h4, .font-serif {
  font-family: 'Playfair Display', Georgia, serif;
}
.ingredient-checkbox:checked + span {
  text-decoration: line-through;
  color: #a0aec0;
}
.card-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -6px rgba(0, 0, 0, 0.1);
}
