    body {
      box-sizing: border-box;
      font-family: 'Lora', serif;
      color: #3d3d3d;
      background: linear-gradient(135deg, #faf8f3 0%, #f5f1eb 100%);
    }

    html, body {
      height: 100%;
    }

    .app-wrapper {
      width: 100%;
      height: 100%;
      overflow-y: auto;
      overflow-x: hidden;
    }

    .font-serif-display {
      font-family: 'Playfair Display', serif;
      letter-spacing: -0.02em;
    }

    .font-serif-elegant {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
    }

    .font-serif-accent {
      font-family: 'Cinzel', serif;
    }

    .font-sans-friendly {
      font-family: 'Poppins', sans-serif;
    }

    .font-cursive {
      font-family: 'Playfair Display', serif;
      font-style: italic;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes floatSteam {
      0%, 100% {
        opacity: 0;
        transform: translateY(60px);
      }
      50% {
        opacity: 0.6;
      }
    }

    @keyframes softGlow {
      0%, 100% {
        box-shadow: 0 0 30px rgba(139, 115, 85, 0.1);
      }
      50% {
        box-shadow: 0 0 50px rgba(139, 115, 85, 0.2);
      }
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes scaleIn {
      from {
        opacity: 0;
        transform: scale(0.95);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes underlineSlide {
      from {
        width: 0;
      }
      to {
        width: 100%;
      }
    }

    @keyframes pulseGently {
      0%, 100% {
        opacity: 0.5;
      }
      50% {
        opacity: 1;
      }
    }

    @keyframes textAppear {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-fade-in-up {
      animation: fadeInUp 0.8s ease-out forwards;
    }

    .animate-float-steam {
      animation: floatSteam 4s ease-in-out infinite;
    }

    .animate-soft-glow {
      animation: softGlow 3s ease-in-out infinite;
    }

    .animate-slide-in-left {
      animation: slideInLeft 0.8s ease-out forwards;
    }

    .animate-slide-in-right {
      animation: slideInRight 0.8s ease-out forwards;
    }

    .animate-scale-in {
      animation: scaleIn 0.6s ease-out forwards;
    }

    .animate-pulse-gentle {
      animation: pulseGently 2s ease-in-out infinite;
    }

    .delay-100 { animation-delay: 0.1s; }
    .delay-200 { animation-delay: 0.2s; }
    .delay-300 { animation-delay: 0.3s; }
    .delay-400 { animation-delay: 0.4s; }
    .delay-500 { animation-delay: 0.5s; }

    .card-lift {
      transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .card-lift:hover {
      transform: translateY(-12px);
      box-shadow: 0 25px 50px rgba(139, 115, 85, 0.15);
    }

    .underline-animated {
      position: relative;
      display: inline-block;
    }

    .underline-animated::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: #8b7355;
      transition: width 0.6s ease;
    }

    .underline-animated:hover::after {
      width: 100%;
    }

    .glass-soft {
      background: rgba(250, 248, 243, 0.7);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(139, 115, 85, 0.1);
    }

    .warm-border {
      border: 1px solid #e8ddd2;
    }

    .text-warm-brown {
      color: #8b7355;
    }

    .text-sage-green {
      color: #7fa99d;
    }

    .bg-sage-light {
      background-color: #e8ebe8;
    }

    .bg-warm-beige {
      background-color: #e8ddd2;
    }

    .modal-overlay {
      background: rgba(61, 61, 61, 0.7);
      backdrop-filter: blur(8px);
    }

    .toast {
      animation: slideInUp 0.3s ease-out;
    }

    @keyframes slideInUp {
      from {
        transform: translateY(100%);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .scroll-smooth {
      scroll-behavior: smooth;
    }

    /* Scrollbar styling */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: #faf8f3;
    }

    ::-webkit-scrollbar-thumb {
      background: #d4c4b0;
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: #8b7355;
    }

    .hero-image-container {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
    }

    .hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease-out;
    }

    .hero-image-container:hover .hero-image {
      transform: scale(1.05);
    }

    .ingredient-card {
      transition: all 0.5s ease;
    }

    .ingredient-card:hover {
      background: rgba(139, 115, 85, 0.05);
    }

    .timeline-item {
      position: relative;
      padding-left: 60px;
    }

    .timeline-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 40px;
      height: 40px;
      background: #e8ddd2;
      border: 3px solid #8b7355;
      border-radius: 50%;
    }

    .hide-scrollbar::-webkit-scrollbar {
      display: none;
    }

    .hide-scrollbar {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    .testimonial-quote {
      border-left: 4px solid #7fa99d;
      padding-left: 24px;
    }

    .btn-warm {
      background: #8b7355;
      color: white;
      padding: 14px 32px;
      border-radius: 8px;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      transition: all 0.4s ease;
      border: none;
      cursor: pointer;
    }

    .btn-warm:hover {
      background: #6b5645;
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(139, 115, 85, 0.2);
    }

    .btn-outline-warm {
      background: transparent;
      color: #8b7355;
      padding: 14px 32px;
      border-radius: 8px;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      transition: all 0.4s ease;
      border: 2px solid #8b7355;
      cursor: pointer;
    }

    .btn-outline-warm:hover {
      background: #8b7355;
      color: white;
    }

    .divider-warm {
      height: 1px;
      background: linear-gradient(to right, transparent, #8b7355, transparent);
      margin: 40px 0;
    }

    .testimonial-card {
      background: white;
      border-radius: 12px;
      padding: 28px;
      box-shadow: 0 4px 15px rgba(139, 115, 85, 0.08);
      transition: all 0.5s ease;
    }

    .testimonial-card:hover {
      box-shadow: 0 12px 30px rgba(139, 115, 85, 0.15);
    }

    .nutrition-icon {
      width: 60px;
      height: 60px;
      background: #e8ebe8;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      font-size: 28px;
    }

    .content-fade-in {
      opacity: 0;
      animation: fadeInUp 0.8s ease-out forwards;
    }
  