@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');
        
        body {
            color: #ffffff;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }

        /* 3D Floating Animation */
        @keyframes float3d {
            0% { transform: translateY(0px) rotateX(5deg) rotateY(-5deg); filter: drop-shadow(0 20px 20px rgba(255, 199, 21, 0.1)); }
            50% { transform: translateY(-15px) rotateX(8deg) rotateY(0deg); filter: drop-shadow(0 30px 30px rgba(255, 199, 21, 0.2)); }
            100% { transform: translateY(0px) rotateX(5deg) rotateY(-5deg); filter: drop-shadow(0 20px 20px rgba(255, 199, 21, 0.1)); }
        }

        .animate-3d-float {
            animation: float3d 6s ease-in-out infinite;
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .card-hover-effect {
            transition: all 0.3s ease;
        }
        .card-hover-effect:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(186, 53, 53, 0.2);
            border-color: #FFC715;
        }

        /* Text Gradients */
        .text-gradient-gold {
            background: linear-gradient(to right, #FFC715, #FFF0B3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .text-gradient-red {
            background: linear-gradient(to right, #BA3535, #FF5555);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* FAQ Accordion hidden checkbox hack */
        .peer:checked ~ .accordion-content {
            max-height: 500px;
            opacity: 1;
            padding-top: 1rem;
            padding-bottom: 1rem;
        }
        .peer:checked ~ .accordion-icon {
            transform: rotate(180deg);
        }

        .sticky-cta {
          position: fixed;
          bottom: 25px;
          right: 25px;
          z-index: 999;
          background: #dfad32;
          padding: 12px 24px;
          border-radius: 50px;
          font-weight: 700;
          color: white;
          box-shadow: 0 5px 20px rgba(0,0,0,0.5);
          transition: 0.2s;
          display: flex;
          align-items: center;
          gap: 10px;
          text-decoration: none;
        }
        .sticky-cta:hover {
          background: #FFC715;
          color: #070707;
          transform: scale(1.03);
        }
        @media (max-width: 768px) {
          .sticky-cta { padding: 10px 18px; font-size: 0.8rem; }
        }

        /* ingredient section container */
    .ingredient-carousel-section {
      background: #070707;
      padding: 5rem 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
    }

    /* header texts */
    .section-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 3rem auto;
    }

    .section-header h2 {
      font-size: 2.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, #FFFFFF 30%, #dfad32 80%);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }

    .section-header p {
      color: #9ca3af;
      font-size: 1.125rem;
      line-height: 1.5;
    }

    /* carousel wrapper (overflow hidden for scroll) */
    .carousel-wrapper {
      position: relative;
      width: 100%;
      overflow-x: auto;
      overflow-y: visible;
      scroll-behavior: smooth;
      scrollbar-width: thin;
      scrollbar-color: #dfad32 #2a2a2a;
      padding: 0.5rem 0 1.5rem 0;
      cursor: grab;
    }

    .carousel-wrapper:active {
      cursor: grabbing;
    }

    /* hide scrollbar on firefox / chrome but keep functionality */
    .carousel-wrapper::-webkit-scrollbar {
      height: 6px;
    }
    .carousel-wrapper::-webkit-scrollbar-track {
      background: #1f1f1f;
      border-radius: 10px;
    }
    .carousel-wrapper::-webkit-scrollbar-thumb {
      background: #e6b422;
      border-radius: 10px;
    }

    /* flex row for cards */
    .carousel-track {
      display: flex;
      flex-direction: row;
      gap: 1.75rem;
      width: max-content;
      padding: 1rem 0.25rem;
    }

    /* card style (inspired by traphone but tailored) */
    .ingredient-card {
      background: rgba(18, 18, 18, 0.9);
      backdrop-filter: blur(2px);
      border-radius: 2rem;
      width: 300px;
      flex-shrink: 0;
      padding: 1.8rem 1.5rem 2rem 1.5rem;
      border: 1px solid rgba(230, 180, 34, 0.25);
      transition: all 0.3s ease;
      box-shadow: 0 25px 35px -12px rgba(0,0,0,0.5);
      display: flex;
      flex-direction: column;
    }

    .ingredient-card:hover {
      transform: translateY(-6px);
      border-color: rgba(230, 180, 34, 0.7);
      box-shadow: 0 30px 40px -12px rgba(0,0,0,0.7), 0 0 0 1px rgba(230,180,34,0.2);
    }

    /* gradient accent line at top */
    .card-accent {
      width: 50px;
      height: 3px;
      background: linear-gradient(90deg, #dfad32, #dfad32);
      border-radius: 4px;
      margin-bottom: 1.5rem;
    }

    .ingredient-name {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
      letter-spacing: -0.02em;
      background: linear-gradient(145deg, #fff, #dfad32);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }

    .ingredient-desc {
      font-size: 0.95rem;
      line-height: 1.45;
      color: #cfcfcf;
      margin: 1rem 0 0.75rem 0;
      flex: 1;
    }

    .badge-natural {
      display: inline-block;
      margin-top: 1rem;
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #ffffff;
      background: #dfad32;
      padding: 0.25rem 0.75rem;
      border-radius: 40px;
      width: fit-content;
    }

    /* navigation arrows (optional but nice) */
    .nav-arrows {
      display: flex;
      justify-content: center;
      gap: 0.75rem;
      margin-top: 2rem;
    }

    .arrow-btn {
      background: #1c1c1c;
      border: 1px solid #2c2c2c;
      border-radius: 60px;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
      color: #dfad32;
    }

    .arrow-btn:hover {
      background: #e6b422;
      color: #070707;
      border-color: #e6b422;
    }

    @media (max-width: 640px) {
      .ingredient-carousel-section {
        padding: 3rem 1rem;
      }
      .section-header h2 {
        font-size: 1.9rem;
      }
      .ingredient-card {
        width: 260px;
        padding: 1.5rem;
      }
      .ingredient-name {
        font-size: 1.5rem;
      }
    }

    /* smooth */
    .carousel-wrapper {
      scroll-snap-type: x mandatory;
    }
    .ingredient-card {
      scroll-snap-align: start;
    }