/* ── Info Section ────────────────────────────────────────────── */
.info-section {
  padding: 64px 20px;
  background: #0c4220;
}

.infomain {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}

.infocontainerone {
  position: relative;
}

.imgone {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  object-fit: contain;
}

.hhedding {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.spinfo {
  font-size: 0.95rem;
  color: white;
  line-height: 1.8;
  margin-bottom: 12px;
}

.spinfo-kannada-text {
  font-size: 0.95rem;
  color: white;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* Read more button (mobile) */
.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a7a40;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: #a8f0c6;
  transition: color 0.15s ease;
}
.read-more-link:hover {
  color: #0d3d20;
}

@media (max-width: 768px) {
  .infomain {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .infocontainerone {
    display: flex;
    justify-content: center;
  }
  .infocontainerone::before {
    display: none;
  }
  .imgone {
    max-width: 280px;
  }
}

/* ── Shared heading used across home sections ────────────────── */
.heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #0d3d20;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
}

/* ── Featured / Farmer's Choice ─────────────────────────────── */
.hedding {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #0d3d20;
  text-align: center;
  margin: 48px 0 24px;
  letter-spacing: -0.03em;
}

.featured-list {
  padding: 0 20px 48px;
}

.featured-container {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.featured-div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.photos {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid #f5edde;
}
.photos:hover {
  transform: scale(1.04) rotate(-1deg);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.05);
  border-color: #a8f0c6;
}

@media (max-width: 640px) {
  .photos {
    width: 130px;
    height: 130px;
  }
}

/* ── Product detail alt layout (page_t != 0) ────────────────── */
.product-detail-custom {
  padding: 40px 20px;
  background: #fff;
}

.product-detail-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: center;
}

.product-images .main-image img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 16px 48px rgba(0, 0, 0, 0.06);
}

.no-image-placeholder {
  aspect-ratio: 1;
  background: #f0fdf6;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #8a8278;
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #0d3d20;
  margin-bottom: 16px;
}

.product-description p {
  font-size: 0.95rem;
  color: #5a5550;
  line-height: 1.8;
}

/* Product grid in alt layout */
.product-section-custom {
  padding: 40px 20px;
}

.product-container-custom {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.product-card-custom {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid #f5edde;
  transition: all 0.25s ease;
}
.product-card-custom:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.05);
  border-color: #a8f0c6;
}

.product-card-custom img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card-custom:hover img {
  transform: scale(1.05);
}

.product-content-custom {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-content-custom h6 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1c1a17;
  margin: 0;
}

.price-custom {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1a7a40;
  margin: 0;
}

.view-btn-custom {
  background: #145c30;
  border: none;
  border-radius: 6px;
  padding: 7px 14px;
  width: 100%;
}
.view-btn-custom a {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}
.view-btn-custom:hover {
  background: #1a7a40;
}

@media (max-width: 768px) {
  .product-detail-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
