/* <!-- Hero Section  --> */
.pbb {
  padding-bottom: 3.5rem !important;
}

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: white;
  overflow: hidden;
}


.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 1;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 60px 40px;
  position: relative;
  z-index: 2;
}

.hero-content {
  padding-left: 40px;
  max-width: 900px;
  color: #fff;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #fff;
}

/* ✅ Tablet screens */
@media (max-width: 1024px) {
  .hero {
    min-height: 500px;
    background-position: center;
    background-size: 140%;
    /* ✅ zoom in a bit more */
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

/* ✅ Mobile screens */
@media (max-width: 768px) {
  .hero {
    min-height: 450px;
    background-position: center;
    background-size: 160%;
    /* ✅ tighter zoom for small screens */
  }

  .hero-overlay {
    padding: 40px 20px;
  }

  .hero-content {
    padding-left: 0;
    max-width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
}

/* ✅ Extra small devices */
@media (max-width: 480px) {
  .hero {
    min-height: 380px;
    background-size: 180%;
    /* ✅ even more zoom for very small screens */
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }
}

/* <!-- Hero Section  --> */



/* <!-- Category Section  --> */
.category-section {
  text-align: center;
  padding: 0 20px 20px;
  background-color: #FFF9EB;
}

.category-section-second {
  margin-left: auto;
  margin-right: auto;
  max-width: 1300px;
  /* ✅ keeps section centered & neat */
  text-align: center;
  padding: 20px;
  background-color: #FFF9EB;
  border-radius: 12px;
}

.category-section h2 {
  padding-top: 5rem;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #222;
}

.category-section p {
  color: #666;
  margin-bottom: 30px;
  font-size: 18px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* ✅ always 2 per row on large screens */
  gap: 20px;
}

.category-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
  background: #fff9eb;
}

.category-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  /* border-top-left-radius: 12px;
  border-top-right-radius: 12px; */
}

.category-info {
  padding: 12px 15px;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  color: #333;
}

.badge {
  position: absolute;
  top: 12px;
  left: 0;
  background: #005c36;
  color: white;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 0 20px 20px 0;
}

/* ✅ Responsive: Mobiles (≤768px) */
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
    /* 1 per row on mobile */
  }

  .category-section h2 {
    font-size: 28px;
    padding-top: 2rem;
  }

  .category-section p {
    font-size: 13px;
  }

  .category-card img {
    height: 240px;
  }

  .category-info {
    font-size: 16px;
  }

  .badge {
    font-size: 14px;
    padding: 8px 12px;
  }
}

/* ✅ Extra small (≤480px) */
@media (max-width: 480px) {
  .category-section-second {
    padding: 10px;
  }

  .category-section h2 {
    font-size: 22px;
  }

  .category-section p {
    font-size: 12px;
  }

  .category-card img {
    height: 200px;
  }

  .category-info {
    font-size: 15px;
  }

  .badge {
    font-size: 12px;
    padding: 6px 10px;
  }
}

/* <!-- Category Section  --> */

/* <!-- Why We Section  --> */

/* Why We Section */
.whywe-section {
  background-color: #FFF9EB;
  padding: 60px 20px;
  text-align: center;
}

.whywe-container {
  /* background-color: #8c6710; */
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 50px;
}

.whywe-section h2 {
  font-size: 40px;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.whywe-section p {
  color: #666;
  font-size: 18px;
  margin-bottom: 40px;
}

/* Grid layout */
.whywe-grid {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.whywe-card {
  overflow: hidden;
  transition: transform 0.3s ease;
}


.whywe-card img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ✅ Specific styles per card */
/* ✅ Specific styles per card */
.whywe-card.first img {
  width: 300%;
  height: 80vh;
  object-fit: cover;
}

.whywe-card.second img {
  width: 140%;
  height: 80vh;
  object-fit: cover;
}

.whywe-card.third img {
  width: 80%;
  height: 80vh;
  object-fit: cover;
}



/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  .whywe-container {
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }

  .whywe-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .whywe-card {
    flex: 0 0 auto;
    width: 45%;
    text-align: center;
  }

  .whywe-card img {
    width: 100% !important;
    height: 220px;
    object-fit: contain;
    display: block;
  }



}

/* Phones (≤ 600px) */
@media (max-width: 600px) {
  .whywe-container {
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
  }

  .whywe-grid {
    justify-content: center;
    gap: 10px;
    /* reduced gap between images */
  }

  .whywe-card {
    flex: 0 0 auto;
    width: 90%;
    margin-bottom: 10px;
    /* slight margin only */
  }

  .whywe-card img {
    height: 180px;
    width: 100% !important;
    object-fit: contain;
    display: block;
  }

  .whywe-card.first img {
    width: 100%;
    height: 348px;
  }

  .whywe-card.second img {
    width: 100%;
    height: 443px;
  }

  .whywe-card.third img {
    width: 80%;
    height: 356px;
  }
}

/* Extra small screens (≤ 320px) */
@media (width: 1024px) {

  .whywe-card.first img {
    width: 300%;
    height: 65vh;
    object-fit: cover;
  }

  .whywe-card.second img {
    width: 140%;
    height: 65vh;
    object-fit: cover;
  }

  .whywe-card.third img {
    width: 80%;
    height: 65vh;
    object-fit: cover;
}
}

@media (max-width: 320px) {
  .whywe-section {
    padding: 30px 10px;
  }

  .whywe-section h2 {
    margin-bottom: 5px;
  }

  .whywe-section p {
    margin-bottom: 15px;
  }

  .whywe-card {
    padding: 0;
    width: 100%;
    /* full width for tighter layout */
  }

  /* 
  .whywe-card img {
    height: 50px;
    width: 50% !important;
    object-fit: contain;
    display: block;
  } */
}

/* <!-- Why We Section  --> */


/* <!-- Mustard Oil Cake Powder Banner   --> */
/* Banner */

.banner {
  position: relative;
  color: white;
  overflow: hidden;
  background: url("./img/musterdbg.png") left center;
  background-size: contain;
  background-position: left center;
  display: flex;
  align-items: center;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(41, 138, 93, 0.92);
  z-index: 1;
}

.product-img {
  height: 570px;
  border-radius: 10px;
  object-fit: contain;
  z-index: 2;
}

.banner-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: auto;
  flex-wrap: wrap;
}

/* Left Side */
.banner-text {
  max-width: 30%;
  position: relative;
  min-height: 100%;
  padding-left: 50px;
}


.banner-text .offers {
  position: absolute;
  bottom: -150px;
  left: 10;
  font-size: 14px;
  opacity: 0.9;
}

.banner-text h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
}

.banner-text .white-text {
  color: #fff;
  font-weight: 700;
  padding-bottom: 10px;
}

.subtitle {
  margin: 20px 0;
  font-size: 15px;
  font-weight: 200;
}

.shop-btn {
  padding: 12px 30px;
  background: white;
  color: #2f7a57;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 50px;
}

.shop-btn a {
    color: #4b9364;
}
.shop-btn a:hover {
    color: #2c6b3e; /* change this to any hover color you want */
}

.shop-btn:hover {
  background: #f0f0f0;
}

.offers {
  font-size: 14px;
  opacity: 0.9;
}

/* Right Side */
.banner-image {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.banner-divider {
  border: 0;
  height: 3px;
  width: 150px;
  margin: 15px 20px;
  background: linear-gradient(to right, transparent, #fff, transparent);
  border-radius: 50px;
  /* makes ends look thin */
}


/* Discount Badge */
.discount-badge {
  position: relative;
  top: 10%;
  left: -50px;
  color: #2f7a57;
  padding: 20px 25px;
  text-align: center;
  transform: rotate(-8deg);
  z-index: 5;
  /* make sure it's above rectangle-line */
  min-width: 180px;
}


.discount-top {
  position: absolute;
  bottom: 0;
  left: 110%;
  transform: translateX(-50%);
  background: white;
  padding: 10px 60px;
  border-radius: 50px;
  border: 2px solid #eee;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  text-align: center;
  white-space: nowrap;
  z-index: 4;
}

.discount-code {
  position: absolute;
  bottom: 10;
  left: 62%;
  transform: translateX(-1%);
  background: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  color: #4B9364;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  z-index: 1;
  margin-top: 10px;
}

.discount-badge .upto {
  position: absolute;
  top: -20px;
  left: 30%;
  transform: translateX(-50%);
  background: none;
  color: #4B9364;
  font-size: 25px;
  font-weight: bold;
  -webkit-text-stroke: 0.5px #fff;
  z-index: 5;
}



.discount-badge .percent {
  font-size: 40px;
  font-weight: 900;
  color: #4B9364;
  display: block;

}

.discount-badge .condition {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  display: block;
  /* margin-top: 5px; */
}

.discount-code span {
  font-size: 20px;
  color: #4B9364;
}

/* ===========================
   Benefits Section
   =========================== */
.benefits-section {
  position: relative;
  background: url("./img/benifitBg.png") no-repeat center center;
  background-size: cover;
  padding: 100px 20px;
  text-align: center;
  color: white;
}
.benefits-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.benefits-section>* {
  position: relative;
  z-index: 2;
}

.benefits-section h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: bold;
}

.benefits-section p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 50px;
}

.benefits-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.benefit-card {
  background: #fff9d6;
  color: #064e3b;
  padding: 20px 25px;
  width: 250px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.benefit-card img {
  width: 50px;
  margin-bottom: 10px;
}

.benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

.rectangle-wrapper {
  position: relative;
  display: inline-block;
  /* keeps images together */
}

.rectangle-img {
  position: relative;
  z-index: 2;
  width: 850px;
  /* increase width */
  height: auto;
  /* keep aspect ratio */
  margin-right: 20px;
}

.rectangle-line-img {
  position: absolute;
  top: 0;
  left: 213px;
  width: 800px;
  /* increase width */
  height: auto;
  z-index: 3;
}

/* .product-image {
  position: absolute;
  top: -52;
  left: 250px;
  z-index: 3;
  width: 700px;
  height: 700px;
  object-fit: contain;
} */

.product-image {
  position: absolute;
  top: -52;
  left: 195px;
  z-index: 3;
  width: 802px;
  height: 819px;
  object-fit: contain;
}



/* ===========================
   Responsive Styles
   =========================== */

/* Apply min-height only for large screens (≥ 1200px) */
@media (min-width: 1200px) {
  .banner {
    min-height: 570px;
  }

  .product-img {
    height: 570px;
  }
}

/* ===========================
   Small Laptops (1024px – 1366px)
   =========================== */
@media (max-width: 1366px) and (min-width: 993px) {



  .banner-text {
    max-width: 30%;
    position: relative;
    min-height: 100%;
    padding-left: 50px;
  }


  .banner-text .offers {
    position: absolute;
    bottom: -100px;
    left: 10;
    font-size: 10px;
    opacity: 0.9;
  }

  .banner-text h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.2;
  }

  .banner-text .white-text {
    color: #fff;
    font-weight: 700;
    padding-bottom: 10px;
  }

  .banner {
    min-height: 570px;
  }

  .subtitle {
    font-size: 15px;
    /* keep same */
    margin: 20px 0;
  }

  .shop-btn {
    padding: 12px 30px;
    /* same */
    font-size: 16px;
    margin-bottom: 50px;
  }

  .offers {
    font-size: 14px;
  }

  .product-img {
    height: 570px;
    /* same */
  }

  .discount-badge {
    top: 10%;
    left: -50px;
    transform: rotate(-8deg);
    padding: 20px 25px;
    min-width: 180px;
  }

  .discount-top {
    position: absolute;
    bottom: 0;
    left: 112%;
    transform: translateX(-50%);
    background: white;
    padding: 5px 40px;
    border-radius: 50px;
    border: 2px solid #eee;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
    white-space: nowrap;
    z-index: 4;
  }

  .discount-badge .percent {
    font-size: 35px;
  }

  .discount-code {
    position: absolute;
    bottom: 10;
    left: 68%;
    transform: translateX(-1%);
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: bold;
    color: #4B9364;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 1;
    margin-top: 10px;
  }

  .discount-badge .condition {
    font-size: 13px;
  }

  .discount-code {
    font-size: 15px;
    padding: 10px 20px;
  }

  /* .rectangle-img {
    position: relative;
    z-index: 2;
    width: 540px;
    height: auto;
    margin-right: 20px;
  } */

  .product-image {
    position: absolute;
    top: -52;
    left: 196px;
    z-index: 3;
    width: 544px;
    height: 741px;
    object-fit: contain;
  }

  .rectangle-line-img {
    position: absolute;
    top: 1px;
    left: 213px;
    width: 506px;
    height: auto;
    z-index: 3;
  }

  .rectangle-img {
    position: relative;
    z-index: 2;
    width: 540px;
    height: auto;
    margin-right: -19px;
  }
}

/* ===========================
   Large Screens (1367px and above)
   =========================== */
@media (min-width: 1367px) {
  .rectangle-img {
    position: relative;
    z-index: 2;
    width: 812px;
    height: auto;
    margin-right: 0px;
  }
}

@media (min-width: 1367px) {
  .banner {
    min-height: 570px;
  }

  .banner-text {
    max-width: 30%;
    /* same as desktop */
    padding-left: 50px;
  }

  .banner-text h1 {
    font-size: 46px;
    /* keep same */
  }

  .subtitle {
    font-size: 15px;
    /* keep same */
    margin: 20px 0;
  }

  .shop-btn {
    padding: 12px 30px;
    font-size: 16px;
    margin-bottom: 50px;
  }

  .offers {
    font-size: 14px;
  }

  .product-img {
    height: 570px;
  }

  .discount-badge {
    top: 10%;
    left: -50px;
    transform: rotate(-8deg);
    padding: 20px 25px;
    min-width: 180px;
  }

  .discount-badge .percent {
    font-size: 40px;
  }

  .discount-badge .condition {
    font-size: 15px;
  }

  .discount-code {
    font-size: 15px;
    padding: 10px 20px;
  }

  /* .rectangle-img {
    position: relative;
    z-index: 2;
    width: 793px;
    height: auto;
    margin-right: 20px;
  } */

  .rectangle-line-img {
    position: absolute;
    top: 0;
    left: 213px;
    width: 773px;
    height: auto;
    z-index: 3;
  }
}

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  .banner-container {
    flex-direction: row;
    /* keep row to place text left, image right */
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
  }

  .banner-text {
    max-width: 50%;
    /* text on left */
    text-align: left;
    /* align text to left */
    margin-bottom: 0;
    /* remove bottom margin */
    position: relative;
  }

  .banner-text h1 {
    font-size: 26px;
    line-height: 1.2;
  }

  .subtitle {
    font-size: 13px;
    margin: 10px 0;
  }

  .shop-btn {
    padding: 8px 18px;
    font-size: 13px;
    margin-bottom: 25px;
  }

  .offers {
    font-size: 12px;
    bottom: -50px;
  }

  .banner-image {
    max-width: 50%;
    /* image on right */
    display: flex;
    justify-content: flex-end;
    /* move image to right */
    position: relative;
  }

  .product-img {
    height: 220px;
    max-width: 100%;
  }

  .discount-badge {
    left: auto;
    right: 150px;
    /* position badge relative to image */
    top: 10%;
    transform: rotate(-5deg);
  }

  .discount-badge .percent {
    font-size: 30px;
    font-weight: 900;
    color: #4B9364;
    display: block;

  }

  .discount-badge .condition {
    font-size: 12px;
    font-weight: bold;
    color: #333;
    display: block;
  }

  .discount-badge .upto {
    position: absolute;
    top: -18px;
    left: 30%;
    transform: translateX(-50%);
    background: none;
    color: #4B9364;
    font-size: 20px;
    font-weight: bold;
    -webkit-text-stroke: 0.5px #fff;
    z-index: 5;
  }

  .banner-text .offers {
    position: static;
    /* remove absolute positioning */
    margin-top: 20px;
    /* spacing from button */
    text-align: center;
    /* center horizontally */
    display: block;
  }

  .discount-code {
    position: absolute;
    transform: none;
    margin-left: 10px;
    padding: 8px 15px;
    font-size: 13px;
  }

  .rectangle-line-img {
    position: absolute;
    top: 0;
    left: 98px;
    width: 346px;
    height: auto;
    z-index: 3;
  }

  .product-image {
    position: absolute;
    top: -52;
    left: 106px;
    z-index: 3;
    width: 329px;
    height: 500px;
    object-fit: contain;
  }

}


/* Phones (≤ 768px) */
@media (max-width: 768px) {


  .banner-divider {
    border: 0;
    height: 3px;
    width: 350px;
    margin: 15px 20px;
    background: linear-gradient(to right, transparent, #fff, transparent);
    border-radius: 50px;
    /* makes ends look thin */
  }



  .banner-container {
    flex-direction: column;
    /* stacked layout for mobile */
    text-align: center;
  }

  .banner-text {
    max-width: 100%;
    text-align: center;
  }

  .banner-image {
    /* max-width: 100%; */
    display: flex;
    justify-content: center;
  }

  /* ------- */
  .discount-badge {
    left: auto;
    right: 50px;
    top: 10%;
    transform: rotate(-5deg);
  }

  .discount-badge .percent {
    font-size: 20px;
    font-weight: 900;
    color: #4B9364;
    display: block;

  }

  .discount-badge .condition {
    font-size: 10px;
    font-weight: bold;
    color: #333;
    display: block;
  }

  .discount-badge .upto {
    position: absolute;
    top: -18px;
    left: 30%;
    transform: translateX(-50%);
    background: none;
    color: #4B9364;
    font-size: 20px;
    font-weight: bold;
    -webkit-text-stroke: 0.5px #fff;
    z-index: 5;
  }

  .banner-text .offers {
    font-size: 12px;
    margin-top: 10px;
    padding-bottom: 10px;
    padding-left: 60px;
  }

  .banner-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .banner-text {
    max-width: 100%;
    text-align: center;
    padding-left: 0;
    margin: 0 auto;
  }

  .banner-text h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .subtitle {
    font-size: 13px;
  }

  .shop-btn {
    margin: 15px auto;
    display: inline-block;
  }

  .offers {
    font-size: 12px;
    margin-top: 10px;
  }

  .discount-top {
    position: absolute;
    bottom: 0;
    left: 115%;
    transform: translateX(-50%);
    background: white;
    padding: 10px 30px;
    border-radius: 50px;
    border: 2px solid #eee;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
    white-space: nowrap;
    z-index: 2;
  }

  .discount-code {
    position: absolute;
    transform: none;
    margin-left: 18px;
    padding: 8px 15px;
    font-size: 13px;
  }

  .product-image {
    position: absolute;
    top: -52;
    left: 88px;
    z-index: 3;
    width: 374px;
    height: 500px;
    object-fit: contain;
  }
}


/* Extra-small Phones (≤ 480px) */
@media (max-width: 480px) {
  .banner-text h1 {
    font-size: 20px;
  }

  .subtitle {
    font-size: 12px;
  }

  .shop-btn {
    padding: 10px;
    font-size: 12px;
    border-radius: 6px;
  }

  .offers {
    font-size: 11px;
  }

  .banner-text .offers {
    font-size: 12px;
    margin-top: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
  }

  .product-img {
    height: 150px;
    max-width: 95%;
  }

  .discount-badge {
    padding: 10px;
    transform: none;
  }

  .discount-badge .percent {
    font-size: 20px;
  }

  .discount-badge .condition {
    font-size: 12px;
  }

  .discount-code span {
    font-size: 13px;
  }

  .benefits-section {
    padding: 60px 10px;
  }

  .benefits-section h2 {
    font-size: 1.3rem;
  }

  .benefits-section p {
    font-size: 0.8rem;
  }

  .benefit-card {
    padding: 15px 18px;
  }

  .benefit-card h3 {
    font-size: 1rem;
  }

  .benefit-card img {
    width: 40px;
  }

  .rectangle-line-img {
    position: absolute;
    top: 0;
    left: 94px;
    width: 181px;
    height: auto;
    z-index: 3;
  }

  .product-image {
    position: absolute;
    top: -52;
    left: 89px;
    z-index: 3;
    width: 190px;
    height: 500px;
    object-fit: contain;
  }

  .banner-divider {
    border: 0;
    height: 3px;
    width: 300px;
    margin: 15px 20px;
    background: linear-gradient(to right, transparent, #fff, transparent);
    border-radius: 50px;
    /* makes ends look thin */
  }

  .discount-top {
    position: absolute;
    bottom: 0;
    left: 115%;
    transform: translateX(-51%);
    background: white;
    padding: 4px 18px;
    border-radius: 50px;
    border: 2px solid #eee;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
    white-space: nowrap;
    z-index: 2;
  }
}

/* <!-- Mustard Oil Cake Powder Banner   --> */



.benefits-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  /* black overlay with 50% opacity */
  z-index: 1;
}

.benefits-section>* {
  position: relative;
  z-index: 2;
}

.benefits-section h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: bold;
  /* makes the font bold */
}

.benefits-section p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 50px;
}

.benefits-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.benefit-card {
  background: #fff9d6;
  color: #064e3b;
  padding: 20px 25px;
  width: 250px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

/* .benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
} */

.benefit-card img {
  width: 50px;
  margin-bottom: 10px;
}

.benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 768px) {
  .benefits-cards {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .benefits-cards {
    flex-direction: column;
    /* stack cards vertically */
    align-items: center;
    /* center cards horizontally */
    gap: 20px;
  }

  .benefit-card {
    width: 80%;
    /* optionally make cards narrower on mobile */
    max-width: 300px;
  }
}

/* <!-- Mustard Oil Cake Powder Banner   --> */


/* <!-- Organic Pest   --> */

.organic-pest {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #4caf84;
  min-height: 80vh;
  background-image: url('./img/musterdbg.png');
  background-size: contain;
  background-repeat: repeat;
  color: #fff;
  overflow: hidden;
}

.organic-pest::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(47, 122, 87, 0.92);
  z-index: 0;
}

.o.organic-pest {
  display: flex;
  flex-wrap: wrap;
  /* allow stacking on smaller screens */
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  background: #2f6e4e;
  /* example background, adjust if needed */
}

.organic-pest-content {
  position: relative;
  z-index: 1;
  flex: 1 1 50%;
  /* two-column by default */
}

.organic-pest-images {
  position: absolute;
  /* absolutely position relative to .organic-pest */
  right: 0;
  /* stick to right edge */
  bottom: 0;
  /* stick to bottom edge */
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  pointer-events: none;
  /* optional: prevent interaction */
}

/* Left Content */
.organic-pest-content {
  max-width: 500px;
  padding-left: 8rem;
}

.organic-pest-content h1 {
  font-size: 45px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.organic-pest-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #fff;
}

/* Button */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #2f6e4e;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  /* background: #2f6e4e; */
  color: #2f6e4e;
}

/* Right Image */
.organic-pest-images {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.organic-pest-images img {
  max-width: 60%;
  /* adjust size as needed */
  height: auto;
}

/* =========================
   ✅ Responsive Styles
   ========================= */
@media (max-width: 1024px) {

  .organic-pest-images {
    padding-top: 50px;
    /* adjust distance from top */
  }

  .organic-pest-content {
    padding-left: 4rem;
  }

  .organic-pest-content h1 {
    font-size: 38px;
  }



  .organic-pest-content p {
    padding-right: 120px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .organic-pest {
    flex-direction: column;
    /* stack content + image */
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .organic-pest-content {
    padding-left: 0;
    max-width: 100%;
  }

  .organic-pest-content h1 {
    font-size: 32px;
  }

  .organic-pest-content p {
    padding: 0;
    text-align: center;
    margin: 1rem auto;
    /* adjust spacing if needed */
    font-size: 15px;
  }

  .organic-pest-images {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 2rem;
    justify-content: center;
  }

  .organic-pest-images img {
    max-width: 90%;
  }


}

@media (max-width: 480px) {
  .organic-pest-content h1 {
    font-size: 26px;
  }

  .organic-pest-content p {
    font-size: 14px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* <!-- Organic Pest   --> */

/* <!-- Remomended Products   --> */
.recommended-section {
  padding: 20px;
  font-family: Arial, sans-serif;
}

.recommended-section h2 {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 40px;
  /* reduced */
  font-weight: 600;
  color: #222;
}

/* Slider */
.slider-container {
  position: relative;
  max-width: 1330px;
  margin: auto;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}



/* Card */
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 0 12px;
  flex: 0 0 260px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Image area */
.card-image {
  background: #f0f9f3;
  padding: 20px;
  position: relative;
  text-align: center;
}

.card-image img {
  width: 100%;
  max-height: 150px;
  /* slightly smaller */
  object-fit: contain;
}

.card-image .wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: #fff;
  border-radius: 50%;
  width: 30px;
  /* smaller */
  height: 30px;
  /* smaller */
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Content area */
.card-body {
  padding: 12px;
  text-align: left;
}

.product-title-2 {
  font-size: 12px;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
  line-height: 1.4;
  min-height: 36px;
}

.price {
  font-size: 14px;
  /* smaller */
  font-weight: bold;
  color: #1c4220;
}

.old-price {
  text-decoration: line-through;
  color: gray;
  font-size: 12px;
  /* smaller */
  margin-left: 6px;
}

/* ✅ Discount + Rating Row */
.discount-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 8px 0;
  width: 100%;
}

.discount {
  display: inline-block;
  background: #eafbe6;
  color: #2d8a34;
  font-size: 11px;
  /* smaller */
  font-weight: bold;
  padding: 3px 20px;
  border-radius: 20px;
}

.rating {
  font-size: 12px;
  /* smaller */
  color: #f4b400;
}

.rating span {
  color: #333;
  font-size: 11px;
  /* smaller */
  margin-left: 5px;
}

.add-cart {
  width: 100%;
  padding: 10px;
  /* reduced */
  background: #0c4010;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 13px;
  /* smaller */
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Nav buttons */
.nav-wrapper {
  position: relative;
  width: 100%;
}

.nav {
  position: absolute;
  top: -200px;
  /* adjusted for smaller cards */
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  /* smaller */
  transition: all 0.3s ease;
  z-index: 10;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.selling_products {
  /* background-color: #48896A; */
  background-repeat: no-repeat;
  background-size: cover;
  padding: 55px 0 40px;
}

.action-add-to-cart-form {
  background: linear-gradient(94.04deg, #313F31 17.27%, #1A251B 73.71%) !important;
}

.slider .card:last-child {
  margin-right: 52px;
}

.tp {
  padding-top: 5rem;
  font-size: 44px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #222;
}

.tp2 {
  color: #090909;
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}

.pbg {
  background: #EAF1ED;
}

.theme-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.theme-filter .filter-btn {
  border: 2px solid #bbb;
  background: transparent;
  color: #585858CC;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

/* Hover effect */
.theme-filter .filter-btn:hover {
  border-color: #27ae60;
  color: #27ae60;
}

/* Active effect */
.theme-filter .filter-btn.active {
  border: 2px solid #27ae60;
  color: #27ae60;
  font-weight: bold;
}


/* ✅ Responsive: small laptops and tablets */
@media (max-width: 1024px) {
  .card {
    flex: 0 0 220px;
  }

  .price {
    font-size: 13px;
  }
}

/* ✅ Responsive: mobiles */
@media (max-width: 768px) {
  .slider {
    flex-wrap: nowrap;
  }

  .card {
    flex: 0 0 170px;
  }

  .recommended-section h2 {
    font-size: 28px;
  }

  .theme-filter {
    display: grid;
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 1024px) {
  .banner {
    min-height: 377px;
  }

  .banner-text h1 {
    font-size: 29px;
    font-weight: 800;
    line-height: 1.2;
  }

  .banner-text .offers {
    position: absolute;
    bottom: -40px;
    left: 45px;
    /* px lagana mat bhoolna */
    font-size: 10px;
    opacity: 0.9;
  }

  .subtitle {
    font-size: 10px;
    margin: 20px 0;
  }

}


/* <!-- Recommended Products --> */