/**navbar**/

/* Slider Styles */
.slider {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px; /* Set desired height */
  background-color: white; /* White background around the image */
}

.slider-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Ensures the image fits without stretching */
}


/* Yellow Line with Business Details */
.yellow-line {
  background-color: #ffcc33;
  padding: 10px 0;
  text-align: center;
  color: #333;
  font-size: 1rem;
  font-weight: bold;
}



/* Responsive Styles */
@media (max-width: 480px) {
    .slider {
        height: 250px;
    }
    .slider-image {
        height: 250px;
    }
}
  

  .nav-links {
    position: fixed;
    top: 60px;
    right: -100%;
    flex-direction: column;
    background: #ffce00;
    width: 80%;
    height: 100vh;
    padding: 2rem 1rem;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    z-index: 99;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    padding: 1rem 0;
    font-size: 1.2rem;
    border-bottom: 1px solid #fff;
  }

  .notification {
    font-size: 1.5rem;
    padding: 1rem 0;
  }



  /** here starts footer**/
  .footer {
    background-color: #9c2f4f;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .footer-text {
    margin-top: 20px;
    font-size: 14px;
    color: rgb(255, 255, 255);
  }
  
  footer p {
    font-family: 'Poppins', sans-serif;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}
  .footer-text a {
    color: rgb(255, 255, 255);
    text-decoration: none;
  }
  
  .footer-text a:hover {
    text-decoration: underline;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .social-icons a img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  .social-icons a:hover img {
    transform: scale(1.2);
  }
  
  @media (max-width: 768px) {
    .footer-text {
      font-size: 12px;
    }
  
    .social-icons {
      gap: 15px;
    }
  }
/* Best Selling Section */
/* Best Selling Section */
.best-selling-container {
  margin: 40px auto;
  text-align: center;
  max-width: 1200px;
}

.best-selling-container h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4a3600;
  margin-bottom: 30px;
}

.best-selling-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 0 20px;
}

.product-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-name {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.product-price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #ffcc33;
  margin-bottom: 20px;
}

.buy-now-btn {
  background-color: #ffcc33;
  color: #4a3600;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.buy-now-btn:hover {
  background-color: #f5b800;
}

.view-all-btn-wrap {
  margin-top: 30px;
}

.view-all-btn {
  background-color: #4a3600;
  color: #fff;
  padding: 12px 25px;
  font-size: 1.1rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.view-all-btn:hover {
  background-color: #f5b800;
  color: #000;
}
