/* ================================================
   HOPE GLOBAL — Shared Product Page Stylesheet
   ================================================ */

/* ── Product Page Hero ── */
.prod-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.prod-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Decorative blobs */
.prod-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.prod-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.prod-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.prod-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.prod-hero-title span { color: var(--white); }

.prod-hero-sub {
  color: rgba(255,255,255,0.62);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Product Section Block ── */
.prod-section {
  padding: 5.5rem 0;
  background: var(--white);
}

.prod-section.alt { background: var(--off-white); }

.prod-block {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: center;
}

/* ── Product Image ── */
.prod-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13,27,75,0.14);
  aspect-ratio: 4/3;
  flex-shrink: 0;
}

.prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.prod-img-wrap:hover img { transform: scale(1.04); }

/* Decorative accent bar */
.prod-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #60a5fa);
}

/* ── Product Content ── */
.prod-tag {
  display: inline-block;
  background: var(--sky);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.prod-name {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.prod-name span { color: var(--accent); }

.prod-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.prod-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
}

.prod-bullet-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--sky);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background var(--dur);
}

.prod-bullets li:hover .prod-bullet-icon { background: var(--accent); }

.prod-bullet-icon svg {
  width: 11px; height: 11px;
  stroke: var(--accent);
  transition: stroke var(--dur);
}

.prod-bullets li:hover .prod-bullet-icon svg { stroke: var(--white); }

/* ── Product Sub-groups (Variants / Uses) ── */
.prod-subgroup {
  margin-top: 1.5rem;
}

.prod-subgroup-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.prod-sublist {
  margin: 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.prod-sublist li {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.7;
  padding-left: 0.25rem;
}

/* ── Product CTA Banner ── */
.prod-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.prod-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.prod-cta-inner { position: relative; z-index: 1; }

.prod-cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.prod-cta-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-bottom: 2.25rem;
}

.prod-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.9rem 2.25rem;
  border-radius: 12px;
  transition: background var(--dur), transform var(--dur), box-shadow var(--dur);
  box-shadow: 0 6px 24px rgba(37,99,235,0.35);
}

.prod-cta-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,99,235,0.45);
}

.prod-cta-btn svg { width: 17px; height: 17px; transition: transform var(--dur); }
.prod-cta-btn:hover svg { transform: translateX(3px); }

/* ── Responsive ── */

/* Tablet ≤ 960px */
@media (max-width: 960px) {
  .prod-block {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .prod-img-wrap {
    max-width: 520px;
    width: 100%;
    margin: 0 auto; /* centre the image when stacked */
  }
}

/* Large mobile ≤ 680px */
@media (max-width: 680px) {
  .prod-hero { padding: calc(var(--nav-h) + 3rem) 0 3rem; }
  .prod-section { padding: 3.5rem 0; }
  .prod-cta { padding: 3.5rem 0; }
  .prod-img-wrap { aspect-ratio: 16 / 10; }
  .prod-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile ≤ 480px */
@media (max-width: 480px) {
  .prod-hero { padding: calc(var(--nav-h) + 2.5rem) 0 2.5rem; }
  .prod-hero-sub { font-size: 0.9rem; line-height: 1.7; }

  .prod-section { padding: 3rem 0; }
  .prod-cta { padding: 3rem 0; }

  .prod-img-wrap {
    max-width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
  }

  .prod-tag { font-size: 0.68rem; padding: 4px 12px; }

  .prod-name {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
  }

  .prod-bullets { gap: 0.75rem; }
  .prod-bullets li {
    font-size: 0.88rem;
    line-height: 1.65;
  }
  .prod-bullet-icon {
    width: 20px;
    height: 20px;
    margin-top: 1px;
  }
  .prod-bullet-icon svg { width: 10px; height: 10px; }

  .prod-cta-title { font-size: 1.5rem; }
  .prod-cta-sub { font-size: 0.88rem; }
  .prod-cta-btn {
    font-size: 0.88rem;
    padding: 0.85rem 1.75rem;
    width: 100%;
    justify-content: center;
  }
}

/* Small mobile ≤ 420px */
@media (max-width: 420px) {
  .prod-hero-title { font-size: 1.9rem; }
  .prod-name { font-size: 1.25rem; }
  .prod-img-wrap { border-radius: 12px; }
  .prod-section { padding: 2.5rem 0; }
}

/* Extra-small ≤ 360px */
@media (max-width: 360px) {
  .prod-hero-title { font-size: 1.65rem; }
  .prod-name { font-size: 1.1rem; }
  .prod-bullets li { font-size: 0.83rem; }
}


/* ================================================
   FOXNUT / MAKHANA — Nutrition Section
   ================================================ */

.nutrition-section {
  background: var(--navy);
  padding: 5.5rem 0;
}

.nutrition-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.nutrition-section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.nutrition-block {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 4rem;
  align-items: center;
}

.nutrition-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  flex-shrink: 0;
}

.nutrition-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.nutrition-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 1.1rem;
}

.nutrition-text p:last-child { margin-bottom: 0; }


/* ================================================
   FOXNUT / MAKHANA — Health Benefits Section
   ================================================ */

.benefits-section {
  background: var(--off-white);
  padding: 5.5rem 0;
}

.benefits-section-header {
  background: var(--navy);
  padding: 1.6rem 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
  border-radius: 12px;
}

.benefits-section-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: box-shadow var(--dur), transform var(--dur);
}

.benefit-card:hover {
  box-shadow: 0 8px 28px rgba(13,27,75,0.10);
  transform: translateY(-2px);
}

.benefit-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.benefit-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ── Responsive: Nutrition + Benefits ── */

@media (max-width: 1100px) {
  .nutrition-block {
    grid-template-columns: 420px 1fr;
    gap: 3rem;
  }
}

@media (max-width: 960px) {
  .nutrition-block {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .nutrition-img-wrap {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .nutrition-section { padding: 3.5rem 0; }
  .benefits-section { padding: 3.5rem 0; }
}

@media (max-width: 560px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nutrition-section { padding: 3rem 0; }
  .benefits-section { padding: 3rem 0; }
  .nutrition-text p { font-size: 0.88rem; }
  .benefit-text { font-size: 0.85rem; }
  .benefits-section-header { padding: 1.2rem 1rem; border-radius: 10px; }
}

@media (max-width: 360px) {
  .nutrition-section-title { font-size: 1.35rem; }
  .benefits-section-title { font-size: 1.25rem; }
  .benefit-card { padding: 1rem 1.1rem; gap: 0.75rem; }
}


/* ================================================
   SPICES — Products Grid Section
   ================================================ */

.spice-products-section {
  background: var(--off-white);
  padding: 5.5rem 0;
}

.spice-products-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 1.6rem 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.spice-products-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.spice-products-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.spice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.spice-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(13,27,75,0.07);
  transition: box-shadow var(--dur), transform var(--dur);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spice-card:hover {
  box-shadow: 0 10px 32px rgba(13,27,75,0.13);
  transform: translateY(-3px);
}

.spice-card-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f0f4f8;
}

.spice-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 0.75rem;
  transition: transform 0.5s var(--ease);
  box-sizing: border-box;
}

.spice-card:hover .spice-card-img-wrap img {
  transform: scale(1.06);
}

.spice-card-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  padding: 0.85rem 1rem;
  width: 100%;
  border-top: 1px solid var(--border);
  letter-spacing: -0.01em;
}

/* ── Responsive: Spice Grid ── */

/* 5-column variant — used for Dehydrated Vegetable sub-sections */
.spice-grid--5col {
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

/* 3-column variant — used for Iron Scrap / Copper Scrap sections */
.spice-grid--3col {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 960px) {
  .spice-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .spice-grid--5col { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .spice-grid--3col { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
  .spice-products-section { padding: 4rem 0; }
}

@media (max-width: 680px) {
  .spice-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .spice-grid--5col { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .spice-grid--3col { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .spice-products-section { padding: 3.5rem 0; }
  .spice-products-header { padding: 1.25rem 1rem; border-radius: 10px; }
}

@media (max-width: 480px) {
  .spice-products-section { padding: 3rem 0; }
  .spice-card-name { font-size: 0.88rem; padding: 0.7rem 0.75rem; }
  .spice-grid { gap: 0.85rem; }
  .spice-grid--5col { gap: 0.75rem; }
  .spice-grid--3col { gap: 0.85rem; }
}

@media (max-width: 360px) {
  .spice-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .spice-grid--5col { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
  .spice-grid--3col { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .spice-products-title { font-size: 1.2rem; }
  .spice-card-name { font-size: 0.8rem; }
}


/* ================================================
   ANIMAL FEED INGREDIENT — Page Styles
   ================================================ */

/* ── Product Intro Section ── */
.afi-product-section {
  padding: 5rem 0 0;
  background: var(--white);
}

.afi-product-heading {
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.afi-intro-block {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: start;
}

.afi-intro-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(13,27,75,0.12);
  background: #f8f9fb;
  flex-shrink: 0;
}

.afi-intro-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  padding: 0.5rem;
  box-sizing: border-box;
}

.afi-intro-text {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.9;
}

.afi-read-more {
  margin-top: 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.afi-read-more-icons {
  display: inline-flex;
  gap: 4px;
  font-size: 1.1rem;
}

/* ── Application + Specifications Section ── */
.afi-detail-section {
  padding: 4.5rem 0 5rem;
  background: var(--off-white);
}

.afi-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.afi-col-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  text-align: center;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

/* Application bullet list */
.afi-app-list {
  list-style: disc;
  padding-left: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.afi-app-list li {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.78;
  padding-left: 0.2rem;
}

/* Specifications table */
.afi-spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.9rem;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(13,27,75,0.13);
  border: 1px solid rgba(13,27,75,0.10);
}

.afi-spec-table thead tr {
  background: var(--navy);
}

.afi-spec-table thead th {
  padding: 1rem 1.4rem;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.90);
  text-transform: uppercase;
}

.afi-spec-table thead th:last-child {
  text-align: right;
}

.afi-spec-table tbody tr {
  transition: background 0.18s ease;
}

.afi-spec-table tbody tr:nth-child(odd) {
  background: var(--white);
}

.afi-spec-table tbody tr:nth-child(even) {
  background: #f0f7fc;
}

.afi-spec-table tbody tr:hover {
  background: var(--sky);
}

.afi-spec-table tbody td {
  padding: 0.9rem 1.4rem;
  border-bottom: 1px solid rgba(13,27,75,0.06);
  line-height: 1.5;
  vertical-align: middle;
}

/* Label column — bold navy */
.afi-spec-table tbody td:first-child {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.88rem;
  width: 55%;
  border-right: 1px solid rgba(13,27,75,0.07);
}

/* Value column — right-aligned, accent for numeric rows */
.afi-spec-table tbody td:last-child {
  color: var(--text-body);
  font-size: 0.88rem;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Highlight numeric/spec value rows */
.afi-spec-table tbody tr.spec-numeric td:last-child {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Last row — no bottom border */
.afi-spec-table tbody tr:last-child td {
  border-bottom: none;
}

/* Note */
.afi-note {
  text-align: center;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* ── AFI Responsive ── */
@media (max-width: 1100px) {
  .afi-intro-block { grid-template-columns: 360px 1fr; gap: 3rem; }
  .afi-detail-grid { gap: 3rem; }
}

@media (max-width: 960px) {
  .afi-intro-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .afi-intro-img-wrap { max-width: 520px; width: 100%; margin: 0 auto; }
  .afi-detail-grid { grid-template-columns: 1fr; gap: 3rem; }
  .afi-product-section { padding: 4rem 0 0; }
  .afi-detail-section { padding: 3.5rem 0 4rem; }
}

@media (max-width: 680px) {
  .afi-product-section { padding: 3.5rem 0 0; }
  .afi-detail-section { padding: 3rem 0 3.5rem; }
  .afi-intro-text { font-size: 0.92rem; }
  .afi-app-list li { font-size: 0.9rem; }
  .afi-spec-table thead th, .afi-spec-table tbody td { padding: 0.75rem 1rem; }
}

@media (max-width: 480px) {
  .afi-product-section { padding: 3rem 0 0; }
  .afi-product-heading { font-size: 1.25rem; margin-bottom: 2rem; }
  .afi-detail-section { padding: 2.5rem 0 3rem; }
  .afi-col-title { font-size: 1.1rem; }
  .afi-intro-text { font-size: 0.88rem; line-height: 1.8; }
  .afi-app-list li { font-size: 0.85rem; }
  .afi-spec-table { font-size: 0.83rem; }
  .afi-spec-table thead th, .afi-spec-table tbody td { padding: 0.65rem 0.85rem; }
  .afi-note { font-size: 0.88rem; }
}

@media (max-width: 360px) {
  .afi-product-heading { font-size: 1.1rem; }
  .afi-col-title { font-size: 1rem; }
  .afi-spec-table thead th, .afi-spec-table tbody td { padding: 0.55rem 0.7rem; font-size: 0.78rem; }
}


/* ── Soyabean Meal — Two-table Specifications Section ── */
.afi-soy-specs-section {
  padding: 5rem 0 5.5rem;
  background: var(--white);
}

.afi-soy-specs-heading {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  font-weight: 800;
  color: var(--accent);
  text-align: center;
  margin-bottom: 3.5rem;
  letter-spacing: -0.01em;
}

.afi-soy-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.afi-soy-specs-col-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.afi-soy-note {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 2.5rem;
}

@media (max-width: 820px) {
  .afi-soy-specs-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 480px) {
  .afi-soy-specs-section { padding: 3.5rem 0 4rem; }
  .afi-soy-specs-heading { font-size: 1.3rem; margin-bottom: 2.5rem; }
  .afi-soy-specs-col-title { font-size: 0.95rem; }
}

/* ── Soyabean Meal intro bullets (right of image) ── */
.afi-intro-bullets {
  list-style: disc;
  padding-left: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.afi-intro-bullets li {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.85;
}

/* ── Product section divider ── */
.afi-product-divider {
  border: none;
  border-top: 2px solid var(--border);
  margin: 0;
  opacity: 0.6;
}

/* ── Full-width Application section ── */
.afi-app-full-section {
  padding: 3.5rem 0 5.5rem;
  background: var(--off-white);
}

.afi-app-full-heading {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.afi-app-full-eyebrow {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
}

/* ── Use-case card grid ── */
.afi-use-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.afi-use-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 4px solid var(--navy);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.afi-use-card:hover {
  box-shadow: 0 12px 36px rgba(13,27,75,0.12);
  transform: translateY(-3px);
}

.afi-use-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.afi-use-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--navy);
  stroke: var(--navy);
}

.afi-use-card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.afi-use-card-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.85;
}

/* fifth card spans full width */
.afi-use-card.full-width {
  grid-column: 1 / -1;
}

/* ── Responsive additions for Soyabean Meal ── */
@media (max-width: 960px) {
  .afi-use-cards-grid { gap: 1.25rem; }
}

@media (max-width: 680px) {
  .afi-intro-bullets li { font-size: 0.9rem; }
  .afi-app-full-section { padding: 3rem 0 4rem; }
  .afi-use-cards-grid { grid-template-columns: 1fr; }
  .afi-use-card.full-width { grid-column: auto; }
  .afi-use-card { padding: 1.5rem 1.25rem; }
}

@media (max-width: 480px) {
  .afi-intro-bullets li { font-size: 0.86rem; line-height: 1.8; }
  .afi-use-card-text { font-size: 0.86rem; }
  .afi-app-full-heading { font-size: 1.2rem; }
  .afi-app-full-section { padding: 2.5rem 0 3.5rem; }
}

@media (max-width: 360px) {
  .afi-use-card-text { font-size: 0.82rem; }
  .afi-app-full-heading { font-size: 1.1rem; }
}


/* ================================================
   PACKAGING PRODUCTS PAGE
   ================================================ */

/* Section wrapper */
.pp-intro-section {
  padding: 5rem 0 4.5rem;
  background: var(--off-white);
}

/* Product sub-heading */
.pp-product-heading {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 2.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
}

/* Two-column intro: image left, text right */
.pp-intro-block {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 3rem;
  align-items: start;
}

/* Two-image column */
.pp-intro-imgs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Image wrapper — constrained so images match text block height */
.pp-intro-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 24px rgba(13,27,75,0.09);
  border: 1px solid rgba(13,27,75,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.pp-intro-img-wrap img {
  width: 100%;
  max-height: 180px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}

/* Text side */
.pp-intro-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.pp-intro-text {
  font-size: 1.08rem;
  color: var(--body);
  line-height: 1.85;
}

/* Highlight bullet list */
.pp-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.pp-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid rgba(13,27,75,0.08);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 0.96rem;
  color: var(--body);
  line-height: 1.7;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.pp-highlights li:hover {
  box-shadow: 0 6px 18px rgba(13,27,75,0.10);
  transform: translateY(-2px);
}

.pp-hi-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.pp-hi-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--navy);
}

/* ── Responsive ── */

/* Tablet ≤ 960px: stack layout, images go side-by-side in a row */
@media (max-width: 960px) {
  .pp-intro-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pp-intro-imgs {
    flex-direction: row;
    max-width: 640px;
    margin: 0 auto;
  }

  .pp-intro-img-wrap {
    flex: 1;
  }

  .pp-intro-img-wrap img {
    max-height: 220px;
  }
}

/* Mobile ≤ 600px */
@media (max-width: 600px) {
  .pp-intro-section {
    padding: 3rem 0 3rem;
  }

  .pp-product-heading {
    font-size: 1.3rem;
    margin-bottom: 1.75rem;
  }

  .pp-intro-imgs {
    max-width: 100%;
    gap: 0.75rem;
  }

  .pp-intro-img-wrap img {
    max-height: 170px;
  }

  .pp-intro-text {
    font-size: 0.97rem;
  }

  .pp-highlights {
    gap: 0.85rem;
  }

  .pp-highlights li {
    font-size: 0.9rem;
    padding: 0.75rem 0.85rem;
    gap: 0.65rem;
  }
}

/* Small mobile ≤ 480px: stack images back to column */
@media (max-width: 480px) {
  .pp-intro-imgs {
    flex-direction: column;
    max-width: 340px;
    margin: 0 auto;
  }

  .pp-intro-img-wrap img {
    max-height: 200px;
  }

  .pp-intro-text-wrap {
    gap: 1.25rem;
  }
}

/* Extra-small ≤ 360px */
@media (max-width: 360px) {
  .pp-intro-section {
    padding: 2.5rem 0 2.5rem;
  }

  .pp-product-heading {
    font-size: 1.15rem;
  }

  .pp-intro-text {
    font-size: 0.9rem;
  }

  .pp-highlights li {
    font-size: 0.85rem;
    padding: 0.65rem 0.75rem;
  }

  .pp-hi-icon {
    width: 28px;
    height: 28px;
  }

  .pp-hi-icon svg {
    width: 14px;
    height: 14px;
  }
}
