/* Fonts loaded via <link> tags in HTML for better performance */

:root {
  /* AquaFresh Core Colors */
  --emerald-light: hsl(160, 84%, 85%);
  --emerald-medium: hsl(160, 84%, 39%);
  --ocean-deep: hsl(205, 87%, 21%);
  --ocean-bright: hsl(199, 89%, 48%);
  --coral-warm: hsl(14, 91%, 60%);
  --amber-gold: hsl(45, 93%, 47%);
  --sage-soft: hsl(142, 76%, 73%);
  
  /* Semantic Colors */
  --bg-color: #f8fafc;
  --bg-dark: hsl(205, 87%, 15%);
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-glass: rgba(255, 255, 255, 0.6);
  --text-main: hsl(205, 87%, 21%);
  --text-body: #475569;
  --text-light: #f8fafc;
  --border-glass: rgba(255, 255, 255, 0.4);
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  
  /* UI Tokens */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px -5px rgba(10,37,64,0.08);
  --shadow-float: 0 25px 50px -12px rgba(10,37,64,0.15);
  --shadow-glow: 0 0 20px rgba(14, 165, 233, 0.4);
  
  /* Layout Constraints */
  --max-width: 1200px;
  --nav-height: 80px;

  /* Gradients */
  --gradient-ocean: linear-gradient(135deg, var(--ocean-deep), var(--ocean-bright));
  --gradient-ocean-wave: linear-gradient(-45deg, var(--emerald-light), var(--ocean-bright), var(--ocean-deep), var(--emerald-medium));
  --gradient-coral: linear-gradient(135deg, var(--amber-gold), var(--coral-warm));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-color);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  border-radius: var(--radius-md);
  display: block;
}

/* Base Layout & Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }
.py-4 { padding: 4rem 0; }
.py-6 { padding: 6rem 0; }
.gap-2 { gap: 2rem; }

/* Navigation - Glassmorphism */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ocean-deep);
}

.brand img {
  height: 40px;
  width: auto;
  border-radius: 0;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ocean-bright);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile Nav Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--ocean-deep);
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary {
  background: var(--gradient-ocean);
  color: var(--text-light);
  box-shadow: 0 10px 20px -10px var(--ocean-bright);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  color: var(--text-light);
}

.btn-secondary {
  background: white;
  color: var(--ocean-deep);
  border: 1px solid var(--emerald-light);
}

.btn-secondary:hover {
  background: var(--bg-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-height);
  overflow: hidden;
  background: var(--gradient-ocean-wave);
  background-size: 400% 400%;
  animation: bgWave 15s ease infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(10,37,64,0.6) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  color: white;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards 0.2s;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards 0.4s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards 0.6s;
}

.hero-visual {
  position: relative;
  height: 500px;
  opacity: 0;
  transform: scale(0.95);
  animation: fadeScale 1s forwards 0.8s;
}

/* Floating Fish Element in Hero */
.floating-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  box-shadow: var(--shadow-float);
  animation: morphFloat 8s ease-in-out infinite;
  border: 4px solid rgba(255, 255, 255, 0.2);
}

/* Glassmorphism Badge */
.glass-badge {
  position: absolute;
  top: 10%;
  right: -5%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  animation: floating 4s ease-in-out infinite alternate;
}

.glass-badge-icon {
  background: var(--ocean-bright);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* Section Headlines */
.section-title {
  font-size: 2.5rem;
  color: var(--ocean-deep);
  font-family: var(--font-heading);
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--coral-warm);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
}

/* Premium Card Design (Flip or Lift) */
.product-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-float);
  border-color: var(--emerald-light);
}

.product-card {
  contain: layout style;
}

.product-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-radius: 0;
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.9);
  color: var(--ocean-deep);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  backdrop-filter: blur(4px);
}

.product-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}

/* Stats Row */
.product-stats {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.stat-pill {
  background: var(--bg-color);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ocean-bright);
}

/* Features Grid (About Page) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  padding: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
  border: 1px solid var(--emerald-light);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--coral-warm);
  margin-bottom: 1.5rem;
  line-height: 1;
}

/* Team Grid (About Page) */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.team-card {
  text-align: center;
}

.team-img-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--emerald-light);
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--ocean-bright);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-brand img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-desc {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.footer h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
  color: var(--emerald-light);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* Background Animation */
@keyframes bgWave {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Float Animations */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

@keyframes morphFloat {
  0% { transform: translateY(0); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50% { transform: translateY(-20px); border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%; }
  100% { transform: translateY(0); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

@keyframes floating {
  from { transform: translateY(0px); }
  to { transform: translateY(15px); }
}

/* Entrance Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Scroll Animation Classes (Applied by JS) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utilities */
.water-ripple {
  position: relative;
  overflow: hidden;
}
.water-ripple::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.4) 0%, transparent 70%);
  transition: width 0.6s ease-out, height 0.6s ease-out;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}
.water-ripple:hover::before {
  width: 300px;
  height: 300px;
}

/* Product Detail Pages */
.product-hero {
  padding: 120px 0 60px;
  background: var(--gradient-ocean-wave);
  background-size: 400% 400%;
  animation: bgWave 15s ease infinite;
  position: relative;
}

.product-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 37, 64, 0.5);
  z-index: 1;
}

.product-hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.product-hero-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  border: 4px solid rgba(255, 255, 255, 0.25);
}

.product-hero-text {
  color: white;
}

.product-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-hero-name {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.product-hero-tagline {
  font-size: 1.1rem;
  color: var(--emerald-light);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.product-hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-pill {
  background: rgba(255, 255, 255, 0.15);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cta-order {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  color: var(--ocean-deep);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-order:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  color: var(--ocean-deep);
}

.detail-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin: 4rem 0;
}

.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.nutrition-table th {
  background: var(--ocean-deep);
  color: white;
  padding: 1rem 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
}

.nutrition-table td {
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid #f0f4f8;
}

.nutrition-table tr:nth-child(even) td {
  background: #f8fafc;
}

.detail-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--emerald-light);
}

.cooking-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cooking-tag {
  background: var(--bg-color);
  border: 1px solid var(--emerald-light);
  color: var(--ocean-deep);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.9rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ocean-bright);
  font-weight: 600;
  margin-bottom: 2rem;
  transition: gap 0.2s;
}

.back-link:hover {
  gap: 0.9rem;
}

/* Responsive Overrides */
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 6rem;
  }
  
  .hero-subtitle {
    margin: 0 auto 2rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    height: 350px;
    margin-top: 2rem;
  }
  
  .glass-badge {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .section-title {
    font-size: 2rem;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--nav-height));
    background: var(--bg-color);
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  /* Brand name truncation on tablets */
  .brand {
    font-size: 1.1rem;
    max-width: 70%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .container {
    padding: 0 1.25rem;
  }

  .py-6 {
    padding: 3.5rem 0;
  }

  /* Product grid - 2 columns on tablets */
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
  }

  /* Features grid - override any inline grid-template-columns */
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  /* Team grid */
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
  }

  /* Footer grid */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-visual {
    height: 280px;
  }

  /* Product detail hero */
  .product-hero .container {
    grid-template-columns: 1fr;
  }
  .product-hero-img {
    order: -1;
  }

  /* Product detail section */
  .detail-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  :root {
    --nav-height: 64px;
  }

  .brand {
    font-size: 0.95rem;
    gap: 0.5rem;
    max-width: 75%;
  }

  .brand img {
    height: 32px;
  }

  .container {
    padding: 0 1rem;
  }

  .py-6 {
    padding: 2.5rem 0;
  }

  .py-4 {
    padding: 2rem 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* Hero adjustments */
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-visual {
    height: 220px;
  }

  .glass-badge {
    font-size: 0.85rem;
    padding: 0.75rem;
  }

  /* Product grid - single column on mobile */
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .product-info {
    padding: 1.25rem;
  }

  .product-title {
    font-size: 1.1rem;
  }

  .product-desc {
    font-size: 0.9rem;
  }

  /* Feature cards */
  .feature-card {
    padding: 1.5rem;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-img-wrap {
    width: 140px;
    height: 140px;
  }

  /* Footer */
  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-brand {
    font-size: 1.2rem;
  }

  /* Buttons */
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  /* Product detail pages */
  .product-hero-name {
    font-size: 1.8rem;
  }

  .product-hero-desc {
    font-size: 0.95rem;
  }

  .cta-order {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }

  .detail-card {
    padding: 1.5rem;
  }

  .nutrition-table td,
  .nutrition-table th {
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
  }

  .cooking-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
  }
}

/* Reduce motion for users who prefer it & improve performance */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero {
    background-size: 100% 100%;
  }
}
