/* =========================
   PRODUCT SECTION
   ========================= */

.product-sec {
  padding: 60px 0;
  background-color: #ffffff;
}

/* Product Image */
.product-sec .product-image {
  text-align: center;
}

.product-sec .product-image img {
  width: 40%;
  max-width: 460px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Product Info Wrapper */
.product-sec .product-info {
  margin-top: 15px;
}

/* Product Title */
.product-sec h2 {
  font-size: 28px;
  font-weight: 700;
  color: #3b2f2f; /* wheat brown */
  margin-bottom: 15px;
  margin-top: 20px;
}

/* Product Description */
.product-sec .product-info p {
  font-size: 16px;
  margin-top: 20px;
  line-height: 1.7;
  color: #555;
  max-width: 500px;
}
.product-sec .product-info ul{
  padding-left: 16px;
}
.product-sec .product-info ul>li{
  list-style: disc;
  margin-bottom: 5px;
}
/* Pack Sizes */
.product-sec .pack-sizes {
  margin-top: 30px;
}

.product-sec .pack-sizes p {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

/* Size Options */
.product-sec .size-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-sec .size-options span {
  padding: 10px 18px;
  border: 1px solid #c9a66b;
  border-radius: 30px;
  font-size: 14px;
  color: #3b2f2f;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #fff;
}

/* Hover Effect */
.product-sec .size-options span:hover {
  background-color: #c9a66b;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Order now Button */
.buy-now-btn {
  display: inline-block;
  padding: 12px 34px;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover Effect */
.buy-now-btn:hover {
  background-color: var(--primary) ;
  transform: translateY(-2px);
  color: var(--white);
}




/* =========================
   NUTRITIOUS SECTION
   ========================= */

.nutrious-sec {
  padding: 40px 0;
  background-color: #faf7f2; 
}


.nutrious-sec .nutrition-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}


.nutrious-sec .nutrition-table tr {
  border-bottom: 1px solid #eee;
}

.nutrious-sec .nutrition-table tr:last-child {
  border-bottom: none;
}

.nutrious-sec .nutrition-table td {
  padding: 16px 20px;
  font-size: 15px;
  color: #333;
}


.nutrious-sec .nutrition-table td:first-child {
  font-weight: 600;
  color: #3b2f2f;
}


.nutrious-sec .nutrition-table td:last-child {
  text-align: right;
  color: #555;
}


.nutrious-sec .nutrition-image {
  text-align: center;
}

.nutrious-sec .nutrition-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 10px;
  margin-top: 50px;
}
.nutrition-heading {
  text-align: center;
  margin-bottom: 50px;
}

.nutrition-heading h2 {
  font-size: 34px;
  font-weight: 700;
  color: #3b2f2f;
  margin-bottom: 10px;
}

.nutrition-heading p {
  font-size: 14px;
  color: #777;
}


/* =========================
   OTHER PRODUCTS SECTION
   ========================= */

.other-products {
  padding: 50px 0;
  background-color: #ffffff;
}

.other-products .heading {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #3b2f2f;
  margin-bottom: 50px;
}

/* Product Card */
.product-card {
  background-color: #faf7f2;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.35s ease;
}

/* Image */
.product-card img {
  object-fit: contain;
  height: 152px;
  margin: 0 auto 20px;
}

/* Title */
.product-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #3b2f2f;
}

/* Explore Button */
.explore-btn {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 30px;
  border: 1px solid #c9a66b;
  color: #3b2f2f;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover Effects */
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.product-card:hover .explore-btn {
  background-color: #c9a66b;
  color: #ffffff;
}
/* =========================
   PRODUCT INFO – NUTRITION
   ========================= */

.product-nutrition {
  margin-top: 35px;
}

.product-nutrition h4 {
  font-size: 20px;
  font-weight: 600;
  color: #3b2f2f;
  margin-bottom: 5px;
}

.product-nutrition .nutrition-note {
  font-size: 13px;
  color: #777;
  margin-bottom: 15px;
}

/* Compact Table */
.product-nutrition .nutrition-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #faf7f2;
  border-radius: 10px;
  overflow: hidden;
}

.product-nutrition .nutrition-table tr {
  border-bottom: 1px solid #e6e1d8;
}

.product-nutrition .nutrition-table tr:last-child {
  border-bottom: none;
}

.product-nutrition .nutrition-table td {
  padding: 10px 14px;
  font-size: 14px;
  color: #333;
}

.product-nutrition .nutrition-table td:first-child {
  font-weight: 600;
  color: #3b2f2f;
}

.product-nutrition .nutrition-table td:last-child {
  text-align: right;
  color: #555;
}

@media (max-width: 992px) {
  .product-sec {
    padding: 60px 0;
  }

  .product-sec h2 {
    font-size: 28px;
  }
  .nutrious-sec {
    padding: 60px 0;
  }
  .nutrious-sec .nutrition-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 10px;
  margin-bottom: 50px;
}
}

@media (max-width: 576px) {
  .product-sec {
    text-align: center;
  }

  .product-sec .product-info p {
    margin: auto;
  }

  .product-sec .size-options {
    justify-content: center;
  }
  .product-nutrition .nutrition-table td {
    font-size: 13px;
  }
  .buy-now-btn {
    width: 100%;
    text-align: center;
  }
  .nutrious-sec {
    text-align: center;
  }

  .nutrious-sec .nutrition-table td {
    text-align: left;
  }

  .nutrious-sec .nutrition-image {
    margin-top: 30px;
  }
}