/* ============================================================
   SRI SWASTIC TRADERS — PREMIUM AGRICULTURAL NATURE THEME
   ============================================================ */

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

/* ── Variables ── */
:root {
  /* Core palette — bright natural coconut / tropical light */
  --void:          #ffffff;
  --deep-forest:   #f5f9f2;
  --forest:        #edf5e8;
  --forest-mid:    #dff0d8;
  --forest-rich:   #c8e6ba;
  --leaf:          #2e7d32;
  --leaf-bright:   #3aaa4a;
  --leaf-pale:     rgba(58,170,74,.14);
  --harvest:       #c47c1a;
  --harvest-warm:  #d4900a;
  --harvest-glow:  rgba(212,144,10,.15);
  --coir:          #9b6b40;
  --coir-light:    #c4935a;
  --shell:         #6b4220;
  --cream:         #1a3320;
  --cream-dim:     rgba(26,51,32,.72);
  --cream-muted:   rgba(26,51,32,.50);
  --cream-faint:   rgba(26,51,32,.12);

  /* Glass / surface */
  --glass-bg:      rgba(255,255,255,.72);
  --glass-border:  rgba(58,170,74,.28);
  --glass-shadow:  0 8px 48px rgba(0,80,0,.10), 0 2px 12px rgba(0,0,0,.07);

  /* Fonts */
  --font-serif:    'Gloock', 'Playfair Display', Georgia, serif;
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-sans:     'DM Sans', system-ui, sans-serif;

  --nav-h:         74px;
  --r-sm:          10px;
  --r-md:          18px;
  --r-lg:          28px;
  --r-xl:          44px;
  --ease:          cubic-bezier(.23,1,.32,1);
  --transition:    .4s cubic-bezier(.23,1,.32,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--deep-forest);
  color: var(--cream);
  overflow-x: hidden;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Grain texture overlay ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: .028;
  background-size: 200px 200px;
}

/* ── Luxury Cursor System ── */

/* hide all old cursor remnants */
.cursor-dot, .cursor-ring { display: none; }

/* SVG gooey filter (hidden) */
.cursor-svg-filter { position: fixed; width: 0; height: 0; pointer-events: none; }

/* Precise aiming dot — snaps to cursor instantly */
.cur-dot {
  position: fixed; z-index: 999999; pointer-events: none;
  width: 5px; height: 5px; border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: transform .12s, width .2s, height .2s;
  will-change: transform, left, top;
}

/* Main blob — large, spring-lagged, velocity-stretched */
.cur-blob {
  position: fixed; z-index: 999998; pointer-events: none;
  width: 44px; height: 44px; border-radius: 50%;
  background: radial-gradient(circle at 38% 38%,
    rgba(232,168,48,.82) 0%,
    rgba(196,124,26,.55) 45%,
    rgba(61,139,58,.2) 80%,
    transparent 100%
  );
  transform: translate(-50%, -50%);
  filter: url(#gooey) blur(2px);
  transition: width .35s cubic-bezier(.23,1,.32,1),
              height .35s cubic-bezier(.23,1,.32,1),
              background .4s ease,
              opacity .3s;
  will-change: transform, left, top;
  opacity: .88;
}

/* Outer glow ring — slowest, most ethereal */
.cur-glow {
  position: fixed; z-index: 999997; pointer-events: none;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle,
    rgba(232,168,48,.09) 0%,
    rgba(196,124,26,.04) 50%,
    transparent 72%
  );
  transform: translate(-50%, -50%);
  will-change: transform, left, top;
  opacity: 1;
  transition: opacity .5s;
}

/* States when hovering interactive elements */
body.cur-on-link .cur-blob {
  width: 70px; height: 70px;
  background: radial-gradient(circle at 38% 38%,
    rgba(90,171,82,.85) 0%,
    rgba(61,139,58,.5) 45%,
    transparent 80%
  );
}
body.cur-on-link .cur-dot {
  width: 3px; height: 3px;
}
body.cur-on-img .cur-blob {
  width: 90px; height: 90px;
  border-radius: 40%;
  background: radial-gradient(circle,
    rgba(232,168,48,.6) 0%,
    rgba(196,124,26,.3) 50%,
    transparent 80%
  );
  mix-blend-mode: screen;
}

/* Hide on touch devices */
@media (hover: none) {
  .cur-dot, .cur-blob, .cur-glow, .cursor-svg-filter { display: none; }
  body { cursor: auto !important; }
}

/* ── Starfield (subtle nature version) ── */
#starfield { position: fixed; inset: 0; z-index: 0; pointer-events: none; }

/* ── Page Wrapper ── */
.page-wrapper { position: relative; z-index: 1; }

/* ── Announcement ── */
.announcement {
  background: linear-gradient(90deg, var(--forest-rich), var(--leaf), var(--forest-rich));
  padding: .5rem 1rem; overflow: hidden;
}
.announcement-text {
  display: inline-block; white-space: nowrap;
  font-size: .78rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  color: var(--cream);
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 clamp(1.5rem,5vw,4rem);
  background: rgba(245,249,242,.88);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(58,170,74,.18);
  transition: background var(--transition);
}
.navbar.scrolled { background: rgba(245,249,242,.97); }

.nav-logo {
  font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700;
  color: var(--cream); margin-right: auto;
  display: flex; align-items: center; gap: .65rem;
}
.nav-logo span { color: var(--harvest-warm); }
.nav-logo img { height: 44px; width: auto; border-radius: 6px; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: .84rem; font-weight: 500; color: var(--cream-dim);
  letter-spacing: .05em; text-transform: uppercase;
  position: relative; padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1.5px;
  background: var(--harvest-warm); transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  margin-left: 1.5rem; padding: .55rem 1.4rem;
  background: var(--harvest); color: var(--void) !important;
  border-radius: 50px; font-weight: 700 !important; font-size: .82rem !important;
  letter-spacing: .06em; transition: all var(--transition) !important;
  box-shadow: 0 0 20px rgba(196,124,26,.35);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--harvest-warm) !important; box-shadow: 0 0 30px rgba(232,168,48,.45); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: var(--transition); }

.nav-mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 8999;
  background: rgba(245,249,242,.98); backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
.nav-mobile-overlay.open { display: flex; }
.nav-mobile-overlay a { font-family: var(--font-serif); font-size: 2rem; font-weight: 600; color: var(--cream-dim); transition: color var(--transition); }
.nav-mobile-overlay a:hover { color: var(--harvest-warm); }
.nav-mobile-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 2rem; color: var(--cream); background: none; border: none; cursor: none; }

/* ── Scroll Progress ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 99998;
  background: linear-gradient(90deg, var(--leaf-bright), var(--harvest-warm));
  transition: width .1s linear;
}

/* ── Page Transition ── */
.page-transition { position: fixed; inset: 0; z-index: 99997; background: var(--void); pointer-events: none; transform: scaleY(0); transform-origin: top; transition: transform .5s cubic-bezier(.77,0,.18,1); }
.page-transition.in { transform: scaleY(1); transform-origin: bottom; }

/* ── Section Base ── */
section { position: relative; overflow: hidden; }
.section-inner {
  position: relative; z-index: 2;
  max-width: 1260px; margin: 0 auto;
  padding: clamp(4rem,8vw,8rem) clamp(1.5rem,5vw,3rem);
}

/* ── Tags / Labels ── */
.section-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: #C4891A; background: rgba(196,124,26,.10);
  border: 1px solid rgba(196,124,26,.32); border-radius: 50px;
  padding: .34rem 1.1rem; margin-bottom: 1.3rem;
}
.section-tag::before { content: '✦'; font-size: .52rem; opacity: .75; }

/* ── Headings ── */
.section-title {
  font-family: var(--font-serif); font-size: clamp(2rem,4.5vw,3.4rem);
  font-weight: 700; line-height: 1.14;
  color: #1E5C2A;  /* deep botanical green on light bg */
  margin-bottom: 1rem; letter-spacing: -0.015em;
}
.section-title em { font-style: italic; color: var(--leaf-bright); }
.section-title .gold { color: var(--harvest); }

.section-sub {
  font-size: clamp(.9rem,1.3vw,1.05rem); color: rgba(30,92,42,.62);
  line-height: 1.85; max-width: 600px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-sans); font-weight: 600; font-size: .88rem;
  letter-spacing: .05em; border-radius: 50px; border: none; cursor: none;
  padding: .8rem 2rem; transition: all var(--transition); position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0; border-radius: 50px;
  background: rgba(255,255,255,.1); transform: translateX(-100%) skewX(-15deg);
  transition: transform .5s var(--ease);
}
.btn:hover::before { transform: translateX(100%) skewX(-15deg); }

.btn-primary   { background: var(--harvest); color: var(--void); box-shadow: 0 0 24px rgba(196,124,26,.4); }
.btn-primary:hover  { box-shadow: 0 0 44px rgba(232,168,48,.55); transform: translateY(-2px); }

.btn-green     { background: var(--leaf); color: var(--cream); box-shadow: 0 0 24px rgba(61,139,58,.4); }
.btn-green:hover    { background: var(--leaf-bright); box-shadow: 0 0 44px rgba(90,171,82,.5); transform: translateY(-2px); }

.btn-outline   { background: transparent; color: var(--cream); border: 1.5px solid rgba(26,51,32,.25); }
.btn-outline:hover  { border-color: var(--harvest-warm); color: var(--harvest-warm); transform: translateY(-2px); }

.btn-ghost     { background: var(--glass-bg); color: var(--cream); border: 1px solid var(--glass-border); backdrop-filter: blur(12px); }
.btn-ghost:hover    { background: rgba(61,139,58,.2); transform: translateY(-2px); }

/* ── Glass Card ── */
.glass-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--r-md); backdrop-filter: blur(18px);
  box-shadow: var(--glass-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.glass-card:hover { transform: translateY(-6px) perspective(600px) rotateX(2deg); box-shadow: 0 24px 60px rgba(0,80,0,.12), 0 4px 16px rgba(58,170,74,.18); }

/* ── Reveal Animations ── */
.reveal       { opacity: 0; transform: translateY(36px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-48px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(48px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal-right.visible { opacity: 1; transform: none; }

/* ── Organic Wave Divider ── */
.wave-divider {
  width: 100%; overflow: hidden; line-height: 0; position: relative; z-index: 2;
}
.wave-divider svg { display: block; width: 100%; height: 60px; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative;
}
/* Real coconut background image */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('coconut catlog 2.jpg');
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
/* Layered overlays for agricultural feel */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,40,12,.72) 0%,
    rgba(10,40,12,.55) 40%,
    rgba(10,40,12,.45) 70%,
    rgba(10,40,12,.68) 100%
  );
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(196,124,26,.08) 0%, transparent 70%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1260px; margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) clamp(1.5rem,5vw,3rem) 6rem;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 5rem; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  color: #E8C97A; border: 1px solid rgba(232,201,122,.35);
  background: rgba(196,124,26,.18); border-radius: 50px; padding: .38rem 1.1rem;
  margin-bottom: 1.8rem;
}
.hero-eyebrow::before { content: '✦'; font-size: .55rem; }

/* ── Hero H1 — ivory on dark photo overlay ── */
.hero-title {
  font-family: var(--font-serif); font-size: clamp(2.8rem,6vw,5.2rem);
  font-weight: 900; line-height: 1.07; margin-bottom: 1.6rem;
  color: #FDFAF4;
  letter-spacing: -0.02em;
}
.hero-title .line-em  {
  display: block; font-style: italic;
  color: #7DD87A;  /* bright canopy green — visible on dark overlay */
  font-weight: 700; letter-spacing: -0.01em;
}
.hero-title .line-gold {
  display: block;
  color: #E8C97A;  /* warm ivory-gold */
  letter-spacing: 0.02em;
}

.hero-desc {
  font-size: clamp(.95rem,1.3vw,1.06rem);
  color: rgba(253,250,244,.72);
  line-height: 1.85; margin-bottom: 2.8rem; max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-stat strong { display: block; font-family: var(--font-serif); font-size: 2.1rem; font-weight: 700; color: #E8C97A; }
.hero-stat span { font-size: .79rem; color: rgba(253,250,244,.58); letter-spacing: .06em; }

/* Hero visual column */
.hero-visual { position: relative; perspective: 900px; }
.hero-card-3d {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,60,0,.22), 0 4px 20px rgba(196,124,26,.25);
  animation: heroFloat 7s ease-in-out infinite;
  transform-style: preserve-3d;
  border: 1px solid rgba(232,168,48,.2);
}
@keyframes heroFloat {
  0%,100% { transform: rotateX(3deg) rotateY(-6deg) translateY(0); }
  50%      { transform: rotateX(-3deg) rotateY(6deg) translateY(-18px); }
}
.hero-card-3d img {
  width: 100%; height: 480px; object-fit: cover; display: block;
}
.hero-card-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,40,12,.85));
  padding: 2rem 1.6rem 1.6rem;
}
.hero-card-caption .label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #E8C97A; margin-bottom: .3rem; }
.hero-card-caption h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; margin-bottom: .2rem; color: #FDFAF4; }
.hero-card-caption p { font-size: .82rem; color: rgba(253,250,244,.70); }
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(70px); opacity: .3; }

/* ── Trust Bar ── */
.trust-bar {
  background: rgba(237,245,232,.95);
  border-top: 1px solid rgba(58,170,74,.18);
  border-bottom: 1px solid rgba(58,170,74,.18);
  backdrop-filter: blur(12px);
}
.trust-bar-inner {
  max-width: 1260px; margin: 0 auto;
  padding: 1.1rem clamp(1.5rem,5vw,3rem);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.trust-item { display: flex; align-items: center; gap: .55rem; font-size: .8rem; font-weight: 500; color: var(--cream-dim); }
.trust-item .icon { font-size: 1.15rem; }

/* ── Section Backgrounds ── */
.bg-forest     { background: var(--forest); }
.bg-deep       { background: var(--deep-forest); }
.bg-mid        { background: var(--forest-mid); }
.bg-nature-glow{ background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(61,139,58,.09) 0%, transparent 70%); }
.bg-harvest-glow{ background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(196,124,26,.07) 0%, transparent 70%); }

/* ── Image section backgrounds ── */
.img-section-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.img-section-bg::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,40,12,.60);
}

/* ── About Grid ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.about-img-wrap { position: relative; perspective: 900px; }
.about-img-3d {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,60,0,.16);
  animation: aboutFloat 8s ease-in-out infinite;
  transform-style: preserve-3d;
}
@keyframes aboutFloat {
  0%,100% { transform: rotateY(-4deg) rotateX(2deg) translateY(0); }
  50%      { transform: rotateY(4deg) rotateX(-2deg) translateY(-12px); }
}
.about-img-3d img { width: 100%; height: 440px; object-fit: cover; display: block; }
.about-badge-float {
  position: absolute; bottom: -22px; right: -22px;
  background: var(--glass-bg); border: 1px solid rgba(232,168,48,.35);
  backdrop-filter: blur(18px); border-radius: var(--r-md); padding: 1.1rem 1.5rem;
  box-shadow: 0 12px 40px rgba(0,60,0,.12); text-align: center;
}
.about-badge-float strong { display: block; font-family: var(--font-serif); font-size: 2.2rem; color: var(--harvest-warm); }
.about-badge-float span { font-size: .75rem; color: var(--cream-muted); }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-top: 2rem; }
.about-feature {
  padding: 1rem 1.1rem;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--r-sm); backdrop-filter: blur(12px);
  transition: border-color var(--transition);
}
.about-feature:hover { border-color: rgba(232,168,48,.35); }
.about-feature .icon { font-size: 1.4rem; margin-bottom: .35rem; }
.about-feature h4 { font-size: .9rem; font-weight: 600; margin-bottom: .18rem; color: var(--cream); }
.about-feature p { font-size: .8rem; color: var(--cream-muted); line-height: 1.5; }

/* ── Product Cards ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.6rem; }

.product-card {
  position: relative; overflow: hidden;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--r-md); backdrop-filter: blur(16px);
  box-shadow: var(--glass-shadow);
  transition: all var(--transition); transform-style: preserve-3d; cursor: none;
}
.product-card:hover { transform: translateY(-8px) perspective(700px) rotateX(2deg); box-shadow: 0 28px 70px rgba(0,80,0,.14), 0 4px 16px rgba(196,124,26,.22); border-color: rgba(232,168,48,.45); }

/* Real photo header */
.product-card-img {
  height: 220px; overflow: hidden; position: relative;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s var(--ease);
}
.product-card:hover .product-card-img img { transform: scale(1.07); }
.product-card-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%;
  background: linear-gradient(transparent, rgba(10,40,12,.75));
}
.product-card-img-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: var(--harvest); color: var(--void);
  padding: .28rem .8rem; border-radius: 50px;
}

.product-card-body { padding: 1.6rem; }
.product-card-body h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; margin-bottom: .45rem; color: var(--cream); }
.product-card-body p { font-size: .86rem; color: var(--cream-muted); line-height: 1.65; margin-bottom: 1.1rem; }
.product-price { font-size: 1.15rem; font-weight: 700; color: var(--harvest-warm); margin-bottom: .3rem; }
.product-moq { font-size: .76rem; color: var(--cream-muted); margin-bottom: 1.1rem; }
.product-tags { display: flex; flex-wrap: wrap; gap: .38rem; }
.product-tag {
  font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: .22rem .65rem; border-radius: 50px;
  background: rgba(61,139,58,.12); border: 1px solid rgba(90,171,82,.25); color: var(--leaf-bright);
}

/* ── Stats ── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px,1fr)); gap: 1.4rem; text-align: center; }
.stat-card {
  padding: 2.5rem 1.4rem; position: relative; overflow: hidden;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--r-md); backdrop-filter: blur(16px);
  transition: all var(--transition);
}
.stat-card:hover { border-color: rgba(232,168,48,.35); transform: translateY(-4px); }
.stat-num { font-family: var(--font-serif); font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: var(--harvest-warm); display: block; margin-bottom: .3rem; }
.stat-num.green { color: var(--leaf-bright); }
.stat-label { font-size: .82rem; color: var(--cream-muted); letter-spacing: .04em; }

/* ── Process Steps ── */
.process-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 1.4rem; margin-top: 3rem; }
.process-step {
  padding: 1.8rem; position: relative;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--r-md); backdrop-filter: blur(12px);
  transition: all var(--transition);
}
.process-step:hover { transform: translateY(-4px); border-color: rgba(90,171,82,.35); }
.step-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--harvest), var(--harvest-warm));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--void);
  margin-bottom: .9rem; box-shadow: 0 0 20px rgba(196,124,26,.4);
}
.process-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: .45rem; color: var(--cream); }
.process-step p { font-size: .85rem; color: var(--cream-muted); line-height: 1.65; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.4rem; }
.testimonial-card {
  padding: 2rem; position: relative;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--r-md); backdrop-filter: blur(16px);
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,80,0,.12), 0 2px 12px rgba(196,124,26,.18); }
.testimonial-quote { font-size: 3.5rem; color: var(--harvest); opacity: .3; line-height: 1; margin-bottom: .4rem; font-family: Georgia, serif; }
.testimonial-text { font-size: .9rem; color: var(--cream-dim); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--harvest), var(--coir));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--void); flex-shrink: 0;
}
.testimonial-name { font-size: .9rem; font-weight: 600; color: var(--cream); }
.testimonial-role { font-size: .76rem; color: var(--cream-muted); }
.testimonial-stars { color: var(--harvest-warm); font-size: .82rem; margin-top: .18rem; letter-spacing: .1em; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--r-sm); backdrop-filter: blur(12px); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; background: none; border: none; cursor: none;
  color: var(--cream); font-family: var(--font-sans); font-size: .93rem; font-weight: 600;
  text-align: left; transition: color var(--transition);
}
.faq-question:hover { color: var(--harvest-warm); }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: rgba(196,124,26,.15); border: 1px solid rgba(232,168,48,.3); display: flex; align-items: center; justify-content: center; font-size: .9rem; color: var(--harvest-warm); transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .4s; font-size: .88rem; color: var(--cream-muted); line-height: 1.78; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.5rem 1.3rem; }

/* ── CTA Band ── */
.cta-band {
  position: relative; overflow: hidden;
}
.cta-band-bg {
  position: absolute; inset: 0;
  background-image: url('coconut catlog 2.jpg');
  background-size: cover; background-position: center;
}
.cta-band-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,40,12,.82) 0%, rgba(20,60,24,.75) 50%, rgba(10,40,12,.82) 100%);
}
.cta-band-inner {
  position: relative; z-index: 2;
  max-width: 1260px; margin: 0 auto;
  padding: 5.5rem clamp(1.5rem,5vw,3rem);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.5rem;
}
.cta-band-inner h2 { font-family: var(--font-serif); font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 700; max-width: 700px; color: #FDFAF4; }
.cta-band-inner p { font-size: 1rem; color: rgba(253,250,244,.72); max-width: 540px; line-height: 1.75; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── Product Detail Cards (products page) ── */
.product-detail-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--r-lg); backdrop-filter: blur(16px);
  overflow: hidden; margin-bottom: 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  box-shadow: var(--glass-shadow);
  transition: box-shadow var(--transition);
}
.product-detail-card:hover { box-shadow: 0 24px 70px rgba(0,80,0,.14), 0 4px 16px rgba(196,124,26,.20); }
.product-detail-card.reverse { direction: rtl; }
.product-detail-card.reverse > * { direction: ltr; }
.product-detail-img { height: 380px; overflow: hidden; position: relative; }
.product-detail-img img { width:100%; height:100%; object-fit:cover; display:block; transition: transform .8s var(--ease); }
.product-detail-card:hover .product-detail-img img { transform: scale(1.05); }
.product-detail-img::after { content:''; position:absolute; inset:0; background:linear-gradient(90deg, transparent 60%, rgba(245,249,242,.5)); }
.product-detail-card.reverse .product-detail-img::after { background:linear-gradient(270deg, transparent 60%, rgba(245,249,242,.5)); }
.product-detail-body { padding: 2.8rem; display:flex; flex-direction:column; justify-content:center; }
.product-detail-body .product-price { font-size: 1.5rem; margin: .8rem 0 .4rem; }
.product-detail-body ul { margin: 1rem 0 1.6rem; display:flex; flex-direction:column; gap:.45rem; }
.product-detail-body ul li { font-size:.87rem; color:var(--cream-muted); display:flex; gap:.5rem; }
.product-detail-body ul li::before { content:'✦'; color:var(--harvest-warm); flex-shrink:0; }
.grade-pills { display:flex; flex-wrap:wrap; gap:.5rem; margin-bottom:1.2rem; }
.grade-pill { padding:.3rem .85rem; border-radius:50px; font-size:.75rem; font-weight:700; background:rgba(196,124,26,.1); border:1px solid rgba(232,168,48,.28); color:var(--harvest-warm); }

/* ── Certifications ── */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 1rem; margin-top: 2rem; }
.cert-card {
  padding: 1.6rem; text-align: center;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--r-md); backdrop-filter: blur(12px);
  transition: all var(--transition);
}
.cert-card:hover { transform: translateY(-4px) rotateZ(.5deg); border-color: rgba(232,168,48,.35); }
.cert-card .icon { font-size: 2rem; margin-bottom: .7rem; }
.cert-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: .3rem; color: var(--cream); }
.cert-card p { font-size: .77rem; color: var(--cream-muted); line-height: 1.5; }

/* ── Export ── */
.export-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; margin-top: 3rem; }
.export-countries { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.5rem; }
.country-chip { padding: .38rem .9rem; border-radius: 50px; font-size: .8rem; font-weight: 500; background: rgba(61,139,58,.12); border: 1px solid rgba(90,171,82,.22); color: var(--leaf-bright); }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 1.5rem; }
.blog-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  border-radius: var(--r-md); backdrop-filter: blur(16px); overflow: hidden;
  transition: all var(--transition); cursor: none;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,80,0,.12), 0 2px 12px rgba(196,124,26,.18); border-color: rgba(232,168,48,.4); }
.blog-card-img { height: 200px; background: linear-gradient(135deg, var(--forest-mid), var(--forest-rich)); display: flex; align-items: center; justify-content: center; font-size: 4rem; overflow: hidden; }
.blog-card-img img { width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.5rem; }
.blog-card-tag { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--harvest-warm); margin-bottom: .45rem; }
.blog-card h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; margin-bottom: .65rem; line-height: 1.4; color: var(--cream); }
.blog-card p { font-size: .84rem; color: var(--cream-muted); line-height: 1.65; margin-bottom: 1rem; }
.blog-card-meta { font-size: .76rem; color: var(--cream-muted); display: flex; gap: 1rem; }

/* ── Contact Form ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; margin-top: 3rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--cream-dim); margin-bottom: .45rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .85rem 1.15rem;
  background: rgba(255,255,255,.92); border: 1.2px solid rgba(58,170,74,.30);
  border-radius: var(--r-sm); color: #1E5C2A; font-family: var(--font-sans); font-size: .88rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(30,92,42,.35); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #3AAA4A;
  box-shadow: 0 0 0 4px rgba(58,170,74,.12);
}
.form-group textarea { min-height: 120px; }
.form-group select option { background: var(--forest-mid); }

.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-info-card { padding: 1.5rem; display: flex; gap: 1rem; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--r-md); backdrop-filter: blur(12px); transition: border-color var(--transition); }
.contact-info-card:hover { border-color: rgba(232,168,48,.3); }
.contact-info-card .icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-info-card h4 { font-size: .87rem; font-weight: 700; margin-bottom: .28rem; color: var(--cream); }
.contact-info-card p { font-size: .83rem; color: var(--cream-muted); line-height: 1.6; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  min-height: 50vh; display: flex; align-items: center;
  position: relative;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.page-hero-bg::before { content:''; position:absolute; inset:0; background:rgba(10,40,12,.72); }
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: 1260px; margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) clamp(1.5rem,5vw,3rem) 4rem;
  text-align: center;
}
.page-hero-inner .section-tag { margin: 0 auto 1.5rem; color: #E8C97A; border-color: rgba(232,201,122,.35); background: rgba(196,124,26,.18); }
.page-hero-inner .section-title {
  font-size: clamp(2.5rem,6vw,4.5rem);
  color: #FDFAF4;           /* ivory on dark overlay */
  text-shadow: 0 2px 24px rgba(0,0,0,.18);
}
.page-hero-inner .section-title em  { color: #7DD87A; }
.page-hero-inner .section-title .gold { color: #E8C97A; }
.page-hero-inner .section-sub  { margin: 1rem auto 0; color: rgba(253,250,244,.72); }

/* ── Footer ── */
footer {
  background: #0f2212;
  border-top: 1px solid rgba(58,170,74,.14);
}
.footer-inner {
  max-width: 1260px; margin: 0 auto;
  padding: 4.5rem clamp(1.5rem,5vw,3rem) 2rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
}
.footer-desc { font-size: .86rem; color: rgba(253,250,244,.52); line-height: 1.72; margin: .8rem 0 1.4rem; }
.footer-social { display: flex; gap: .7rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(58,170,74,.22);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  color: rgba(253,250,244,.60); transition: all var(--transition);
}
.footer-social a:hover { background: var(--harvest); color: #FDFAF4; transform: translateY(-3px); }
.footer-col h4 { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #D4A030; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul a { font-size: .85rem; color: rgba(253,250,244,.50); transition: color var(--transition); }
.footer-col ul a:hover { color: #7DD87A; }
.footer-contact-item { display: flex; gap: .55rem; font-size: .85rem; color: rgba(253,250,244,.50); margin-bottom: .65rem; line-height: 1.5; }
.footer-contact-item .icon { color: #D4A030; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  max-width: 1260px; margin: 0 auto;
  padding: 1.4rem clamp(1.5rem,5vw,3rem);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  border-top: 1px solid rgba(58,170,74,.10);
  font-size: .8rem; color: rgba(253,250,244,.35);
}
.footer-bottom a { color: #D4A030; }

/* ── WhatsApp FAB ── */
.fab-whatsapp {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9001;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; border: none; cursor: none;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
  animation: fabPulse 3s ease-in-out infinite;
  transition: transform var(--transition);
}
.fab-whatsapp:hover { transform: scale(1.12); }
@keyframes fabPulse {
  0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,.5); }
  50%      { box-shadow: 0 8px 40px rgba(37,211,102,.8); }
}

/* ── Floating leaves ── */
.leaf { position: absolute; pointer-events: none; z-index: 0; font-size: 1.4rem; opacity: .12; animation: leafFloat linear infinite; }
@keyframes leafFloat {
  0%   { transform: translateY(100vh) rotate(0deg) translateX(0); opacity: 0; }
  10%  { opacity: .12; }
  90%  { opacity: .12; }
  100% { transform: translateY(-10vh) rotate(360deg) translateX(50px); opacity: 0; }
}

/* ── Benefits grid ── */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px,1fr)); gap: 1.2rem; }
.benefit-card { padding: 1.8rem 1.4rem; text-align: center; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--r-md); backdrop-filter: blur(12px); transition: all var(--transition); }
.benefit-card:hover { transform: translateY(-5px) rotateZ(-.5deg); border-color: rgba(232,168,48,.3); }
.benefit-card .icon { font-size: 2.5rem; margin-bottom: .75rem; display: block; }
.benefit-card h4 { font-size: .93rem; font-weight: 700; margin-bottom: .38rem; color: var(--cream); }
.benefit-card p { font-size: .8rem; color: var(--cream-muted); line-height: 1.6; }

/* ── Organic Divider ── */
.organic-divider {
  width: 100%; display: flex; align-items: center; justify-content: center;
  gap: 1.2rem; padding: .5rem 0; position: relative; z-index: 2;
}
.organic-divider::before, .organic-divider::after {
  content: ''; flex: 1;
  height: 1px; background: linear-gradient(90deg, transparent, rgba(196,124,26,.3));
}
.organic-divider::after { background: linear-gradient(270deg, transparent, rgba(196,124,26,.3)); }
.organic-divider span { font-size: 1.2rem; color: var(--harvest); opacity: .7; }

/* ══════════════════════════════════════════
   3D COCONUT SPHERE
══════════════════════════════════════════ */
.sphere-wrap {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
#coconut-sphere {
  width: 420px; height: 420px;
  cursor: default;
  /* Exquisite golden-amber trust aura tracing the dynamic brand medallion showcase */
  filter:
    drop-shadow(0 18px 45px rgba(10,5,2,.85))
    drop-shadow(0  0  90px rgba(230,187,64,.35));
  transition: filter var(--transition);
}
.sphere-label {
  position: absolute; bottom: -1rem; left: 50%; transform: translateX(-50%);
  font-size: .64rem; letter-spacing: .20em; text-transform: uppercase;
  color: var(--cream-muted); white-space: nowrap; opacity: .5;
}

/* ══════════════════════════════════════════
   3D FLIP CARDS
══════════════════════════════════════════ */
.flip-card {
  perspective: 1000px;
  cursor: pointer;
}
.flip-card-inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform .7s var(--ease);
}
.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-front, .flip-back {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--r-md);
  overflow: hidden;
}
.flip-back {
  transform: rotateY(180deg);
  background: linear-gradient(160deg, var(--forest-mid), var(--forest-rich));
  border: 1px solid var(--glass-border);
  padding: 1.6rem;
  display: flex; flex-direction: column; justify-content: space-between;
}
.flip-back h3 { font-family: var(--font-serif); font-size: 1.22rem; color: var(--harvest-warm); margin-bottom: .7rem; }
.flip-back ul { list-style: disc; padding-left: 1.2rem; font-size: .82rem; color: var(--cream-dim); line-height: 1.7; }
.flip-back .product-price { color: var(--harvest-warm); font-weight: 700; font-size: 1.1rem; margin-top: .8rem; }
.flip-back .btn { margin-top: .8rem; font-size: .8rem; padding: .55rem 1.4rem; }
.flip-hint {
  position: absolute; top: .65rem; right: .75rem; z-index: 5;
  font-size: .65rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--cream-muted); background: rgba(0,0,0,.35); padding: .25rem .6rem; border-radius: 20px;
  pointer-events: none;
}

/* ══════════════════════════════════════════
   3D CAROUSEL
══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   LUXURY COVERFLOW SHOWCASE
══════════════════════════════════════════ */
.lux-showcase-section { text-align: center; padding: clamp(3rem,6vw,5rem) 0; overflow: hidden; }

/* Stage */
.lux-stage {
  position: relative;
  width: 100%;
  height: 480px;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}

/* Breathing ambient spotlight behind active card */
.lux-spotlight {
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,155,59,.22) 0%, rgba(61,139,58,.08) 45%, transparent 70%);
  filter: blur(48px);
  pointer-events: none;
  animation: luxSpotBreath 4s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes luxSpotBreath {
  from { transform: scale(.9); opacity: .7; }
  to   { transform: scale(1.15); opacity: 1; }
}

/* Track — flat container, cards position themselves */
.lux-track {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
}

/* Individual card */
.lux-card {
  position: absolute;
  width: 300px; height: 400px;
  top: 50%; left: 50%;
  margin-left: -150px; margin-top: -200px;
  border-radius: 18px;
  overflow: visible;
  cursor: pointer;
  /* CSS handles the transition — eased per-card */
  transition: transform 0.85s cubic-bezier(0.4,0,0.2,1),
              opacity   0.85s cubic-bezier(0.4,0,0.2,1),
              filter    0.85s cubic-bezier(0.4,0,0.2,1);
  will-change: transform, opacity, filter;
}

.lux-card-inner {
  width: 100%; height: 100%;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,60,0,.18), 0 0 0 1px rgba(58,170,74,.20);
  transition: box-shadow 0.85s cubic-bezier(0.4,0,0.2,1);
}

/* Active card — gold border glow */
.lux-card.is-active .lux-card-inner {
  box-shadow:
    0 0 0 1.5px rgba(232,168,48,.7),
    0 0 40px rgba(232,168,48,.3),
    0 36px 90px rgba(0,60,0,.22);
}

.lux-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transform-origin: center center;
  transition: transform 6s ease-in-out; /* Ken Burns on active */
}

.lux-card.is-active img {
  transform: scale(1.06) translateX(1%);
}

/* Gold shimmer sweep — plays once when card becomes active */
.lux-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255,220,100,.18) 50%,
    transparent 70%
  );
  background-size: 250% 100%;
  background-position: 200% 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.lux-card.is-active .lux-shimmer {
  opacity: 1;
  animation: luxSweep 1.4s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes luxSweep {
  0%   { background-position: 200% 0; }
  100% { background-position: -30% 0; }
}

/* Glass reflection strip below each card */
.lux-card-inner::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 38%;
  background: linear-gradient(transparent, rgba(6,10,6,.88) 75%);
  pointer-events: none;
}

/* Product info strip */
.lux-info {
  margin-top: 2.2rem;
  min-height: 3.2rem;
  transition: opacity .4s;
}
.lux-info-name {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem,2.2vw,1.7rem);
  font-weight: 700;
  color: var(--harvest-warm);
  letter-spacing: .04em;
  animation: luxFadeUp .55s ease both;
}
.lux-info-sub {
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: .35rem;
  animation: luxFadeUp .55s .12s ease both;
}
@keyframes luxFadeUp {
  from { opacity:0; transform: translateY(10px); }
  to   { opacity:1; transform: translateY(0); }
}

/* Dot indicators */
.lux-dots {
  display: flex; gap: .55rem; justify-content: center; margin-top: 1.4rem;
}
.lux-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  transition: background .4s, transform .4s, width .4s;
}
.lux-dot.active {
  background: var(--harvest-warm);
  width: 22px; border-radius: 4px;
  transform: none;
}

/* Controls */
.lux-controls {
  display: flex; gap: 1.2rem; justify-content: center; align-items: center; margin-top: 1.4rem;
}
.lux-btn {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  color: var(--harvest-warm); font-size: 1.25rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); backdrop-filter: blur(8px);
}
.lux-btn:hover { background: var(--harvest); color: var(--void); transform: scale(1.1); }

/* ══════════════════════════════════════════
   ONLINE PLATFORMS SECTION
══════════════════════════════════════════ */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.platform-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
  padding: 1.2rem .8rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none; color: inherit;
}
.platform-card:hover {
  border-color: var(--harvest); background: rgba(196,124,26,.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(196,124,26,.2);
}
.platform-card .p-icon { font-size: 2rem; }
.platform-card .p-name { font-size: .78rem; font-weight: 600; color: var(--cream-dim); letter-spacing: .04em; }
.platform-card .p-type { font-size: .66rem; color: var(--cream-muted); }

/* ═══════════════════════════════════════════════════════════
   LUXURY ANIMATION SYSTEM — Dream Coconut Edition
   ═══════════════════════════════════════════════════════════ */

/* ── Smooth-scroll upgrade ── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
}

/* ── Luxury black-blur page transition ── */
.page-veil {
  position: fixed; inset: 0; z-index: 99990;
  pointer-events: all;
  /* rgba background so the blur is visible through it during the transition */
  background: transparent;
  backdrop-filter: blur(18px) brightness(0.85);
  -webkit-backdrop-filter: blur(18px) brightness(0.85);
  pointer-events: all;
  transition: backdrop-filter 0.22s ease-out;
}

/* Fully clear — page visible, no blur */
.page-veil.lifted {
  background: transparent;
  backdrop-filter: blur(0px) brightness(1);
  -webkit-backdrop-filter: blur(0px) brightness(1);
  pointer-events: none;
  transition: backdrop-filter 0.22s ease-out;
}

/* Exit: blur punches in first (0.32s), black floods in after (0.52s) */
.page-veil.leaving {
  background: transparent;
  backdrop-filter: blur(18px) brightness(0.85);
  -webkit-backdrop-filter: blur(18px) brightness(0.85);
  pointer-events: all;
  transition: backdrop-filter 0.16s ease-in;
}

/* ── Fog canvas ── */
#fog-canvas {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  opacity: .55;
}

/* ── Ambient glow orbs (breathing) ── */
.ambient-orb {
  position: fixed; border-radius: 50%;
  pointer-events: none; z-index: 0;
  filter: blur(80px);
  animation: orbDrift 18s ease-in-out infinite alternate;
}
.ambient-orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(196,124,26,.10) 0%, transparent 70%);
  top: -120px; left: -100px;
  animation-duration: 22s;
}
.ambient-orb-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(61,139,58,.09) 0%, transparent 70%);
  bottom: 10%; right: -80px;
  animation-duration: 17s; animation-delay: -8s;
}
.ambient-orb-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(232,168,48,.07) 0%, transparent 70%);
  top: 45%; left: 35%;
  animation-duration: 26s; animation-delay: -12s;
}
@keyframes orbDrift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.08); }
  66%  { transform: translate(-25px, 20px) scale(.94); }
  100% { transform: translate(15px, -50px) scale(1.04); }
}

/* ── Liquid blob section separators ── */
.liquid-blob {
  position: relative; overflow: hidden;
}
.liquid-blob::before {
  content: '';
  position: absolute; top: -60px; left: -5%; right: -5%; height: 120px;
  background: inherit;
  border-radius: 0 0 50% 50% / 0 0 60px 60px;
  z-index: 2;
  filter: blur(2px);
}

/* ── Aurora light ray ── */
.aurora-ray {
  position: absolute; inset: 0; z-index: 0;
  background: conic-gradient(
    from 200deg at 30% 60%,
    transparent 0deg,
    rgba(61,139,58,.04) 30deg,
    rgba(196,124,26,.06) 60deg,
    transparent 90deg
  );
  animation: auroraShift 12s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes auroraShift {
  0%   { transform: rotate(0deg) scale(1.1); opacity: .7; }
  50%  { transform: rotate(6deg)  scale(1.05); opacity: 1; }
  100% { transform: rotate(-4deg) scale(1.15); opacity: .6; }
}

/* ── Gold shimmer text ── */
.shimmer-text {
  background: linear-gradient(
    100deg,
    var(--harvest-warm) 0%,
    #ffe8a0 35%,
    var(--harvest-warm) 50%,
    #c47c1a 65%,
    var(--harvest-warm) 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerFlow 4s linear infinite;
}
@keyframes shimmerFlow {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ── Liquid ripple button ── */
.btn { position: relative; overflow: hidden; }
.btn .ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  transform: scale(0);
  animation: rippleOut .65s ease-out forwards;
  pointer-events: none;
}
@keyframes rippleOut {
  to { transform: scale(4); opacity: 0; }
}

/* ── Magnetic glow border on cards ── */
.product-card,
.glass-card,
.testimonial-card,
.stat-card,
.benefit-card {
  position: relative;
}
.product-card::after,
.glass-card::after {
  content: '';
  position: absolute; inset: -1px; border-radius: inherit;
  background: linear-gradient(135deg, rgba(232,168,48,.0), rgba(90,171,82,.0));
  transition: background .5s var(--ease);
  pointer-events: none; z-index: 0;
  border-radius: var(--r-md);
}
.product-card:hover::after {
  background: linear-gradient(135deg, rgba(232,168,48,.25), rgba(90,171,82,.15));
}

/* ── Word reveal split animation ── */
.word-reveal .word {
  display: inline-block;
  overflow: hidden;
}
.word-reveal .word-inner {
  display: inline-block;
  transform: translateY(110%) rotate(3deg);
  opacity: 0;
  transition: transform .75s var(--ease), opacity .6s ease;
}
.word-reveal.visible .word-inner {
  transform: translateY(0) rotate(0deg);
  opacity: 1;
}
.word-reveal.visible .word-inner:nth-child(1)  { transition-delay: .04s; }
.word-reveal.visible .word-inner:nth-child(2)  { transition-delay: .10s; }
.word-reveal.visible .word-inner:nth-child(3)  { transition-delay: .16s; }
.word-reveal.visible .word-inner:nth-child(4)  { transition-delay: .22s; }
.word-reveal.visible .word-inner:nth-child(5)  { transition-delay: .28s; }
.word-reveal.visible .word-inner:nth-child(6)  { transition-delay: .34s; }

/* ── Enhanced reveal: slide up + blur ── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition:
    opacity .85s cubic-bezier(.23,1,.32,1),
    transform .85s cubic-bezier(.23,1,.32,1),
    filter .85s ease;
  filter: blur(6px);
}
.reveal         { transform: translateY(40px); }
.reveal-left    { transform: translateX(-50px); }
.reveal-right   { transform: translateX(50px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: translate(0,0); filter: blur(0);
}

/* ── Section hero bg — Ken Burns zoom ── */
.hero-bg, .page-hero-bg {
  animation: kenBurns 22s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0%   { transform: scale(1)    translateX(0%)   translateY(0%); }
  50%  { transform: scale(1.06) translateX(-1%)  translateY(-0.5%); }
  100% { transform: scale(1.04) translateX(0.5%) translateY(-1%); }
}

/* ── Floating card depth shadow pulse ── */
.hero-card-3d {
  animation: floatDepth 6s ease-in-out infinite;
}
@keyframes floatDepth {
  0%,100% { transform: perspective(800px) rotateX(4deg) rotateY(-5deg) translateY(0px);
             box-shadow: 0 30px 80px rgba(0,60,0,.18), 0 0 60px rgba(196,124,26,.18); }
  50%     { transform: perspective(800px) rotateX(2deg) rotateY(-3deg) translateY(-14px);
             box-shadow: 0 50px 120px rgba(0,60,0,.14), 0 0 80px rgba(196,124,26,.28); }
}

/* ── Stats counter card — pulse ring ── */
.stat-card::before {
  content: '';
  position: absolute; inset: 0; border-radius: var(--r-md);
  border: 1px solid rgba(232,168,48,0);
  transition: border-color .4s, transform .4s;
}
.stat-card:hover::before {
  border-color: rgba(232,168,48,.35);
  transform: scale(1.04);
}

/* ── Section tag — glowing dot ── */
.section-tag::before {
  content: '◆';
  margin-right: .4rem;
  animation: tagPulse 2.5s ease-in-out infinite;
  display: inline-block;
}
@keyframes tagPulse {
  0%,100% { opacity: .4; transform: scale(.8); }
  50%     { opacity: 1;  transform: scale(1.1); }
}

/* ── CTA band — animated gradient sweep ── */
.cta-band {
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(232,168,48,.06) 40%,
    rgba(232,168,48,.12) 50%,
    rgba(232,168,48,.06) 60%,
    transparent 100%
  );
  background-size: 300% 100%;
  animation: ctaSweep 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ctaSweep {
  0%   { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}

/* ── Announcement bar — speed up and glow ── */
.announcement-text { animation-duration: 24s; }
.announcement { box-shadow: 0 2px 20px rgba(61,139,58,.25); }

/* ── Platform card shimmer on hover ── */
.platform-card::after {
  content: '';
  position: absolute; inset: 0; border-radius: var(--r-md);
  background: linear-gradient(135deg, transparent 40%, rgba(232,168,48,.08) 100%);
  opacity: 0; transition: opacity .4s;
}
.platform-card:hover::after { opacity: 1; }

/* ── Scroll indicator arrow ── */
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: .4rem;
  cursor: pointer;
}
.scroll-indicator span {
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream-muted);
}
.scroll-indicator .arrow {
  width: 20px; height: 20px;
  border-right: 1.5px solid rgba(232,168,48,.6);
  border-bottom: 1.5px solid rgba(232,168,48,.6);
  transform: rotate(45deg);
  animation: scrollArrow 1.8s ease-in-out infinite;
}
@keyframes scrollArrow {
  0%,100% { transform: rotate(45deg) translateY(0);   opacity: .35; }
  50%     { transform: rotate(45deg) translateY(7px);  opacity: .9; }
}

/* ── Process steps — flowing connector ── */
.process-steps::before {
  content: '';
  position: absolute; top: 30px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--harvest), var(--leaf-bright), var(--harvest), transparent);
  background-size: 200% 100%;
  animation: flowLine 4s linear infinite;
  opacity: .25;
}
@keyframes flowLine {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.process-steps { position: relative; }

/* ── Organic divider — breath ── */
.organic-divider span {
  animation: leafBreath 4s ease-in-out infinite;
  display: inline-block;
}
@keyframes leafBreath {
  0%,100% { transform: scale(1) rotate(-5deg); }
  50%     { transform: scale(1.25) rotate(5deg); }
}

/* ── Testimonial card hover lift ── */
.testimonial-card {
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 28px 64px rgba(0,80,0,.12), 0 0 40px rgba(196,124,26,.15);
}

/* ── Nav link — liquid underline ── */
.nav-links a::after {
  content: '';
  display: block; height: 1.5px; width: 0;
  background: linear-gradient(90deg, var(--harvest), var(--leaf-bright));
  transition: width .4s var(--ease);
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ── FAB WhatsApp — heartbeat ── */
.fab-whatsapp {
  animation: fabHeartbeat 3s ease-in-out infinite;
}
@keyframes fabHeartbeat {
  0%,100% { transform: scale(1);    box-shadow: 0 8px 32px rgba(37,211,102,.4); }
  10%     { transform: scale(1.12); box-shadow: 0 12px 40px rgba(37,211,102,.6); }
  20%     { transform: scale(1);    }
  30%     { transform: scale(1.08); }
  40%     { transform: scale(1);    }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-grid, .export-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-features { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .product-detail-card, .product-detail-card.reverse { grid-template-columns: 1fr; direction: ltr; }
  .product-detail-img { height: 240px; }
  .product-detail-img::after { background: linear-gradient(transparent, rgba(245,249,242,.6)) !important; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
