
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #ffffff;
  color: #1a1a1a;
  overflow-x: hidden;
}

.navbar {
  width: 100%;
  background-color: #f3fcf7;
  position: relative;
  z-index: 1000;
  padding: 0 1rem;
}

.nav-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.logo {
  font-size: 2rem;
  font-weight: 600;
  color: #06c167;
  user-select: none;
}

.nav-links-desktop ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links-desktop ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links-desktop ul li a.active {
  color: #06c167;
}

.nav-links-desktop ul li a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: #06c167;
  border-radius: 50%;
}


.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 22px;
  height: 18px;
  cursor: pointer;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #06c167;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hover effect */
.hamburger:hover {
  background-color: #e6f9f0;
  border-color: #049a55;
}


.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 280px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
}

.nav-mobile.show {
  right: 0;
}

.nav-mobile .close-btn {
  font-size: 2rem;
  font-weight: 400;
  color: #06c167;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-mobile ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.nav-mobile ul li a:hover {
  color: #06c167;
}



.main-container {
  width: 100%;
  margin: 0 auto;
  min-height: 798px;
  position: relative;
}


.hero {
  background-color: #F3FCF7;
  position: relative;
  height: 663px;
  padding: 0 1rem;
}

.hero-wrapper {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  height: 100%;
}

.left {
  flex: 1;
  max-width: 550px;
  position: relative;
  top: -50px;
}

.left h1 {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
  margin-bottom: 1rem;
}

.left p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: #06C167;
  color: #fff;
  border: none;
  padding: 1.4rem 2rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #049a55;
}

.right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
  top: 35px;
}

.image-wrapper {
  position: relative;
  width: 468px;
  height: 634px;
  z-index: 99;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.dots {
  position: absolute;
  bottom: 0;
  right: -40px;
  width: 174px;
  opacity: 0.9;
  z-index: 2;
}

.rating-badge {
  position: absolute;
  top: 280px;
  left: -100px;
  background: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 550;
  width: 230px;
  height: 53px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.rating-badge .stars {
  color: #06C167;
}

.review-badge {
  position: absolute;
  top: 160px;
  right: -60px;
  background: #fff;
  padding: 0.4rem 0.4rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 550;
  width: 230px;
  height: 53px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.review-badge .avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}


.brands-section {
  background-color: #ffffff;
  position: relative;
  top: -7rem;
  padding: 2.2rem 0 3.75rem;
}

.brands-wrapper {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
}

.logos {
  width: 570px;
  display: flex;
  align-items: center;
  gap: 35px;
}

.logos img {
  width: 148px;
  height: 30px;
  object-fit: contain;
}



.features-section {
  width: 100%;
  background-color: #ffffff;
  padding: 2.5rem 2rem;
}

.features-wrapper {
  max-width: 1170px;
  margin: 0 auto;
  /* height: 185px; */
  border-top: 2px solid #e6e6e6;
  border-bottom: 2px solid #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 3rem 0;
  gap: 2rem;
}


.feature-box {
  display: flex;
  align-items: center;
  width: 209px;
  height: 70px;
  gap: 18px;
}

.icon-box {
  width: 70px;
  height: 70px;
  background-color: #f3fcf7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box img {
  width: 32.5px;
  height: 26px;
  object-fit: contain;
}

.text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}

.text p {
  font-size: 0.9rem;
  color: #666;
}



.benefit-section {
  width: 100%;
  background-color: #fff;
  padding: 120px 0;
}

.benefit-wrapper {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.benefit-image-box {
  width: 541px;
  height: 608px;
  background-color: #f0f1ec;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.benefit-main-img {
  width: 445px;
  height: 513px;
  object-fit: cover;
  margin-top: 0;
}

.benefit-content {
  flex: 1;
  max-width: 470px;
  position: relative;
  top: -20px;
}

.small-title {
  font-size: 0.95rem;
  color: #111;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.heading-wrapper {
  position: relative;
  display: inline-block;
}

.heading-wrapper h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.heading-dots {
  position: absolute;
  left: -50px;
  top: 45px;
  width: 120px;
  opacity: 0.5;
  z-index: 1;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: #111;
  font-weight: 500;
}

.benefits-list li img {
  width: 20px;
  height: 20px;
}


.stars-section {
  width: 100%;
  background-color: #ffffff;
  padding: 120px 0;
}

.stars-wrapper {
  max-width: 1230px;
  height: 608px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.stars-content {
  flex: 1;
  max-width: 530px;
}

.stars-content .small-title {
  font-size: 0.95rem;
  color: #111;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.stars-content .heading-wrapper {
  position: relative;
}

.stars-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.stars-content .heading-dots {
  position: absolute;
  left: -35px;
  bottom: -15px;
  width: 120px;
  opacity: 0.5;
  z-index: 1;
}

.stats-row {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 2.5rem;
}

.stat h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #06C167;
  margin-bottom: 0.3rem;
}

.stat p {
  font-size: 0.95rem;
  color: #555;
}

.stars-content .btn-primary {
  margin-top: 10px;
  height: 79px;
  width: 233px;
}

.right-icon {
  margin-left: 0.7rem;
}

.stars-image-box {
  width: 541px;
  height: 608px;
  background-color: #f3fafb;
  position: relative;
  overflow: hidden;
}

.stars-main-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 445px;
  height: 513px;
  object-fit: cover;
}



.foods-section {
  width: 100%;
  background-color: #fff;
  padding: 6.25rem 1rem;
}

.foods-wrapper {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.small-title {
  font-size: 0.95rem;
  color: #111;
  font-weight: 500;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
  color: #111;
  text-align: center;
}

.foods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 292.5px);
  width: 100%;
  border: 1px solid #06C167;
  border-bottom: none;
  border-right: none;
}

.food-card {
  display: flex;
  border-bottom: 1px solid #06C167;
  border-right: 1px solid #06C167;
  overflow: hidden;
}

.food-card.reverse {
  flex-direction: row-reverse;
}


.food-card.reverse-bottom {
  flex-direction: row;
}

.food-left {
  width: 292.5px;
  height: 292.5px;
  flex-shrink: 0;
}

.food-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.food-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
  background-color: #F3FCF7;
}

.food-right h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #111;
  margin-bottom: 0.4rem;
}

.food-right p {
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.discover-link {
  display: flex;
  align-items: center;
  color: #06C167;
  background-color: #e6f9f0;
  text-decoration: none;
  font-weight: 500;
  padding: 0 0.8rem;
  border-radius: 2px;
  height: 42px;
  width: fit-content;
  transition: all 0.3s ease;
}

.discover-link:hover {
  background-color: #06C167;
  color: #fff;
}


.products-section {
  width: 100%;
  background-color: #ffffff;
  padding: 6.25rem 1rem;
}

.products-wrapper {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.small-title {
  font-size: 0.95rem;
  color: #111;
  font-weight: 500;

}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
  color: #111;
  text-align: start;
}

.products-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;
}

.product-card {
  width: 270px;
  height: 445px;
  border: 2px solid #ddd;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 1rem;
  transition: border-color 0.3s ease;
}

.product-card.active {
  border-color: #06C167;
}

.product-card:hover {
  border-color: #06C167;
}

.products-grid:hover .product-card.active {
  border-color: #ddd;
}

.products-grid:hover .product-card.active:hover {
  border-color: #06C167 !important;
}

.product-image {
  width: 190px;
  height: 190px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.stars img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111;
  margin: 1rem 0;
  text-align: center;
}

.price {
  margin-bottom: 1.8rem;
}

.old-price {
  color: #999;
  font-size: 0.95rem;
  text-decoration: line-through;
  margin-right: 8px;
}

.new-price {
  color: #06C167;
  font-weight: 700;
  font-size: 1rem;
}

.buy-btn {
  width: 177px;
  height: 57px;
  background-color: #fff;
  color: #06C167;
  border: 2px solid #06C167;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buy-btn:hover {
  background-color: #06C167;
  color: #fff;
}

.banner-section {
  width: 100%;
  background-color: #ffffff;
  padding: 100px 0;
}

.banner-wrapper {
  max-width: 1170px;
  height: 459px;
  margin: 0 auto;
  border-radius: 8px;
  background-image: url("../images/Rectangle 8.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}


.banner-title {
  position: relative;
  z-index: 2;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 2rem;
}

.banner-btn {
  position: relative;
  z-index: 2;
  width: 210px;
  height: 79px;
  background-color: #06C167;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.banner-btn:hover {
  background-color: #049a55;
}



/* =========================================================
   Footer
========================================================= */
.footer {
  width: 100%;
  background-color: #ffffff;
  padding: 5rem 1rem 2.5rem;
  color: #111;
  font-family: 'Inter', sans-serif;
}

.footer-wrapper {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  color: #06C167;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.footer-socials a img:hover {
  filter: grayscale(0) brightness(0) saturate(100%) invert(33%) sepia(80%) saturate(600%) hue-rotate(86deg) brightness(95%) contrast(95%);
  transform: scale(1.1);
}

.footer-col h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #111;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.7rem;
}

.footer-col ul li a {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #06C167;
}

.get-touch .subscribe-form {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.get-touch input {
  background-color: #f3f3f3;
  border: none;
  outline: none;
  padding: 0.8rem 1rem;
  width: 180px;
  font-size: 0.9rem;
  border-radius: 3px;
}

.get-touch button {
  background-color: #06C167;
  color: #fff;
  border: none;
  padding: 0.8rem 1.4rem;
  font-size: 0.9rem;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.get-touch button:hover {
  background-color: #049a55;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #555;
}