/* ==========================================================================
   NUTORG LTD — Natural Roots Design System & Master Stylesheet
   Palette: Forest (#17301A) / Leaf (#2E7042) / Sage (#F1F7F3) / Sage Deep (#D7E3D7) / Amber (#F7A61F) / Cream (#FFFED5)
   Typography: "Fraunces" (Serif Display) + "DM Sans" (Sans-serif Body)
   ========================================================================== */

:root {
  /* Brand Color Tokens */
  --color-forest: #17301a;
  --color-leaf: #2e7042;
  --color-sage: #f1f7f3;
  --color-sage-deep: #d7e3d7;
  --color-amber: #f7a61f;
  --color-cream: #fffed5;
  --color-background: #ffffff;
  --color-foreground: #171717;
  --color-muted: #667085;
  --color-destructive: #dc2626;

  /* Typography */
  --font-sans:
    "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
    sans-serif;
  --font-display: "Fraunces", Georgia, serif;

  /* Elevation / Shadows */
  --shadow-soft: 0 1px 2px rgba(23, 48, 26, 0.04), 0 12px 32px -16px rgba(23, 48, 26, 0.18);
  --shadow-lift: 0 2px 4px rgba(23, 48, 26, 0.05), 0 28px 48px -22px rgba(23, 48, 26, 0.28);
  --shadow-header: 0 4px 20px rgba(23, 48, 26, 0.06);

  /* Border Radii */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-4xl: 2.5rem;
  --radius-full: 9999px;

  /* Transition Durations */
  --transition-fast: 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-medium: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-slow: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Base Resets */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

/* Lenis Recommended Smooth Scroll CSS */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--color-forest);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 80rem;
  /* 1280px */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.container-narrow {
  max-width: 56rem;
  /* 896px */
}

.container-sm {
  max-width: 48rem;
  /* 768px */
}

/* Section Wrapper Utilities */
.section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  position: relative;
}

@media (min-width: 640px) {
  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.section-sage {
  background-color: var(--color-sage);
  border-top: 1px solid rgba(215, 227, 215, 0.6);
  border-bottom: 1px solid rgba(215, 227, 215, 0.6);
}

/* Header & Navigation — Transparent Dark Glass Capsule Style */
.header {
  position: fixed;
  top: 0.75rem;
  left: 0;
  right: 0;
  z-index: 50;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  transition: all 0.35s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 82rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 75px !important;
  width: auto !important;
  object-fit: contain;
  display: block;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.4rem 0.6rem;
  background-color: rgba(12, 22, 14, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-full);
  box-shadow:
    0 10px 30px -10px rgba(0, 0, 0, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.35s ease;
}

.header.scrolled .header-inner {
  background-color: rgba(10, 18, 12, 0.94);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.24);
}

@media (max-width: 1023px) {
  .header {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .header-container {
    justify-content: space-between;
  }

  .header-inner {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .logo img {
    height: 52px !important;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.375rem;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.nav-link.active {
  background-color: var(--color-amber);
  color: #17301a;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(247, 166, 31, 0.35);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.mobile-menu-btn:hover {
  background-color: rgba(255, 255, 255, 0.22);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-nav {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  max-width: 78rem;
  margin: 0 auto;
  border: 1px solid transparent;
  border-radius: var(--radius-2xl);
  background-color: rgba(12, 22, 14, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0 1.25rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition:
    max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    padding 0.35s ease,
    margin 0.35s ease,
    border-color 0.35s ease;
  will-change: max-height, opacity;
}

.mobile-nav.open {
  max-height: 420px;
  opacity: 1;
  margin-top: 0.5rem;
  border-color: rgba(255, 255, 255, 0.2);
  padding-top: 0.75rem;
  padding-bottom: 1.25rem;
}

@media (min-width: 1024px) {

  .mobile-nav,
  .mobile-nav.open {
    display: none;
  }
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-md);
}

.mobile-nav-link.active {
  color: var(--color-amber);
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.1);
  padding-left: 0.875rem;
}

/* Brand Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  user-select: none;
}

.logo-text-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-text-title.dark {
  color: var(--color-forest);
}

.logo-text-title.light {
  color: var(--color-sage-deep);
}

.logo-text-subtitle {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-top: 2px;
}

.logo-text-subtitle.dark {
  color: var(--color-leaf);
}

.logo-text-subtitle.light {
  color: var(--color-sage-deep);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1.25;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  height: 2.5rem;
}

.btn-lg {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.btn-forest {
  background-color: var(--color-forest);
  color: var(--color-background);
}

.btn-forest:hover {
  background-color: var(--color-leaf);
  color: #ffffff;
}

.btn-amber {
  background-color: var(--color-amber);
  color: var(--color-forest);
  font-weight: 600;
}

.btn-amber:hover {
  background-color: #e59510;
  color: var(--color-forest);
}

.btn-outline {
  border-color: var(--color-sage-deep);
  background-color: var(--color-background);
  color: var(--color-forest);
}

.btn-outline:hover {
  background-color: var(--color-sage);
  border-color: var(--color-leaf);
}

.btn-link {
  background: transparent;
  color: var(--color-leaf);
  padding: 0;
  font-weight: 600;
}

.btn-link:hover {
  color: var(--color-forest);
}

.btn svg {
  width: 1.1em;
  height: 1.1em;
}

/* Typography Helpers */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  color: var(--color-leaf);
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-sage-deep);
  background-color: rgba(255, 255, 255, 0.7);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-leaf);
}

.section-heading {
  margin-bottom: 2.5rem;
}

.section-heading.text-center {
  text-align: center;
}

/* ==========================================================================
   SCROLL REVEAL & SECTION ANIMATION SYSTEM
   ========================================================================== */

/* Standard Reveal (Fade Up) */
.reveal,
.reveal-up {
  opacity: 0;
  transform: translateY(35px);
  filter: blur(4px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

/* Slide in from Left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  filter: blur(4px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

/* Slide in from Right */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  filter: blur(4px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

/* Scale & Pop in */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  filter: blur(4px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

/* Revealed / Active Visible State */
.reveal[data-visible="true"],
.reveal-up[data-visible="true"],
.reveal-left[data-visible="true"],
.reveal-right[data-visible="true"],
.reveal-scale[data-visible="true"],
.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
  filter: blur(0);
}

/* Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {

  .reveal,
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

.section-heading.text-center p {
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  font-size: 2.25rem;
  margin-top: 0.75rem;
  color: var(--color-forest);
}

@media (min-width: 640px) {
  .section-heading h2 {
    font-size: 2.75rem;
  }
}

.section-heading p {
  margin-top: 1rem;
  max-width: 38rem;
  color: rgba(23, 23, 23, 0.75);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Page Hero Header Banner */
.page-hero {
  position: relative;
  overflow: hidden;
  background-color: var(--color-forest);
  color: #ffffff;
  border-bottom: 1px solid rgba(215, 227, 215, 0.2);
  padding-top: 6.5rem;
  padding-bottom: 4rem;
  text-align: center;
}

@media (min-width: 640px) {
  .page-hero {
    padding-top: 7.5rem;
    padding-bottom: 4.5rem;
  }
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-top: 0.75rem;
}

@media (min-width: 640px) {
  .page-hero h1 {
    font-size: 3.5rem;
  }
}

.page-hero p {
  margin-top: 1rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(23, 23, 23, 0.75);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Grid System */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .grid-cols-sm-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-cols-sm-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-cols-lg-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-cols-lg-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-cols-lg-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .grid-cols-lg-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .grid-cols-lg-hero {
    grid-template-columns: 1.05fr 1fr;
  }

  .grid-cols-lg-contact {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

/* Organic Cards */
.card-organic {
  background-color: var(--color-background);
  border: 1px solid var(--color-sage-deep);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition-medium),
    box-shadow var(--transition-medium),
    border-color var(--transition-medium);
  overflow: hidden;
}

.card-organic:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(46, 112, 66, 0.4);
}

.card-padding {
  padding: 1.75rem;
}

@media (min-width: 640px) {
  .card-padding {
    padding: 2rem;
  }
}

/* Decorative Blobs & Background Ornaments */
.blob {
  position: absolute;
  border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%;
  filter: blur(0.5px);
  pointer-events: none;
}

.organic-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Image Zoom Effect */
.img-zoom {
  overflow: hidden;
}

.img-zoom img {
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
  object-fit: cover;
}

.img-zoom:hover img {
  transform: scale(1.05);
}

.aspect-4-3 {
  aspect-ratio: 4 / 3;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

/* Scroll Reveal Utility */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity var(--transition-slow),
    transform var(--transition-slow);
}

.reveal[data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
}

/* Cashew Grades Badge Item */
.grade-card {
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-sage-deep);
  background-color: var(--color-background);
  padding: 1rem 1.25rem;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast);
}

.grade-card:hover {
  background-color: var(--color-sage);
  border-color: var(--color-leaf);
}

.grade-code {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-leaf);
  font-weight: 600;
}

.grade-name {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 2px;
  line-height: 1.3;
}

/* Timeline Process List */
.timeline {
  position: relative;
  list-style: none;
  margin-top: 3.5rem;
}

@media (min-width: 1024px) {
  .timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.timeline-step {
  position: relative;
  padding-left: 5rem;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .timeline-step {
    padding-left: 0;
    margin-bottom: 0;
  }
}

.timeline-number {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-sage-deep);
  background-color: var(--color-background);
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-leaf);
  font-weight: 600;
}

@media (min-width: 1024px) {
  .timeline-number {
    position: static;
    margin-bottom: 1.5rem;
  }
}

/* Form Controls */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-forest);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-sage-deep);
  background-color: var(--color-background);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--color-foreground);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(102, 112, 133, 0.7);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-leaf);
  box-shadow: 0 0 0 4px rgba(46, 112, 66, 0.12);
}

.form-input.error,
.form-textarea.error {
  border-color: var(--color-destructive);
}

.form-error {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: var(--color-destructive);
}

/* Toast Notification Popup */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 24rem;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  border-radius: var(--radius-2xl);
  background-color: var(--color-forest);
  color: #ffffff;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  opacity: 0;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  flex-shrink: 0;
  color: var(--color-amber);
  margin-top: 2px;
}

.toast-title {
  font-weight: 600;
  font-size: 0.9rem;
}

.toast-desc {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 2px;
}

/* Footer */
.footer {
  position: relative;
  overflow: hidden;
  background-color: var(--color-forest);
  color: var(--color-sage-deep);
  padding-top: 4rem;
  padding-bottom: 2.5rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(215, 227, 215, 0.85);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-cream);
}

.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(215, 227, 215, 0.3);
  color: var(--color-sage-deep);
  transition:
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.social-icon:hover {
  border-color: var(--color-cream);
  color: var(--color-cream);
}

.contact-info-list {
  list-style: none;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(215, 227, 215, 0.85);
  margin-bottom: 0.75rem;
}

.contact-info-list svg {
  color: var(--color-amber);
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(215, 227, 215, 0.2);
  font-size: 0.75rem;
  color: rgba(215, 227, 215, 0.7);
}

/* Header Right CTA */
.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: inline-flex;
    align-items: center;
  }
}

/* ==========================================================================
   HERO SECTION & TRANSPARENT DARK OVERLAY SYSTEM
   ========================================================================== */

.hero-section {
  position: relative;
  background-color: #0c160e;
  color: #ffffff;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 7.5rem;
  padding-bottom: 4rem;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  pointer-events: none;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(10, 18, 12, 0.65) 0%,
      rgba(10, 18, 12, 0.35) 45%,
      rgba(10, 18, 12, 0.78) 100%),
    radial-gradient(circle at 25% 40%, rgba(10, 18, 12, 0.15), rgba(10, 18, 12, 0.75));
  pointer-events: none;
}

/* Hero Typography */
.hero-badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--color-amber);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1.15rem;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.hero-title {
  font-family: var(--font-display), "Fraunces", Georgia, serif;
  font-size: clamp(2.5rem, 5.2vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-top: 1.25rem;
  display: block;
}

.hero-title-decor {
  color: var(--color-amber);
  font-weight: 400;
  letter-spacing: 0.05em;
  opacity: 0.9;
  font-size: 0.85em;
}

.hero-accent {
  background: linear-gradient(135deg, #f7a61f 0%, #fffed5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-top: 1.25rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.hero-description {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 36rem;
}

.hero-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Premium Hero CTA Buttons */
.btn-hero-primary {
  background-color: var(--color-amber);
  color: #17301a;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(247, 166, 31, 0.35);
  border: 1px solid transparent;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(247, 166, 31, 0.55);
  background-color: #ffb733;
}

.btn-hero-secondary {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.btn-hero-secondary:hover {
  transform: translateY(-3px);
  background-color: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
  color: #ffffff;
}

/* Hero 2-Column Grid Layout & Dark Glass Right-Side Showcase */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}

.hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-showcase-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.hero-showcase-card:hover {
  transform: translateY(-5px);
  border-color: rgba(247, 166, 31, 0.45);
  box-shadow: 0 32px 60px -12px rgba(0, 0, 0, 0.65);
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-showcase-card:hover .hero-img-wrapper img {
  transform: scale(1.04);
}

.hero-card-meta {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

.hero-card-sub {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

/* Floating Feature Badges */
.floating-pill {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(12, 22, 14, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  font-size: 0.825rem;
  font-weight: 600;
  color: #ffffff;
  backdrop-filter: blur(12px);
  animation: floatSlow 4s ease-in-out infinite alternate;
}

.floating-pill-top-right {
  top: 0.65rem;
  right: 0.65rem;
}

.floating-pill-bottom-left {
  bottom: 0.65rem;
  left: 0.65rem;
  animation-delay: 2s;
}

@keyframes floatSlow {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-8px);
  }
}

/* Hero Quick Varieties Pills */
.hero-variety-grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.6rem 0.75rem;
  margin-top: 1.75rem;
  justify-content: center;
}

.hero-variety-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
  text-decoration: none;
}

.hero-variety-pill:hover {
  background: var(--color-amber);
  color: #17301a;
  border-color: var(--color-amber);
  transform: translateY(-2px);
}

/* ==========================================================================
   PRODUCTS PAGE PREMIUM REDESIGN SYSTEM
   ========================================================================== */

/* 1. Header Active Link Gold Highlight */
.nav-link.active,
.nav-link.active-products,
.nav-link.active-about,
.nav-link.active-quality,
.nav-link.active-process,
.nav-link.active-contact {
  background-color: #F5A623;
  color: #0D2914 !important;
  font-weight: 700;
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.35);
}

/* 2. Hero Section */
.products-hero-section {
  position: relative;
  background: linear-gradient(140deg, #0C2A14 0%, #12351B 50%, #1A4526 100%);
  color: #FFFFFF;
  padding-top: 9rem;
  padding-bottom: 0;
  overflow: clip;
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ==========================================================================
   SCATTERED BOTANICAL ELEMENTS (3 DISTINCT ILLUSTRATIONS)
   ========================================================================== */
.botanical-scatter-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.botanical-item {
  position: absolute;
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
  transform-origin: center;
}

.botanical-item-kernel {
  width: clamp(70px, 6vw, 105px);
  height: auto;
}

.botanical-item-fruit {
  width: clamp(100px, 9vw, 145px);
  height: auto;
}

.botanical-item-branch {
  width: clamp(200px, 18vw, 310px);
  height: auto;
  clip-path: inset(0 0 10% 0);
}

@keyframes floatScatterA {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(4deg);
  }
}

@keyframes floatScatterB {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-18px) rotate(-5deg);
  }
}

@keyframes floatScatterC {

  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.04);
  }
}

.anim-float-a {
  animation: floatScatterA 7.5s ease-in-out infinite;
}

.anim-float-b {
  animation: floatScatterB 9s ease-in-out infinite 1s;
}

.anim-float-c {
  animation: floatScatterC 8.5s ease-in-out infinite 0.5s;
}

/* ==========================================================================
   BOTANICAL BRANCH SIDE DECORATIONS (FOR WHITE / LIGHT BACKGROUND SECTIONS)
   ========================================================================== */
.botanical-side-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.botanical-side-branch {
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 0.08;
  width: clamp(200px, 20vw, 340px);
  height: auto;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Left Branch: Originates from top-left border of white background section */
.botanical-side-branch.branch-left {
  top: -20px;
  left: -40px;
  transform: rotate(-15deg);
  animation: floatScatterA 8s ease-in-out infinite;
}

/* Right Branch: Originates from top-right border */
.botanical-side-branch.branch-right {
  top: -20px;
  right: -40px;
  transform: rotate(15deg);
  animation: floatScatterB 9.5s ease-in-out infinite 0.8s;
}

/* Center-aligned / middle height variations for long sections */
.botanical-side-branch.branch-left-mid {
  top: 25%;
  left: -50px;
  transform: rotate(-22deg) scale(1.05);
  animation: floatScatterC 8.5s ease-in-out infinite 0.4s;
}

.botanical-side-branch.branch-right-mid {
  top: 25%;
  right: -50px;
  transform: rotate(18deg) scale(1.05);
  animation: floatScatterA 9s ease-in-out infinite 1.2s;
}

/* Interactive section hover: subtle opacity boost */
.section:hover .botanical-side-branch {
  opacity: 0.13;
}

/* Ensure section content container sits above side decorations */
.section .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .botanical-side-branch {
    width: clamp(150px, 22vw, 240px);
    opacity: 0.06;
  }

  .botanical-side-branch.branch-left {
    left: -35px;
    top: -15px;
  }

  .botanical-side-branch.branch-right {
    right: -35px;
    top: -15px;
  }
}

@media (max-width: 640px) {
  .botanical-side-branch {
    width: 130px;
    opacity: 0.05;
  }

  .botanical-side-branch.branch-left {
    left: -25px;
    top: -10px;
  }

  .botanical-side-branch.branch-right {
    right: -25px;
    top: -10px;
  }
}

/* ---- Animated hero entrance ---- */
@keyframes heroFadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeSlideLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroFloatA {

  0%,
  100% {
    transform: translateY(0px) rotate(-15deg);
  }

  50% {
    transform: translateY(-18px) rotate(-15deg);
  }
}

@keyframes heroFloatB {

  0%,
  100% {
    transform: translateY(0px) rotate(165deg);
  }

  50% {
    transform: translateY(-24px) rotate(165deg);
  }
}

@keyframes heroPulse {

  0%,
  100% {
    opacity: 0.08;
  }

  50% {
    opacity: 0.15;
  }
}

@keyframes shimmerLine {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes statCountIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating cashew ornaments animate independently */
.hero-float-left {
  animation: heroFloatA 7s ease-in-out infinite;
  transform-origin: center;
}

.hero-float-right {
  animation: heroFloatB 9s ease-in-out infinite 1s;
  transform-origin: center;
}

.hero-bg-pulse {
  animation: heroPulse 6s ease-in-out infinite;
}

/* Inner grid layout */
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 5.5rem;
}

@media (min-width: 900px) {
  .page-hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* Left text column */
.page-hero-text {
  position: relative;
  z-index: 2;
  animation: heroFadeSlideUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.1s;
}

/* Animated divider line under eyebrow */
.hero-divider {
  display: block;
  width: 3.5rem;
  height: 2px;
  background: linear-gradient(90deg, #F5A623, transparent);
  margin: 0.85rem 0 1.25rem 0;
  transform-origin: left;
  animation: shimmerLine 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

/* Breadcrumb trail */
.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(241, 247, 243, 0.55);
  margin-bottom: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-breadcrumb a {
  color: rgba(241, 247, 243, 0.55);
  text-decoration: none;
  transition: color 0.25s;
}

.hero-breadcrumb a:hover {
  color: #F5A623;
}

.hero-breadcrumb span {
  color: #F5A623;
}

/* Hero title override for full richness */
.page-hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.page-hero-h1 em {
  font-family: "Montserrat", var(--font-sans);
  font-style: normal;
  font-weight: 800;
  background: linear-gradient(135deg, #f7a61f 0%, #fffed5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Description body */
.page-hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(241, 247, 243, 0.82);
  line-height: 1.7;
  max-width: 32rem;
  margin-bottom: 2.25rem;
}

/* Hero CTA row */
.page-hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Stats strip at bottom of text column */
.hero-stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.hero-stat-item {
  animation: statCountIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #F5A623;
  line-height: 1;
  display: block;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(241, 247, 243, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
  display: block;
}

/* Right visual column */
.page-hero-visual {
  position: relative;
  z-index: 2;
  animation: heroFadeSlideLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

/* Floating info cards overlaid on visuals */
.hero-info-card {
  position: absolute;
  background: rgba(12, 42, 20, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 1rem;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #FFFFFF;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  white-space: nowrap;
}

.hero-info-card-icon {
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(245, 166, 35, 0.22);
  border-radius: 0.65rem;
  display: grid;
  place-items: center;
  color: #F5A623;
  flex-shrink: 0;
}

.hero-info-card-label {
  font-size: 0.72rem;
  color: rgba(241, 247, 243, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-info-card-value {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* About Page Hero Floating Cards Layout */
.about-hero-visual {
  position: relative;
  padding: 1.5rem 1rem;
  overflow: visible;
}

.about-card-sourcing {
  position: absolute;
  bottom: 0;
  left: -0.5rem;
  transform: translateY(25%);
  z-index: 10;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.about-card-quality {
  position: absolute;
  top: 0;
  right: -0.5rem;
  transform: translateY(-25%);
  z-index: 10;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .about-hero-visual {
    padding: 0;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .about-card-sourcing,
  .about-card-quality {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 100%;
    justify-content: flex-start;
  }
}

/* Image frame inside visual column */
.page-hero-img-wrap {
  border-radius: 1.75rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.7s ease;
}

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


/* Feature tag pills */
.hero-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(241, 247, 243, 0.88);
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  letter-spacing: 0.03em;
  transition: background 0.25s, border-color 0.25s;
}

.hero-tag:hover {
  background: rgba(245, 166, 35, 0.15);
  border-color: rgba(245, 166, 35, 0.4);
  color: #F5A623;
}

/* Wave bottom divider */
.hero-wave-bottom {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: 0;
}

.hero-wave-bottom svg {
  display: block;
  width: 100%;
}


.products-hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.12;
}

.products-hero-content {
  position: relative;
  z-index: 2;
  max-width: 48rem;
  margin: 0 auto;
}

.eyebrow-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: #F5A623;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.products-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.products-hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(241, 247, 243, 0.88);
  line-height: 1.6;
  max-width: 38rem;
  margin: 0 auto;
}

/* 3. Main Category Section */
.main-category-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #FFFFFF;
}

.category-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #183B24;
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
}

.category-text {
  font-size: 1.05rem;
  color: #6F7C74;
  line-height: 1.6;
}

.quality-points-grid {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 640px) {
  .quality-points-grid {
    grid-template-columns: 1fr;
  }
}

.quality-point-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.15rem;
  background-color: #F1F7F3;
  border: 1px solid #D8E3DC;
  border-radius: 14px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.quality-point-card:hover {
  transform: translateY(-2px);
  border-color: #F5A623;
}

.quality-check-icon {
  display: grid;
  place-items: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background-color: #12351B;
  color: #F5A623;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.quality-point-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #183B24;
}

/* Category Image Container */
.category-img-wrapper {
  position: relative;
  border-radius: 24px;
  border: 1px solid #D8E3DC;
  box-shadow: 0 16px 36px rgba(18, 53, 27, 0.08);
  overflow: hidden;
  background-color: #E7F0EA;
  aspect-ratio: 4 / 3;
}

.category-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-img-wrapper:hover img {
  transform: scale(1.04);
}

.category-img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(18, 53, 27, 0.15) 100%);
  pointer-events: none;
}

/* 4. Product Varieties Section */
.varieties-section {
  background-color: #F1F7F3;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  border-top: 1px solid #D8E3DC;
  border-bottom: 1px solid #D8E3DC;
}

.varieties-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 700;
  color: #183B24;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}

/* Product Card Design */
.premium-product-card {
  background: #FFFFFF;
  border: 1px solid #D8E3DC;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(18, 53, 27, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.premium-product-card:hover {
  transform: translateY(-6px);
  border-color: #F5A623;
  box-shadow: 0 22px 44px rgba(18, 53, 27, 0.12), 0 0 15px rgba(245, 166, 35, 0.15);
}

.product-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #E7F0EA;
  border-bottom: 1px solid #D8E3DC;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-product-card:hover .product-media img {
  transform: scale(1.04);
}

.product-body {
  padding: 1.5rem 1.25rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #183B24;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.product-description {
  font-family: var(--font-sans);
  font-size: 0.885rem;
  color: #6F7C74;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}

.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #12351B;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.3s ease;
}

.editorial-link .link-arrow {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  color: #F5A623;
}

.premium-product-card:hover .editorial-link {
  color: #D99212;
}

.premium-product-card:hover .editorial-link .link-arrow {
  transform: translateX(6px);
}

/* Product Info Placeholder */
.product-info-placeholder {
  margin-top: 3rem;
  background-color: #FFFFFF;
  border: 1px dashed #D8E3DC;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.885rem;
  color: #6F7C74;
  line-height: 1.5;
}

/* 5. Product Quality Section */
.product-quality-section {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  background-color: #FFFFFF;
}

.quality-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #183B24;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}

.quality-card {
  background: #FFFFFF;
  border: 1px solid #D8E3DC;
  border-radius: 20px;
  padding: 2.25rem 1.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(18, 53, 27, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quality-card:hover {
  transform: translateY(-5px);
  border-color: #F5A623;
  box-shadow: 0 20px 40px rgba(18, 53, 27, 0.1);
}

.quality-icon-box {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: #E7F0EA;
  color: #12351B;
  margin-bottom: 1.25rem;
  transition: transform 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

.quality-card:hover .quality-icon-box {
  transform: translateY(-3px);
  background-color: rgba(245, 166, 35, 0.18);
  color: #D99212;
}

.quality-card-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #183B24;
}

/* 6. Premium Footer */
.products-site-footer {
  position: relative;
  background-color: #12351B;
  color: #FFFFFF;
  padding-top: 5rem;
  padding-bottom: 3rem;
  overflow: hidden;
}

.footer-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
}

.footer-text-muted {
  color: rgba(241, 247, 243, 0.78);
  font-size: 0.885rem;
  line-height: 1.6;
}

.footer-title-serif {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #F5A623;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   COMBINED WHY CHOOSE & MISSION SECTION STYLES
   ========================================================================== */
/* ==========================================================================
   COMBINED WHY CHOOSE & MISSION SECTION STYLES (LIGHT ORGANIC SAGE THEME)
   ========================================================================== */
.unified-value-mission-section {
  position: relative;
  background-color: #F1F7F3;
  color: #183B24;
  padding: 6rem 0;
  overflow: hidden;
  border-top: 1px solid #D8E3DC;
  border-bottom: 1px solid #D8E3DC;
}

.unified-mission-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(245, 166, 35, 0.45);
  border-radius: 1.5rem;
  padding: 2.75rem 2.25rem;
  margin-bottom: 3.5rem;
  box-shadow: 0 12px 35px rgba(18, 53, 27, 0.05);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.unified-mission-card:hover {
  transform: translateY(-4px);
  border-color: #D99212;
  box-shadow: 0 18px 45px rgba(217, 146, 18, 0.15);
}

.unified-mission-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFF8EB;
  color: #D99212;
  border: 1px solid rgba(217, 146, 18, 0.35);
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.unified-mission-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.45;
  color: #183B24;
  font-style: italic;
  font-weight: 600;
  max-width: 52rem;
  margin: 0 auto;
}

.unified-pillar-card {
  background: #FFFFFF;
  border: 1px solid #D8E3DC;
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(18, 53, 27, 0.03);
}

.unified-pillar-card:hover {
  transform: translateY(-6px);
  background: #FFFFFF;
  border-color: #F5A623;
  box-shadow: 0 16px 36px rgba(18, 53, 27, 0.09);
}

.unified-pillar-num {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #D99212;
  margin-bottom: 0.75rem;
}

.unified-pillar-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  background: #E7F0EA;
  color: #12351B;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  transition: transform 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

.unified-pillar-card:hover .unified-pillar-icon {
  transform: scale(1.1);
  background: #FFF8EB;
  color: #D99212;
}

.unified-pillar-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #183B24;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.unified-pillar-desc {
  font-size: 0.885rem;
  color: #55635A;
  line-height: 1.6;
}

/* ==========================================================================
   HOMEPAGE REDESIGN — MIDDLE CONTENT SECTIONS
   ========================================================================== */

/* --- Section 2: Brand Introduction --- */
.brand-intro-section {
  background-color: #F1F7F3;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  border-bottom: 1px solid #D8E3DC;
}

.brand-intro-img-box {
  position: relative;
  border-radius: 1.75rem;
  overflow: visible;
}

.brand-intro-img-box img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 1.75rem;
  box-shadow: 0 20px 45px rgba(18, 53, 27, 0.12);
  display: block;
}

/* Floating pill badges on Brand Intro Image */
.badge-floating-tag {
  position: absolute;
  background: rgba(12, 42, 20, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 166, 35, 0.35);
  color: #FFFFFF;
  font-size: 0.825rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.badge-floating-tag svg {
  color: #F5A623;
}

.badge-pos-1 {
  top: 0.75rem;
  right: 0.75rem;
}

.badge-pos-2 {
  bottom: 0.75rem;
  left: 0.75rem;
}

.badge-pos-3 {
  bottom: 0.75rem;
  right: 0.75rem;
}

@media (max-width: 767px) {
  .badge-floating-tag {
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
  }

  .badge-pos-1 {
    top: 0.5rem;
    right: 0.5rem;
  }

  .badge-pos-2 {
    bottom: 0.5rem;
    left: 0.5rem;
  }

  .badge-pos-3 {
    bottom: 0.5rem;
    right: 0.5rem;
  }
}

/* --- Section 3: Why Choose NUTORG --- */
.why-choose-section {
  background-color: #FFFFFF;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.why-feature-card {
  background: #FFFFFF;
  border: 1px solid #E2ECE5;
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 4px 14px rgba(18, 53, 27, 0.03);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.why-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(18, 53, 27, 0.08);
  border-color: #F5A623;
}

.why-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.why-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: #F1F7F3;
  color: #12351B;
  display: grid;
  place-items: center;
  transition: background 0.3s ease, color 0.3s ease;
}

.why-feature-card:hover .why-card-icon {
  background: #FFF8EB;
  color: #D99212;
}

.why-card-num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: #D99212;
  opacity: 0.85;
}

.why-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #183B24;
  margin-bottom: 0.5rem;
}

.why-card-desc {
  font-size: 0.9rem;
  color: #55635A;
  line-height: 1.6;
}

/* --- Section 5: Interactive Cashew Grade Selector --- */
.grade-selector-section {
  background-color: #F1F7F3;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  border-top: 1px solid #D8E3DC;
  border-bottom: 1px solid #D8E3DC;
}

.grade-cards-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .grade-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grade-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grade-item-card {
  background: #FFFFFF;
  border: 1px solid #D8E3DC;
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
  box-shadow: 0 10px 30px rgba(18, 53, 27, 0.04);
  height: 100%;
}

.grade-item-card:hover {
  transform: translateY(-8px);
  border-color: #12351B;
  box-shadow: 0 20px 45px rgba(18, 53, 27, 0.12);
}

.grade-item-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #F7FBF8;
  border-bottom: 1px solid #E2ECE5;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.grade-code-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #12351B;
  color: #F5A623;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(18, 53, 27, 0.2);
  letter-spacing: 0.04em;
  z-index: 2;
}

.grade-item-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.grade-item-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.grade-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.grade-count-tag {
  font-size: 0.82rem;
  color: #D99212;
  font-weight: 700;
  background: #FFF8EB;
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
}

.grade-item-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #183B24;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.grade-item-desc {
  font-size: 0.9rem;
  color: #55635A;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.grade-badge-tag {
  display: inline-block;
  background: #FFF8EB;
  border: 1px solid rgba(245, 166, 35, 0.4);
  color: #D99212;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.grade-tags-flex {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.grade-tag-mini {
  background: #F1F7F3;
  border: 1px solid #D8E3DC;
  color: #183B24;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 9999px;
}

/* --- Section 6: Quality & Traceability --- */
.traceability-section {
  background-color: #FFFFFF;
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  position: relative;
  overflow: hidden;
}

.traceability-img-wrap {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(18, 53, 27, 0.1);
  aspect-ratio: 4 / 3;
}

.traceability-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.traceability-point-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.traceability-point-icon {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: #12351B;
  color: #F5A623;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.traceability-point-title {
  font-weight: 700;
  color: #183B24;
  font-size: 0.98rem;
}

.traceability-point-desc {
  font-size: 0.875rem;
  color: #55635A;
  margin-top: 2px;
  line-height: 1.5;
}

/* --- Section 7: Our Process Timeline --- */
.home-process-section {
  background-color: #F1F7F3;
  padding-top: 6rem;
  padding-bottom: 6rem;
  border-top: 1px solid #D8E3DC;
  border-bottom: 1px solid #D8E3DC;
  position: relative;
  overflow: hidden;
}

.supply-chain-container {
  position: relative;
  margin-top: 1rem;
}

/* Horizontal Flow Track (Desktop) */
.supply-chain-flow-track {
  display: none;
  position: absolute;
  top: -1.75rem;
  left: 8%;
  right: 8%;
  height: 3px;
  background: #D8E3DC;
  z-index: 1;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .supply-chain-flow-track {
    display: flex;
  }
}

.flow-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #12351B 0%, #F5A623 100%);
  opacity: 0.25;
}

.flow-step-node {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #12351B;
  color: #12351B;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(18, 53, 27, 0.12);
  transition: all 0.35s ease;
}

.supply-chain-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .supply-chain-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .supply-chain-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Individual Supply Chain Card */
.supply-chain-card {
  background: #FFFFFF;
  border: 1px solid #D8E3DC;
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(18, 53, 27, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
  position: relative;
  height: 100%;
}

.supply-chain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #12351B, #F5A623);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 5;
}

.supply-chain-card:hover {
  transform: translateY(-10px);
  border-color: #12351B;
  box-shadow: 0 22px 50px rgba(18, 53, 27, 0.14);
}

.supply-chain-card:hover::before {
  opacity: 1;
}

/* Media Header with Image Overlay */
.supply-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #12351B;
}

.supply-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  opacity: 0.92;
}

.supply-chain-card:hover .supply-card-media img {
  transform: scale(1.08);
  opacity: 1;
}

.supply-step-pill {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: #12351B;
  color: #F5A623;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.supply-stage-tag {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: #12351B;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.68rem;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.supply-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.supply-card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #183B24;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.supply-card-desc {
  font-size: 0.885rem;
  color: #55635A;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.supply-card-footer {
  margin-top: auto;
}

.supply-highlight-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #F1F7F3;
  border: 1px solid #D8E3DC;
  color: #183B24;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  transition: background 0.3s ease, color 0.3s ease;
}

.supply-chain-card:hover .supply-highlight-chip {
  background: #FFF8EB;
  border-color: rgba(245, 166, 35, 0.4);
  color: #D99212;
}

/* --- Section 8: Strong Pre-Footer CTA --- */
.home-cta-section {
  background: linear-gradient(135deg, #0C2A14 0%, #12351B 50%, #1A4526 100%);
  color: #FFFFFF;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.home-cta-box {
  max-width: 44rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.home-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.home-cta-sub {
  font-size: 1.1rem;
  color: rgba(241, 247, 243, 0.88);
  margin-bottom: 2.25rem;
  line-height: 1.65;
}

.home-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}


/* ============================================================
   SCROLL REVEAL ANIMATION CLASSES
   JS adds .is-visible via IntersectionObserver in main.js
   ============================================================ */

/* Base hidden state */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale,
.section-heading {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* Direction-specific hidden transforms */
.reveal-up {
  transform: translateY(36px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-scale {
  transform: scale(0.94);
}

.reveal,
.section-heading {
  transform: translateY(20px);
}

/* Visible state — added by JS IntersectionObserver */
.reveal.is-visible,
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible,
.section-heading.is-visible {
  opacity: 1;
  transform: none;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {

  .reveal,
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .section-heading {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   MOBILE RESPONSIVE SYSTEM — COMPREHENSIVE FIX
   Covers 320px → 768px without altering desktop (>768px) design
   ========================================================================== */

/* --- Global Safety Layer --- */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Prevent ANY element from creating horizontal overflow */
*,
*::before,
*::after {
  max-width: 100%;
}

/* ==========================================================================
   HEADER / NAVBAR — Mobile Fix
   ========================================================================== */
@media (max-width: 767px) {
  .header {
    top: 0.5rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .header-inner {
    max-width: 100%;
    padding: 0.45rem 1rem;
    gap: 0.75rem;
  }

  /* Hide desktop nav links on mobile */
  .nav-links {
    display: none !important;
  }

  /* Keep nav-cta hidden on mobile */
  .nav-cta {
    display: none !important;
  }

  /* Ensure hamburger button stays inside */
  .mobile-menu-btn {
    display: flex !important;
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
  }

  /* Logo scaling */
  .logo img,
  .logo svg {
    max-width: 80px;
    height: auto;
  }

  /* Mobile nav dropdown */
  .mobile-nav {
    max-width: 100%;
  }
}

/* ==========================================================================
   HERO SECTION — Mobile Fix (the primary overflow source)
   ========================================================================== */
@media (max-width: 767px) {
  .hero-section {
    min-height: 100svh;
    min-height: 100vh;
    padding-top: 5.5rem;
    padding-bottom: 3rem;
    overflow: hidden;
    width: 100%;
  }

  .hero-video {
    left: 0;
    width: 100%;
    max-width: 100%;
  }

  /* Single-column hero grid on mobile */
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  /* Hero typography — scale down & responsive fit for mobile */
  .hero-title {
    font-size: clamp(2.1rem, 8.2vw, 3.2rem) !important;
    line-height: 1.1;
    letter-spacing: -0.015em !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  .hero-tagline {
    font-size: clamp(1rem, 4vw, 1.2rem) !important;
  }

  .hero-description {
    font-size: 0.95rem;
    max-width: 100%;
  }

  /* Floating feature badge — position safely on mobile without clipping */
  .floating-pill {
    font-size: 0.75rem !important;
    padding: 0.4rem 0.75rem !important;
    z-index: 15 !important;
  }

  .floating-pill-bottom-left {
    bottom: 0.5rem !important;
    left: 0.5rem !important;
    top: auto !important;
    right: auto !important;
  }

  .floating-pill-top-right {
    top: 0.5rem !important;
    right: 0.5rem !important;
    left: auto !important;
    bottom: auto !important;
  }

  /* Hero buttons — stack on very small screens */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    justify-content: center;
  }

  /* Hero variety pills — allow wrapping */
  .hero-variety-grid {
    justify-content: flex-start;
    gap: 0.4rem;
  }

  .hero-variety-pill {
    font-size: 0.75rem;
    padding: 0.35rem 0.7rem;
  }

  /* Hero visual card — center and constrain */
  .hero-visual {
    width: 100%;
    align-items: center;
    padding: 0;
  }

  .hero-showcase-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 1rem;
  }

  .hero-img-wrapper {
    height: 200px;
  }

  /* Floating pills — bring inside viewport */
  .floating-pill-top-right {
    top: 0.5rem;
    right: 0.5rem;
    left: auto;
    font-size: 0.7rem;
    padding: 0.35rem 0.65rem;
  }

  .floating-pill-bottom-left {
    bottom: 0.5rem;
    left: 0.5rem;
    right: auto;
    font-size: 0.7rem;
    padding: 0.35rem 0.65rem;
  }

  /* Hero botanical branch — keep inside viewport */
  .hero-botanical-branch {
    top: 0 !important;
    left: -5% !important;
    width: clamp(120px, 35vw, 200px) !important;
    opacity: 0.06 !important;
    transform: rotate(-20deg) scale(1) !important;
  }

  /* Subpage hero branch — keep inside viewport */
  .subpage-hero-branch {
    top: 0 !important;
    left: -5% !important;
    width: clamp(120px, 35vw, 200px) !important;
    opacity: 0.06 !important;
    transform: rotate(-20deg) scale(1) !important;
  }

  /* Footer botanical branch */
  .footer-botanical-branch {
    width: clamp(100px, 28vw, 180px) !important;
    opacity: 0.04 !important;
    bottom: 0 !important;
    right: 0 !important;
  }

  /* Botanical light decorations — reduce and contain */
  .botanical-light-decor {
    opacity: 0.03 !important;
    width: clamp(80px, 22vw, 130px) !important;
  }

  .botanical-light-decor-tl {
    top: 0 !important;
    left: 0 !important;
  }

  .botanical-light-decor-tr {
    top: 0 !important;
    right: 0 !important;
  }

  .botanical-light-decor-bl {
    bottom: 0 !important;
    left: 0 !important;
  }

  .botanical-light-decor-br {
    bottom: 0 !important;
    right: 0 !important;
  }

  /* Scattered botanical items — contain inside sections */
  .botanical-scatter-container {
    overflow: hidden;
  }

  .botanical-item {
    opacity: 0.10 !important;
  }

  .botanical-item-branch {
    width: clamp(100px, 28vw, 160px) !important;
  }

  .botanical-item-fruit {
    width: clamp(60px, 16vw, 90px) !important;
  }

  .botanical-item-kernel {
    width: clamp(40px, 10vw, 60px) !important;
  }

  /* Wave divider at bottom of hero */
  .hero-wave-bottom svg {
    width: 100%;
    height: 40px;
  }
}

/* ==========================================================================
   SUBPAGE HERO (about, products, quality, process, contact)
   ========================================================================== */
@media (max-width: 767px) {
  .products-hero-section {
    padding-top: 6rem;
    padding-bottom: 2rem;
    min-height: auto;
  }

  .page-hero-inner {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .page-hero-h1 {
    font-size: clamp(2rem, 8vw, 2.8rem) !important;
    word-break: break-word;
  }

  .page-hero-desc {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .page-hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero-ctas .btn,
  .page-hero-ctas a {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .hero-stats-row {
    gap: 1.25rem;
  }

  .hero-info-card {
    display: none;
    /* Hide floating absolute-positioned cards that overflow */
  }
}

/* ==========================================================================
   GENERAL SECTIONS — Container & Grid
   ========================================================================== */
@media (max-width: 767px) {
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    overflow: hidden;
  }

  /* Grids collapse to single column below 768px by default */
  .grid-cols-sm-2,
  .grid-cols-sm-3 {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   BRAND INTRO SECTION
   ========================================================================== */
@media (max-width: 767px) {
  .brand-intro-section .grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .category-heading {
    font-size: clamp(1.75rem, 7vw, 2.25rem) !important;
    word-break: break-word;
  }

  .category-img-wrapper {
    aspect-ratio: 16 / 10;
  }
}

/* ==========================================================================
   WHY CHOOSE SECTION — Feature Cards
   ========================================================================== */
@media (max-width: 767px) {
  .why-choose-section .grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }
}

/* ==========================================================================
   PRODUCT CARDS / VARIETIES
   ========================================================================== */
@media (max-width: 767px) {

  .varieties-section .grid,
  .main-category-section .grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  .premium-product-card {
    max-width: 100%;
  }

  .product-media {
    aspect-ratio: 16 / 10;
  }
}

/* ==========================================================================
   GRADE SELECTOR / CASHEW GRADES
   ========================================================================== */
@media (max-width: 767px) {
  .grade-selector-section .grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem;
  }
}

/* ==========================================================================
   TRACEABILITY / QUALITY SECTION
   ========================================================================== */
@media (max-width: 767px) {
  .traceability-section .grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .quality-points-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   SUPPLY CHAIN / HOME PROCESS SECTION
   ========================================================================== */
@media (max-width: 767px) {
  .home-process-section .grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .supply-chain-card {
    max-width: 100%;
  }
}

/* ==========================================================================
   PRE-FOOTER CTA SECTION
   ========================================================================== */
@media (max-width: 767px) {
  .home-cta-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .home-cta-title {
    font-size: clamp(1.75rem, 7vw, 2.25rem) !important;
  }

  .home-cta-sub {
    font-size: 0.95rem;
  }

  .home-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .home-cta-buttons .btn,
  .home-cta-buttons a {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    text-align: center;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
@media (max-width: 767px) {
  .products-site-footer {
    padding-top: 3rem;
    padding-bottom: 2rem;
    overflow: hidden;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .footer-bottom {
    margin-top: 2rem;
  }

  .social-icons {
    flex-wrap: wrap;
  }
}

/* ==========================================================================
   PAGE-SPECIFIC HERO SECTIONS (non-home)
   ========================================================================== */
@media (max-width: 767px) {
  .page-hero {
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
    overflow: hidden;
  }

  .page-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem) !important;
    word-break: break-word;
  }

  .page-hero p {
    font-size: 0.95rem;
    max-width: 100%;
  }
}

/* ==========================================================================
   QUALITY & CERTIFICATIONS PAGE
   ========================================================================== */
@media (max-width: 767px) {
  .quality-card {
    padding: 1.5rem 1.25rem;
  }

  /* quality-page grids */
  .quality-page-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   PROCESS PAGE — Timeline
   ========================================================================== */
@media (max-width: 767px) {
  .timeline-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .timeline-step {
    padding-left: 4rem;
    margin-bottom: 1.5rem;
  }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
@media (max-width: 767px) {

  .contact-grid,
  .grid-cols-lg-contact {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   UNIFIED VALUE / MISSION SECTION
   ========================================================================== */
@media (max-width: 767px) {
  .unified-value-mission-section {
    padding: 3rem 0;
  }

  .unified-mission-card {
    padding: 1.75rem 1.25rem;
    margin-bottom: 2rem;
  }

  .unified-value-mission-section .grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }
}

/* ==========================================================================
   TEXT UTILITIES — Prevent overflow
   ========================================================================== */
@media (max-width: 767px) {

  h1,
  h2,
  h3,
  h4 {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  p {
    overflow-wrap: break-word;
  }

  .products-hero-title {
    font-size: clamp(1.9rem, 7.5vw, 2.75rem) !important;
    word-break: break-word;
  }

  .varieties-heading {
    font-size: clamp(1.75rem, 7vw, 2.4rem) !important;
  }
}

/* ==========================================================================
   IMAGE SAFETY
   ========================================================================== */
@media (max-width: 767px) {
  img {
    max-width: 100% !important;
    height: auto;
  }
}

/* ==========================================================================
   ANIMATION SAFETY — disable translateX on mobile that can overflow
   ========================================================================== */
@media (max-width: 767px) {
  .reveal-left {
    transform: translateY(24px) !important;
  }

  .reveal-right {
    transform: translateY(24px) !important;
  }

  .reveal-left.is-visible,
  .reveal-right.is-visible {
    transform: none !important;
  }
}

/* ==========================================================================
   SMALL MOBILE — 320px–375px additional tightening
   ========================================================================== */
@media (max-width: 400px) {
  .hero-title {
    font-size: clamp(2rem, 10vw, 2.6rem) !important;
  }

  .hero-tagline {
    font-size: 0.95rem !important;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    font-size: 0.875rem;
    padding: 0.7rem 1.25rem;
  }

  .floating-pill {
    font-size: 0.65rem;
    padding: 0.3rem 0.5rem;
  }

  .grade-selector-section .grid {
    grid-template-columns: 1fr !important;
  }

  .hero-variety-pill {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-float-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  animation: whatsappPulse 3s infinite;
}

.whatsapp-float-btn:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.65);
  color: #ffffff;
}

.whatsapp-float-btn svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 767px) {
  .whatsapp-float-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float-btn svg {
    width: 24px;
    height: 24px;
  }
}

/* ==========================================================================
   BULK ORDER CATEGORY CARDS (PREMIUM STYLES)
   ========================================================================== */
.bulk-card-premium {
  background: #ffffff;
  border: 1px solid #d8e3dc;
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(18, 53, 27, 0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.bulk-card-premium:hover {
  transform: translateY(-8px);
  border-color: #f5a623;
  box-shadow: 0 22px 48px rgba(18, 53, 27, 0.12);
}

.bulk-card-img-box {
  position: relative;
  width: 100%;
  height: 220px;
  background: #f7faf7;
  overflow: hidden;
}

.bulk-card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bulk-card-premium:hover .bulk-card-img-box img {
  transform: scale(1.06);
}

.bulk-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(12, 22, 14, 0.88);
  color: #f5a623;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.8rem;
  border: 1px solid rgba(245, 166, 35, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.03em;
  z-index: 2;
}

.bulk-card-content {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bulk-card-meta-tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.bulk-tag-main {
  font-size: 0.75rem;
  font-weight: 700;
  color: #12351b;
  background: #e7f0ea;
  border: 1px solid #d8e3dc;
  padding: 0.25rem 0.7rem;
  border-radius: 9999px;
}

.bulk-tag-sub {
  font-size: 0.75rem;
  font-weight: 700;
  color: #d99212;
  background: #fff8eb;
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 0.25rem 0.7rem;
  border-radius: 9999px;
}

.bulk-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #183b24;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.bulk-card-desc {
  font-size: 0.88rem;
  color: #55635a;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-bulk-inquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #12351b 0%, #1d4a27 100%);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(18, 53, 27, 0.2);
  margin-top: auto;
}

.btn-bulk-inquire:hover {
  background: linear-gradient(135deg, #f7a61f 0%, #d99212 100%);
  color: #12351b;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(245, 166, 35, 0.35);
}

/* ==========================================================================
   BULK ORDER PROCESS (6 STEPS)
   ========================================================================== */
.bulk-step-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #d8e3dc;
  border-radius: 1.5rem;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(18, 53, 27, 0.04);
}

.bulk-step-card:hover {
  transform: translateY(-6px);
  border-color: #f5a623;
  box-shadow: 0 18px 40px rgba(18, 53, 27, 0.1);
}

.bulk-step-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(245, 166, 35, 0.4);
  line-height: 1;
}

.bulk-step-card:hover .bulk-step-badge {
  color: #f5a623;
}

.bulk-step-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #e7f0ea;
  color: #12351b;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.bulk-step-card:hover .bulk-step-icon {
  background: #12351b;
  color: #f5a623;
}

.bulk-step-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #183b24;
  margin-bottom: 0.4rem;
}

.bulk-step-desc {
  font-size: 0.88rem;
  color: #55635a;
  line-height: 1.5;
}