    /* GENERAL */
    body {
        font-family: "Poppins", sans-serif;
        background-color: #ffffff;
        color: #333;
        scroll-behavior: smooth;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    section {
        padding: 40px 0;
    }

    /* NAVBAR */
    .navbar {
        background-color: #0d6efd;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s ease;
    }

    .navbar-brand span {
        line-height: 1.2;
    }

    .navbar .nav-link {
        color: #fff !important;
        font-weight: 500;
        margin-right: 10px;
        transition: color 0.3s ease;
    }

    .navbar .nav-link:hover {
        color: #ffc107 !important;
    }


    /* CAROUSEL */
.carousel-image {
    width: 100%;
    height: 80vh; /* adjust as you like (e.g. 100vh or 70vh) */
    object-fit: cover; /* maintains aspect ratio and prevents overflow */
}

@media (max-width: 768px) {
    .carousel-image {
        height: 50vh; /* smaller height for mobile */
        object-fit: cover;
    }
}


/* marquee */
 .marquee-wrapper {
      background: linear-gradient(90deg, #007bff, #00bcd4);
      color: #fff;
      font-weight: 600;
      font-size: 1.1rem;
      overflow: hidden;
      white-space: nowrap;
      position: relative;
      padding: 10px 0;
    }

    .marquee {
      display: inline-flex;
      white-space: nowrap;
      animation: marquee 50s linear infinite;
    }

    .marquee span {
      padding-right: 3rem; /* optional small spacing */
    }

    .marquee-wrapper:hover .marquee {
      animation-play-state: paused;
    }

    @keyframes marquee {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }


    /* ABOUT */
    .about-section img {
        max-width: 600px;
        height: 500px;
    }

    /* Our Menu */
        .menu-section {
      background-color: #f8f9fa;
      padding: 60px 0;
    }

    .menu-item {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      margin-bottom: 30px;
      transition: transform 0.3s ease;
    }

    .menu-item:hover {
      transform: translateY(-5px);
    }

    .menu-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .menu-content {
      padding: 10px;
    }

    .menu-content h5 {
      font-weight: 600;
    }

    .menu-content p {
      color: #555;
    }

    /* why choose us */
     .choose-section {
      background-color: #f9fafb;
      padding: 60px 0;
    }

    .choose-card {
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      padding: 30px 20px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
    }

    .choose-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    }

    .choose-card i {
      font-size: 40px;
      color: #0d6efd;
      margin-bottom: 20px;
    }

    .choose-card h5 {
      font-weight: 600;
      margin-bottom: 10px;
    }

    .choose-card p {
      color: #555;
      font-size: 15px;
    }


    /* PRODUCTS */
    .product-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    /* CONTACT */
    .contact-section form {
        background: #fff;
        border-radius: 10px;
    }

    /* FOOTER */
    footer {
        background-color: #0d6efd;
        color: white;
        padding: 20px 0;
        margin-top: 60px;
    }

   
    /* footer */
      footer {
      background-color: #0d6efd;
      color: white;
      padding: 60px 0 20px;
    }
    footer a {
      color: #f8f9fa;
      text-decoration: none;
    }
    footer a:hover {
      color: #ffc107;
      text-decoration: underline;
    }
    .social-icons a {
      color: white;
      margin-right: 15px;
      font-size: 1.3rem;
      transition: color 0.3s ease;
    }
    .social-icons a:hover {
      color: #ffc107;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.2);
      padding-top: 15px;
      margin-top: 40px;
      font-size: 0.9rem;
    }

    /* Whatsapp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #04f564;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  color: #fff;
}

/* Smaller screens optimization */
@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }
}


/* Contact Page */
  .contact-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #eaf3ff 100%);
  }

  .info-box i {
    transition: transform 0.3s ease;
  }

  .info-box:hover i {
    transform: scale(1.2);
  }

  form input, form textarea {
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid #dee2e6;
  }

  form input:focus, form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
  }

  .btn-primary {
    background-color: #007bff;
    border: none;
  }

  .btn-primary:hover {
    background-color: #0056b3;
  }


  /* Products Section */
    .product-card {
    transition: all 0.4s ease;
  }

  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .product-img {
    transition: transform 0.5s ease;
  }

  .product-card:hover .product-img {
    transform: scale(1.08);
  }

  .product-btn,
  .buy-btn {
    transition: all 0.3s ease;
  }

  .product-card:hover .product-btn {
    background-color: #0d6efd;
    color: #fff;
    box-shadow: 0 0 12px rgba(13, 110, 253, 0.5);
  }

  .buy-btn:hover {
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.6);
    transform: scale(1.05);
  }

  .filter-btn.active {
    background-color: #0d6efd;
    color: #fff;
  }

  .product-card-item {
    transition: all 0.4s ease;
  }

  .product-card-item.hide {
    opacity: 0;
    transform: scale(0.9);
    display: none !important;
  }

  /* Contact Page */
   .contact-section {
    background: linear-gradient(to bottom right, #ffffff, #eef4ff);
  }

  .info-box i {
    width: 45px;
    height: 45px;
    background: #e8f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 6px rgba(13, 110, 253, 0.3);
  }

  .btn-primary:hover {
    background-color: #0056d2;
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.6);
  }

  .map-container iframe {
    border-radius: 20px;
  }

  @media (max-width: 768px) {
    .info-box i {
      width: 40px;
      height: 40px;
    }
  }


   /* keep heading slightly stronger */
  #popular-drinks h2 { font-weight: 700; }
  /* ensure object-fit works across browsers for responsive cropping */
  .object-fit-cover { object-fit: cover; display: block; }
  /* tweak button spacing on small screens */
  @media (max-width: 575.98px){
    #popular-drinks .btn { display: inline-block; margin-bottom: .5rem; }
  }