/* =========================================================
   Navbar Responsive
========================================================= */
@media (max-width: 992px) {
  .nav-links-desktop {
    display: none; /* hide desktop links */
  }

  .hamburger {
    display: flex; /* show burger */
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.6rem;
  }
  .nav-mobile {
    width: 80%;
  }
}

@media (max-width: 320px) {
  .logo {
    font-size: 1.4rem;
  }
  .hamburger {
    width: 22px;
    height: 18px;
  }
  .nav-mobile ul li a {
    font-size: 1rem;
  }
}



/* =========================================================
   Hero and Brand Responsive
========================================================= */
/* ---------- Large Tablets (≤ 1024 px) ---------- */
@media (max-width: 1024px) {
  .hero{
    margin-bottom: 100px;
  }
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
    height: auto;
  }

  .left {
    position: static;
    max-width: 90%;
  }

  .right {
    justify-content: center;
    position: static;
  }

  .image-wrapper {
    width: 400px;
    height: 540px;
    margin: 0 auto;
  }

  /* badges moved to bottom */
  .rating-badge,
  .review-badge {
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
  }

  .rating-badge {
    bottom: 80px;
    top: auto;
  }

  .review-badge {
    bottom: 20px;
    top: auto;
  }


}

/* ---------- Tablets / Landscape phones (≤ 768 px) ---------- */
@media (max-width: 768px) {
  .left h1 {
    font-size: 2.8rem;
  }

  .left p {
    font-size: 0.95rem;
  }

  .image-wrapper {
    width: 320px;
    height: 440px;
  }

  .dots {
    width: 120px;
    right: -20px;
  }

  .rating-badge,
  .review-badge {
    width: 200px;
    height: 48px;
    font-size: 0.95rem;
    z-index: 99;
  }

  .rating-badge {
    bottom: 70px;
  }

  .review-badge {
    bottom: 15px;
  }

  .btn-primary {
    width: auto;
    padding: 0.8rem 1.6rem;
  }
}

/* ---------- Phones (≤ 480 px) ---------- */
@media (max-width: 480px) {
  .small-title{
    text-align: center;
  }

  .section-title{
     font-size: 30px;
     text-align: center;
  }
  .footer-text{
    margin: 15px;
  }
  .hero {
    padding: 2rem 1rem;
  }

  .left h1 {
    font-size: 2.1rem;
  }

  .left p {
    font-size: 0.9rem;
  }

  .image-wrapper {
    width: 85%;
    height: auto;
  }

  .rating-badge,
  .review-badge {
    font-size: 0.8rem;
    width: 180px;
    height: 42px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
  }

  .rating-badge {
    bottom: 70px;
    top: auto;
  }

  .review-badge {
    bottom: 20px;
    top: auto;
  }

  .btn-primary {
    width: 100%;
  }

}

/* ---------- Extra‑small phones (≤ 320 px) ---------- */
@media (max-width: 320px) {
  .hero {
    padding: 1.5rem 0.5rem;
  }

  .left h1 {
    font-size: 1.7rem;
  }

  .left p {
    font-size: 0.85rem;
  }

  .rating-badge,
  .review-badge {
    width: 180px;
    height: 40px;
    font-size: 0.75rem;
    z-index: 99;
  }


  .btn-primary {
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
  }
}


/* =========================================================
   Brand Logos — tablet, mobile & 320px
========================================================= */

/* ---------- Tablet (≤ 1024 px) --------*/
@media (max-width: 1024px) {
  .brands-section {
    top: 0;                   
    padding: 40px 0;
  }

  .brands-wrapper {
    justify-content: center;  
    align-items: center;
    flex-direction: column;
    margin-top: 120px;
  }

  .logos {
    justify-content: center;
  }
}

/* ---------- Mobile & Small (≤ 480 px) --------- */
@media (max-width: 480px) {
  .brands-section {
    padding: 25px 0 40px;
    background-color: #fff;
  }

  .brands-wrapper {
    justify-content: center;
  }

  .logos {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 40px;        
    row-gap: 25px;           
  }

  .logos img {
    width: 130px;
    height: 28px;
    object-fit: contain;
  }
}

/* ---------- Extra‑small (≤ 320 px) ---------*/
@media (max-width: 320px) {
  .logos {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 30px;
    row-gap: 25px;
  }

  .logos img {
    width: 110px;
    height: 26px;
  }
}

/* =========================================================
  Features / Services Section
========================================================= */

@media (max-width: 768px) {
  .features-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: auto;
    gap: 1.5rem 2rem;
    padding: 25px 0;
  }

  .feature-box {
    width: 45%;
    max-width: 250px;
  }
}

/* ---------- Extra‑small devices (≤ 320 px) ---------- */
@media (max-width: 480px) {
  .features-wrapper {
   
    padding: 20px 0;
    display: flex;
   
    
  }

  .feature-box {
    width: 48%;         
    max-width: 150px;
    transform: scale(0.9); 
    display: flex;
    flex-direction: column;
  
    
    
  }

  .icon-box {
    width: 55px;
    height: 55px;
  }

  .icon-box img {
    width: 26px;
    height: 22px;
  }

  .text h4 {
    font-size: 0.85rem;
  }

  .text p {
    font-size: 0.75rem;
  }
}

/* =========================================================
   Benefit / Healthy Food Section Responsive
========================================================= */



@media (max-width: 1024px) {
  .benefit-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .benefit-content {
    max-width: 100%;
  }

  .heading-dots {
    left: 50%;
    transform: translate(-50%, 10px);
  }
}

@media (max-width: 480px) {
  .benefit-image-box {
    width: 100%;
    height: auto;
  }

  .benefit-main-img {
    width: 80%;
    height: auto;
  }

  .heading-wrapper h1 {
    font-size: 2rem;
  }

  .benefits-list li {
    font-size: 0.95rem;
  }
}


/* =========================================================
  Our Stars Section Responsive
========================================================= */

/* ---------- Tablet (≤ 1024 px) ---------- */
@media (max-width:1024px){
  .stars-wrapper{
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    height:auto;
    gap:60px;
    text-align:center;
  }

  .stars-content{
    max-width:600px;
  }

  .stars-image-box{
    width:80%;
    height:auto;
  }

  .stars-main-img{
    position:static;
    width:100%;
    height:auto;
  }

  .stars-content h1{
    font-size:2.4rem;
    margin-bottom:2rem;
  }

  .heading-dots{
    left:50%;
    transform:translateX(-50%);
    bottom:-10px;
  }

  .stats-row{
    justify-content:center;
    gap:40px;
  }

  .stat h2{
    font-size:1.8rem;
  }
}

/* ---------- Mobile (≤ 768 px) ---------- */
@media (max-width:768px){
  .stars-section{
    padding:80px 0;
  }

  .stars-wrapper{
    gap:45px;
  }

  .stars-content h1{
    font-size:2rem;
  }

  .stats-row{
    flex-wrap:wrap;
    gap:30px 50px;
  }

  .stat h2{
    font-size:1.6rem;
  }

  .stars-image-box{
    width:90%;
  }
}

/* ---------- Small phones (≤ 480 px) ---------- */
@media (max-width:480px){
  .stars-section{
    padding:60px 0;
  }

  .stars-wrapper{
    gap:40px;
  }

  .stars-content{
    max-width:100%;
    padding:0 1rem;
  }

  .stars-content h1{
    font-size:1.8rem;
    line-height:1.3;
  }

  .stats-row{
    justify-content:center;
    flex-direction:column;
    align-items:center;
    gap:1rem;
  }

  .stat h2{
    font-size:1.5rem;
  }

  .stars-image-box{
    width:100%;
    height:auto;
  }

  .stars-main-img{
    width:90%;
    height:auto;
  }

  .stars-content .btn-primary{
    width:200px;
    height:65px;
  }
}

/* ---------- Extra‑small (≤ 320 px) ---------- */
@media (max-width:320px){
  .stars-content h1{
    font-size:1.5rem;
  }

  .stat h2{
    font-size:1.3rem;
  }

  .stars-content .btn-primary{
    width:180px;
    height:60px;
    font-size:0.9rem;
  }
}

/* =========================================================
  Variety Of Foods  Responsive
========================================================= */

@media (max-width: 3000px) {
  .foods-wrapper {
    height: auto;
    padding: 0 0.8rem;
  }

  .foods-grid {
    display: grid;
    grid-template-columns:1fr 1fr 1fr 1fr;
    padding: 0 28px;
    
  }

  

  .food-left{
    width: 320px;
    height: 292.5px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .food-right {
    width: 320px;
    height: 100%;
    text-align: center;
    align-items: center;
    padding: 1rem;
    border: 1.5px solid #06C167;
  }

  

  .food-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  

  .food-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 34px;
  }

  .food-right p {
    font-size: 1rem;
    margin-bottom: 37.5px;
  }

  .discover-link {
    margin: 0 auto 31px;
    height: 34px;
    font-size: 0.85rem;
    padding: 0 0.6rem;
  }
}


/* ---------- Tablet to Mobile (≤ 1024 px) --------*/
@media (max-width: 1024px) {
  .foods-wrapper {
    height: auto;
    padding: 0 0.8rem;
  }

  .foods-grid {
    display: grid;
    grid-template-columns:1fr 1fr 1fr;
    padding: 0 28px;
    
  }

  

  .food-left{
    width: 320px;
    height: 292.5px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .food-right {
    width: 320px;
    height: 100%;
    text-align: center;
    align-items: center;
    padding: 1rem;
    border: 1.5px solid #06C167;
  }

  

  .food-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  

  .food-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 34px;
  }

  .food-right p {
    font-size: 1rem;
    margin-bottom: 37.5px;
  }

  .discover-link {
    margin: 0 auto 31px;
    height: 34px;
    font-size: 0.85rem;
    padding: 0 0.6rem;
  }
}

/* ---------- Phones (≤ 768 px) ----*/

@media (max-width: 768px) {
  .foods-wrapper {
    height: auto;
    padding: 0 0.8rem;
  }

  .foods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 28px;
    
  }

  

  .food-left{
    width: 320px;
    height: 292.5px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .food-right {
    width: 320px;
    height: 100%;
    text-align: center;
    align-items: center;
    padding: 1rem;
    border: 1.5px solid #06C167;
  }

  

  .food-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  

  .food-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 34px;
  }

  .food-right p {
    font-size: 1rem;
    margin-bottom: 37.5px;
  }

  .discover-link {
    margin: 0 auto 31px;
    height: 34px;
    font-size: 0.85rem;
    padding: 0 0.6rem;
  }
}

/* =========================================================
   Extra‑small Devices — (≈ ≤ 442 px)
========================================================= */
@media (max-width: 442px) {
  .foods-wrapper {
    height: auto;
    padding: 0 0.8rem;
  }

  .foods-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 28px;
    
  }

  

  .food-left{
    width: 320px;
    height: 292.5px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .food-left .small{
    width: 292.5px;
    height: 292.5px;
  }
  .food-right {
    width: 320px;
    height: 100%;
    text-align: center;
    align-items: center;
    padding: 1rem;
    border: 1.5px solid #06C167;
  }

  

  .food-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  

  .food-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 34px;
  }

  .food-right p {
    font-size: 1rem;
    margin-bottom: 37.5px;
  }

  .discover-link {
    margin: 0 auto 31px;
    height: 34px;
    font-size: 0.85rem;
    padding: 0 0.6rem;
  }
}


/* =========================================================
   Most Popular Product Section Responsive
========================================================= */


@media (max-width: 1024px) {
  .products-wrapper {
    height: auto;
  }

  .products-grid {
    justify-content: center;
    gap: 30px;
  }

  .product-card {
    width: 45%;
  }
}

@media (max-width: 640px) {
  .product-card {
    width: 100%;
    max-width: 320px;
  }
}

/* =========================================================
   Veggie Foods Banner Section Responsive
========================================================= */



@media (max-width: 768px) {
  .banner-title {
    font-size: 1.8rem;
  }

  .banner-btn {
    width: 180px;
    height: 65px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .banner-title {
    font-size: 1.4rem;
  }

  .banner-btn {
    width: 160px;
    height: 60px;
    font-size: 0.9rem;
  }
}


/* =========================================================
   Footer Responsive
========================================================= */


@media (max-width: 992px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .get-touch .subscribe-form {
    justify-content: center;
  }
}

 
/* hero section problem fixed */

@media (max-width: 1064px){

}