/* =============================================
   RENA FARM — COMPLETE STYLESHEET
   Forest Green Palette:
   --f950: #071E07  (header, darkest)
   --f900: #0D330E  (footer, dark sections)
   --f700: #2D531A  (buttons, accents)
   --f500: #4A7A2A  (mid-green)
   --f300: #7CB548  (light accent)
   --f200: #B5D68A  (pale green)
   --f100: #D4E8C2  (very light green)
   --f50:  #EEF6E5  (section backgrounds)
============================================= */

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

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

:root {
  --f950: #071E07;
  --f900: #0D330E;
  --f800: #1A3D12;
  --f700: #2D531A;
  --f500: #4A7A2A;
  --f300: #7CB548;
  --f200: #B5D68A;
  --f100: #D4E8C2;
  --f50:  #EEF6E5;
  --white: #ffffff;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-100: #F3F4F6;

  --shadow-sm: 0 1px 4px rgba(7,30,7,0.08);
  --shadow-md: 0 4px 20px rgba(7,30,7,0.12);
  --shadow-lg: 0 12px 40px rgba(7,30,7,0.18);
  --radius:    8px;
  --radius-lg: 16px;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Inter', sans-serif; font-weight: 700; line-height: 1.2; color: var(--f950); }
h4, h5, h6  { font-family: 'Inter', sans-serif; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.3rem); }
p  { font-size: 1rem; color: var(--gray-500); line-height: 1.75; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--f500);
  display: block;
  margin-bottom: 0.6rem;
}

.section-title   { color: var(--f950); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; max-width: 600px; color: var(--gray-500); margin-bottom: 2.5rem; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--f700);
  color: var(--white);
  border-color: var(--f700);
}
.btn-primary:hover {
  background: var(--f900);
  border-color: var(--f900);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45,83,26,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--f950);
}

.btn-outline-green {
  background: transparent;
  color: var(--f700);
  border-color: var(--f700);
}
.btn-outline-green:hover {
  background: var(--f700);
  color: var(--white);
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 12px; left: 18px; right: 18px;
  z-index: 1000;
  background: rgba(7, 30, 7, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.4s ease, border-color 0.4s ease, opacity 0.35s ease;
}
header.scrolled {
  background: rgba(7, 30, 7, 0.97);
  border-color: rgba(255,255,255,0.05);
}
header.nav-hidden {
  opacity: 0;
  pointer-events: none;
}

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

/* ── HAMBURGER MENU BUTTON ── */
.rf-menu-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.65rem 0.7rem;
  color: var(--white);
  flex-shrink: 0;
  border-radius: 8px;
  transition: background 0.2s ease;
}
.rf-menu-btn:hover,
.rf-menu-btn.open {
  background: rgba(255,255,255,0.55);
}
.rf-menu-btn:hover .rf-menu-lines span,
.rf-menu-btn.open .rf-menu-lines span {
  background: var(--f800);
}
.rf-menu-btn:hover .rf-menu-label,
.rf-menu-btn.open .rf-menu-label {
  color: var(--f800);
}
.rf-menu-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 22px;
}
.rf-menu-lines span {
  width: 100%;
  height: 1.5px;
  background: var(--white);
  display: block;
  transition: all 0.35s ease;
  transform-origin: center;
}
.rf-menu-btn.open .rf-menu-lines span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.rf-menu-btn.open .rf-menu-lines span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }
.rf-menu-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

/* ── CENTER BRAND ── */
.nav-brand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  text-decoration: none;
  line-height: 1;
}
.brand-name {
  font-family: 'Raleway', 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
}
.brand-sub {
  font-size: 0.52rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-top: 3px;
}
.nav-logo-img {
  height: 44px;
  display: block;
}

/* ── RIGHT NAV LINKS ── */
.rf-nav-right {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-shrink: 0;
}
.rf-nav-right a {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.rf-nav-right a:hover { color: var(--white); }
.rf-nav-right .rf-nav-wa {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  color: rgba(255,255,255,0.72);
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s;
}
.rf-nav-right .rf-nav-wa:hover {
  background: rgba(255,255,255,0.55);
  color: var(--f800);
}
.rf-nav-right .rf-nav-wa svg { flex-shrink: 0; fill: currentColor; transition: fill 0.2s; }
.rf-nav-right .rf-nav-wa:hover svg,
.rf-nav-right .rf-nav-wa:hover svg path { fill: var(--f800); }

/* Group WA + account icons with tighter spacing */
.rf-nav-icons {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.nav-account-wrap {
  position: relative;
}

/* ── MENU BACKDROP (blurs page content behind overlay) ── */
.rf-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1);
}
.rf-menu-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* ── NAV OVERLAY — floats from navbar position ── */
.rf-nav-overlay {
  position: fixed;
  top: 12px;
  left: 18px;
  width: calc(75vw - 18px);
  bottom: 14px;
  z-index: 1001;
  background: rgba(7,30,7,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.99);
  transform-origin: top left;
  transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1), transform 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
}
.rf-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

/* ── TOP BAR (mirrors navbar height) ── */
.rf-overlay-top-bar {
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rf-overlay-close {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem 0.7rem;
  color: rgba(255,255,255,0.6);
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s;
  font-family: inherit;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.rf-overlay-close:hover { background: rgba(255,255,255,0.1); color: var(--white); }

/* ── CONTENT ROW ── */
.rf-overlay-inner {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* ── LEFT: navigation panel ── */
.rf-overlay-nav {
  flex: 0 0 210px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  overflow-y: auto;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.rf-ol-group { display: flex; flex-direction: column; }
.rf-ol-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--f300);
  margin-bottom: 0.6rem;
}
.rf-ol-group a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s, padding-left 0.2s;
  display: block;
}
.rf-ol-group a:first-of-type { border-top: 1px solid rgba(255,255,255,0.08); }
.rf-ol-group a:hover { color: var(--white); padding-left: 0.4rem; }
.rf-ol-group a.active { color: var(--f300); font-weight: 600; }

/* Products link with expand arrow */
.rf-ol-has-sub {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}
.rf-ol-sub-arrow {
  opacity: 0.4;
  flex-shrink: 0;
  transition: transform 0.25s ease, opacity 0.2s;
}
.rf-ol-has-sub.sub-open .rf-ol-sub-arrow {
  transform: rotate(90deg);
  opacity: 0.9;
}
.rf-ol-has-sub.sub-open { color: var(--white); }

/* Products sub-panel (slides in beside main nav) */
.rf-overlay-sub {
  width: 0;
  overflow: hidden;
  flex-shrink: 0;
  transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
}
.rf-overlay-sub.open { width: 185px; }
.rf-overlay-sub-inner {
  width: 185px;
  min-width: 185px;
  height: 100%;
  padding: 2rem 1.4rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.rf-overlay-sub .rf-ol-label { margin-bottom: 0.7rem; }
.rf-overlay-sub a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s, padding-left 0.2s;
  display: block;
  white-space: nowrap;
}
.rf-overlay-sub a:first-of-type { border-top: 1px solid rgba(255,255,255,0.07); }
.rf-overlay-sub a:hover { color: var(--white); padding-left: 0.35rem; }
.rf-overlay-sub a.active { color: var(--f300); font-weight: 600; }
.rf-sub-view-all {
  margin-top: auto !important;
  padding-top: 1rem !important;
  border-bottom: none !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  color: var(--f300) !important;
}
.rf-sub-view-all:hover { padding-left: 0 !important; opacity: 0.8; }

/* Action buttons */
.rf-ol-actions { display: flex; flex-direction: column; gap: 0.6rem; }
.rf-ol-action-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 6px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  width: fit-content;
}
.rf-ol-action-btn:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }

/* Sign In at bottom */
.rf-ol-signin {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.rf-ol-signin:hover { color: var(--white); }


/* ── RIGHT: image cards panel ── */
.rf-overlay-cards {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}
.rf-ol-card {
  position: relative;
  flex-shrink: 0;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.rf-ol-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.rf-ol-card:hover img { transform: scale(1.04); }
.rf-ol-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  pointer-events: none;
}
.rf-ol-card-label {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 1;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

/* Tablet: restore full-width overlay */
@media (min-width: 641px) and (max-width: 900px) {
  .rf-nav-overlay { width: calc(100vw - 36px); }
}

/* Mobile: hide cards, full-width overlay */
@media (max-width: 640px) {
  .rf-nav-overlay { width: calc(100vw - 36px); }
  .rf-overlay-cards { display: none; }
  .rf-overlay-nav { flex: 1; }
}

/* Mobile: hamburger left, logo right — icon centred above text */
@media (max-width: 640px) {
  .rf-nav-right { display: none; }
  .nav-brand {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    align-items: center;
  }
  .nav-logo-img { height: 34px; }
  .brand-name { font-size: 0.7rem; letter-spacing: 0.18em; }
}

/* Mobile: hide mobile WhatsApp & old hamburger — handled by pill nav */
.nav-wa-mob { display: none; }
.hamburger  { display: none; }

/* ── ACCOUNT NAV BUTTON & DROPDOWN ── */
.nav-account-wrap {
  position: relative;
}
.nav-account-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.72);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  padding: 0;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s;
}
.nav-account-btn:hover {
  background: rgba(255,255,255,0.55);
  color: var(--f800);
}
.nav-account-btn svg { stroke: currentColor; transition: stroke 0.2s; }
.nav-account-btn:hover svg { stroke: var(--f800); }
.nav-account-btn.logged-in { color: var(--white); }
.nav-account-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--f100);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  min-width: 200px;
  z-index: 1000;
  overflow: hidden;
  animation: ddFade 0.15s ease;
}
/* Invisible bridge so cursor can travel from button to dropdown */
.nav-account-dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
@keyframes ddFade { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:translateY(0)} }
.nav-account-wrap.open .nav-account-dropdown { display: block; }
.nav-account-dropdown .dd-header {
  padding: 0.9rem 1rem 0.6rem;
  border-bottom: 1px solid var(--f50);
}
.nav-account-dropdown .dd-name  { font-weight:700; font-size:0.88rem; color:var(--f950); }
.nav-account-dropdown .dd-email { font-size:0.72rem; color:var(--gray-400); margin-top:0.1rem; }
.nav-account-dropdown a,
.nav-account-dropdown button.dd-item {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.65rem 1rem;
  font-size: 0.85rem; font-weight: 500; color: var(--f700);
  text-decoration: none; transition: background 0.15s;
  width: 100%; text-align: left; border: none; background: none;
  cursor: pointer; font-family: 'Inter', sans-serif;
}
.nav-account-dropdown a:hover,
.nav-account-dropdown button.dd-item:hover { background: var(--f50); color: var(--f950); }
.nav-account-dropdown .dd-divider { height: 1px; background: var(--f50); margin: 0.2rem 0; }
.nav-account-dropdown .dd-signout { color: #dc2626; }
.nav-account-dropdown .dd-signout:hover { background: #fef2f2; color: #dc2626; }
/* Account wrap visible on all screen sizes */

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  max-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 0;
}

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

.hero-video-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--f950) 0%, var(--f900) 50%, var(--f700) 100%);
  z-index: 0;
}

/* ── HERO SLIDESHOW ── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroFade 25s ease-in-out infinite;
  will-change: opacity, transform;
}
.hero-slide:nth-child(1) { animation-delay: -2.5s; }
.hero-slide:nth-child(2) { animation-delay:  2.5s; }
.hero-slide:nth-child(3) { animation-delay:  7.5s; }
.hero-slide:nth-child(4) { animation-delay: 12.5s; }
.hero-slide:nth-child(5) { animation-delay: 17.5s; }

@keyframes heroFade {
  0%   { opacity: 0; transform: scale(1.06); }
  10%  { opacity: 1; transform: scale(1.04); }
  20%  { opacity: 1; transform: scale(1.02); }
  30%  { opacity: 0; transform: scale(1.0);  }
  100% { opacity: 0; transform: scale(1.0);  }
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(7,30,7,0.88) 0%, rgba(7,30,7,0.45) 45%, rgba(7,30,7,0.15) 100%),
    linear-gradient(to right, rgba(7,30,7,0.6) 0%, rgba(7,30,7,0) 60%);
  z-index: 1;
}

.hero > .container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 clamp(1.5rem, 5vw, 5rem) 4rem;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 580px;
  text-align: left;
  margin: 0;
  padding-bottom: 0;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--f300);
  margin-bottom: 1.2rem;
}

.hero-eyebrow-line {
  width: 36px; height: 1px;
  background: var(--f300);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.hero-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--f200);
  font-size: 1rem;
  margin-bottom: 1.8rem;
  opacity: 0.9;
}

.hero p {
  color: rgba(255,255,255,0.75);
  font-size: 0.97rem;
  margin-bottom: 2rem;
  max-width: 460px;
  line-height: 1.7;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-start; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  color: var(--f300);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.3rem;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem; right: 2.5rem;
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: bounce 2.2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* ── PAGE HERO ── */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3.5rem;
  background-color: var(--f950);
  padding-top: 110px;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.7rem;
  position: relative;
  z-index: 1;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
}
.page-hero > .container > p { color: var(--f200); font-size: 1rem; max-width: 500px; position: relative; z-index: 1; line-height: 1.7; }

/* ── SPLIT-PANEL IMAGE (shared by all page heroes) ── */
.ph-img-panel { position:absolute; right:0; top:0; bottom:0; width:50%; overflow:hidden; }
.ph-img-panel img { width:100%; height:100%; object-fit:cover; object-position:center 30%; display:block; }
.ph-img-fade { position:absolute; inset:0; background:linear-gradient(to right, var(--f950) 0%, rgba(7,30,7,0.6) 50%, rgba(7,30,7,0) 100%); }
@media (max-width:768px) {
  .ph-img-panel { display:block; width:75%; }
  .ph-img-fade { background: linear-gradient(to right, var(--f950) 0%, var(--f950) 5%, rgba(7,30,7,0.55) 32%, rgba(7,30,7,0.38) 58%, rgba(7,30,7,0.38) 100%); }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  color: var(--f300);
  position: relative; z-index: 1;
}
.breadcrumb a { color: var(--f300); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.6); }
.breadcrumb .sep { color: var(--f700); }

/* ── SECTIONS ── */
section { padding: 96px 0; }
.section-white { background: var(--white); }
.section-light  { background: var(--f50); }

/* ── TWO COLUMN ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col.reversed { direction: rtl; }
.two-col.reversed > * { direction: ltr; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--f100);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--f300);
}
.card-body { padding: 1.8rem; }
.card-body h3 { color: var(--f950); margin-bottom: 0.5rem; }

/* ── IMAGE PLACEHOLDER ── */
.img-placeholder {
  border-radius: var(--radius-lg);
  background: var(--f50);
  border: 1px solid var(--f100);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  color: var(--f200);
  position: relative;
}
.img-placeholder::after {
  content: 'Photo coming soon';
  position: absolute;
  bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--f300);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── FEATURE ITEMS ── */
.feature-list { display: flex; flex-direction: column; gap: 0.8rem; }

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--f100);
  transition: all var(--transition);
}
.feature-item:hover { border-color: var(--f300); box-shadow: var(--shadow-sm); }

.feature-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--f50);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--f700);
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-item h4 { color: var(--f950); font-size: 0.92rem; margin-bottom: 0.2rem; }
.feature-item p  { font-size: 0.85rem; margin: 0; }

/* ── STATS STRIP ── */
.stats-strip { background: var(--f950); padding: 64px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem; text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.stat-label {
  font-size: 0.72rem; color: var(--f300);
  text-transform: uppercase; letter-spacing: 0.14em; margin-top: 0.4rem;
}

/* ── VALUES ── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.value-card {
  background: var(--white); border: 1px solid var(--f100);
  border-radius: var(--radius-lg); padding: 1.8rem; text-align: center;
  transition: all var(--transition);
}
.value-card:hover { border-color: var(--f300); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--f50); margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--f700);
}
.value-card .icon svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 1rem; color: var(--f950); margin-bottom: 0.5rem; }
.value-card p  { font-size: 0.85rem; }

/* ── TIMELINE ── */
.farm-timeline { position: relative; padding-left: 2.5rem; margin-top: 1.5rem; }
.farm-timeline::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px; background: var(--f100);
}
.timeline-year { position: relative; margin-bottom: 2.2rem; }
.timeline-year::before {
  content: ''; position: absolute;
  left: -2.8rem; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%; background: var(--f700);
  border: 2px solid var(--f200);
}
.timeline-year .year-badge {
  display: inline-block; background: var(--f700); color: var(--white);
  font-size: 0.68rem; font-weight: 700; padding: 0.15rem 0.6rem;
  border-radius: 3px; margin-bottom: 0.4rem; letter-spacing: 0.05em;
}
.timeline-year h4 { color: var(--f950); font-size: 0.95rem; margin-bottom: 0.3rem; font-family: 'Inter', sans-serif; }
.timeline-year p  { font-size: 0.85rem; margin: 0; }

/* ── PRODUCTS ── */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; margin-top: 3rem; }

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--f100);
  overflow: hidden;
  transition: all var(--transition);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--f300); }

.product-card-header {
  background: var(--f950);
  padding: 2rem; text-align: center; height: 140px;
  display: flex; align-items: center; justify-content: center;
}
.product-card-header .ph { font-size: 3rem; color: var(--f300); }

.product-card-body { padding: 1.5rem; }
.product-card-body h3 { color: var(--f950); margin-bottom: 0.5rem; font-size: 1rem; }
.product-card-body p  { font-size: 0.88rem; margin-bottom: 1.2rem; }

.product-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1.2rem; }
.tag {
  background: var(--f50); color: var(--f700);
  font-size: 0.68rem; font-weight: 700;
  padding: 0.2rem 0.6rem; border-radius: 3px;
  border: 1px solid var(--f100);
}

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; margin-top: 3rem; }
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden; position: relative;
  aspect-ratio: 4/3;
  background: var(--f100);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
  border: 1px solid var(--f100);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.gallery-item .ph { font-size: 2.5rem; color: var(--f300); }

.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(7,30,7,0.9));
  color: var(--white);
  font-size: 0.8rem; font-weight: 600; text-align: center;
  transform: translateY(100%); transition: transform var(--transition);
}
.gallery-item:hover .gallery-label { transform: translateY(0); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }

.contact-method {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: var(--white); border: 1px solid var(--f100);
  border-radius: var(--radius-lg);
  margin-bottom: 0.9rem;
  transition: all var(--transition); text-decoration: none; color: inherit;
}
.contact-method:hover { border-color: var(--f300); box-shadow: var(--shadow-sm); }
.contact-method-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--f50); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--f700);
}
.contact-method-icon svg, .contact-method-icon .ph { width: 20px; height: 20px; font-size: 1.1rem; }
.contact-method h4 { color: var(--f950); font-size: 0.87rem; font-weight: 700; margin-bottom: 0.15rem; }
.contact-method p  { font-size: 0.84rem; margin: 0; color: var(--gray-700); font-weight: 500; }
.contact-method small { font-size: 0.72rem; color: var(--gray-500); }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--f950); margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--f100);
  border-radius: var(--radius); font-family: 'Inter', sans-serif;
  font-size: 0.9rem; color: var(--gray-700); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--f700);
  box-shadow: 0 0 0 3px rgba(45,83,26,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── MAP ── */
.map-container {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 2px solid var(--f100);
}
.map-container img { width: 100%; display: block; }

/* ── REVIEW CAROUSEL ── */
.review-track-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.review-track {
  display: flex; gap: 1.4rem;
  width: max-content;
  animation: slideLeft 28s linear infinite;
}
.review-track:hover { animation-play-state: paused; }
@keyframes slideLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  background: var(--white); border: 1px solid var(--f100);
  border-radius: var(--radius-lg); padding: 1.6rem;
  width: 320px; flex-shrink: 0;
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-lg); border-color: var(--f300); }
.review-platform { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.9rem; }
.review-platform svg { width: 20px; height: 20px; flex-shrink: 0; }
.review-platform-name { font-size: 0.72rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.09em; }
.review-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 0.6rem; letter-spacing: 0.1em; }
.review-text { font-size: 0.87rem; color: var(--gray-700); font-style: italic; line-height: 1.7; margin-bottom: 1.1rem; }
.review-author { display: flex; align-items: center; gap: 0.7rem; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--f700), var(--f300));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: 0.85rem; flex-shrink: 0;
}
.review-name  { font-size: 0.84rem; font-weight: 700; color: var(--f950); }
.review-meta  { font-size: 0.7rem; color: var(--gray-400); margin-top: 0.1rem; }
.review-verified {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.68rem; color: #1a73e8; font-weight: 600; margin-top: 0.6rem;
}
.review-verified svg { width: 11px; height: 11px; }

/* ── FOOTER ── */
footer {
  background: var(--f950);
  color: var(--f200);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.15rem;
  letter-spacing: 0.08em;
}
.footer-logo-img {
  width: 190px;
  height: auto;
  display: block;
  margin-bottom: 0;
}

.footer-brand-sub {
  font-size: 0.68rem;
  color: var(--f300);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-desc { font-size: 0.85rem; max-width: 280px; line-height: 1.7; margin-bottom: 1.5rem; }

.footer-follow-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.7rem;
}

.footer-socials { display: flex; gap: 0.6rem; flex-wrap: wrap; }

.social-icon-btn {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); cursor: pointer; text-decoration: none;
  color: var(--f200);
}
.social-icon-btn svg { width: 16px; height: 16px; fill: currentColor; }
.social-icon-btn:hover {
  background: var(--f700);
  border-color: var(--f700);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.2rem;
}

.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a {
  color: var(--f200); font-size: 0.85rem;
  transition: color var(--transition);
  display: flex; align-items: center; gap: 0.4rem;
}
.footer-col ul li a:hover { color: var(--f300); }
.footer-col ul li a svg { width: 13px; height: 13px; flex-shrink: 0; opacity: 0.6; }

.footer-bottom {
  padding: 1.2rem 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: var(--f300);
  flex-wrap: wrap; gap: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 54px; height: 54px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.5);
  transition: all var(--transition); text-decoration: none;
}
.whatsapp-float svg { width: 26px; height: 26px; fill: white; }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.6); }

.back-to-top {
  position: fixed; bottom: 94px; right: 28px; z-index: 999;
  width: 40px; height: 40px;
  background: var(--f700); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer;
  opacity: 0; transform: translateY(10px);
  transition: all var(--transition); border: none; box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }

/* ── PHOSPHOR ICON SIZES ── */
.ph { line-height: 1; }
.ph-sm  { font-size: 1rem; }
.ph-md  { font-size: 1.3rem; }
.ph-lg  { font-size: 1.6rem; }
.ph-xl  { font-size: 2rem; }
.ph-2xl { font-size: 2.8rem; }
.ph-3xl { font-size: 4rem; }

/* ── HEADER SCROLLED STATE ── */
header.scrolled {
  box-shadow: 0 4px 24px rgba(7,30,7,0.4);
}

/* ── FOOTER BRAND COL ── */
.footer-brand-col { display: flex; flex-direction: column; align-items: flex-start; }

/* ── RESPONSIVE ── */

/* Tablet + mobile: hamburger nav */
@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reversed { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-stats { gap: 1.8rem; }

  /* Collapse nav into hamburger at tablet */
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--f950);
    padding: 0.8rem;
    gap: 0.1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 2px solid var(--f700);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { padding: 0.9rem 1rem; border-radius: 4px; display: block; font-size: 1.05rem; text-align: center; }
  .nav-links a::after { display: none; }
  .nav-links a:hover { background: rgba(255,255,255,0.06); }
  .nav-cta { margin-left: 0 !important; margin-top: 0.4rem; }
  .nav-account-wrap { display: flex !important; margin-left: 0; width: 100%; }
  .nav-account-btn { width: 100%; border-radius: 4px; justify-content: center; gap: 0.5rem; padding: 0.9rem; font-size: 1.05rem; }
  /* Reset for pill navbar — must not stretch to full width */
  .rf-nav-icons .nav-account-wrap { width: 36px !important; height: 36px !important; }
  .rf-nav-icons .nav-account-btn { width: 36px !important; height: 36px !important; padding: 0 !important; border-radius: 10px !important; font-size: initial !important; gap: 0 !important; }
  .nav-account-dropdown { position: static; box-shadow: none; border: none; background: rgba(255,255,255,0.05); border-radius: 8px; margin-top: 0.3rem; }
  .nav-account-dropdown .dd-header { color: var(--white); border-color: rgba(255,255,255,0.1); }
  .nav-account-dropdown .dd-name  { color: var(--white); }
  .nav-account-dropdown .dd-email { color: var(--f400); }
  .nav-account-dropdown a, .nav-account-dropdown button.dd-item { color: var(--f200); text-align: center; justify-content: center; font-size: 1rem; }
  .nav-account-dropdown a:hover, .nav-account-dropdown button.dd-item:hover { background: rgba(255,255,255,0.08); }
  .nav-account-wrap.open .nav-account-dropdown { display: block; }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 4px !important;
    background: rgba(255,255,255,0.05) !important;
    margin: 0.2rem 0 0.2rem 0.5rem !important;
    min-width: unset !important;
    padding-top: 0 !important;
  }
  .dropdown-menu::before { display: none; }
  .dropdown-menu a {
    color: var(--f200) !important;
    border-left: none !important;
    background: transparent !important;
  }
  .dropdown-menu a:hover { color: var(--white) !important; background: rgba(255,255,255,0.08) !important; }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .caret { display: none; }
  .hamburger { display: none !important; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .container { width: 92%; }

  /* Hero */
  .hero {
    min-height: 100vh;
    min-height: 100dvh; /* accounts for mobile browser chrome */
    padding: 100px 0 60px;
  }
  .hero-stats { gap: 1.2rem; }
  .hero-stat-num { font-size: 1.8rem; }
  .hero-scroll { display: none; }
  .hero-buttons { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .hero-buttons .btn { flex: 1 1 140px; max-width: 220px; justify-content: center; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-logo-img { width: 165px; height: auto; }
  .footer-brand-name { font-size: 1.5rem; }

  /* Grids */
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .product-cat-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .buy-steps { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .gallery-masonry { columns: 2; }
  .payment-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }

  /* Review cards */
  .review-card { width: 280px; }
  .review-track { animation-duration: 18s; }

  /* Page hero */
  .page-hero { padding-bottom: 2rem; min-height: 36vh; padding-top: 92px; }
}

@media (max-width: 560px) {
  /* Footer: brand full-width centred, Products+Company side by side, Contact centred below */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
    text-align: center;
    align-items: center;
  }
  .footer-logo-img { width: 120px; height: auto; }
  .footer-brand-name { font-size: 1.45rem; }
  .footer-brand-col .footer-desc { margin-left: auto; margin-right: auto; }
  .footer-socials { justify-content: center; }
  /* Products & Company columns — centred within their cells */
  .footer-col { text-align: center; }
  .footer-col ul li a { justify-content: center; }
  /* Contact column — spans full width, centred */
  .footer-col:last-child { grid-column: 1 / -1; }

  .product-cat-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .buy-steps { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .payment-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.3rem; }
  .review-card { width: 260px; }
  .products-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-socials { gap: 0.5rem; }
}

@media (max-width: 360px) {
  /* Compact hero so h1/buttons aren't clipped on 320px screens */
  .hero > .container {
    padding-bottom: 1.5rem;
  }
  .hero-eyebrow { margin-bottom: 0.6rem; }
  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
  }
  .hero p {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  .hero-stats {
    margin-top: 1rem;
    padding-top: 0.8rem;
    gap: 0;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .hero-stat-num  { font-size: 1.4rem; }
  .hero-stat-label { font-size: 0.58rem; letter-spacing: 0.08em; }
}

/* ══════════════════════════════════════════════════
   MOBILE / TABLET — APPLE-STYLE FLOATING NAV
   Base styles (hidden by default). The @media block
   below activates them — ORDER IS CRITICAL.
   ══════════════════════════════════════════════════ */

/* WA button — lives in the header on mobile */
.nav-wa-mob {
  display: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #25d366;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(37,211,102,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-wa-mob:hover { transform: scale(1.1); }

/* Bottom tab bar — floating island at the bottom */
.mob-pill-nav {
  display: none;
  position: fixed;
  bottom: 14px;
  left: 12px;
  right: 12px;
  top: auto;
  transform: none;
  z-index: 1500;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  background: var(--f950);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 8px 4px;
  box-shadow: 0 -2px 20px rgba(0,0,0,0.3), 0 8px 32px rgba(0,0,0,0.4);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
}
.mob-pill-nav.pill-hidden {
  transform: translateY(calc(100% + 20px));
  opacity: 0;
  pointer-events: none;
}
.mob-pill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 7px 4px;
  border-radius: 16px;
  text-decoration: none;
  color: rgba(255,255,255,0.38);
  transition: color 0.2s ease, background 0.2s ease;
  flex: 1;
  /* Reset button defaults */
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}
.mob-pill-item i { font-size: 1.3rem; line-height: 1; }
.mob-pill-item span {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}
.mob-pill-item:hover { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.07); }
.mob-pill-item.active { color: var(--white); background: var(--f700); }

/* ── Activate on mobile/tablet — MUST come after base styles ── */
@media (max-width: 1024px) {
  /* Floating header island */
  header {
    top: 10px;
    left: 12px;
    right: 12px;
    border-radius: 20px;
    border-bottom: none;
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(0,0,0,0.45);
  }
  header::after { border-radius: 0 0 20px 20px; }
  header.scrolled { box-shadow: 0 6px 36px rgba(0,0,0,0.55); }

  /* Hide text nav links — hamburger overlay covers navigation on small screens */
  .rf-nav-right > a { display: none; }
  .whatsapp-float { display: none; }
}


/* ── MOBILE SUB-PANELS (Products & Account) ── */
.mob-sub-panel {
  display: none;
  position: fixed;
  bottom: 96px;   /* sits just above the tab bar */
  /* left/right set per breakpoint below */
  background: var(--f950);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 -2px 32px rgba(0,0,0,0.5);
  z-index: 1499;
  flex-direction: row;
  justify-content: space-around;
  align-items: stretch;
}
.mob-sub-panel.open {
  display: flex;
  animation: mobSubIn 0.22s cubic-bezier(0.34,1.56,0.64,1);
}
/* Account panel is a vertical list */
.mob-sub-panel--list {
  flex-direction: column;
  justify-content: flex-start;
  gap: 2px;
  padding: 6px;
}
/* Products: icon-grid items */
.mob-sub-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 6px;
  border-radius: 14px;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 600;
  flex: 1;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
}
.mob-sub-item i { font-size: 1.4rem; line-height: 1; }
.mob-sub-item:hover, .mob-sub-item:active { background: rgba(255,255,255,0.08); color: var(--white); }
/* Account list items: horizontal row */
.mob-sub-panel--list .mob-sub-item {
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  padding: 0.78rem 1rem;
  font-size: 0.88rem;
  text-align: left;
  flex: none;
  justify-content: flex-start;
  border-radius: 12px;
}
.mob-sub-panel--list .mob-sub-item i { font-size: 1.1rem; min-width: 20px; }
/* Account header + divider */
.mob-sub-acct-header { padding: 0.8rem 1rem 0.5rem; }
.mob-sub-acct-name  { color: var(--white); font-weight: 700; font-size: 0.9rem; }
.mob-sub-acct-email { color: var(--f400); font-size: 0.74rem; margin-top: 0.15rem; }
.mob-sub-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 4px 8px; }
.mob-sub-signout { color: #f87171 !important; }
@keyframes mobSubIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
