:root {
  --color-primary: #1e40af;
  --color-secondary: #1e3a8a;
  --color-accent: #3b82f6;
  --color-pink-light: #dbeafe;
  --color-muted: #f1f5f9;
  --color-muted-foreground: #64748b;
  --color-foreground: #1e293b;
  --color-border: #cbd5e1;
  --color-destructive: #dc2626;
  --color-amber: #f59e0b;
  --color-white: #ffffff;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--color-foreground);
  line-height: 1.6;
  background-color: var(--color-white);
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: inherit;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-baseline { align-items: baseline; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-grow { flex-grow: 1; }
.gap-0-5 { gap: 0.125rem; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-6xl { font-size: 3.75rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-mono { font-family: ui-monospace, monospace; }
.font-serif { font-family: ui-serif, Georgia, serif; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.line-through { text-decoration: line-through; }
.underline { text-decoration: underline; }
.leading-none { line-height: 1; }
.leading-relaxed { line-height: 1.625; }
.whitespace-nowrap { white-space: nowrap; }
.text-white { color: var(--color-white); }
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-accent); }
.text-muted-foreground { color: var(--color-muted-foreground); }
.text-foreground { color: var(--color-foreground); }
.text-destructive { color: var(--color-destructive); }
.text-amber { color: var(--color-amber); }
.bg-white { background-color: var(--color-white); }
.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-accent { background-color: var(--color-accent); }
.bg-muted { background-color: var(--color-muted); }
.border { border: 1px solid var(--color-border); }
.border-2 { border: 2px solid var(--color-border); }
.border-3 { border: 3px solid var(--color-accent); }
.border-t { border-top: 1px solid var(--color-border); }
.border-b { border-bottom: 1px solid var(--color-border); }
.border-y { border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.border-border { border-color: var(--color-border); }
.border-accent { border-color: var(--color-accent); }
.border-white-10 { border-color: rgba(255, 255, 255, 0.1); }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-32 { padding-top: 8rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-16 { padding-bottom: 4rem; }
.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.ml-4 { margin-left: 1rem; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-48 { width: 12rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-44 { height: 11rem; }
.h-48 { height: 12rem; }
.h-full { height: 100%; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-h-400 { max-height: 400px; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.top-4 { top: 1rem; }
.top-42 { top: 42px; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.right-6 { right: 1.5rem; }
.bottom-0 { bottom: 0; }
.bottom-2 { bottom: -0.5rem; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.translate-x-half { transform: translateX(-50%); }
.translate-y-neg3 { top: -0.75rem; left: 50%; transform: translateX(-50%); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }
.rotate-180 { transform: rotate(180deg); }
.overflow-hidden { overflow: hidden; }
.object-contain { object-fit: contain; }
.shadow-sm { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06); }
.shadow-md { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04); }
.drop-shadow-2xl { filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15)); }
.opacity-80 { opacity: 0.8; }
.cursor-pointer { cursor: pointer; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }
.transition-transform { transition: transform 0.3s ease; }
.transition-shadow { transition: box-shadow 0.3s ease; }
.transition-all { transition: all 0.3s ease; }
.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }
.resize-none { resize: none; }
.accent-accent { accent-color: var(--color-accent); }
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}
.bg-gradient-accent-to-primary {
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.animate-gradient {
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent), var(--color-primary));
  background-size: 300% 100%;
  animation: gradient-shift 5s ease infinite;
}
@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}
.animate-pulse-soft {
  animation: pulse-soft 2s ease-in-out infinite;
}
.btn-primary {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary:hover {
  background-color: var(--color-secondary);
}
.input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.2s ease;
  background-color: var(--color-white);
}
.input:focus {
  outline: none;
  border-color: var(--color-accent);
}
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.badge-accent {
  background-color: var(--color-accent);
  color: var(--color-white);
}
.badge-outline {
  background-color: var(--color-pink-light);
  color: var(--color-accent);
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.mobile-menu.open {
  max-height: 400px;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.accordion-content.open {
  max-height: 500px;
}
.accordion-trigger svg {
  transition: transform 0.3s ease;
}
.accordion-trigger.open svg {
  transform: rotate(180deg);
}
.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 80%;
}
.ingredient-card {
  position: relative;
  overflow: hidden;
}
.ingredient-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.ingredient-card:hover::after {
  transform: scaleX(1);
}
.ingredient-icon {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(30, 64, 175, 0.1) 100%);
  transition: all 0.3s ease;
}
.ingredient-card:hover .ingredient-icon {
  background-color: var(--color-accent);
  transform: scale(1.1);
}
.ingredient-card:hover .ingredient-icon svg {
  color: var(--color-white);
}
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 1rem;
  text-align: left;
}
.prose h2 {
  color: var(--color-foreground);
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.prose p {
  color: var(--color-muted-foreground);
  margin-bottom: 1rem;
}
.prose ul {
  color: var(--color-muted-foreground);
  margin-left: 1rem;
  margin-bottom: 1rem;
}
.prose a {
  color: var(--color-primary);
}
.prose a:hover {
  text-decoration: underline;
}
.hover-text-white-80:hover { color: rgba(255, 255, 255, 0.8); }
.hover-text-accent:hover { color: var(--color-accent); }
.hover-bg-white-10:hover { background-color: rgba(255, 255, 255, 0.1); }
.hover-bg-muted-50:hover { background-color: rgba(248, 249, 250, 0.5); }
.hover-bg-primary-5:hover { background-color: rgba(30, 64, 175, 0.05); }
.hover-underline:hover { text-decoration: underline; }
.text-white-70 { color: rgba(255, 255, 255, 0.7); }
.text-white-90 { color: rgba(255, 255, 255, 0.9); }
.text-white-50 { color: rgba(255, 255, 255, 0.5); }
.text-accent-50 { color: rgba(59, 130, 246, 0.5); }
.text-primary-10 { color: rgba(30, 64, 175, 0.1); }
.bg-white-15 { background-color: rgba(255, 255, 255, 0.15); }
.bg-accent-5 { background: linear-gradient(to bottom, rgba(59, 130, 246, 0.05), var(--color-white)); }
.border-half { border-color: rgba(222, 226, 230, 0.5); }
.fill-current { fill: currentColor; }
@media (min-width: 640px) {
  .sm-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .md-block { display: block; }
  .md-hidden { display: none; }
  .md-flex { display: flex; }
  .md-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md-col-span-1 { grid-column: span 1; }
  .md-col-span-2 { grid-column: span 2; }
  .md-text-left { text-align: left; }
  .md-text-3xl { font-size: 1.875rem; }
  .md-text-4xl { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .lg-block { display: block; }
  .lg-hidden { display: none; }
  .lg-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .lg-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg-col-span-3 { grid-column: span 3; }
}
.top-promo {
  top: 42px;
}
.product-popular {
  border: 3px solid var(--color-accent);
  transform: scale(1.05);
  background: linear-gradient(to bottom, rgba(59, 130, 246, 0.05), var(--color-white));
}
.product-popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}
.quote-mark {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3.75rem;
  color: rgba(59, 130, 246, 0.1);
  font-family: ui-serif, Georgia, serif;
  line-height: 1;
}
.underline-decoration {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 0.25rem;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  border-radius: 9999px;
}
.avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
}
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 3rem; height: 3rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
