/* section container */
.products-list-section {
  background: #fef8ef;
  padding: 60px 0px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}



.section-sub {

  font-weight: 500;
  margin-top: 0.75rem;
}

/* product row card style */
.product-row {
  background: #ffffff;
  border-radius: 32px;
  margin-bottom: 2.5rem;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.05),
    0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid rgba(47, 195, 236, 0.15);
}

.product-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.08);
  border-color: #2fc3ec56;
}

/* image container */
.product-img-wrapper {
  height: 100%;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 28px 0 0 28px;
  transition: transform 0.2s;
}

/* individual background images (placeholders with rich spice theme) */
.img-turmeric {
  background-image: url("../img/our-product/turmeric-powder-product.jpg");
  background-size: cover;
  background-position: center;
  height: 410px;
}
.img-coriander {
  background-image: url("../img/our-product/coriander-powder-product.jpg");
  background-size: cover;
  background-position: center;
  height: 410px;
}
.img-chilli {
  background-image: url("../img/our-product/red-chilli-powder-product.jpg");
  background-size: cover;
  background-position: center;
  height: 410px;
}

/* content styling */
.product-content {
  padding: 1.8rem 2rem 2rem 1.8rem;
  height: 100%;
}

.product-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  border-bottom: 2px dashed #f3e3d2;
  padding-bottom: 0.65rem;
}

.product-title .emoji {
  font-size: 2.2rem;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.product-title h3 {
  font-weight: 700;
  margin: 0;
  color: #3b2a1c;
  letter-spacing: -0.3px;
}

.short-desc {
  background: #fff5e9;
  padding: 0.6rem 1rem;
  border-radius: 20px;
  margin: 0.8rem 0 1rem 0;
  font-weight: 500;

  color: #2FC4EC;
  border-left: 4px solid #2FC4EC;
}

.full-desc {
  line-height: 1.5;
  color: #3e2f23;
  background: #fefaf5;
  padding: 0.75rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}

.features-title {
  font-weight: 800;

  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2FC4EC;
  letter-spacing: -0.2px;
}

.features-title i {
  font-size: 1.1rem;
  color: #2FC4EC;
}

.feature-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  margin-bottom: 1.2rem;
}

.feature-list li {
  font-weight: 500;
  background: #faf3e9;
  padding: 1rem 2rem 1rem 3.8rem;
  border-radius: 40px;
  position: relative;
  color: #3e2a1c;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #2FC4EC;
  font-weight: bold;
  font-size: 2rem;
}

/* different accent for second product */
.product-row:nth-child(2) .feature-list li::before {
  color: #6fbf4c;
}
.product-row:nth-child(3) .feature-list li::before {
  color: #e63946;
}

.packaging-option {
  background: #fef7ef;
  padding: 0.8rem 1rem;
  border-radius: 20px;
  margin-top: 0.5rem;
  /* font-size: 0.9rem; */
  border-top: 1px solid #f2e2d0;
  font-weight: 500;
}

.packaging-option strong {
  color: #2FC4EC;
  font-weight: 800;
}

/* responsive touches */
@media (max-width: 768px) {
  .product-img-wrapper {
    min-height: 220px;
    border-radius: 28px 28px 0 0;
  }
  .product-content {
    padding: 1.5rem;
  }
  .img-chilli {
    height: 250px;
  }
  .img-coriander {
    height: 250px;
  }
  .img-turmeric {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .product-content {
    padding: 1.2rem;
  }
}

/* custom spice badge */
.badge-spice {
  background: #36aaca;
  color: #2FC4EC;
  font-weight: 600;
  border-radius: 40px;
  font-size: 0.7rem;
  padding: 0.2rem 0.8rem;
  display: inline-block;
  margin-bottom: 0.5rem;
}


