@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,600&display=swap');

/* ═══════════════════════════════════════
   DESIGN TOKENS — DARK MODE (default)
═══════════════════════════════════════ */
:root {
  --bg-base: #0d110d;
  --bg-surface: #141a14;
  --bg-surface-2: #1c241c;
  --text-primary: #edf2ed;
  --text-secondary: #8a9e8a;
  --brand-green: #5aad6a;
  --brand-orange: #f09341;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.15);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══════════════════════════════════════
   LIGHT MODE OVERRIDES
═══════════════════════════════════════ */
body.light-mode {
  --bg-base: #f6f8f6;
  --bg-surface: #ffffff;
  --bg-surface-2: #edf2ed;
  --text-primary: #151e15;
  --text-secondary: #4e644e;
  --brand-green: #2a6e38;
  --brand-orange: #c96d1e;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.2);
  --shadow: 0 4px 24px rgba(39, 90, 45, 0.1);
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background 0.4s var(--ease), color 0.3s ease;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

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

img {
  display: block;
  max-width: 100%;
}

/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
}

@media (min-width:768px) {
  .container {
    padding: 0;
  }
}

.section {
  padding: clamp(5rem, 8vw, 8rem) 0;
  border-top: 1px solid var(--border);
}

.section-alt {
  background: var(--bg-surface);
}

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

.desktop-only {
  display: none;
}

@media (min-width:1024px) {
  .desktop-only {
    display: inline-flex;
  }
}

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  /* Removed transition to prevent 'shaking' on click/scroll class toggle */
  backface-visibility: hidden;
  transform: translateZ(0);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brand-green);
}

.logo img {
  height: 46px;
  width: auto;
}

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

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

.nav-link {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--brand-green);
}

.mobile-menu-btn {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
}

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

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--brand-green);
  color: #fff;
}

.btn-primary:hover {
  filter: brightness(1.12);
  /* Removed translateY to prevent jitter on click */
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: var(--brand-orange);
  color: #fff;
}

.btn-secondary:hover {
  filter: brightness(1.1);
  /* Removed translateY to prevent jitter on click */
}

.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--brand-green);
  color: var(--brand-green);
}

/* ═══════════════════════════════════════
   MOBILE MENU
═══════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-surface);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu .nav-link {
  font-size: 1.75rem;
  color: var(--text-primary);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  background: var(--bg-surface);
  background: linear-gradient(90deg, rgba(10, 31, 10, 1), rgba(26, 58, 26, 0.05)), url(./products/hero_home.png) center / cover no-repeat;
  display: flex;
  align-items: center;
  background-size: cover;
}

.home_global_export {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(./products/bg.png) center / cover no-repeat;
  display: flex;
  align-items: center;
  background-size: cover;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}

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

.hero-tag {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  border: 1.5px solid var(--brand-orange);
  color: var(--brand-orange);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.hero-title span {
  color: var(--brand-green);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-stat strong {
  display: block;
  font-size: 1.75rem;
  font-family: var(--font-heading);
  color: var(--brand-green);
}

.hero-stat span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-img-placeholder {
  position: relative;
  aspect-ratio: 5/4;
  background: linear-gradient(135deg, #1a2a1a, #2a1a0a);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.powder-badge {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ═══════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════ */
.section-header {
  margin-bottom: 4rem;
  text-align: center;
}

.section-title {
  font-size: clamp(2.25rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-title span {
  color: var(--brand-green);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   PROCESS CARDS
═══════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.process-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.process-card:hover {
  border-color: var(--brand-green);
  transform: translateY(-6px);
}

.process-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.process-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.process-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════
   CATEGORY HEADERS
═══════════════════════════════════════ */
.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 4rem 0 2rem;
}

.category-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.category-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--text-primary);
  white-space: nowrap;
}

/* ═══════════════════════════════════════
   PRODUCT GRID & CARDS
═══════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width:900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.product-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand-green);
  box-shadow: var(--shadow);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-surface-2);
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

/* CSS fallback when image fails */
.product-img-wrap.img-error-card::after {
  content: '🖼️';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--bg-surface-2);
}

.img-styled-placeholder {
  position: absolute;
  inset: 0;
}

.product-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 1;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-content {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.product-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   QUALITY GRID
═══════════════════════════════════════ */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.quality-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.quality-card:hover {
  border-color: var(--brand-green);
  transform: translateY(-4px);
}

.quality-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1.25rem;
  color: var(--brand-green);
}

.quality-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.quality-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════
   CONTACT / FORM
═══════════════════════════════════════ */
.contact-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4.5rem);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 0;
}

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

.form-input,
.form-textarea {
  width: 100%;
  background: var(--bg-base);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-green);
}

.form-textarea {
  min-height: 160px;
  resize: vertical;
  margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--brand-green);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.active {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

/* ═══════════════════════════════════════
   PRELOADER
═══════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-base, #fff);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity .5s, visibility .5s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pre-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.pre-logo span {
  color: #f97316;
}

.pre-bar {
  width: 160px;
  height: 3px;
  background: var(--border, #e5e7eb);
  border-radius: 99px;
  overflow: hidden;
}

.pre-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #f97316, #22c55e);
  border-radius: 99px;
  animation: prefill 1.4s ease forwards;
}

@keyframes prefill {
  to {
    width: 100%;
  }
}

/* ═══════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════ */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: var(--bg-surface, #1e293b);
  border: 1px solid var(--border, #334155);
  border-radius: 16px;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 700px;
  width: calc(100% - 2rem);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .25);
  transition: transform .4s, opacity .4s;
}

#cookie-banner.hidden {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.cookie-text {
  flex: 1;
  font-size: .88rem;
  color: var(--text-secondary, #94a3b8);
  line-height: 1.6;
}

.cookie-text a {
  color: #f97316;
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
}

.cookie-accept {
  background: #f97316;
  color: #fff;
  border: none;
  padding: .55rem 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  transition: filter .2s;
}

.cookie-accept:hover {
  filter: brightness(1.1);
}

.cookie-decline {
  background: transparent;
  color: var(--text-secondary, #94a3b8);
  border: 1px solid var(--border, #334155);
  padding: .55rem 1.25rem;
  border-radius: 8px;
  font-size: .85rem;
  cursor: pointer;
  transition: border-color .2s;
}

.cookie-decline:hover {
  border-color: #f97316;
}

/* ═══════════════════════════════════════
   NAV ACTIVE + HEADER EXTRAS
═══════════════════════════════════════ */
.nav-active {
  font-weight: 700 !important;
  border-bottom: 2px solid currentColor;
}

#theme-toggle {
  background: none;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: .4rem;
  border-radius: 50%;
}

#logo-text {
  display: none;
  align-items: center;
  gap: .25rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
}

#logo-text span {
  color: var(--brand-orange);
}

.nav-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#mobile-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}

/* nav link colors */
.nav-link-fruits {
  color: var(--brand-orange);
}

.nav-link-veg {
  color: #4ade80;
}

.nav-link-herbal {
  color: #f59e0b;
}

.nav-link-micro {
  color: #22c55e;
}

/* form select */
.form-select {
  width: 100%;
  background: var(--bg-base);
  color: var(--text-primary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .9rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color .2s;
}

.form-select:focus {
  outline: none;
  border-color: var(--brand-green);
}

/* ═══════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  color: rgba(255, 255, 255, .4);
}

/* hero breadcrumb nav (shared across pages) */
.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  margin-bottom: 1.25rem;
}

.hero-breadcrumb a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
}

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

.hero-breadcrumb .sep {
  color: rgba(255, 255, 255, .35);
}

.hero-breadcrumb .current {
  color: rgba(255, 255, 255, .85);
}

/* ═══════════════════════════════════════
   SHARED PRODUCT-PAGE COMPONENTS
═══════════════════════════════════════ */
.section-badge {
  display: inline-block;
  padding: .3rem .9rem;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
}

.product-sep {
  border: none;
  border-top: 1px solid var(--border);
  margin: 5rem 0;
}

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

@media(min-width:900px) {
  .detail-layout {
    grid-template-columns: 1fr 1.2fr;
  }
}

.detail-layout.flip {
  direction: rtl;
}

.detail-layout.flip>* {
  direction: ltr;
}

.detail-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: block;
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.bcard {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  text-align: center;
}

.bcard-icon {
  font-size: 2rem;
  margin-bottom: .5rem;
}

.bcard h5 {
  font-size: .95rem;
  margin-bottom: .25rem;
}

.bcard p {
  color: var(--text-secondary);
  font-size: .8rem;
  line-height: 1.5;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.spec-box {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spec-k {
  color: var(--text-secondary);
  font-size: .85rem;
}

.spec-v {
  font-weight: 700;
  font-size: .9rem;
}

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-hero {
  min-height: 100vh;
  max-height: 800px;
  padding: 120px 20px 70px;
  background: linear-gradient(135deg, #1a0a00, #3d1500, #7c2d12);
  display: flex;
  align-items: center;
}

.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: .75rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand-orange), #22c55e);
}

.tl-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.tl-dot {
  position: absolute;
  left: -2.05rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--brand-orange);
  border: 3px solid var(--bg-base);
  box-shadow: 0 0 0 3px var(--brand-orange);
}

.tl-year {
  font-size: .78rem;
  font-weight: 700;
  color: var(--brand-orange);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .25rem;
}

.tl-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .35rem;
}

.tl-desc {
  color: var(--text-secondary);
  font-size: .9rem;
  line-height: 1.6;
}

.value-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: transform .3s, border-color .3s;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-orange);
}

.team-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.team-body {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: .25rem;
}

.team-role {
  color: var(--brand-orange);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .75rem;
}

.team-desc {
  color: var(--text-secondary);
  font-size: .88rem;
  line-height: 1.6;
}

.stat-big {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--brand-orange);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

/* ═══════════════════════════════════════
   FRUIT POWDERS PAGE
═══════════════════════════════════════ */
.fp-hero {
  min-height: 100vh;
  max-height: 800px;
  padding: 120px 20px 70px;
  background: linear-gradient(135deg, rgba(67, 20, 7, 0.85), rgba(124, 45, 18, 0.85)), url('./products/hero_fruit.png') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.fp-tag {
  display: inline-block;
  padding: .4rem 1.1rem;
  border: 1.5px solid #fb923c;
  color: #fb923c;
  border-radius: 30px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fp-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 1rem;
}

.fp-sub {
  color: rgba(255, 255, 255, .75);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.fp-hero .section-badge {
  background: rgba(251, 146, 60, .1);
  border: 1px solid var(--brand-orange);
  color: var(--brand-orange);
}

.fp-hero .spec-v {
  color: var(--brand-orange);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pcard {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .3s, box-shadow .3s;
}

.pcard:hover {
  transform: translateY(-8px);
  border-color: var(--brand-orange);
  box-shadow: var(--shadow);
}

.pcard-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .6s;
}

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

.pcard-body {
  padding: 1.75rem;
}

.pcard-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: .5rem;
}

.pcard-desc {
  color: var(--text-secondary);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.badge {
  padding: .25rem .75rem;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
  background: rgba(251, 146, 60, .1);
  border: 1px solid rgba(251, 146, 60, .3);
  color: var(--brand-orange);
  margin-right: .5rem;
}

/* ═══════════════════════════════════════
   VEGETABLE POWDERS PAGE
═══════════════════════════════════════ */
.vp-hero {
  min-height: 100vh;
  max-height: 800px;
  padding: 120px 20px 70px;
  background: linear-gradient(135deg, rgba(10, 31, 10, 0.85), rgba(26, 58, 26, 0.85)), url('./products/hero_vegetable.png') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.vp-tag {
  display: inline-block;
  padding: .4rem 1.1rem;
  border: 1.5px solid #4ade80;
  color: #4ade80;
  border-radius: 30px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.vp-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 1rem;
}

.vp-sub {
  color: rgba(255, 255, 255, .7);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.vegcard {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .3s, box-shadow .3s;
}

.vegcard:hover {
  transform: translateY(-8px);
  border-color: var(--brand-green);
  box-shadow: var(--shadow);
}

.vegcard-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

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

.vegcard-body {
  padding: 1.75rem;
}

.vegcard-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: .5rem;
}

.vegcard-desc {
  color: var(--text-secondary);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.tag {
  padding: .25rem .75rem;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
  background: rgba(74, 222, 128, .1);
  border: 1px solid rgba(74, 222, 128, .3);
  color: var(--brand-green);
}

.vp-hero .section-badge {
  background: rgba(74, 222, 128, .1);
  border: 1px solid var(--brand-green);
  color: var(--brand-green);
}

.vp-hero .spec-v {
  color: var(--brand-green);
}

/* ═══════════════════════════════════════
   HERBAL PAGE
═══════════════════════════════════════ */
:root {
  --moringa: #16a34a;
  --mitti: #92400e;
}

body.light-mode {
  --moringa: #15803d;
  --mitti: #78350f;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 70vh;
  margin-top: 70px;
  background: url('./products/hero_herbal.png') center/cover no-repeat;
}

@media(min-width:768px) {
  .hero-split {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(3rem, 6vw, 6rem);
  position: relative;
  overflow: hidden;
}

.hero-panel-moringa {
  background: linear-gradient(135deg, rgba(5, 46, 22, 0.85), rgba(20, 83, 45, 0.85));
}

.hero-panel-mitti {
  background: linear-gradient(135deg, rgba(28, 10, 0, 0.85), rgba(69, 26, 3, 0.85));
}

.panel-emoji {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}

.panel-label {
  display: inline-block;
  padding: .35rem 1rem;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}

.panel-label-moringa {
  background: rgba(34, 197, 94, .15);
  border: 1px solid #22c55e;
  color: #4ade80;
}

.panel-label-mitti {
  background: rgba(245, 158, 11, .15);
  border: 1px solid #f59e0b;
  color: #fbbf24;
}

.panel-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
}

.panel-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 2rem;
}

.panel-btn-moringa {
  background: #22c55e;
  color: #052e16;
}

.panel-btn-mitti {
  background: #f59e0b;
  color: #1c0a00;
}

.panel-btn {
  padding: .875rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  display: inline-block;
  transition: filter .2s, transform .2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.panel-btn:hover {
  filter: brightness(1.12);
  transform: translateY(-2px);
}

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

@media(min-width:900px) {
  .product-detail {
    grid-template-columns: 1fr 1fr;
  }
}

.detail-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.spec-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.spec-key {
  color: var(--text-secondary);
  font-size: .9rem;
  font-weight: 600;
}

.spec-val {
  font-weight: 700;
  font-size: .9rem;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.use-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}

.use-icon {
  font-size: 2rem;
  margin-bottom: .5rem;
}

.use-card h5 {
  font-size: 1rem;
  margin-bottom: .25rem;
}

.use-card p {
  color: var(--text-secondary);
  font-size: .82rem;
}

.divider-moringa {
  border-left: 4px solid #22c55e;
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}

.divider-mitti {
  border-left: 4px solid #f59e0b;
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}

.section-moringa {
  background: var(--bg-base);
}

.section-mitti {
  background: var(--bg-surface);
}

/* ═══════════════════════════════════════
   MICROGREENS PAGE
═══════════════════════════════════════ */
.mg-hero {
  min-height: 100vh;
  padding-top: 70px;
  display: flex;
  align-items: center;
  background: var(--bg-surface);
}

.mg-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0;
}

@media(min-width:992px) {
  .mg-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mg-tag {
  display: inline-block;
  padding: .4rem 1.1rem;
  border: 1.5px solid #22c55e;
  color: #22c55e;
  border-radius: 30px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.variety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.variety-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .3s, box-shadow .3s;
}

.variety-card:hover {
  transform: translateY(-8px);
  border-color: #22c55e;
  box-shadow: 0 0 0 1px #22c55e, var(--shadow);
}

.v-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--bg-surface-2);
}

.v-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.variety-card:hover .v-img {
  transform: scale(1.06);
}

.v-badge {
  position: absolute;
  top: .75rem;
  right: .75rem;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: .25rem .7rem;
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.v-body {
  padding: 1.5rem;
}

.v-title {
  font-size: 1.2rem;
  margin-bottom: .4rem;
  color: var(--text-primary);
}

.v-desc {
  color: var(--text-secondary);
  font-size: .9rem;
  line-height: 1.6;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: border-color .3s, transform .3s var(--ease);
}

.step-card:hover {
  border-color: #22c55e;
  transform: translateY(-4px);
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

.step-card h4 {
  font-size: 1.1rem;
  margin-bottom: .4rem;
}

.step-card p {
  color: var(--text-secondary);
  font-size: .85rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: .75rem;
}

.benefit-card h4 {
  font-size: 1.05rem;
  margin-bottom: .4rem;
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: .85rem;
}

.nav-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-secondary);
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: color .2s;
  margin-bottom: .5rem;
}

.nav-back:hover {
  color: #22c55e;
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (max 768px)
═══════════════════════════════════════ */
@media (max-width: 768px) {

  /* Header */
  .nav-container {
    height: 60px;
  }

  .desktop-only {
    display: none !important;
  }

  /* Hero sections */
  .hero {
    padding-top: 60px;
  }

  .hero-grid {
    padding: 3rem 0;
    gap: 2.5rem;
  }

  .hero-stats {
    gap: 1.25rem;
    flex-wrap: wrap;
  }

  /* Section padding */
  .section {
    padding: clamp(3rem, 6vw, 5rem) 0;
  }

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

  /* About hero */
  .about-hero {
    padding: 100px 1.25rem 60px;
    min-height: 55vh;
  }

  /* Fruit / Veg hero */
  .fp-hero,
  .vp-hero {
    padding: 100px 1.25rem 60px;
    min-height: 50vh;
  }

  /* Herbal split panels — stack vertically */
  .hero-split {
    margin-top: 60px;
    min-height: auto;
  }

  .hero-panel {
    padding: 2.5rem 1.5rem;
  }

  .panel-emoji {
    font-size: 3.5rem;
    margin-bottom: 1rem;
  }

  /* Microgreens hero */
  .mg-hero {
    padding-top: 60px;
  }

  .mg-hero-grid {
    padding: 3rem 0;
    gap: 2rem;
  }

  /* Product detail layout gap */
  .detail-layout,
  .product-detail {
    gap: 2.5rem;
  }

  /* Cookie banner — reduce size */
  #cookie-banner {
    padding: 1rem 1.25rem;
    gap: 1rem;
    border-radius: 12px;
  }

  /* Contact form */
  .contact-wrapper {
    padding: 2rem 1.25rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Footer */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  /* Process / Quality grids */
  .process-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Timeline */
  .timeline {
    padding-left: 2rem;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (max 480px)
═══════════════════════════════════════ */
@media (max-width: 480px) {

  /* Typography scale down */
  .hero-title,
  .fp-title,
  .vp-title,
  .panel-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .section-title {
    font-size: clamp(1.6rem, 7vw, 2.25rem);
  }

  .stat-big {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  /* Hero sections */
  .about-hero {
    padding: 90px 1rem 50px;
  }

  .fp-hero,
  .vp-hero {
    padding: 90px 1rem 50px;
  }

  .hero-subtitle,
  .fp-sub,
  .vp-sub {
    font-size: .95rem;
  }

  /* Hero stats — wrap on mobile */
  .hero-stats {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero-stat-div {
    display: none;
  }

  /* About hero stats */
  .about-hero>.container>div[style*="display:flex"] {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  /* Buttons — stack on very small screens */
  .hero-actions,
  .fp-hero .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Cookie banner — stack buttons */
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }

  .cookie-btns {
    width: 100%;
    justify-content: flex-end;
  }

  /* Cards — reduce padding */
  .pcard-body,
  .vegcard-body,
  .v-body {
    padding: 1.25rem;
  }

  .product-content {
    padding: 1.1rem;
  }

  /* Spec boxes wrap nicely */
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .spec-box {
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem;
  }

  .spec-v {
    font-size: .85rem;
  }

  /* Benefit cards — 2 col on mobile */
  .benefit-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .bcard {
    padding: 1rem;
  }

  /* Herbal panels */
  .panel-emoji {
    font-size: 3rem;
  }

  .hero-panel {
    padding: 2rem 1rem;
  }

  /* Section badge */
  .section-badge {
    font-size: .7rem;
  }

  /* Quality grid — 1 col */
  .quality-grid {
    grid-template-columns: 1fr;
  }

  /* Steps grid — 1 col */
  .steps-grid {
    grid-template-columns: 1fr;
  }

  /* Use grid — 2 col */
  .use-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Container padding */
  .container {
    padding: 0 1rem;
  }

  /* Mobile menu larger links */
  .mobile-menu .nav-link {
    font-size: 1.4rem;
  }

  /* About team grid */
  .team-avatar {
    font-size: 4rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ═══════════════════════════════════════
   WHATSAPP FLOATING BUTTON
═══════════════════════════════════════ */
#whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
  animation: waPulse 2.5s ease infinite;
}

#whatsapp-btn:hover {
  transform: scale(1.1);
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
  }

  50% {
    box-shadow: 0 4px 35px rgba(37, 211, 102, .9);
  }
}

#wa-tooltip {
  position: absolute;
  right: 70px;
  background: #1e293b;
  color: #fff;
  padding: .4rem .9rem;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

/* ═══════════════════════════════════════
   BACK TO TOP BUTTON
═══════════════════════════════════════ */
#back-to-top {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
}

/* ═══════════════════════════════════════
   FOOTER SOCIAL ICONS
═══════════════════════════════════════ */
.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: .95rem;
  transition: background .2s, color .2s;
}

.social-icon:hover {
  background: var(--brand-green);
  color: #fff;
}

.social-icon.linkedin:hover {
  background: #0a66c2;
}

.social-icon.instagram:hover {
  background: #e1306c;
}

.social-icon.facebook:hover {
  background: #1877f2;
}

.social-icon.whatsapp:hover {
  background: #25d366;
}

/* Mobile — move floating buttons smaller */
@media (max-width: 480px) {
  #whatsapp-btn {
    width: 52px;
    height: 52px;
    bottom: 1.25rem;
    right: 1.25rem;
  }

  #back-to-top {
    width: 38px;
    height: 38px;
    bottom: 5rem;
    right: 1.25rem;
  }

  #wa-tooltip {
    display: none;
  }
}

/* ═══════════════════════════════════════
   PRODUCT SLIDER & DYNAMIC COMPONENTS
   ═══════════════════════════════════════ */
.product-slider {
  width: 100%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface-2);
}

.slider-main {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .5s ease, transform .8s ease;
  transform: scale(1.05);
}

.slider-img.active {
  opacity: 1;
  transform: scale(1);
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 10;
  backdrop-filter: blur(4px);
  transition: background .2s;
}

.slider-prev:hover,
.slider-next:hover {
  background: var(--brand-orange);
}

.slider-prev {
  left: 1rem;
}

.slider-next {
  right: 1rem;
}

.slider-thumbs {
  display: flex;
  gap: .75rem;
  padding: .75rem;
  background: var(--bg-surface);
  overflow-x: auto;
}

.thumb {
  width: 60px;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: .6;
  transition: opacity .2s, border-color .2s;
  flex-shrink: 0;
}

.thumb.active {
  opacity: 1;
  border-color: var(--brand-orange);
}

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

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: .75rem;
}

.spec-box {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  display: flex;
  flex-direction: column;
}

.spec-k {
  font-size: .75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: .25rem;
}

.spec-v {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.bcard {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  transition: transform .3s;
}

.bcard:hover {
  transform: translateY(-4px);
  border-color: var(--brand-orange);
}

.bcard-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}

.bcard h5 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
  color: var(--text-primary);
}

.bcard p {
  font-size: .85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.product-sep {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
  opacity: .5;
}

.detail-layout {
  display: flex;
  gap: 4rem;
  align-items: start;
}

.detail-layout.flip {
  flex-direction: row-reverse;
}

.detail-layout>div {
  flex: 1;
  width: 100%;
  min-width: 0;
}

@media (max-width: 900px) {

  .detail-layout,
  .detail-layout.flip {
    flex-direction: column;
  }
}

.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  margin-bottom: 1.25rem;
}

.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

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

.hero-breadcrumb .sep {
  color: rgba(255, 255, 255, 0.3);
}

.hero-breadcrumb .current {
  color: #fff;
  font-weight: 600;
}