/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-green: #1b5e20;
  --secondary-green: #43a047;
  --light-green: #81c784;
  --accent-gold: #d4af37;
  --light-bg: #f0f8f5;
  --very-light-green: #e8f5f0;
  --text-dark: #1a1a1a;
  --text-light: #555;
  --white: #ffffff;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--very-light-green);
  color: var(--text-dark);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.export-hero-section {
  padding: 60px 0 28px;
  position: relative;
  overflow: hidden;
}

.export-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(129, 199, 132, 0.22), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(212, 175, 55, 0.18), transparent 24%),
    radial-gradient(circle at 70% 82%, rgba(67, 160, 71, 0.16), transparent 28%);
  pointer-events: none;
}

.export-hero-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.60) 0%, rgba(241,248,243,0.72) 52%, rgba(255,248,232,0.62) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 24px;
  padding: 44px 34px;
  box-shadow: 0 24px 60px rgba(27, 94, 32, 0.12);
  overflow: hidden;
}

.export-hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.18), transparent 32%, transparent 68%, rgba(255,255,255,0.14));
  pointer-events: none;
}

.export-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.export-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(67, 160, 71, 0.18), rgba(212, 175, 55, 0.14));
  color: var(--primary-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 8px 20px rgba(27, 94, 32, 0.08);
}

.export-lead {
  max-width: 860px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: #35533b;
}

.export-note {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 15px;
  color: #4b6550;
  font-weight: 500;
}

.export-trust-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.export-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.54), rgba(250,255,251,0.34));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(27, 94, 32, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.export-trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(27, 94, 32, 0.12);
  border-color: rgba(129, 199, 132, 0.34);
}

.export-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(67,160,71,0.24), rgba(212,175,55,0.18));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

.export-trust-item h3 {
  margin: 0 0 6px;
  color: var(--primary-green);
  font-size: 17px;
}

.export-trust-item p {
  margin: 0;
  color: #47604c;
  font-size: 14px;
  line-height: 1.65;
}

.export-hero-action {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.export-page .export-hero-section {
  padding-top: 86px;
  padding-bottom: 34px;
}

.export-page .export-hero-card {
  max-width: 1080px;
  margin: 0 auto;
}

.export-page .export-hero-copy .section-title {
  margin-bottom: 24px;
  font-size: 44px;
}

.export-page .export-lead {
  max-width: 900px;
}

.export-page .export-trust-grid {
  align-items: stretch;
}

.export-page .export-trust-item {
  height: 100%;
}

.export-page .bulk-inquiry {
  padding-top: 18px;
}

.export-page .bulk-inquiry .container {
  max-width: 1080px;
}

.export-page .footer {
  margin-top: 40px;
}

.export-page .office-address {
  line-height: 1.7;
}

.about-page .about-hero-section {
  padding: 92px 0 36px;
  position: relative;
  overflow: hidden;
}

.about-page .about-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(129, 199, 132, 0.22), transparent 30%),
    radial-gradient(circle at 86% 24%, rgba(212, 175, 55, 0.18), transparent 26%),
    radial-gradient(circle at 74% 84%, rgba(67, 160, 71, 0.14), transparent 30%);
  pointer-events: none;
}

.about-page .about-hero-card {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 32px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.62) 0%, rgba(241,248,243,0.74) 52%, rgba(255,248,232,0.62) 100%);
  border: 1px solid rgba(255,255,255,0.44);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 58px rgba(27,94,32,0.12);
}

.about-page .about-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-page .about-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(67, 160, 71, 0.18), rgba(212, 175, 55, 0.14));
  color: var(--primary-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.42);
}

.about-page .about-copy .section-title {
  margin-bottom: 14px;
  font-size: 44px;
}

.about-page .about-copy p {
  color: #36543c;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.about-page .about-detail-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 16px;
}

.about-page .about-detail-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.56), rgba(250,255,251,0.34));
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 14px 28px rgba(27,94,32,0.08);
  min-height: 120px;
}

.about-page .about-detail-card h3 {
  margin: 0 0 8px;
  color: var(--primary-green);
  font-size: 16px;
}

.about-page .about-detail-card p {
  margin: 0;
  color: #45604c;
  line-height: 1.68;
  font-size: 14px;
}

.about-page .footer {
  margin-top: 40px;
}

.about-page .office-address {
  line-height: 1.7;
}

@media (max-width: 768px) {
  .export-hero-card {
    padding: 34px 20px;
    border-radius: 20px;
  }

  .export-trust-grid {
    grid-template-columns: 1fr;
  }

  .export-lead {
    font-size: 15px;
    line-height: 1.75;
  }

  .export-trust-item {
    padding: 18px 16px;
  }

  .export-page .export-hero-copy .section-title {
    font-size: 34px;
    margin-bottom: 18px;
  }

  .export-page .export-hero-section {
    padding-top: 74px;
  }

  .about-page .about-hero-section {
    padding-top: 76px;
  }

  .about-page .about-hero-card {
    padding: 32px 20px;
    border-radius: 20px;
  }

  .about-page .about-copy .section-title {
    font-size: 34px;
  }

  .about-page .about-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  padding: 12px 0;
  transition: var(--transition);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.logo-section {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: var(--white);
    flex-direction: column;
    width: 230px;
    padding: 16px 14px;
    gap: 6px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 3px solid var(--light-green);
    border-radius: 0 0 0 12px;
    z-index: 1001;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    padding: 9px 18px;
  }
  .nav-links a.nav-accent {
    text-align: center;
    margin-top: 4px;
  }
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.logo-section {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}

.logo {
  --brand-logo-size: 74px;
  --logo-gap: 10px;
  display: flex;
  align-items: center;
  gap: var(--logo-gap);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  color: var(--primary-green);
}

.brand-logo {
  width: var(--brand-logo-size);
  height: var(--brand-logo-size);
  object-fit: contain;
  margin: 0;
  padding: 4px;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(236,248,239,0.9));
  border: 1px solid rgba(67,160,71,0.28);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 8px 18px rgba(27,94,32,0.18);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  line-height: 1;
}

.brand-name {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: -0.35px;
  white-space: nowrap;
}

.brand-motto {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: capitalize;
  color: #4d7153;
  white-space: nowrap;
  opacity: 0.9;
}

.tagline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-left: calc(var(--brand-logo-size) + var(--logo-gap));
  font-size: 10.2px;
  color: #426848;
  font-weight: 500;
  letter-spacing: 0.16px;
  line-height: 1.3;
  text-align: left;
  max-width: 420px;
}

.tagline span {
  display: block;
  white-space: nowrap;
}

.tagline span:first-child {
  font-weight: 600;
  color: #36593d;
}

.tagline span:last-child {
  color: var(--secondary-green);
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  flex: 1;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 14px;
  padding: 7px 16px;
  border-radius: 25px;
  border: 1.5px solid transparent;
  background: transparent;
  display: inline-block;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease;
  position: relative;
  letter-spacing: 0.2px;
  line-height: 1;
}

.nav-links a:hover {
  background: rgba(67, 160, 71, 0.1);
  color: var(--primary-green);
  border-color: rgba(67, 160, 71, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(67, 160, 71, 0.15);
}

.nav-links a.active {
  background: rgba(67, 160, 71, 0.16);
  color: var(--primary-green);
  border-color: rgba(67, 160, 71, 0.45);
  box-shadow: 0 7px 18px rgba(67, 160, 71, 0.16);
}

.nav-links a:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Bulk Inquiry — filled accent button */
.nav-links a.nav-accent {
  background: var(--secondary-green);
  color: var(--white);
  border-color: var(--secondary-green);
  font-weight: 600;
}

.nav-links a.nav-accent:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(27, 94, 32, 0.28);
  transform: translateY(-2px);
}

.nav-links a.nav-accent.active {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(27, 94, 32, 0.30);
}

.cart-icon {
  font-size: 24px;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  border-radius: 20px;
  background: var(--light-green);
  color: var(--white);
  font-weight: 600;
  user-select: none;
}

.cart-icon:hover {
  background: var(--secondary-green);
  transform: scale(1.05);
}

.cart-icon span {
  font-size: 12px;
  min-width: 20px;
}

.quote-nav-btn {
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2px;
  box-shadow: 0 8px 20px rgba(27, 94, 32, 0.24);
  transition: var(--transition);
}

.quote-nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(27, 94, 32, 0.30);
}

@media (max-width: 768px) {
  .quote-nav-btn {
    display: none;
  }
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  padding: 15px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: var(--transition);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-btn i {
  font-size: 20px;
}

.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  background-image: url('https://source.unsplash.com/1600x900/?moringa,leaf'), linear-gradient(135deg, rgba(27, 94, 32, 0.85) 0%, rgba(67, 160, 71, 0.85) 100%);
  background-size: cover;
  background-position: center;
  color: var(--white);
  /* subtle glass effect */
  box-shadow: inset 0 0 150px rgba(0,0,0,0.2);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(8, 20, 10, 0.04) 0%, rgba(8, 20, 10, 0.08) 100%);
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><radialGradient id="grad" cx="30%" cy="30%" r="70%"><stop offset="0%" style="stop-color:rgba(129,199,132,0.1)"/><stop offset="100%" style="stop-color:rgba(27,94,32,0)"/></radialGradient></defs><rect width="1200" height="600" fill="url(%23grad)"/></svg>');
  opacity: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  animation: fadeInUp 0.8s ease-out;
  background: rgba(10, 26, 13, 0.12);
  backdrop-filter: blur(1px);
  padding: 40px 30px;
  border-radius: 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.98);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
  line-height: 1.6;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.hero-subtitle-secondary {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 34px;
  color: rgba(255,255,255,0.96);
  font-weight: 500;
  max-width: 820px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  padding: 14px 35px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Poppins', sans-serif;
}
.btn-outline {
  padding: 8px 20px;
  border: 2px solid var(--secondary-green);
  border-radius: 50px;
  color: var(--secondary-green);
  transition: var(--transition);
  text-transform: none;
}
.btn-outline:hover {
  background: var(--secondary-green);
  color: var(--white);
}

/* ===== FORMS ===== */
.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.inquiry-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.inquiry-form .form-field label {
  font-size: 13px;
  font-weight: 600;
  color: #23462b;
  letter-spacing: 0.2px;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid rgba(67, 160, 71, 0.24);
  border-radius: 12px;
  margin-bottom: 0;
  font-size: 16px;
  background: rgba(255,255,255,0.82);
  color: #23432b;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: #5c7463;
  opacity: 0.92;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: rgba(67, 160, 71, 0.65);
  box-shadow: 0 0 0 4px rgba(67,160,71,0.18);
}
.inquiry-form button {
  width: 100%;
  grid-column: 1 / -1;
  margin-top: 6px;
}

.inquiry-form .form-disclaimer {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px;
  color: #496252;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .inquiry-form {
    grid-template-columns: 1fr;
  }
}

.btn-primary {
  background: var(--secondary-green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(67, 160, 71, 0.25);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 5px 15px rgba(67, 160, 71, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-green);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 50px;
  font-size: 18px;
}

.btn-full {
  width: 100%;
  margin-top: 20px;
}

/* ===== TABLES ===== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
table th,
table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}
table th {
  background: var(--light-bg);
}

/* ===== GLOBAL ANIMATIONS ===== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--very-light-green);
  padding: 60px 0;
  border-top: 1px solid rgba(67, 160, 71, 0.1);
  border-bottom: 1px solid rgba(67, 160, 71, 0.1);
}

.credibility-strip .trust-item img {
  max-width: 60px;
  margin-bottom: 10px;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.trust-item {
  text-align: center;
  animation: slideInUp 0.6s ease-out;
}

.trust-icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: inline-block;
  animation: bounce 2s infinite;
}

.trust-item h3 {
  color: var(--primary-green);
  margin-bottom: 8px;
  font-size: 18px;
}

.trust-item p {
  color: var(--text-light);
  font-size: 14px;
}

/* ===== FEATURED PRODUCTS SECTION ===== */
.featured-products {
  padding: 80px 0;
  background: var(--very-light-green);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  text-align: center;
  color: var(--primary-green);
  margin-bottom: 60px;
  position: relative;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--secondary-green), var(--light-green), var(--secondary-green));
  border-radius: 2px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.product-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(67, 160, 71, 0.2);
}

.product-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--light-green), var(--secondary-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  line-height: 0;
  overflow: hidden;
  position: relative;
}
.product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  animation: moveGradient 20s linear infinite;
}

.product-info {
  padding: 25px;
}

.product-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.product-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary-green);
  margin-bottom: 20px;
}

.product-buttons {
  display: flex;
  gap: 10px;
}

.product-buttons button {
  flex: 1;
  padding: 10px;
  font-size: 13px;
  border-radius: 8px;
}

/* ===== TABS SECTION ===== */
.benefits-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(27, 94, 32, 0.05) 0%, rgba(67, 160, 71, 0.05) 100%);
}

.tabs-container {
  margin-top: 50px;
}

.tabs-nav {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-btn {
  padding: 12px 25px;
  border: 2px solid var(--light-green);
  background: var(--white);
  color: var(--primary-green);
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tab-btn.active {
  background: var(--secondary-green);
  color: var(--white);
  border-color: var(--secondary-green);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(27,94,32,0.22);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -7px;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
}

.tab-btn:hover {
  border-color: var(--secondary-green);
  color: var(--secondary-green);
}

.tabs-content {
  background: var(--white);
  border-radius: 15px;
  padding: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.product-page-sections {
  display: grid;
  gap: 26px;
}

.bulk-private-support,
.applications-block,
.export-docs-inline,
.usage-benefits-section,
.nutrition-profiles-section {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(67,160,71,0.16);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(27,94,32,0.08);
}

.support-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.applications-list {
  list-style: none;
  padding: 0;
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.applications-list li {
  position: relative;
  padding-left: 22px;
  color: #2f4f36;
}

.applications-list li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--secondary-green);
  font-weight: 700;
}

.usage-intro {
  color: #35533b;
  line-height: 1.75;
  margin-bottom: 18px;
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.usage-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(239,248,241,0.72));
  border: 1px solid rgba(67,160,71,0.2);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(27,94,32,0.06);
}

.usage-card h3 {
  color: var(--primary-green);
  font-size: 18px;
  margin-bottom: 10px;
}

.usage-card p {
  color: #35533b;
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 8px;
}

.usage-card p strong {
  color: #234d2b;
}

.usage-benefits-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 7px;
}

.usage-benefits-list li {
  position: relative;
  padding-left: 20px;
  color: #2f4f36;
  font-size: 13.5px;
  line-height: 1.55;
}

.usage-benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-green);
  font-weight: 700;
}

.usage-important-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 247, 227, 0.74);
  border: 1px solid rgba(212, 175, 55, 0.34);
  color: #5b4a22;
  font-size: 13.5px;
  line-height: 1.7;
}

.nutrition-subtitle {
  text-align: center;
  max-width: 900px;
  margin: -8px auto 20px;
  color: #35533b;
  font-size: 15px;
  line-height: 1.75;
}

.profiles-heading {
  text-align: center;
  color: var(--primary-green);
  margin: 8px auto 16px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.nutrition-tabs {
  position: sticky;
  top: 78px;
  z-index: 30;
  padding: 10px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,0.76), rgba(243,250,246,0.72));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(67,160,71,0.18);
  box-shadow: 0 12px 28px rgba(27,94,32,0.10);
  transition: padding 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
  transform-origin: top center;
  margin-bottom: 18px;
}

.nutrition-tabs .tab-btn {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(67,160,71,0.26);
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(245,251,247,0.88));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
  padding: 12px 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  min-height: 54px;
}

.nutrition-tabs .tab-btn:hover {
  border-color: rgba(67,160,71,0.45);
  color: var(--primary-green);
  transform: translateY(-1px);
}

.nutrition-tabs .tab-btn.active {
  background: linear-gradient(135deg, var(--secondary-green), #2f8a3a);
  border-color: var(--secondary-green);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(27,94,32,0.24);
}

.nutrition-tabs .tab-btn.active::after {
  bottom: -5px;
}

.nutrition-tabs.is-stuck {
  padding: 8px 10px;
  background: linear-gradient(135deg, rgba(255,255,255,0.88), rgba(244,250,246,0.86));
  border-color: rgba(67,160,71,0.28);
  box-shadow: 0 14px 30px rgba(27,94,32,0.14);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  transform: scale(0.988);
}

.nutrition-tabs.is-stuck .tab-btn {
  padding: 10px 9px;
  font-size: 13px;
  border-width: 1px;
  min-height: 50px;
}

.nutrition-tab-content {
  padding: 26px;
  border-radius: 16px;
  border: 1px solid rgba(67,160,71,0.18);
  background: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(244,250,246,0.80));
  box-shadow: 0 14px 32px rgba(27,94,32,0.10);
}

.nutrition-tab-content.switching {
  animation: enterpriseTabContentIn 0.32s ease;
}

.tab-pane.active {
  animation: enterpriseTabPaneIn 0.34s ease;
}

@keyframes enterpriseTabPaneIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes enterpriseTabContentIn {
  from {
    box-shadow: 0 0 0 rgba(0,0,0,0);
  }
  to {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }
}

.tab-note {
  margin: 14px 0 10px;
  color: #45604b;
  font-size: 13px;
  line-height: 1.65;
}

.nutrition-explainer {
  margin-top: 18px;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(232,245,240,0.82), rgba(248,255,250,0.78));
  border: 1px solid rgba(67,160,71,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.nutrition-explainer h3 {
  color: var(--primary-green);
  margin-bottom: 8px;
  font-size: 20px;
}

.nutrition-disclaimer {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.64);
  border: 1px solid rgba(67,160,71,0.16);
  font-size: 13px;
  color: #4f6654;
  line-height: 1.7;
}

.product-detail-btn {
  margin-top: 8px;
  width: 100%;
}

.featured-products .product-grid {
  grid-template-columns: 1fr;
  max-width: 1000px;
  margin: 0 auto 40px;
  gap: 20px;
}

.featured-products .product-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: start;
  border-radius: 20px;
  overflow: hidden;
  cursor: default;
}

.featured-products .product-card:hover {
  transform: translateY(-6px);
}

.product-media {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.featured-products .product-image {
  height: 220px;
  min-height: 220px;
  max-height: 220px;
  align-self: start;
}

.featured-products .product-card:not(.expanded) .product-media {
  height: 100%;
}

.featured-products .product-card:not(.expanded) .product-image {
  height: 100%;
  min-height: 100%;
  max-height: none;
}

.product-side-panel {
  display: none;
  padding: 14px 14px 16px;
  background: rgba(255,255,255,0.88);
  border-top: 1px solid rgba(67,160,71,0.12);
  border-right: 1px solid rgba(67,160,71,0.12);
  border-bottom: 1px solid rgba(67,160,71,0.12);
}

.featured-products .product-card.expanded .product-side-panel {
  display: block;
  animation: inlineDetailsIn 0.28s ease;
}

.product-side-panel h4 {
  margin: 2px 0 8px;
  color: var(--primary-green);
  font-size: 14px;
}

.product-side-panel ul {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

.product-side-panel li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  color: #43604a;
  font-size: 12.5px;
  line-height: 1.45;
}

.product-side-panel li::before {
  content: '•';
  position: absolute;
  left: 5px;
  color: var(--secondary-green);
}

.featured-products .product-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 24px 26px;
}

.product-detail-meta {
  margin-top: 8px;
  color: #4f6654;
  font-size: 13px;
  line-height: 1.6;
}

.product-inline-detail {
  display: none;
  margin-top: 14px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(67,160,71,0.16);
  box-shadow: 0 8px 22px rgba(27,94,32,0.08);
}

.product-inline-detail.active {
  display: block;
  animation: inlineDetailsIn 0.28s ease;
}

@keyframes inlineDetailsIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-inline-detail h4 {
  color: var(--primary-green);
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.product-inline-detail h4:first-of-type {
  font-size: 16px;
  letter-spacing: 0.2px;
  margin-bottom: 4px;
}

.product-inline-detail h4:nth-of-type(2) {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(67,160,71,0.12);
}

.product-inline-detail p {
  color: #3f5b45;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.product-inline-detail table {
  width: 100%;
  margin: 10px 0 14px;
  font-size: 13px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid rgba(67,160,71,0.16);
  border-radius: 10px;
  background: rgba(255,255,255,0.82);
}

.product-inline-detail th,
.product-inline-detail td {
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(67,160,71,0.1);
}

.product-inline-detail th {
  background: rgba(67,160,71,0.1);
  color: var(--primary-green);
  font-weight: 700;
}

.product-inline-detail tr:last-child td {
  border-bottom: none;
}

.product-inline-detail tr td:first-child,
.product-inline-detail tr th:first-child {
  width: 42%;
  font-weight: 600;
  color: #2f4f35;
}

.product-inline-detail .inline-note {
  font-size: 12.5px;
  color: #4e6653;
  margin: 10px 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(244,250,246,0.78);
  border: 1px solid rgba(67,160,71,0.14);
  line-height: 1.6;
}

.product-inline-detail .btn {
  margin-top: 6px;
  min-width: 210px;
}

.product-card-actions {
  display: flex;
  justify-content: flex-end;
}

.featured-products .product-detail-btn {
  width: auto;
  min-width: 190px;
}

.nutrition-profiles-section {
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  background: linear-gradient(135deg, rgba(255,255,255,0.90), rgba(242,250,245,0.86));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 22px;
  border: 1px solid rgba(67,160,71,0.20);
  box-shadow: 0 14px 36px rgba(27,94,32,0.10);
}

.nutrition-profiles-section.tab-focus {
  border-color: rgba(67,160,71,0.42);
  box-shadow: 0 0 0 4px rgba(67,160,71,0.12), 0 14px 34px rgba(27,94,32,0.10);
}

@media (max-width: 860px) {
  .featured-products .product-card {
    grid-template-columns: 1fr;
  }

  .featured-products .product-image {
    min-height: 210px;
  }

  .product-side-panel {
    border-left: 1px solid rgba(67,160,71,0.12);
  }

  .product-card-actions {
    justify-content: flex-start;
  }

  .featured-products .product-detail-btn {
    min-width: 0;
    width: 100%;
  }

  .product-inline-detail {
    padding: 14px;
  }

  .product-inline-detail h4 {
    font-size: 16px;
  }

  .product-inline-detail tr td:first-child,
  .product-inline-detail tr th:first-child {
    width: 46%;
  }

  .product-inline-detail .btn {
    width: 100%;
    min-width: 0;
  }

  .nutrition-tabs {
    top: 72px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    gap: 8px;
    padding: 8px;
  }

  .nutrition-tabs .tab-btn {
    white-space: nowrap;
    flex: 0 0 auto;
    min-height: 44px;
    padding: 10px 14px;
  }

  .nutrition-tabs.is-stuck {
    transform: none;
    padding: 9px 8px;
  }
}

.tab-pane {
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.tab-pane.active {
  display: block;
}

.tab-pane h3 {
  color: var(--primary-green);
  font-size: 25px;
  margin-bottom: 18px;
  line-height: 1.35;
}

.nutrition-tab-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(67,160,71,0.18);
  margin: 10px 0 8px;
  background: rgba(255,255,255,0.75);
}

.nutrition-tab-content th,
.nutrition-tab-content td {
  padding: 11px 13px;
  border-bottom: 1px solid rgba(67,160,71,0.10);
  text-align: left;
}

.nutrition-tab-content th {
  background: rgba(67,160,71,0.10);
  color: var(--primary-green);
  font-weight: 700;
}

.nutrition-tab-content tr:last-child td {
  border-bottom: none;
}

.benefits-list, .who-list, .process-list {
  list-style: none;
}

.benefits-list li, .who-list li {
  padding: 12px 0;
  color: var(--text-dark);
  font-size: 16px;
  border-bottom: 1px solid rgba(67, 160, 71, 0.1);
}

.benefits-list li:last-child, .who-list li:last-child {
  border-bottom: none;
}

.process-list {
  counter-reset: step-counter;
}

.process-list li {
  counter-increment: step-counter;
  margin-bottom: 20px;
  padding-left: 35px;
  position: relative;
}

.process-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--secondary-green);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
}

.usage-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.usage-item {
  background: linear-gradient(135deg, var(--light-green), var(--secondary-green));
  padding: 25px;
  border-radius: 12px;
  color: var(--white);
  text-align: center;
}

.usage-item h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

/* ===== PROCESS STORY ===== */

/* horizontal process steps for B2B homepage */
.horizontal-process {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}
.process-step {
  flex: 1 1 calc(16% - 10px);
  background: var(--white);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  font-weight: 600;
  color: var(--primary-green);
  font-size: 14px;
}

/* lists used on B2B sections */
.b2b-benefits {
  padding: 60px 0;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.03);
}
.b2b-list,
.industry-list {
  list-style: none;
  padding-left: 0;
  column-count: 1;
}
@media (min-width: 768px) {
  .b2b-list,
  .industry-list {
    column-count: 2;
  }
}
.b2b-list li,
.industry-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 24px;
}
.b2b-list li:before,
.industry-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-green);
}

.bulk-inquiry .small-text {
  font-size: 13px;
  color: #395840;
  margin-top: 12px;
  text-align: center;
  font-weight: 600;
  background: rgba(255,255,255,0.52);
  border: 1px solid rgba(67,160,71,0.2);
  border-radius: 999px;
  display: inline-block;
  padding: 6px 14px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.bulk-inquiry {
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.bulk-inquiry::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(129,199,132,0.18), transparent 32%),
    radial-gradient(circle at 88% 82%, rgba(67,160,71,0.14), transparent 30%);
  pointer-events: none;
}

.bulk-inquiry .container {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(255,255,255,0.58) 0%, rgba(241,248,243,0.68) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.44);
  border-radius: 24px;
  padding: 40px 26px;
  box-shadow: 0 22px 56px rgba(27,94,32,0.10);
}

.bulk-inquiry .section-title {
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.3px;
  color: #1f5b2b;
  text-shadow: 0 8px 24px rgba(27, 94, 32, 0.12);
}

.bulk-inquiry .section-title::after {
  content: '';
  display: block;
  width: 86px;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(67,160,71,0.2), rgba(67,160,71,0.9), rgba(212,175,55,0.8));
}

.bulk-inquiry .bulk-reassurance {
  max-width: 860px;
  margin: 0 auto 20px;
  color: #31513a;
  text-align: center;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
  padding: 10px 14px;
  background: rgba(255,255,255,0.48);
  border: 1px solid rgba(255,255,255,0.46);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.inquiry-trust-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 auto 18px;
}

.inquiry-trust-row span {
  background: rgba(7, 22, 10, 0.56);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.16);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* ===== PREMIUM BULK INQUIRY FORM POLISH ===== */
.bulk-inquiry .container {
  background:
    linear-gradient(140deg, rgba(255,255,255,0.64) 0%, rgba(241,248,243,0.78) 55%, rgba(255,249,235,0.62) 100%);
  border: 1px solid rgba(255,255,255,0.56);
  box-shadow: 0 28px 64px rgba(27,94,32,0.14);
}

.inquiry-form.glass-form {
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(67,160,71,0.18);
  border-radius: 18px;
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 10px 24px rgba(27,94,32,0.08);
}

.inquiry-form.glass-form .form-field {
  background: linear-gradient(135deg, rgba(255,255,255,0.86), rgba(247,252,248,0.7));
  border: 1px solid rgba(67,160,71,0.16);
  border-radius: 12px;
  padding: 10px 10px 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.inquiry-form.glass-form .form-field:hover {
  border-color: rgba(67,160,71,0.3);
  box-shadow: 0 8px 16px rgba(27,94,32,0.08);
  transform: translateY(-1px);
}

.inquiry-form.glass-form .form-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  color: #2a5633;
}

.inquiry-form.glass-form input {
  border: 1px solid rgba(67,160,71,0.22);
  background: rgba(255,255,255,0.92);
  border-radius: 10px;
  font-size: 15px;
  padding: 12px 13px;
}

.inquiry-form.glass-form input:focus {
  border-color: rgba(67,160,71,0.72);
  box-shadow: 0 0 0 4px rgba(67,160,71,0.16), 0 6px 12px rgba(27,94,32,0.10);
}

.inquiry-form.glass-form .btn-primary {
  margin-top: 4px;
  border-radius: 14px;
  padding: 15px 22px;
  letter-spacing: 0.45px;
  background: linear-gradient(135deg, #43a047, #1b5e20);
  box-shadow: 0 14px 26px rgba(27,94,32,0.24);
}

.inquiry-form.glass-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(27,94,32,0.28);
}

.inquiry-form .form-disclaimer {
  margin-top: 2px;
  font-size: 11.5px;
  color: #4f6654;
}

.bulk-inquiry .small-text {
  margin-top: 14px;
  font-size: 12.5px;
  letter-spacing: 0.2px;
}

@media (max-width: 768px) {
  .bulk-inquiry {
    padding: 58px 0;
  }

  .bulk-inquiry .container {
    border-radius: 18px;
    padding: 30px 16px;
  }

  .inquiry-form.glass-form {
    padding: 12px;
    border-radius: 14px;
  }
}

/* ===== PRODUCT SNAPSHOT STYLING ===== */
.product-snapshot {
  padding: 80px 0;
  background: var(--very-light-green);
}
.product-snapshot .container {
  background: var(--white);
  border-radius: 15px;
  padding: 40px 20px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.snapshot-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  justify-content: center;
}

.snapshot-specs {
  flex: 1;
  min-width: 300px;
}

.snapshot-cta {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-bullets {
  list-style: none;
  margin: 0;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(67,160,71,0.16);
  box-shadow: 0 8px 20px rgba(27,94,32,0.07);
}

.spec-bullets li {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  gap: 10px;
  align-items: baseline;
  padding: 10px 12px;
  border-bottom: 1px dashed rgba(67,160,71,0.18);
}

.spec-bullets li:last-child {
  border-bottom: none;
}

.spec-label {
  font-weight: 600;
  color: var(--primary-green);
}

.spec-value {
  color: #365239;
  font-weight: 500;
}

@media (max-width: 700px) {
  .spec-bullets li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* ===== B2B BENEFITS BOX ===== */
.b2b-benefits {
  padding: 60px 0;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.03);
}
.process-story {
  padding: 80px 0;
}

.story-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  position: relative;
}

.story-item {
  background: var(--white);
  padding: 40px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
}

.story-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(67, 160, 71, 0.15);
}

.story-number {
  width: 50px;
  height: 50px;
  background: var(--secondary-green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  margin: -25px auto 15px;
  text-align: center;
}

.story-item h3 {
  color: var(--primary-green);
  margin-bottom: 12px;
  font-size: 18px;
}

.story-item p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(27, 94, 32, 0.05) 0%, rgba(67, 160, 71, 0.05) 100%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.review-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border-left: 4px solid var(--secondary-green);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(67, 160, 71, 0.15);
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.review-stars {
  font-size: 18px;
  margin-bottom: 0;
}

.verified-chip {
  background: rgba(67,160,71,0.12);
  color: #1f6f33;
  border: 1px solid rgba(67,160,71,0.25);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  white-space: nowrap;
}

.review-text {
  color: var(--text-dark);
  margin-bottom: 15px;
  font-style: normal;
  line-height: 1.6;
  font-size: 14px;
}

.review-author {
  color: var(--secondary-green);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 10px;
}

.review-meta {
  margin: 0;
  padding-left: 18px;
}

.review-meta li {
  color: #44604a;
  font-size: 12.5px;
  margin-bottom: 4px;
}

.reviews-note {
  text-align: center;
  margin-top: 18px;
  color: #4c6652;
  font-size: 12.5px;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 15px;
}

.final-cta p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h3 {
  color: var(--primary-green);
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.about-content p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-content ul {
  list-style: none;
  margin-left: 0;
}

.about-content li {
  padding: 10px 0;
  color: var(--text-dark);
  font-size: 16px;
  padding-left: 30px;
  position: relative;
}

.about-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-green);
  font-weight: 700;
  font-size: 18px;
}

/* ===== MODAL STYLES ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s;
}

.modal-content {
  background: var(--white);
  margin: 5vh auto;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 550px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: slideIn 0.3s ease-out;
}

.modal-content h2 {
  color: var(--primary-green);
  margin-bottom: 25px;
  font-size: 28px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close:hover {
  color: var(--secondary-green);
}

.cart-items {
  margin-bottom: 25px;
  max-height: 400px;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid rgba(67, 160, 71, 0.08);
  transition: background 0.2s ease;
}

.cart-item:hover {
  background: rgba(67, 160, 71, 0.03);
  border-radius: 8px;
}

.cart-item-info h4 {
  color: var(--primary-green);
  margin-bottom: 5px;
}

.cart-item-price {
  font-weight: 700;
  color: var(--secondary-green);
  font-size: 16px;
}

.cart-summary {
  background: var(--very-light-green);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 25px;
  border: 1px solid rgba(67, 160, 71, 0.15);
}

.cart-summary h3 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
  padding: 0 5px;
}

.cart-summary h3.total {
  border-top: 2px solid rgba(67, 160, 71, 0.2);
  border-bottom: 2px solid rgba(67, 160, 71, 0.2);
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: 15px;
  font-size: 20px;
  color: var(--primary-green);
  font-weight: 700;
}

.empty-cart {
  text-align: center;
  padding: 30px 20px;
  color: var(--text-light);
  font-size: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: #0d2818;
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: var(--light-green);
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.footer-brand-name {
  display: block;
  line-height: 1;
  font-size: 24px;
  font-weight: 700;
  color: var(--light-green);
  letter-spacing: -0.2px;
}

.footer-brand-motto {
  display: block;
  line-height: 1;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.9px;
  text-transform: capitalize;
  color: rgba(232, 245, 240, 0.86);
}

.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(236,248,239,0.86));
  border: 1px solid rgba(129,199,132,0.34);
  border-radius: 14px;
  margin: 0;
  padding: 3px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 8px 16px rgba(0,0,0,0.16);
}

.footer-tagline-block {
  margin-top: 6px;
}

.footer-line {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 6px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .logo {
    --brand-logo-size: 58px;
    --logo-gap: 8px;
    gap: var(--logo-gap);
  }

  .brand-logo {
    width: var(--brand-logo-size);
    height: var(--brand-logo-size);
  }

  .brand-name {
    font-size: 24px;
  }

  .brand-motto {
    font-size: 9px;
    letter-spacing: 0.85px;
  }

  .tagline {
    margin-left: calc(var(--brand-logo-size) + var(--logo-gap));
    font-size: 8.8px;
    letter-spacing: 0.1px;
    line-height: 1.28;
    gap: 1px;
  }

  .footer-logo {
    width: 40px;
    height: 40px;
  }

  .footer-brand-name {
    font-size: 20px;
  }

  .footer-brand-motto {
    font-size: 8.5px;
    letter-spacing: 0.7px;
  }

  .footer-line {
    font-size: 13px;
  }
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-tagline {
  font-style: normal;
  color: var(--light-green);
  font-weight: 600;
  margin-bottom: 0;
}

.footer-section a {
  color: var(--light-green);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(129, 199, 132, 0.2);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes moveGradient {
  0% { transform: translate(0, 0); }
  100% { transform: translate(20px, 20px); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .nav-links {
    gap: 25px;
    font-size: 14px;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .tabs-content {
    padding: 30px 20px;
  }
  
  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
    padding: 12px 16px;
    font-size: 12px;
  }
  
  .final-cta h2 {
    font-size: 36px;
  }
  
  .story-timeline {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Cart Page Mobile */
  .cart-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* mobile: shrink qty column */
  .cart-item-qty {
    order: 3;
  }
  .cart-header h1 {
    font-size: 32px;
  }

  .cart-page .cart-item {
    grid-template-columns: 80px 1fr 120px 80px 80px;
    gap: 15px;
  }

  .cart-item-image {
    width: 80px;
    height: 80px;
  }

  .cart-item-price {
    display: none;
  }

  .cart-item-details {
    display: grid;
    grid-template-columns: 1fr 100px;
    align-items: start;
    gap: 10px;
  }

  .cart-item-details h4 {
    grid-column: 1 / -1;
    font-size: 14px;
  }

  .cart-item-details p {
    font-size: 13px;
  }

  .cart-item-actions {
    grid-column: 1 / -1;
    margin-top: 10px;
  }

  .order-summary {
    position: static;
    margin-top: 20px;
  }

  .promo-section {
    flex-direction: column;
  }

  .promo-section input,
  .promo-section button {
    width: 100%;
  }

  .promo-hint {
    font-size: 11px;
  }

  .order-offer-badge {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .empty-cart {
    padding: 60px 20px;
  }

  .empty-cart-icon {
    font-size: 60px;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 80px 0;
  background: var(--light-bg);
}
.testimonials h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  text-align: center;
  color: var(--primary-green);
  margin-bottom: 50px;
}
.testimonial-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}
.testimonial-slider::-webkit-scrollbar {
  height: 6px;
}
.testimonial-slider::-webkit-scrollbar-track {
  background: transparent;
}
.testimonial-slider::-webkit-scrollbar-thumb {
  background: var(--secondary-green);
  border-radius: 3px;
}
.testimonial {
  flex: 0 0 300px;
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  scroll-snap-align: center;
}
.testimonial p {
  font-style: italic;
  margin-bottom: 15px;
}
.testimonial span {
  font-weight: 600;
  color: var(--secondary-green);
}

/* scroll-to-top button */
.scroll-top {
  position: fixed;
  bottom: 60px;
  right: 30px;
  background: var(--secondary-green);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(67,160,71,0.3);
  transition: var(--transition);
  z-index: 1000;
}
.scroll-top.show {
  display: flex;
}
.scroll-top:hover {
  transform: translateY(-3px) scale(1.1);
}


.tab-content.active {
  display: block;
}

/* ===== PHONE-SPECIFIC (NARROW) ADJUSTMENTS ===== */
@media (max-width: 480px) {
  /* Stack the cart layout vertically for small phones */
  .cart-layout {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  /* Make order summary flow below items and span full width */
  .order-summary-wrapper,
  .order-summary {
    width: 100%;
    position: static;
    margin-top: 8px;
  }

  /* Compact the item row into a two-column grid: image + content */
  .cart-page .cart-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto;
    gap: 8px 12px;
    align-items: center;
    padding: 12px;
  }

  .cart-item-image {
    width: 64px;
    height: 64px;
    grid-row: 1 / span 2;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
  }

  .cart-item-details {
    grid-column: 2 / -1;
    grid-row: 1;
    display: block;
  }

  .cart-item-details h4 { font-size: 15px; margin-bottom: 6px; }
  .cart-item-details p { font-size: 13px; color: #4b4b4b; }

  .cart-item-qty {
    grid-column: 2 / -1;
    grid-row: 2;
  }

  .cart-item-price {
    grid-column: 2 / -1;
    font-weight: 700;
    margin-top: 6px;
  }

  .cart-item-actions {
    grid-column: 2 / -1;
    justify-self: start;
    margin-top: 6px;
  }

  .qty-control {
    display: inline-flex;
    gap: 8px;
    align-items: center;
  }

  .qty-control button {
    padding: 8px 10px;
    font-size: 18px;
    border-radius: 6px;
  }

  .qty-control input {
    width: 56px !important;
    padding: 6px;
    font-size: 15px;
  }

  /* Make summary buttons full width for easy tapping */
  .btn-checkout, .btn-checkout-email, .btn-continue {
    width: 100%;
    display: block;
    box-sizing: border-box;
  }

  /* Reduce paddings and font sizes a bit to fit narrow screens */
  .cart-header h1 { font-size: 26px; }
  .cart-count { font-size: 13px; }
  .promo-section input, .promo-section button { font-size: 14px; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* custom additional styles */

/* ===== ANIMATION SLIDER ===== */
.animation-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
  opacity: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  filter: brightness(1) contrast(1.06) saturate(1.1);
}

/* ===== CART PAGE ===== */
.cart-page {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--very-light-green) 0%, #e0f2f1 100%);
  min-height: 100vh;
  color: var(--text-dark);
}

.cart-page h1 {
  background: -webkit-linear-gradient(45deg, var(--primary-green), var(--secondary-green));
  background: linear-gradient(45deg, var(--primary-green), var(--secondary-green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


.cart-page .container {
  max-width: 1200px;
}

.cart-header {
  margin-bottom: 50px;
  text-align: left;
}

.cart-header h1 {
  color: var(--primary-green);
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 5px;
  font-weight: 700;
}

.cart-count {
  color: var(--text-light);
  font-size: 16px;
  margin: 0;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  align-items: start;
}

.cart-items-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-page .cart-items {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 0;
  padding: 0;
}

.cart-page .cart-item {
  display: grid;
  grid-template-columns: 100px 1fr 120px 80px 80px;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.cart-page .cart-item:last-child {
  border-bottom: none;
}

.cart-page .cart-item:hover {
  background: rgba(67, 160, 71, 0.02);
}

.cart-item-image {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--very-light-green);
}

.cart-item-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-item-details h4 {
  color: var(--primary-green);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.cart-item-details p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

.cart-item-qty {
  text-align: center;
}

.cart-item-price {
  font-weight: 700;
  color: var(--secondary-green);
  font-size: 18px;
  text-align: center;
}

.cart-item-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 4px; /* smaller spacing between buttons and input */
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  overflow: hidden;
  background: white;
  justify-content: center;
}

.qty-control button {
  background: var(--very-light-green);
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-green);
  transition: all 0.2s ease;
}

.qty-control button:hover {
  background: var(--light-green);
  color: white;
}

.qty-control input {
  width: 32px;
  text-align: center;
  border: none;
  font-weight: 600;
  padding: 0 2px; /* tighten padding */
}

.remove-btn {
  background: #ff4757;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.remove-btn:hover {
  background: #ff3838;
  transform: scale(1.05);
}

.empty-cart {
  background: white;
  border-radius: 12px;
  padding: 60px 30px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  color: var(--text-light);
  font-size: 18px;
}

.order-summary-wrapper {
  position: sticky;
  top: 100px;
}

.order-summary {
  background: linear-gradient(135deg, var(--light-green), var(--very-light-green));
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  color: var(--primary-green);
}

.order-summary h3 {
  color: var(--primary-green);
}

.order-summary h3 {
  color: var(--primary-green);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--very-light-green);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark);
  font-size: 14px;
  margin-bottom: 12px;
  padding: 8px 0;
}

.summary-row span:last-child {
  font-weight: 600;
  color: var(--primary-green);
}

.summary-row .free {
  color: var(--secondary-green);
  font-weight: 600;
}

.summary-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin: 12px 0;
}

.summary-row.total {
  font-size: 16px;
  margin-bottom: 20px;
  padding: 12px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.summary-row.total span:first-child {
  font-weight: 700;
}

.summary-row.total span:last-child {
  font-size: 24px;
  color: var(--secondary-green);
}

.btn-checkout {
  width: 100%;
  padding: 18px;
  margin-bottom: 12px;
  font-weight: 700;
  border-radius: 8px;
  background: var(--secondary-green);
  color: white;
  box-shadow: 0 4px 12px rgba(67,160,71,0.3);
}

.btn-checkout:hover {
  background: var(--primary-green);
  transform: translateY(-2px);
}

.btn-checkout-email {
  width: 100%;
  padding: 15px;
  margin-bottom: 12px;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid var(--secondary-green);
  background: #ffffff;
  color: var(--secondary-green);
  box-shadow: 0 3px 10px rgba(67,160,71,0.12);
}

.btn-checkout-email:hover {
  background: var(--very-light-green);
  color: var(--primary-green);
  border-color: var(--primary-green);
  transform: translateY(-2px);
}

.checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-continue {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  text-align: center;
  display: block;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid var(--primary-green);
  background: white;
  color: var(--primary-green);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-continue:hover {
  background: var(--very-light-green);
  transform: translateY(-2px);
}

.trust-info {
  background: var(--very-light-green);
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-dark);
}

.trust-info p {
  margin: 6px 0;
  padding: 4px 0;
}

/* ===== ENHANCED CART FEATURES ===== */
.order-offer-badge {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.discount-label {
  font-weight: 700;
  font-size: 13px;
}

.savings-label {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.delivery-info {
  background: #f0f9f5;
  border-left: 3px solid var(--secondary-green);
  padding: 12px 14px;
  border-radius: 6px;
  margin: 16px 0;
  font-size: 13px;
  color: var(--text-dark);
}

.delivery-info p {
  margin: 0;
  font-weight: 500;
}

.promo-section {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.promo-input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.promo-input:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

.btn-promo {
  padding: 10px 16px;
  background: var(--light-green);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s ease;
}

.btn-promo:hover {
  background: var(--secondary-green);
  transform: translateY(-2px);
}

.promo-msg {
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 6px;
  margin: 8px 0;
  text-align: center;
}

.promo-msg.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.promo-msg.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.promo-hint {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin: 8px 0 0 0;
  padding: 0;
  word-break: break-all;
}

.empty-cart {
  background: white;
  border-radius: 12px;
  padding: 80px 30px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  color: var(--text-light);
}

.empty-cart-icon {
  font-size: 80px;
  margin-bottom: 20px;
  display: block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.empty-cart h3 {
  color: var(--primary-green);
  font-size: 26px;
  margin-bottom: 10px;
}

.empty-cart p {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 30px;
}

.empty-recommendations {
  margin-top: 30px;
}

.quick-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.quick-links a {
  padding: 8px 16px;
  background: var(--very-light-green);
  color: var(--primary-green);
  text-decoration: none;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.quick-links a:hover {
  background: var(--light-green);
  color: white;
  transform: translateY(-2px);
}

footer {
  padding: 40px;
  text-align: center;
  background: #e8f5ee;
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(67,160,71,0.8);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
  transition: transform 0.15s ease-out, background 0.15s ease-out;
  z-index: 9999;
  mix-blend-mode: difference;
}

.custom-cursor.active {
  transform: translate(-50%, -50%) scale(1.2);
  background: rgba(67,160,71,0.1);
}

/* ===== CERTIFICATIONS SECTION ===== */
.certifications-section {
  padding: 70px 0;
  background: var(--white);
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 32px;
}

.certs-grid .cert-last-centre {
  grid-column: 2 / 4;
  max-width: 260px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 1024px) {
  .certs-grid { grid-template-columns: repeat(3, 1fr); }
  .certs-grid .cert-last-centre { grid-column: 1 / -1; max-width: 260px; }
}
@media (max-width: 680px) {
  .certs-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .certs-grid .cert-last-centre { grid-column: 1 / -1; max-width: 220px; }
}

.cert-card {
  background: var(--white);
  border: 1.5px solid #d8eed8;
  border-radius: 18px;
  padding: 26px 14px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 14px rgba(27,94,32,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 34px rgba(27,94,32,0.16);
  border-color: var(--secondary-green);
}

.cert-logo {
  width: 86px;
  height: 86px;
  margin-bottom: 14px;
  flex-shrink: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(244,249,246,0.88));
  border: 1px solid rgba(67,160,71,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cert-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cert-logo .cert-logo-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.cert-logo.logo-fallback::after {
  content: attr(data-fallback);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: 0.5px;
}

.cert-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 5px;
  line-height: 1.3;
}

.cert-desc {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.45;
  flex: 1;
}

.btn-cert-view {
  border: 1.5px solid var(--secondary-green);
  color: var(--secondary-green);
  background: transparent;
  padding: 6px 13px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  pointer-events: none;
}

.cert-card:hover .btn-cert-view {
  background: var(--secondary-green);
  color: var(--white);
}

.cert-card.cert-lab {
  background: linear-gradient(135deg, #f1f9f4, #e6f4eb);
  border-color: var(--light-green);
}

.cert-card.cert-lab:hover {
  border-color: var(--primary-green);
}

.cert-lab-btn {
  border-color: var(--primary-green) !important;
  color: var(--primary-green) !important;
}

.cert-card.cert-lab:hover .cert-lab-btn {
  background: var(--primary-green) !important;
  color: var(--white) !important;
}

.certs-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
  margin-top: -6px;
  margin-bottom: 8px;
}

/* ===== PRODUCT USAGE LIBRARY ===== */
.usage-library {
  margin-top: 10px;
}

.usage-intro {
  text-align: center;
  color: var(--text-light);
  max-width: 920px;
  margin: 0 auto 24px;
  font-size: 15px;
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 20px;
}

.usage-card {
  background: #ffffff;
  border: 1px solid #dceddc;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 3px 14px rgba(27, 94, 32, 0.06);
}

.usage-card h3 {
  font-size: 20px;
  color: var(--primary-green);
  margin-bottom: 10px;
}

.usage-card p {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.usage-card ul {
  margin-top: 8px;
  padding-left: 18px;
}

.usage-card li {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 5px;
}

.usage-note {
  margin-top: 18px;
  background: #f5fbf7;
  border-left: 4px solid var(--secondary-green);
  border-radius: 10px;
  padding: 14px 16px;
}

.usage-note p {
  margin: 0;
  font-size: 13px;
  color: #355139;
}

/* ===== FAQ PAGE ===== */
.faq-hero {
  margin-top: 78px;
  padding: 70px 0 30px;
  background: linear-gradient(135deg, rgba(27,94,32,0.9), rgba(67,160,71,0.85));
  color: var(--white);
  text-align: center;
}

.faq-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  margin-bottom: 10px;
}

.faq-hero p {
  max-width: 900px;
  margin: 0 auto;
  opacity: 0.95;
  font-size: 16px;
}

.faq-wrapper {
  padding: 40px 0 70px;
}

.faq-category {
  background: var(--white);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 5px 22px rgba(0,0,0,0.06);
}

.faq-category h2 {
  color: var(--primary-green);
  font-size: 28px;
  margin-bottom: 14px;
}

.faq-item {
  border: 1px solid #dbeadf;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fcfffc;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 15px 16px;
  font-weight: 600;
  color: #214d2a;
  position: relative;
  padding-right: 40px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 14px;
  top: 12px;
  font-size: 22px;
  color: var(--secondary-green);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-answer {
  padding: 0 16px 14px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}

.faq-answer p {
  margin: 0;
}

/* ===== PREMIUM TRUST POLISH ===== */
body {
  background:
    radial-gradient(circle at 10% 10%, rgba(129,199,132,0.12), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(67,160,71,0.08), transparent 30%),
    var(--very-light-green);
}

.navbar {
  background: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 10px 32px rgba(27,94,32,0.10);
}

.hero-content {
  background: rgba(13, 35, 17, 0.10);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  max-width: 900px;
  margin: 0 auto;
}

.hero-title,
.hero-subtitle,
.hero-assurance {
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.hero-trust-pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 8px 0 16px;
}

.hero-trust-pills span {
  background: rgba(7, 22, 10, 0.56);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.16);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-assurance {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.94);
}

.trust-metrics {
  padding: 20px 0 8px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 14px;
}

.metric-card {
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 16px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(27,94,32,0.08);
}

.metric-card h3 {
  font-size: 30px;
  color: var(--primary-green);
  margin-bottom: 6px;
  line-height: 1;
}

.metric-card p {
  font-size: 13px;
  color: #38553f;
}

.cert-card,
.product-card,
.review-card,
.story-item,
.faq-category,
.order-summary {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.55);
}

.process-step,
.b2b-list li,
.industry-list li {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.52);
  border-radius: 10px;
  padding: 10px 12px 10px 30px;
  box-shadow: 0 4px 14px rgba(27,94,32,0.06);
}

.snapshot-subtext,
.section-subline {
  text-align: center;
  max-width: 860px;
  margin: -30px auto 24px;
  color: #38553f;
  font-weight: 500;
}

.export-docs-support {
  max-width: 760px;
  margin: 22px auto 0;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(67,160,71,0.18);
  border-radius: 14px;
  padding: 18px 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(27,94,32,0.08);
}

.export-docs-support h3 {
  color: var(--primary-green);
  margin-bottom: 10px;
  text-align: center;
}

.export-docs-support ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.export-docs-support li {
  padding-left: 20px;
  position: relative;
  color: #38553f;
}

.export-docs-support li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-green);
  font-weight: 700;
}

.final-cta {
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.18), transparent 35%), radial-gradient(circle at 85% 80%, rgba(255,255,255,0.16), transparent 30%);
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }
}

@media (max-width: 680px) {
  .hero-trust-pills span {
    font-size: 11px;
    padding: 6px 11px;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .metric-card h3 {
    font-size: 26px;
  }
}

/* ===== DETAILED PROCESS CONTENT ===== */
.process-intro {
  max-width: 760px;
  margin: -30px auto 22px;
  text-align: center;
  color: #365239;
  font-size: 14px;
}

.horizontal-process .process-step {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  text-align: left;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(67,160,71,0.14);
  box-shadow: 0 5px 14px rgba(27,94,32,0.06);
}

.horizontal-process .process-step h3 {
  color: var(--primary-green);
  font-size: 14px;
  margin: 0;
}

.horizontal-process .process-step p {
  margin: 0;
  color: #3c5740;
  font-size: 12.5px;
  line-height: 1.45;
}

.process-note {
  margin-top: 14px;
  text-align: center;
  color: #3d5a41;
  font-size: 12.5px;
}

@media (max-width: 900px) {
  .horizontal-process .process-step {
    text-align: center;
  }
}

@media (max-width: 900px) {
  .usage-grid {
    grid-template-columns: 1fr;
  }
}
