/* Products Page Styles */
/* === PRODUCT PAGE GLOBAL ENHANCEMENTS === */

.products-section {
  padding: 6rem 3rem;
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-intro h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  color: #0f3d2e;
}

.section-intro p {
  margin-top: 0.8rem;
  color: #555;
  line-height: 1.7;
}

.vegetables, .fruits, .spices {
  padding: 4rem 2rem;
  text-align: center;
}

.vegetables {
  background: var(--white);
}
.product-grid.heritage .product-card {
  background: linear-gradient(180deg, #ffffff, #f6fff9);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(15,61,46,0.12);
}

.product-grid.heritage .card-content h3 {
  color: #0f3d2e;
}

.product-grid.heritage .card-content p {
  color: #555;
  font-size: 0.95rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: var(--soft-gray);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.card-content {
  padding: 1rem;
}

.fruits {
  background: var(--soft-gray);
}

.horizontal-scroll {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding: 2rem 0;
  scroll-snap-type: x mandatory;
}



.fruit-item:hover {
  transform: scale(1.05);
}

.fruit-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}


.spices {
  background: var(--earthy-brown);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.spice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.spice-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  transition: background 0.3s ease;
}

.spice-item:hover {
  background: rgba(255, 215, 0, 0.2); /* Gold accent on hover */
}

.spice-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 5px;
}

.spice-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/images/spice-smoke.gif') no-repeat center; /* Placeholder: Subtle spice smoke GIF */
  background-size: cover;
  opacity: 0.1;
  pointer-events: none;
  animation: float 10s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .horizontal-scroll {
    flex-direction: column;
  }
  .fruit-item {
    flex: none;
    margin-bottom: 1rem;
  }
}

.footer .badges img {
  width: 80px;          /* ✅ ideal size */
  max-width: 100%;
  height: auto;
  opacity: 0.85;        /* subtle, professional */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer .badges img:hover {
  transform: scale(1.05);
  opacity: 1;
}

.fruit-item {
  flex: 0 0 300px;
  background: linear-gradient(180deg, #ffffff, #fff9f0);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  min-height: 320px;              
  transition: box-shadow 0.3s ease;
}


.fruit-item h3 {
  margin-top: 1rem;
  color: #0f3d2e;
}

.fruit-item p {
  font-size: 0.9rem;
  color: #555;
}
.spice-item {
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border-radius: 18px;
  padding: 1.5rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

.spice-item h3 {
  color: #ffd700;
}

.spice-item p {
  color: #f1f1f1;
  font-size: 0.9rem;
}
/* === SPICES SECTION INTRO === */

.spices .section-intro {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.spices .section-intro h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  color: #ffd700; /* royal gold */
  margin-bottom: 1rem;
}

.spices .section-intro p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1rem;
}
