.product-detail {
  padding: 60px 0;
}

/* .product-image-box {
  position: relative;
  background: #f8f9fa;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.discount-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #d1f3d8;
  color: #198754;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
} */
 .product-image-box {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 16px;
  position: relative;
}

/* DISCOUNT */
.discount-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #2d6a4f;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  z-index: 5;
}

.main-product-img {
  max-height: 420px;
  transition: transform .4s ease;
}
/* MAIN IMAGE */
/* .productMainSwiper img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  transition: transform .4s ease;
}

.productMainSwiper img:hover {
  transform: scale(1.05);
} */
 .productMainSwiper img {
  width: 100%;
  border-radius: 12px;
}

/* THUMBNAILS */
.productThumbSwiper {
  margin-top: 12px;
}
.productThumbSwiper .swiper-wrapper {
  display: flex !important;
  flex-direction: row !important;
}

.productThumbSwiper .swiper-slide {
  width: auto !important;
  cursor: pointer;
}

.productThumbSwiper img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: 0.3s;
}

/* ACTIVE THUMB */
.productThumbSwiper .swiper-slide-thumb-active img {
  border-color: #198754; /* green */
  transform: scale(1.05);
}

/* THUMBNAILS */
/* .productThumbSwiper img {
  height: 80px;
  object-fit: contain;
  background: #fff;
  padding: 6px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
} */

/* .productThumbSwiper .swiper-slide-thumb-active img {
  border-color: #2d6a4f;
} */

.main-product-img:hover {
  transform: scale(1.05);
}

.product-title {
  font-size: 32px;
  font-weight: 700;
}

.product-subtitle {
  color: #555;
  margin-bottom: 10px;
}

.rating-row {
  font-size: 14px;
  margin-bottom: 15px;
}

.price-box {
  margin: 15px 0;
}

.current-price {
  font-size: 32px;
  font-weight: 700;
  color: #198754;
}

.old-price {
  margin-left: 10px;
  text-decoration: line-through;
  color: #999;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.product-features li {
  margin-bottom: 8px;
}

.pack-section h6 {
  font-weight: 600;
  margin-bottom: 10px;
}

.pack-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pack-card {
  border: 2px solid #ddd;
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: .3s;
}

.pack-card input {
  display: none;
}

.pack-card.active,
.pack-card:hover {
  border-color: #198754;
  background: #e9f9f0;
}

.action-buttons {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.reward-text {
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}
/* =========================
   TOP BENEFITS SECTION
========================= */

.top-benefits-section {
  padding: 60px 0;
  background: #ffffff;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.benefit-card {
  background: #f4f7ed;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  transition: 0.35s ease;
  height: 100%;
}

.benefit-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.benefit-card p {
  padding: 14px 12px;
  font-weight: 500;
  font-size: 15px;
  margin: 0;
}

/* Hover Effect */
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Mobile */
@media (max-width: 768px) {
  .benefit-card img {
    height: 180px;
  }
}
.product-details-section {
  padding: 30px 0;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
}

.product-name {
  text-align: center;
  color: #666;
  margin-top: 5px;
}

/* CARD */
.detail-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 25px;
  height: 100%;
  transition: 0.3s;
}

.detail-card:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.detail-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

/* HIGHLIGHT CARD */
.highlight-card {
  background: linear-gradient(135deg, #e8f9ef, #f3fff8);
}

/* BENEFITS */
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
}

.benefit-list span {
  color: #198754;
  font-weight: bold;
}

/* INGREDIENTS */
.ingredient-strip {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 16px;
}

.ingredient-strip h5 {
  font-weight: 600;
  margin-bottom: 20px;
}

.ingredient-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.ingredient-box {
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  border: 1px solid #e0e0e0;
  transition: 0.3s;
}

.ingredient-box:hover {
  background: #198754;
  color: #fff;
  border-color: #198754;
}
/* Review Section */
.review-section {
  background: #e1e3de;
  padding: 30px;
    border-radius: 16px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.review-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.review-summary {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  color: #6bbf59;
  font-size: 18px;
}

.stars.small {
  font-size: 14px;
}

.review-count {
  font-weight: 500;
  font-size: 14px;
}

.review-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-write {
  background: #7cbf5b;
  border: none;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

.btn-write:hover {
  background: #66aa4a;
}

.review-filter {
  padding: 7px 12px;
  border-radius: 6px;
  border: 1px solid #cfd9c9;
  font-size: 14px;
}

/* REVIEW CARD */
.review-list {
  margin-top: 20px;
}

.review-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 18px;
  max-width: 360px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.review-user {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
}

.review-text {
  font-size: 14px;
  margin: 8px 0 12px;
  color: #333;
}

.review-date {
  font-size: 12px;
  color: #888;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.why-krishna {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}

.why-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-subtitle {
  max-width: 720px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 15px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}

.why-card {
  padding: 20px 10px;
  position: relative;
  transition: all 0.3s ease;
}

.why-card::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 30%;
  height: 40%;
  width: 1px;
  background: #e5e5e5;
}

.why-card:last-child::after {
  display: none;
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: transform 0.3s ease;
}

.why-card h6 {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
}

/* ICON COLORS */
.green { background: #e8f5e9; color: #2e7d32; }
.peach { background: #fff3e0; color: #ef6c00; }
.blue  { background: #e3f2fd; color: #1565c0; }
.pink  { background: #fce4ec; color: #ad1457; }
.yellow{ background: #fffde7; color: #f9a825; }
.teal  { background: #e0f2f1; color: #00695c; }

/* HOVER EFFECT */
.why-card:hover .why-icon {
  transform: translateY(-6px) scale(1.05);
}

.why-card:hover h6 {
  color: #198754;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-card::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.carousel-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

/* IMAGE */
.carousel-img {
  width: 100%;
  transition: transform 0.4s ease;
}

/* ADD TO CART BUTTON */
.carousel-add-cart {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: #198754;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* HOVER EFFECT */
.carousel-product-card:hover .carousel-img {
  transform: scale(1.08);
}

.carousel-product-card:hover .carousel-add-cart {
  bottom: 16px;
  opacity: 1;
}

/* BUTTON HOVER */
.carousel-add-cart:hover {
  background: #146c43;
}




