
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary: #f46e2b;
      --primary-dark: #cb5511;
      --cream: #fff8ed;
      --dark: #252525;
      --text: #5d5d5d;
      --white: #ffffff;
      --green: #222f1c;
      --yellow: #ffb703;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--dark);
      background: var(--cream);
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    
    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title span {
      color: var(--primary);
      font-size: 15px;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .section-title h2 {
      font-size: 42px;
      margin-top: 8px;
    }

    .section-title p {
      max-width: 600px;
      margin: 15px auto 0;
      color: var(--text);
    }

    .btn {
      display: inline-block;
      padding: 14px 28px;
      border-radius: 30px;
      background: var(--primary);
      color: white;
      font-weight: bold;
      transition: 0.3s;
      border: none;
      cursor: pointer;
    }

    .btn:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
      margin-left: 10px;
    }

    .btn-outline:hover {
      color: white;
    }


    /* =========================
       TOP BAR
    ========================== */

    .topbar {
      background: var(--green);
      color: white;
      text-align: center;
      padding: 8px;
      font-size: 14px;
    }


    /* =========================
       NAVIGATION
    ========================== */

    nav {
      background: rgba(255, 248, 237, 0.96);
      border-bottom: 1px solid #eee;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .navbar {
      height: 75px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-size: 27px;
      font-weight: 900;
      color: var(--primary);
    }

    .logoimage{
        height: 70px;
        width: 70px;
        border-radius: 50%;
    }

    .logo span {
      color: var(--green);
    }

    .nav-links {
      display: flex;
      gap: 30px;
      list-style: none;
    }

    .nav-links a {
      font-weight: 600;
      transition: 0.3s;
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .nav-buttons {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .cart {
      font-size: 22px;
      cursor: pointer;
    }


    /* =========================
       HERO
    ========================== */

    .hero {
      min-height: 680px;
      display: flex;
      align-items: center;
      background:
        radial-gradient(circle at 85% 40%, #ffd6a5 0%, transparent 28%),
        var(--cream);
    }

    .hero-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .hero-text span {
      color: var(--primary);
      font-weight: bold;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-size: 14px;
    }

    .hero-text h1 {
      font-size: clamp(48px, 6vw, 76px);
      line-height: 1.05;
      margin: 15px 0 25px;
    }

    .hero-text h1 em {
      color: var(--primary);
      font-style: normal;
    }

    .hero-text p {
      color: var(--text);
      font-size: 18px;
      max-width: 530px;
      margin-bottom: 30px;
    }

    .hero-image {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .food-circle {
      width: 440px;
      height: 440px;
      border-radius: 50%;
      background: #ffb703;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 170px;
      box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    }

    .floating-card {
      position: absolute;
      background: white;
      padding: 10px 15px;
      border-radius: 15px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.12);
      font-weight: bold;
    }

    .card-one {
      top: 70px;
      left: 20px;
    }

    .card-two {
      bottom: 95px;
      right: 0;
    }


    /* =========================
       BENEFITS
    ========================== */

    .benefits {
      background: white;
      padding: 65px 0;
    }

    .benefit-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    .benefit {
      text-align: center;
      padding: 20px;
    }

    .benefit-icon {
      font-size: 40px;
      margin-bottom: 15px;
    }

    .benefit h3 {
      margin-bottom: 7px;
    }

    .benefit p {
      color: var(--text);
      font-size: 14px;
    }


    /* =========================
       PRODUCTS
    ========================== */

    .products {
      padding: 100px 0;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    .product-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      transition: 0.3s;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .product-image {
      height: 240px;
      background: #ffe3c2;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 100px;
      position: relative;
    }

    .badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: var(--green);
      color: white;
      font-size: 11px;
      padding: 5px 10px;
      border-radius: 20px;
      font-weight: bold;
    }

    .product-info {
      padding: 20px;
    }

    .product-info h3 {
      font-size: 20px;
      margin-bottom: 5px;
    }

    .product-info p {
      color: var(--text);
      font-size: 14px;
      margin-bottom: 15px;
    }

    .product-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .price {
      font-weight: bold;
      font-size: 20px;
    }

    .small-btn {
      background: var(--primary);
      color: white;
      border: none;
      padding: 9px 16px;
      border-radius: 20px;
      cursor: pointer;
    }


    /* =========================
       ABOUT
    ========================== */

    .about {
      background: var(--green);
      color: white;
      padding: 100px 0;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
    }

    .anu{
        border-radius: 50%;
    }
    .about-image {
      height: 450px;
      background: #f4c95d;
      border-radius: 25px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 150px;
    }

    .about-text span {
      color: #ffd166;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .about-text h2 {
      font-size: 45px;
      line-height: 1.1;
      margin: 15px 0 25px;
    }

    .about-text p {
      color: #e8eadf;
      margin-bottom: 20px;
    }

    .about-list {
      list-style: none;
      margin: 25px 0;
    }

    .about-list li {
      margin: 12px 0;
    }


    /* =========================
       HOW IT WORKS
    ========================== */

    .steps {
      padding: 100px 0;
      background: white;
    }

    .step-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      text-align: center;
    }

    .step-number {
      width: 65px;
      height: 65px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: bold;
    }

    .step h3 {
      margin-bottom: 10px;
    }

    .step p {
      color: var(--text);
    }


    /* =========================
       TESTIMONIALS
    ========================== */

    .reviews {
      padding: 100px 0;
    }

    .review-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }

    .review {
      background: white;
      padding: 30px;
      border-radius: 20px;
    }

    .stars {
      color: var(--yellow);
      font-size: 20px;
      margin-bottom: 15px;
    }

    .review p {
      color: var(--text);
      margin-bottom: 20px;
    }

    .review strong {
      display: block;
    }


    /* =========================
       NEWSLETTER
    ========================== */

    .newsletter {
      padding: 80px 0;
    }

    .newsletter-box {
      background: #ffd166;
      border-radius: 25px;
      padding: 60px;
      text-align: center;
    }

    .newsletter-box h2 {
      font-size: 40px;
      margin-bottom: 10px;
    }

    .newsletter-box p {
      margin-bottom: 25px;
    }

    .email-form {
      max-width: 500px;
      margin: auto;
      display: flex;
      background: white;
      padding: 6px;
      border-radius: 40px;
    }

    .email-form input {
      flex: 1;
      border: none;
      outline: none;
      padding: 12px 20px;
      border-radius: 30px;
      font-size: 15px;
    }

    .email-form button {
      border: none;
      background: var(--primary);
      color: white;
      padding: 12px 25px;
      border-radius: 30px;
      font-weight: bold;
      cursor: pointer;
    }


    /* =========================
       FOOTER
    ========================== */

    footer {
      background: #202d1c;
      color: white;
      padding: 70px 0 25px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 50px;
      margin-bottom: 50px;
    }

    .footer-brand h2 {
      color: #ffb703;
      margin-bottom: 15px;
    }

    .footer-brand p {
      color: #ccd3c8;
      max-width: 350px;
    }

    footer h3 {
      margin-bottom: 15px;
    }

    footer ul {
      list-style: none;
    }

    footer li {
      margin: 10px 0;
      color: #ccd3c8;
    }

    footer li:hover {
      color: white;
    }

    .copyright {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 20px;
      text-align: center;
      color: #aeb8a8;
      font-size: 14px;
    }


    /* =========================
       RESPONSIVE
    ========================== */

    @media (max-width: 900px) {

      .nav-links {
        display: none;
      }

      .hero-content,
      .about-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        padding: 70px 0;
      }

      .hero-image {
        order: -1;
      }

      .food-circle {
        width: 320px;
        height: 320px;
        font-size: 120px;
      }

      .benefit-grid,
      .product-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .step-grid,
      .review-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {

      .hero-text h1 {
        font-size: 48px;
      }

      .benefit-grid,
      .product-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .section-title h2 {
        font-size: 34px;
      }

      .newsletter-box {
        padding: 35px 20px;
      }

      .newsletter-box h2 {
        font-size: 30px;
      }

      .email-form {
        flex-direction: column;
        background: transparent;
        gap: 10px;
      }

      .email-form input,
      .email-form button {
        width: 100%;
        background: white;
      }

      .email-form button {
        background: var(--primary);
      }

      .btn-outline {
        margin-left: 0;
        margin-top: 10px;
      }
    }
