/* ── Page-specific overrides ── */

/* ── Hero ── */
.products-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  align-content: center;
  background: #fafdf3;
  color: var(--text);
  overflow: hidden;
  padding: 0 0 80px;
}
.chicken_{
   display: flex;
  flex-direction: row; gap:1.2rem }

.products-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}
.products-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/media/BSF Chicken_EFB.jpg") center/cover no-repeat;
  opacity: 0.12;
  filter: grayscale(1);
  pointer-events: none;
  z-index: 0;
}
.products-hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  align-content: center;
}
.hero-layout {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 3.6rem;
  align-items: center;
}

.order-card-light {
  background: #e3efdd;
  color: var(--primary-dark);
  /* box-shadow: var(--shadow-sm); */
}

.products-hero-media {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 560px;
}
.products-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 2;
  display: block;
}
/* .products-hero h1 .hero-title {
  color: var(--primary-dark);
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  display: block;
  /* margin-bottom: 1rem; }*/

.products-hero h1 .hero-subtitle {
  color: #9b7828;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.products-hero .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(86, 189, 26, 0.12);
  backdrop-filter: blur(4px);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  color: var(--primary);
  border: 1px solid rgba(74, 111, 60, 0.15);
}
.products-hero .hero-tag .tag-icon {
  font-size: 1rem;
  line-height: 1;
}
.products-hero h1 {
  font-size: 2.8rem;
  /* font-weight: 800; */
  line-height: 1.2;
  margin-bottom: 20px;
}
.products-hero .hero-desc {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 28px;
  color: var(--text);
}
.products-hero .hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Glassy buttons for this page */
.products-hero .btn,
.product-section .btn,
.cta-banner .btn {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}
.products-hero .btn:hover,
.product-section .btn:hover,
.cta-banner .btn:hover {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.products-hero .btn-primary,
.product-section .btn-primary,
.cta-banner .btn-primary {
  background: #facc15;
  border-color: #facc15;
  color: #1b4332;
}
.products-hero .btn-primary:hover,
.product-section .btn-primary:hover,
.cta-banner .btn-primary:hover {
  background: #fde047;
  border-color: #fde047;
  color: #1b4332;
}
.products-hero .btn-whatsapp,
.product-section .btn-whatsapp,
.cta-banner .btn-whatsapp {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.products-hero .btn-whatsapp:hover,
.product-section .btn-whatsapp:hover,
.cta-banner .btn-whatsapp:hover {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
}

/* Hero button overrides for light background */
.products-hero .btn {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid #ccc;
  color: var(--text);
}
.products-hero .btn:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text);
}
.products-hero .btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.products-hero .btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}
.products-hero .btn-whatsapp {
  background: transparent;
  border: 1px solid #ccc;
  color: var(--text);
}
.products-hero .btn-whatsapp:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text);
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 2s infinite;
}
.scroll-hint::after {
  content: "↓";
  font-size: 1.2rem;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ── Sections ── */
.product-section {
  padding: 100px 0;
}
.section-header {
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.3;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.8;
}

/* ── Section tag color overrides (page-specific) ── */
.bg-cream .section-tag--earth-cream,
.bg-cream .badge--earth-cream {
  background: #f8eccc;
  color: #9b7828;
}

/* ── Large topic headings ── */
.topic-heading {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2;
  margin-bottom: 20px;
}
.topic-heading .green {
  color: var(--primary);
}

/* ── Story intro ── */
.story-intro {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.8;
}

/* ── Feature blocks ── */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature-block.reverse .feature-media {
  order: -1;
}
.feature-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 320px;
  /* background: var(--bg-alt); */
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-media img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  display: block;
  align-self: stretch;
}
.feature-media .img-placeholder {
  border: none;
  background: transparent;
  width: 100%;
  min-height: 320px;
}
.feature-content {
  padding: 2.4rem 0rem;
}
.feature-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}
.feature-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* ── Closing line ── */
.closing-line {
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-dark);
  margin-top: 20px;
}
.green-bold {
  color: var(--primary);
  font-weight: 700;
}

/* ── Feature topics ── */
.feature-content .topic-sub {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.feature-content .topic-lead {
  font-size: 1rem;
  font-weight: 500;
  color: #8b6914;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ── Research Box ── */
.research-box {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--accent);
  margin: 28px 0;
}
.research-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.research-box p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.research-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s;
}
.research-link:hover {
  color: var(--accent);
}

/* ── Stats ── */
.tasting-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 36px 0;
}
.tasting-stat-card {
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.tasting-stat-card .stat-value {
  font-size: 3rem;
  font-weight: 800;
  color: #facc15;
  margin-bottom: 12px;
}
.tasting-stat-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* ── Testimonial grid cards ── */
.testimonial-grid {
  display: flex;
  flex-direction: column;
  /* grid-template-columns: repeat(1, 2fr); */
  gap: 24px;
  margin-top: 36px;
}
.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  /* padding: 64px 24px 32px; */
  display: flex;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  overflow: visible;
}
.testimonial-card img {
  width: 100%;
  min-height1: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: block;
}
.testimonial-card .quote-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.testimonial-card .quote-group .quote-item {
  padding: 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
}
.testimonial-card .card-label {
  position: absolute;
  top: -6px;
  left: -12px;
  background: var(--primary);
  color: #fff;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  transform: rotate(-12deg);
}
.testimonial-card .quote-text {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.7;
}
.testimonial-card .profile-icon {
  width: 48px;
  height: 48px;
  background: #facc15;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 1.4rem;
}
.testimonial-card .profile-role {
  font-size: 1rem;
  color: #898989;
}

/* ── Farmer testimonial wide ── */
.farmer-testimonial-wide {
  position: relative;
  min-height: 460px;
  padding: 40px;
}
.farmer-testimonial-wide .tm-bg {
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  overflow: hidden;
  width: 75%;
  background: url("../media/07_BSF Chicken.JPG") center/cover no-repeat;
}
.farmer-testimonial-wide .tm-content {
  position: absolute;
  top: auto;
  bottom: 20px;
  right: -54px;
  transform: none;
  background: rgba(246, 255, 245, 0.86);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 520px;
  box-shadow: 6px 6px 6px rgba(205, 205, 205, 0.8);
  z-index: 2;
}

.farmer-testimonial-wide blockquote {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 24px;
  font-style: italic;
  color: var(--text);
}
.chicken {
  display: block;
  padding: 0 33% 1.5rem;
}
.banner {
  font-weight: 700;
  color: #1b4332;
  font-size: 1.5rem;
}
.farmer-testimonial-wide .tm-footer {
  text-align: right;
}
.farmer-testimonial-wide cite {
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  display: block;
}
.farmer-testimonial-wide cite .name {
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}
.farmer-testimonial-wide cite .location {
  color: var(--text-muted);
  font-weight: 500;
  display: block;
}

/* ── Tasting testimonials (wide layout) ── */
.tasting-testimonial-wide {
  position: relative;
  height: 360px;
  padding: 40px;
  margin-bottom: 24px;
}
.tasting-testimonial-wide .tm-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  border-radius: 2rem;
  overflow: hidden;
  width: 75%;
  background: center/cover no-repeat;
}
.tasting-testimonial-wide .tm-content {
  position: absolute;
  top: 50%;
  left: -54px;
  right: auto;
  transform: translateY(-50%);
  background: rgba(246, 255, 245, 0.86);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 520px;
  box-shadow: 6px 6px 6px rgba(205, 205, 205, 0.8);
  z-index: 2;
}
.tasting-testimonial-wide blockquote {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 24px;
  font-style: italic;
  color: var(--text);
}
.tasting-testimonial-wide .tm-footer {
  text-align: right;
}
.tasting-testimonial-wide cite {
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  display: block;
}
@media (max-width: 1024px) {
  .tasting-testimonial-wide {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    height: auto;
    min-height: auto;
    padding: 0;
    margin-bottom: 32px;
    gap: 16px;
  }
  .tasting-testimonial-wide .tm-bg {
    position: relative;
    width: 100%;
    min-height: 280px;
    border-radius: 1rem;
    opacity: 1;
  }
  .tasting-testimonial-wide .tm-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: 100%;
    width: 100%;
    background: rgba(246, 255, 245, 1);
    box-shadow: none;
  }
}

/* ── RFID Traceability ── */
.rfid-section {
  background: #faf8f3;
}
.rfid-card {
  margin-top: 3rem;
  background: #fff8e6;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  width: 100%;
}
.rfid-card-header {
  display: flex;
  /* align-items: center; */
  gap: 16px;
  margin-bottom: 28px;
}
.rfid-card-icon {
  width: 56px;

  height: 56px;
  background: #f0f5eb;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  flex-shrink: 0;
}
.rfid-card-icon svg {
  width: 28px;
  height: 28px;
}
.rfid-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.rfid-card-sub {
  font-size: 1rem;
  color: var(--text-muted);
}
.rfid-search {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.rfid-search input {
  flex: 1;
  min-width: 240px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-family: var(--font-sans);
}
.rfid-search input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}
.rfid-search button {
  padding: 16px 32px;
  background: var(--primary-dark);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.rfid-search button:hover {
  background: var(--primary);
}
.rfid-footer {
  text-align: center;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text-muted);
}
.rfid-footer a {
  color: var(--primary);
  font-weight: 600;
}

/* ── Order Flow ── */
.order-flow {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 40px 0 28px;
}
.order-step {
  text-align: center;
  flex: 1;
  min-width: 160px;
  padding: 20px 16px;
  position: relative;
}
.order-step::after {
  content: "→";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
}
.order-step:last-child::after {
  display: none;
}
.order-step-icon {
  aspect-ratio: 1 / 1;
  padding: 1rem;
  background: #fff8e6;
  color: #fff;

  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 12% 12px;
}
.order-step h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: #a48f5c;
  font-weight: 600;
}
.order-step p {
  font-size: 1rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.order-step .day-label {
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Order Section ── */
.order-section {
  background: #ffffff;
  padding: 100px 0;
}
.order-cards-section {
  background: #faf8f3;
  padding: 3rem 0;
}
.order-section .section-header,
.order-cards-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.order-section .section-header h2,
.order-cards-section .section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.order-section .section-header p,
.order-cards-section .section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0 auto;
}
.order-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  /* padding: 0 25%; */
  /* margin: 0 auto 28px; */
}
.order-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.order-card-dark {
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
  color: #ffffff;
}
.order-card-light {
  background: #e3efdd;
  color: var(--primary-dark);
  /* box-shadow: var(--shadow-sm); */
}

.order-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.order-card-dark .order-card-icon {
  background: rgba(255, 255, 255, 0.15);
}
.order-card-light .order-card-icon {
  background: #f0f5eb;
  color: var(--primary);
}
.order-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.order-card p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 24px;
  line-height: 1.6;
  flex-grow: 1;
}
.order-card .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s,
    opacity 0.2s;
}

/* story */
.story-section {
  padding: 100px 0;
  background: #fff;
}

.story-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.story-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.story-embed {
  width: 100%;
}

.video-crop-container {
  width: 100%;
  max-width: 450px;
  height: 700px;
  overflow: hidden;
  position: relative;
  border: 1px solid #ddd;
  border-radius: 12px;
  margin: 0 auto;
}

.video-crop-container iframe {
  position: absolute;
  top: -65px !important;
  left: 0;
  width: 100% !important;
  height: calc(100% + 150px) !important;
}

.story-image-full {
  width: 100%;
  height: 30rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 32px;
}

.story-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25);
}

.story-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.story-content blockquote {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  border-left: 4px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 20px;
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
}

.story-link:hover {
  background: var(--primary-dark);
  color: #fff;
}



/* //////// */
.order-card .btn:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}
.order-card-dark .btn {
  background: #fff;
  color: #1b4332;
}
.order-card-light .btn-whatsapp {
  background: #16a34a;
  color: #fff;
  border: none;
}
.order-card-light .btn-whatsapp:hover {
  background: #15803d;
}
.order-phone {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}
.green-note-pill {
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-dark);
  padding: 3rem 0;
  font-size: 1rem;
  font-weight: 500;
}
.highlight-topic {
  display: inline-flex;
  flex-direction: column;
  padding: 0 0 1.2rem;
}

.highlight-topic_強勢合作 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #9b7828;
}
.highlight-topic_黑水虻兵團 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
}
.bg-cream {
  background: #faf8f3;
}
.bg-white {
  background: #fff;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  /* ── Uniform mobile padding for all sections ── */
  .product-section,
  .story-section,
  .order-section {
    padding: 3rem 1.8rem 3rem;
  }



    .story-top {
    grid-template-columns: 1fr;
  }
  .story-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
}
  .order-cards-section {
    padding: 3rem 1.8rem 3rem;
  }
  .products-hero {
    min-height: 100vh;
    padding: 9rem 1.8rem 3rem;
    align-content: start;
  }
  .products-hero .container {
    align-content: start;
  }
  .farmer-testimonial-wide {
    /* padding: 0 24px; */
  }

  /* ── Layout ── */
  .feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-block.reverse .feature-media,
  .feature-block.reverse .feature-content {
    order: 0;
  }
  .hero-layout {
    grid-template-columns: 1fr;
  }
  .tasting-stats {
    grid-template-columns: 1fr;
  }
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
.story-content {
        display: flex;
        flex-direction: column;
        align-items: center;    /* This centers the button and text blocks */
        text-align: center;     /* This ensures the text inside <h3> and <span> is centered */
    }
  .story-content{
    /* width: 100%; */
   
    flex-direction: column;
     justify-content:center;
    
  }
  
 
  /* ── Typography ── */
  .products-hero h1 {
    font-size: 2.2rem;
  }
  /* .products-hero h1 .hero-title {
    font-size: 2.4rem;
   
  }
  .products-hero h1 .hero-subtitle {
    font-size: 1.3rem;
  } */
  .products-hero .hero-desc {
    font-size: 1rem;
  }
  .section-header h2,
  .order-cards-section .section-header h2 {
    font-size: 1.6rem;
  }
  .topic-heading {
    font-size: 2.2rem;
  }
  .farmer-testimonial-wide blockquote {
    font-size: 1rem;
  }

  /* ── Media ── */
  .products-hero-media {
    aspect-ratio: 16/10;
  }
  .hero-wave {
    height: 60px;
  }

  /* ── Order ── */
  .order-flow {
    flex-direction: column;
    align-items: center;
  }
  .order-step::after {
    display: none;
  }
  .order-cards {
    grid-template-columns: 1fr;
  }
  .order-card {
    padding: 32px 24px;
  }
}
@media (max-width: 1024px) {
  .farmer-testimonial-wide {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    min-height: auto;
    padding: 0;
    gap: 16px;
  }
  .farmer-testimonial-wide .tm-bg {
    position: relative;
    width: 100%;
    min-height: 360px;
    border-radius: 1rem;
    opacity: 1;
  }
  .farmer-testimonial-wide .tm-content {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    max-width: 100%;
    width: 100%;
    background: rgba(246, 255, 245, 1);
    box-shadow: none;
  }
  .prodict-button{
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}