
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #FFF8EE;
      color: #1A1A1A;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 {
      font-family: 'Poppins', sans-serif;
    }

    :root {
      --gold: #F4B400;
      --brown: #3B2416;
      --cream: #FFF8EE;
      --orange: #D97706;
      --black: #1A1A1A;
    }

    nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      padding: 20px 8%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      backdrop-filter: blur(14px);
      background: rgba(255,255,255,0.12);
      border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .logo {
      font-size: 2rem;
      font-weight: 900;
      color: white;
    }

    .logo span {
      color: var(--gold);
    }

    nav ul {
      display: flex;
      gap: 30px;
      list-style: none;
    }

    nav ul li a {
      text-decoration: none;
      color: white;
      font-weight: 600;
      transition: 0.3s;
    }

    nav ul li a:hover {
      color: var(--gold);
    }

    .btn {
      padding: 14px 28px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      font-weight: 700;
      transition: 0.3s ease;
    }

    .btn:hover {
      transform: translateY(-4px) scale(1.03);
    }

    .gold-btn {
      background: var(--gold);
      color: black;
      box-shadow: 0 10px 25px rgba(244,180,0,0.35);
    }

    .hero {
      min-height: 100vh;
      background:
      linear-gradient(to right, rgba(59,36,22,0.92), rgba(59,36,22,0.5)),
      url('/3.jpeg');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      padding: 140px 8% 80px;
      position: relative;
    }

    .floating {
      position: absolute;
      border-radius: 50%;
      animation: float 6s infinite ease-in-out;
      opacity: 0.8;
    }

    .floating.one {
      width: 100px;
      height: 100px;
      background: rgba(244,180,0,0.2);
      top: 15%;
      left: 5%;
    }

    .floating.two {
      width: 70px;
      height: 70px;
      background: rgba(255,255,255,0.1);
      bottom: 20%;
      right: 10%;
    }

    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
      100% { transform: translateY(0px); }
    }

    .hero-content {
      max-width: 700px;
      color: white;
      z-index: 2;
    }

    .tag {
      display: inline-block;
      padding: 10px 20px;
      background: rgba(255,255,255,0.15);
      border-radius: 50px;
      backdrop-filter: blur(10px);
      margin-bottom: 25px;
    }

    .hero h1 {
      font-size: 6rem;
      line-height: 0.95;
      margin-bottom: 25px;
      font-weight: 900;
    }

    .hero p {
      font-size: 1.2rem;
      line-height: 1.8;
      margin-bottom: 35px;
      color: rgba(255,255,255,0.9);
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .outline-btn {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.4);
      color: white;
      backdrop-filter: blur(10px);
    }

    section {
      padding: 110px 8%;
    }

    .section-title {
      text-align: center;
      margin-bottom: 70px;
    }

    .section-title p {
      color: var(--orange);
      letter-spacing: 4px;
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .section-title h2 {
      font-size: 4rem;
      color: var(--brown);
      font-weight: 900;
    }

    .flavor-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
    }

    .card {
      background: white;
      border-radius: 35px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0,0,0,0.08);
      transition: 0.4s ease;
    }

    .card:hover {
      transform: translateY(-12px);
    }

    .card img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      transition: 0.5s;
    }

    .card:hover img {
      transform: scale(1.08);
    }

    .card-content {
      padding: 25px;
    }

    .badge {
      position: absolute;
      background: var(--gold);
      padding: 10px 18px;
      border-radius: 40px;
      top: 20px;
      left: 20px;
      font-size: 0.8rem;
      font-weight: 700;
    }

    .image-wrap {
      position: relative;
      overflow: hidden;
    }

    .card-content h3 {
      font-size: 1.6rem;
      color: var(--brown);
      margin-bottom: 10px;
    }

    .price {
      color: var(--orange);
      font-weight: 800;
      margin-bottom: 15px;
      display: block;
    }

    .card-content p {
      color: #555;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .gallery {
      background: var(--brown);
    }

    .gallery .section-title h2,
    .gallery .section-title p {
      color: white;
    }

    .masonry {
      columns: 3 250px;
      gap: 20px;
    }

    .masonry img {
      width: 100%;
      margin-bottom: 20px;
      border-radius: 30px;
      transition: 0.4s;
      cursor: pointer;
    }

    .masonry img:hover {
      transform: scale(1.03);
    }

    .about {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 60px;
      align-items: center;
    }

    .about img {
      width: 100%;
      border-radius: 35px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

    .about h2 {
      font-size: 4rem;
      color: var(--brown);
      margin-bottom: 25px;
      font-weight: 900;
    }

    .about p {
      color: #555;
      line-height: 1.9;
      margin-bottom: 25px;
      font-size: 1.05rem;
    }

    .features {
      background: #FFF3D6;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .feature-card {
      background: white;
      padding: 40px 30px;
      border-radius: 30px;
      transition: 0.4s;
      box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    }

    .feature-card:hover {
      transform: translateY(-10px);
    }

    .icon {
      width: 70px;
      height: 70px;
      background: var(--gold);
      border-radius: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .feature-card h3 {
      margin-bottom: 15px;
      color: var(--brown);
      font-size: 1.5rem;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .testimonial {
      background: white;
      border-radius: 30px;
      padding: 35px;
      box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    }

    .avatar {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: var(--gold);
      margin-bottom: 20px;
    }

    .delivery {
      background: linear-gradient(to right, #3B2416, #24140b);
      color: white;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .delivery h2 {
      font-size: 5rem;
      margin-bottom: 25px;
      font-weight: 900;
    }

    .delivery p {
      max-width: 700px;
      margin: auto;
      line-height: 1.9;
      margin-bottom: 40px;
      color: rgba(255,255,255,0.8);
    }

    footer {
      background: var(--black);
      color: white;
      padding: 80px 8%;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 50px;
    }

    footer h3 {
      margin-bottom: 20px;
    }

    footer p,
    footer li {
      color: rgba(255,255,255,0.7);
      line-height: 2;
      list-style: none;
    }

    footer input {
      width: 100%;
      padding: 14px;
      border-radius: 50px;
      border: none;
      margin-bottom: 15px;
      outline: none;
    }

     .footer-links h4 {
      color: white;
      margin-bottom: 18px;
    }

    .footer-links a {
      display: block;
      text-decoration: none;
      color: rgba(255,255,255,0.7);
      margin-bottom: 12px;
      transition: var(--transition);
    }

    .footer-links a:hover {
      color: var(--accent);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .socials {
      display: flex;
      gap: 14px;
    }

    .socials a {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: white;
      transition: var(--transition);
    }

    .socials a:hover {
      background: var(--teal);
      transform: translateY(-4px);
    }


    .copyright {
      text-align: center;
      margin-top: 50px;
      color: rgba(255,255,255,0.5);
    }

    @media(max-width: 768px) {
      .hero h1 {
        font-size: 4rem;
      }

      .section-title h2,
      .about h2,
      .delivery h2 {
        font-size: 2.7rem;
      }

      nav ul {
        display: none;
      }
    }
