/* ============================================================
   WEIGHTLOSS BY TEE � WHITE THEME + 5D DEPTH EXPERIENCE
   ============================================================ */

:root {
  --white: #ffffff;
  --off-white: #fafffe;
  --bg-light: #faf7ff;
  --bg-mid: #efe7ff;

  --green-1: #8b5cf6;
  --green-2: #c4b5fd;
  --green-3: #ede9fe;
  --green-light: #f3efff;
  --green-dark: #6d28d9;
  --green-darker: #4c1d95;
  --green-footer: #2e1065;

  --gold: #f59e0b;
  --orange: #fb923c;
  --red: #ef4444;

  --text-900: #1f1633;
  --text-700: #403154;
  --text-500: #6b6079;
  --text-300: #a59ab3;

  --shadow-sm: 0 2px 12px rgba(31,22,51,0.05), 0 1px 4px rgba(139,92,246,0.06);
  --shadow-md: 0 8px 28px rgba(31,22,51,0.08), 0 2px 10px rgba(139,92,246,0.10);
  --shadow-lg: 0 18px 52px rgba(31,22,51,0.10), 0 6px 22px rgba(139,92,246,0.12);
  --shadow-xl: 0 30px 80px rgba(31,22,51,0.12), 0 10px 32px rgba(139,92,246,0.14);
  --shadow-glow: 0 0 40px rgba(139,92,246,0.20), 0 0 80px rgba(245,158,11,0.08);

  --gradient: linear-gradient(135deg, #7c3aed 0%, #c084fc 100%);
  --gradient-hero: radial-gradient(circle at 82% 18%, rgba(192,132,252,0.30), transparent 34%), linear-gradient(135deg, #fbf8ff 0%, #ffffff 48%, #f4edff 100%);
  --gradient-dark: linear-gradient(135deg, #4c1d95, #8b5cf6);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.2s;
  --t-med: 0.4s;
  --t-slow: 0.7s;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--text-900);
  overflow-x: hidden;
  line-height: 1.7;
  cursor: none;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--green-2); border-radius: 4px; }

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--green-1);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  will-change: transform;
}

.cursor-ring {
  width: 38px; height: 38px;
  border: 2px solid rgba(167,139,250,0.55);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-spring), height 0.3s var(--ease-spring), opacity 0.3s;
  will-change: transform;
}

body.cursor-hover .cursor-dot  { width: 14px; height: 14px; background: var(--green-2); }
body.cursor-hover .cursor-ring { width: 56px; height: 56px; border-color: var(--green-1); }
body.cursor-click .cursor-dot  { width: 6px;  height: 6px; }

/* ===== PARTICLE CANVAS ===== */
#particleCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.015em;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  position: relative;
  z-index: 1001;
  box-shadow: 0 2px 12px rgba(167,139,250,0.35);
}

.ticker-wrap { overflow: hidden; }

.ticker-track {
  display: inline-flex;
  gap: 0;
  animation: tickerScroll 40s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.tick { display: inline-block; padding: 0 64px; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 6%;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid rgba(167,139,250,0.1);
  transition: top 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s;
}

.navbar.scrolled {
  top: 0;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.07), 0 1px 0 rgba(167,139,250,0.12);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: inherit;
}

.logo-leaf { font-size: 1.7rem; }

.logo-words {
  display: flex; flex-direction: column;
  line-height: 1.1;
}

.logo-words span { font-size: 0.78rem; font-weight: 600; color: var(--text-500); letter-spacing: 0.04em; text-transform: uppercase; }
.logo-words em { font-style: normal; font-size: 1.1rem; font-weight: 800; color: var(--green-1); letter-spacing: -0.02em; font-family: 'Playfair Display', serif; }

.nav-links { display: flex; align-items: center; gap: 6px; margin-left: auto; }

.nav-link {
  color: var(--text-500);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  transition: color var(--t-fast) var(--ease), background var(--t-fast);
}

.nav-link:hover { color: var(--green-1); background: rgba(167,139,250,0.07); }
.nav-link.active { color: var(--green-1); font-weight: 600; }

.btn-nav {
  display: inline-flex; align-items: center;
  background: var(--gradient);
  color: #fff;
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(167,139,250,0.3);
  transition: transform var(--t-fast) var(--ease-spring), box-shadow var(--t-fast);
}

.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(167,139,250,0.4); }

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

/* ===== CONTAINER ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 5%; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-chip {
  display: inline-block;
  background: rgba(167,139,250,0.1);
  color: var(--green-1);
  border: 1px solid rgba(167,139,250,0.25);
  padding: 5px 18px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--text-900);
  margin-bottom: 12px;
}

.section-heading em { font-style: italic; color: var(--green-1); }
.section-header p { color: var(--text-500); font-size: 1rem; max-width: 540px; margin: 0 auto; }

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  line-height: 0;
  margin-bottom: -2px;
  position: relative;
  z-index: 2;
}
.wave-divider svg { display: block; width: 100%; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 160px 7% 90px;
  position: relative;
  overflow: hidden;
}

/* Organic blob shapes */
.hero-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  will-change: transform;
}

.blob-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, #c4b5fd, #a78bfa);
  top: -180px; right: -120px;
}

.blob-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #4ade80, #c4b5fd);
  bottom: -100px; left: -80px;
  opacity: 0.18;
}

.blob-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, #f59e0b, #fb923c);
  top: 55%; left: 38%;
  opacity: 0.12;
}

/* Hero content */
.hero-content {
  flex: 1;
  max-width: 560px;
  z-index: 3;
  will-change: transform;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(167,139,250,0.08);
  border: 1px solid rgba(167,139,250,0.2);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem; font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 22px;
  animation: fadeSlideDown 0.9s var(--ease) both;
}

.flag { font-size: 1.1rem; }

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text-900);
  margin-bottom: 22px;
  animation: fadeSlideDown 1s var(--ease) 0.1s both;
}

.hero-heading em {
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  color: var(--text-500);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.75;
  animation: fadeSlideDown 1s var(--ease) 0.2s both;
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 50px;
  animation: fadeSlideDown 1s var(--ease) 0.3s both;
}

/* Primary button */
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gradient);
  color: #fff;
  padding: 15px 32px;
  border-radius: var(--radius-full);
  font-weight: 700; font-size: 0.97rem;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(167,139,250,0.35);
  transition: transform var(--t-fast) var(--ease-spring), box-shadow var(--t-fast);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 40px rgba(167,139,250,0.45); }
.btn-primary:hover::after { opacity: 1; }

/* Ghost button */
.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent;
  color: var(--green-dark);
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-weight: 600; font-size: 0.97rem;
  text-decoration: none;
  border: 2px solid rgba(167,139,250,0.3);
  transition: all var(--t-fast) var(--ease);
}
.btn-ghost:hover { background: rgba(167,139,250,0.08); border-color: var(--green-1); transform: translateY(-3px); }

/* Hero stats */
.hero-trust {
  display: flex; align-items: center; gap: 24px;
  animation: fadeSlideDown 1s var(--ease) 0.4s both;
}
.trust-item { display: flex; flex-direction: column; align-items: flex-start; }
.trust-item strong { font-size: 1.6rem; font-weight: 800; color: var(--green-dark); line-height: 1; }
.trust-item span { font-size: 0.73rem; color: var(--text-300); font-weight: 500; }
.trust-divider { width: 1px; height: 36px; background: rgba(167,139,250,0.18); }

/* Hero visual */
.hero-visual {
  flex: 1; display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 3;
  min-height: 460px;
  will-change: transform;
}

.hero-photo-frame {
  width: 360px; height: 440px;
  border-radius: 200px 200px 160px 160px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: heroPhotoFloat 7s ease-in-out infinite;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s var(--ease);
}

.hero-photo-frame:hover .hero-img { transform: scale(1.04); }

.hero-photo-ring {
  position: absolute; inset: -10px;
  border-radius: inherit;
  border: 3px solid rgba(167,139,250,0.3);
  pointer-events: none;
  animation: ringPulse 3s ease-in-out infinite;
}

.ring-2 {
  inset: -22px;
  border-color: rgba(167,139,250,0.12);
  animation-delay: 1s;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(167,139,250,0.15);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  will-change: transform;
}

.float-card strong { display: block; font-weight: 700; color: var(--text-900); font-size: 0.92rem; }
.float-card span { color: var(--text-500); font-size: 0.75rem; }
.fc-icon { font-size: 1.6rem; }
.fc-avatar { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 2px solid var(--green-light); }

.fc-1 { top: 6%; right: -4%; animation: floatA 5s ease-in-out infinite; }
.fc-2 { bottom: 25%; left: -6%; animation: floatB 6s ease-in-out infinite 0.8s; }
.fc-3 { bottom: 6%; right: 0%; animation: floatA 7s ease-in-out infinite 1.5s; }

/* ===== 3D CARD BASE ===== */
.card-3d {
  transform-style: preserve-3d;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  will-change: transform;
}

/* ===== ABOUT ===== */
.about {
  background: var(--bg-light);
  padding: 100px 0;
  position: relative; z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img {
  width: 100%; height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.about-photo-wrap:hover .about-img { transform: scale(1.03); }

.about-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(167,139,250,0.2);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  font-size: 0.83rem; font-weight: 700;
  color: var(--green-dark);
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-sm);
}
.about-badge i { color: var(--green-1); }

.about-text-col {}
.about-lead {
  font-size: 1.1rem; font-weight: 500;
  color: var(--text-700);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-text-col p { color: var(--text-500); margin-bottom: 14px; font-size: 0.95rem; }
.about-text-col strong { color: var(--green-dark); }
.about-text-col em { color: var(--green-1); font-style: italic; }

.about-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 28px;
}

.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white);
  border: 1px solid rgba(167,139,250,0.2);
  border-radius: var(--radius-full);
  padding: 9px 18px;
  font-size: 0.83rem; font-weight: 600;
  color: var(--green-dark);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-fast) var(--ease-spring);
}
.pill i { color: var(--green-1); }
.pill:hover { background: var(--green-1); color: #fff; border-color: transparent; transform: translateY(-2px) scale(1.03); }
.pill:hover i { color: #fff; }

/* ===== TRANSFORMATION ANIMATION ===== */
.transform-frame {
  width: 360px;
  height: 460px;
  border-radius: 200px 200px 160px 160px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(160deg, #f5f3ff 0%, #ede9fe 50%, #f0fdf4 100%);
  animation: heroPhotoFloat 7s ease-in-out infinite;
  flex-shrink: 0;
}

/* Glow rings reuse existing .hero-photo-ring */
.transform-frame .hero-photo-ring {
  position: absolute; inset: -10px;
  border-radius: inherit;
  border: 3px solid rgba(167,139,250,0.3);
  pointer-events: none;
  animation: ringPulse 3s ease-in-out infinite;
  z-index: 10;
}
.transform-frame .ring-2 {
  inset: -22px;
  border-color: rgba(167,139,250,0.12);
  animation-delay: 1s;
}

/* ── BEFORE / AFTER sides ── */
.tf-side {
  position: absolute;
  top: 0; bottom: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.tf-before {
  left: 0;
  /* clip to left half, animated */
  clip-path: inset(0 50% 0 0);
  animation: tfRevealBefore 5s ease-in-out infinite;
}

.tf-after {
  left: 0;
  /* clip to right half, animated */
  clip-path: inset(0 0 0 50%);
  animation: tfRevealAfter 5s ease-in-out infinite;
}

.tf-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding-bottom: 10px;
}

/* ── Sliding divider line ── */
.tf-divider {
  position: absolute;
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.9) 20%, #fff 50%, rgba(255,255,255,0.9) 80%, transparent);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  animation: tfDividerSlide 5s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(255,255,255,0.8), 0 0 24px rgba(167,139,250,0.4);
}

/* ── BEFORE / AFTER labels ── */
.tf-label {
  position: absolute;
  top: 22px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  z-index: 6;
  backdrop-filter: blur(8px);
}

.tf-label-before {
  left: 14px;
  background: rgba(239,68,68,0.85);
  color: #fff;
  animation: tfLabelBefore 5s ease-in-out infinite;
}

.tf-label-after {
  right: 14px;
  background: rgba(74,222,128,0.9);
  color: #14532d;
  animation: tfLabelAfter 5s ease-in-out infinite;
}

/* ── Progress bar ── */
.tf-progress-wrap {
  position: absolute;
  bottom: 18px;
  left: 20px; right: 20px;
  z-index: 7;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tf-progress-bar {
  height: 5px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.25);
  overflow: hidden;
  position: relative;
}

.tf-progress-bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  background: linear-gradient(90deg, #ef4444, #f59e0b, #4ade80);
  border-radius: var(--radius-full);
  animation: tfProgressFill 5s ease-in-out infinite;
}

.tf-progress-label {
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-align: center;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ── Keyframes ── */

/* Divider slides left→right→left */
@keyframes tfDividerSlide {
  0%   { left: 8%; }
  40%  { left: 92%; }
  60%  { left: 92%; }
  100% { left: 8%; }
}

/* Before clip: starts full, shrinks to nothing */
@keyframes tfRevealBefore {
  0%   { clip-path: inset(0 8% 0 0); }
  40%  { clip-path: inset(0 92% 0 0); }
  60%  { clip-path: inset(0 92% 0 0); }
  100% { clip-path: inset(0 8% 0 0); }
}

/* After clip: starts nothing, grows to full */
@keyframes tfRevealAfter {
  0%   { clip-path: inset(0 0 0 92%); }
  40%  { clip-path: inset(0 0 0 8%); }
  60%  { clip-path: inset(0 0 0 8%); }
  100% { clip-path: inset(0 0 0 92%); }
}

/* Before label fades out as divider moves right */
@keyframes tfLabelBefore {
  0%   { opacity: 1; }
  35%  { opacity: 0; }
  60%  { opacity: 0; }
  100% { opacity: 1; }
}

/* After label fades in as divider moves right */
@keyframes tfLabelAfter {
  0%   { opacity: 0; }
  35%  { opacity: 1; }
  60%  { opacity: 1; }
  100% { opacity: 0; }
}

/* Progress bar fills left to right */
@keyframes tfProgressFill {
  0%   { width: 5%; }
  40%  { width: 100%; }
  60%  { width: 100%; }
  100% { width: 5%; }
}

/* ===== PRODUCTS ===== */
.products {
  background: var(--white);
  padding: 100px 0;
  position: relative; z-index: 1;
}

/* Flexible 3-column grid that wraps gracefully */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Base card ── */
.product-card {
  background: var(--white);
  border: 1px solid rgba(167,139,250,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-out), border-color 0.3s;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: var(--shadow-xl), 0 0 0 2px rgba(167,139,250,0.18);
  border-color: rgba(167,139,250,0.35);
}

/* ── Featured card spans 2 columns ── */
.pcard-featured {
  grid-column: span 2;
  flex-direction: row;
}

.pcard-featured .product-img-wrap {
  width: 52%;
  height: auto;
  min-height: 300px;
  flex-shrink: 0;
}

.pcard-featured .product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 28px;
}

/* ── Badge ── */
.product-badge-top {
  position: absolute; top: 14px; left: 14px;
  font-size: 0.72rem; font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  z-index: 3;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  backdrop-filter: blur(6px);
}
.bestseller { background: linear-gradient(135deg,#f59e0b,#fb923c); color: #fff; }
.new-badge  { background: var(--gradient); color: #fff; }
.popular    { background: linear-gradient(135deg,#6366f1,#8b5cf6); color: #fff; }
.combo      { background: linear-gradient(135deg,#7c3aed,#4c1d95); color: #fff; }

/* ── Image wrapper ── */
.product-img-wrap {
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: var(--bg-light);
  position: relative;
  flex-shrink: 0;
}

.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
  display: block;
}

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

/* ── Hover overlay on image ── */
.pcard-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(109,40,217,0.55) 0%, transparent 60%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 18px;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.product-card:hover .pcard-img-overlay { opacity: 1; }

.pcard-quick-view {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.95);
  color: var(--green-dark);
  font-size: 0.78rem; font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transform: translateY(10px);
  transition: transform 0.35s var(--ease-spring);
  cursor: none;
}
.product-card:hover .pcard-quick-view { transform: translateY(0); }

/* ── Category tag ── */
.pcard-tag {
  display: inline-block;
  background: rgba(167,139,250,0.1);
  color: var(--green-1);
  border: 1px solid rgba(167,139,250,0.22);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

/* ── Body ── */
.product-body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-body h3 {
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 8px; color: var(--text-900);
  line-height: 1.3;
}

.product-body p {
  font-size: 0.84rem; color: var(--text-500);
  line-height: 1.7; margin-bottom: 16px;
  flex: 1;
}

.product-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(167,139,250,0.1);
}

.product-price {
  font-size: 1.25rem; font-weight: 800;
  color: var(--green-dark);
}
.product-price s {
  font-size: 0.8rem; font-weight: 400;
  color: var(--text-300); margin-left: 5px;
}

.product-stars { font-size: 0.82rem; color: var(--gold); }
.product-stars span { color: var(--text-300); font-size: 0.75rem; }

/* ── Actions row ── */
.pcard-actions {
  display: flex; align-items: center; gap: 10px;
}

.btn-product {
  flex: 1;
  background: var(--gradient);
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(167,139,250,0.28);
  transition: transform var(--t-fast) var(--ease-spring), box-shadow var(--t-fast);
}
.btn-product:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(167,139,250,0.45); }

/* ── Wishlist button ── */
.pcard-wish {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1.5px solid rgba(167,139,250,0.2);
  color: var(--text-300);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  flex-shrink: 0;
  transition: all var(--t-fast) var(--ease-spring);
}
.pcard-wish:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #ef4444;
  transform: scale(1.12);
}

/* ===== ORDER SECTION ===== */
.order-section {
  background: var(--bg-light);
  padding: 100px 0;
  position: relative; z-index: 1;
}

.order-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
}

.order-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(167,139,250,0.08);
}

.order-form-card h3 {
  font-size: 1.25rem; font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-700); margin-bottom: 7px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-light);
  border: 1.5px solid rgba(167,139,250,0.18);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  color: var(--text-900);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-1);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(167,139,250,0.12);
}

.form-group select option { background: #fff; color: var(--text-900); }
.form-group textarea { resize: vertical; }

.order-total-bar {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(167,139,250,0.07);
  border: 1.5px solid rgba(167,139,250,0.25);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin: 0 0 18px;
  font-size: 0.92rem; color: var(--text-700);
}
.order-total-bar strong { font-size: 1.3rem; color: var(--green-dark); font-weight: 800; }

.pay-section { margin-top: 22px; }
.pay-section h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-700); margin-bottom: 14px; }

.pay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }

.pay-card {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-light);
  border: 1.5px solid rgba(167,139,250,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: none; font-size: 0.88rem; font-weight: 600;
  color: var(--text-700);
  transition: all var(--t-fast) var(--ease);
}
.pay-card:hover, .pay-card:has(input:checked) {
  border-color: var(--green-1);
  background: rgba(167,139,250,0.07);
  color: var(--green-dark);
}
.pay-card input { accent-color: var(--green-1); }
.pay-card i { color: var(--green-1); font-size: 1.1rem; }

.bank-info { animation: fadeIn 0.3s var(--ease); }
.bank-details-card {
  background: var(--bg-light);
  border: 1.5px solid rgba(167,139,250,0.2);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 12px;
}
.bank-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(167,139,250,0.1);
  font-size: 0.88rem;
}
.bank-row:last-of-type { border-bottom: none; }
.bank-row span { color: var(--text-500); }
.bank-row strong { color: var(--text-900); font-weight: 700; }

.btn-copy-acc {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gradient);
  color: #fff;
  border: none; border-radius: var(--radius-full);
  padding: 9px 20px;
  font-size: 0.82rem; font-weight: 700;
  cursor: none; margin-top: 12px;
  transition: transform var(--t-fast) var(--ease-spring), box-shadow var(--t-fast);
}
.btn-copy-acc:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(167,139,250,0.35); }

.pay-note { font-size: 0.8rem; color: var(--text-500); line-height: 1.65; }
.pay-note a { color: var(--green-1); font-weight: 600; }
.pay-note i { color: var(--green-1); margin-right: 4px; }

.paystack-info { animation: fadeIn 0.3s var(--ease); }

.btn-paystack-pay {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #00b8d4, #0049ce);
  color: #fff;
  border: none; border-radius: var(--radius);
  padding: 16px;
  font-size: 1rem; font-weight: 700;
  cursor: none;
  transition: transform var(--t-fast) var(--ease-spring), box-shadow var(--t-fast);
  box-shadow: 0 6px 24px rgba(0, 73, 206, 0.28);
}
.btn-paystack-pay:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0, 73, 206, 0.4); }

.btn-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border: none; border-radius: var(--radius);
  padding: 16px;
  font-size: 1rem; font-weight: 700;
  cursor: none; margin-top: 14px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
  transition: transform var(--t-fast) var(--ease-spring), box-shadow var(--t-fast);
  font-family: 'Poppins', sans-serif;
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,0.45); }

/* Order info tiles */
.order-info-col { display: flex; flex-direction: column; gap: 18px; }

.info-tile {
  background: var(--white);
  border: 1px solid rgba(167,139,250,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
}
.info-tile:hover { transform: translateX(6px) translateZ(10px); box-shadow: var(--shadow-md); border-color: rgba(167,139,250,0.3); }

.tile-icon {
  font-size: 1.7rem;
  background: rgba(167,139,250,0.1);
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  color: var(--green-1);
}
.info-tile h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--text-900); }
.info-tile p { font-size: 0.84rem; color: var(--text-500); line-height: 1.6; }
.tile-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green-1); font-size: 0.84rem; font-weight: 600;
  text-decoration: none; margin-top: 8px;
  transition: gap var(--t-fast);
}
.tile-link:hover { gap: 10px; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--white);
  padding: 100px 0;
  position: relative; z-index: 1;
}

.testi-slider-wrap { position: relative; overflow: hidden; }

.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testi-card {
  min-width: calc(33.333% - 16px);
  background: var(--white);
  border: 1px solid rgba(167,139,250,0.12);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
  flex-shrink: 0;
}
.testi-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(167,139,250,0.3); }

.testi-quote i { font-size: 1.6rem; color: rgba(167,139,250,0.2); margin-bottom: 14px; display: block; }

.testi-text {
  font-size: 0.9rem;
  color: var(--text-500);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 22px;
}

.testi-footer { display: flex; align-items: center; gap: 12px; position: relative; }
.testi-footer img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-light);
  flex-shrink: 0;
}
.testi-footer strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--text-900); }
.testi-footer span { font-size: 0.76rem; color: var(--text-300); }
.testi-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 1px; margin-top: 2px; }

.testi-result {
  margin-left: auto;
  background: var(--gradient);
  color: #fff;
  font-size: 0.82rem; font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(167,139,250,0.3);
}

.testi-controls {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 36px;
}

.testi-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(167,139,250,0.25);
  color: var(--green-1);
  cursor: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-fast) var(--ease-spring);
}
.testi-btn:hover { background: var(--green-1); color: #fff; border-color: transparent; transform: scale(1.1); }

.testi-dots { display: flex; gap: 7px; }
.tdot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(167,139,250,0.2);
  cursor: none;
  transition: all var(--t-med) var(--ease);
}
.tdot.active { background: var(--green-1); width: 22px; border-radius: 4px; }

/* ===== GALLERY ===== */
.gallery {
  background: var(--bg-light);
  padding: 100px 0;
  position: relative; z-index: 1;
}

.gallery-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 36px; }
.g-tab {
  background: var(--white);
  border: 1.5px solid rgba(167,139,250,0.2);
  color: var(--text-500);
  border-radius: var(--radius-full);
  padding: 10px 26px;
  font-size: 0.88rem; font-weight: 600;
  cursor: none;
  transition: all var(--t-fast) var(--ease);
  font-family: 'Poppins', sans-serif;
}
.g-tab.active, .g-tab:hover { background: var(--gradient); color: #fff; border-color: transparent; box-shadow: 0 4px 16px rgba(167,139,250,0.3); }

/* Masonry grid */
.photo-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.g-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.g-item.tall { grid-row: span 2; }
.g-item:hover { box-shadow: var(--shadow-lg); }

.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
  display: block;
}
.g-item:hover img { transform: scale(1.07); }

.g-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(15,34,24,0.85));
  color: #fff;
  padding: 24px 16px 16px;
  font-size: 0.82rem; font-weight: 600;
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
  display: flex; align-items: center; gap: 7px;
}
.g-item:hover .g-overlay { opacity: 1; }

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.v-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: none;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.v-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.v-thumb {
  position: relative; height: 190px; overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.v-thumb img { width: 100%; height: 100%; object-fit: cover; }

.v-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--green-1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform var(--t-fast) var(--ease-spring);
}
.v-item:hover .v-play { transform: translate(-50%, -50%) scale(1.12); }
.v-item p { padding: 14px 16px 18px; font-size: 0.87rem; font-weight: 600; color: var(--text-700); }

.video-upload-note {
  text-align: center;
  font-size: 0.82rem; color: var(--text-500);
  background: var(--white);
  border: 1.5px dashed rgba(167,139,250,0.3);
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-top: 24px;
}
.video-upload-note code { color: var(--green-1); background: rgba(167,139,250,0.1); padding: 1px 6px; border-radius: 4px; }

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(10,20,12,0.92);
  z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s var(--ease);
  cursor: none;
}
.lightbox-overlay.open { display: flex; }

.lightbox-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 88vw; max-height: 88vh;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  display: flex; flex-direction: column;
}

#lbImg { max-width: 100%; max-height: 72vh; object-fit: contain; display: block; }
#lbCaption { padding: 14px 20px; font-size: 0.88rem; color: var(--text-500); text-align: center; }

.lb-close {
  position: absolute; top: 12px; right: 16px;
  font-size: 1.8rem; color: var(--text-300);
  cursor: none; background: none; border: none;
  transition: color var(--t-fast); line-height: 1;
  z-index: 2;
}
.lb-close:hover { color: var(--text-900); }

/* ===== CONTACT ===== */
.contact {
  background: var(--white);
  padding: 100px 0;
  position: relative; z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-tile {
  background: var(--white);
  border: 1px solid rgba(167,139,250,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s;
}
.contact-tile:hover { box-shadow: var(--shadow-lg); border-color: rgba(167,139,250,0.3); }

.ct-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 14px;
}
.ct-icon.wa { background: rgba(37,211,102,0.12); color: #25d366; }
.ct-icon.em { background: rgba(167,139,250,0.1); color: var(--green-1); }
.ct-icon.ig { background: rgba(168,85,247,0.1); color: #a855f7; }
.ct-icon.loc { background: rgba(245,158,11,0.1); color: var(--gold); }

.contact-tile h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--text-900); }
.contact-tile p { font-size: 0.84rem; color: var(--text-500); margin-bottom: 16px; line-height: 1.6; }

.ct-btn {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-size: 0.82rem; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(167,139,250,0.28);
  transition: transform var(--t-fast) var(--ease-spring), box-shadow var(--t-fast);
}
.ct-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(167,139,250,0.42); }

/* ===== FOOTER ===== */
.footer { background: var(--green-footer); color: rgba(255,255,255,0.75); margin-top: -2px; }
.footer-wave { line-height: 0; }
.footer-wave svg { display: block; width: 100%; }

.footer-body {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
  gap: 50px;
  padding: 60px 7% 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 1.3rem; font-weight: 800;
  color: #fff; margin-bottom: 14px;
  font-family: 'Playfair Display', serif;
}
.footer-logo em { font-style: italic; color: var(--green-3); }
.footer-brand-col p { font-size: 0.85rem; line-height: 1.75; max-width: 260px; margin-bottom: 22px; }

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--t-fast) var(--ease-spring);
}
.footer-socials a:hover { background: var(--green-1); color: #fff; border-color: transparent; transform: translateY(-3px); }

.footer-nav-col h5,
.footer-newsletter-col h5 {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-3); margin-bottom: 18px;
}
.footer-nav-col { display: flex; flex-direction: column; gap: 9px; }
.footer-nav-col a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.87rem; transition: color var(--t-fast), padding-left var(--t-fast); }
.footer-nav-col a:hover { color: #fff; padding-left: 6px; }

.footer-newsletter-col p { font-size: 0.84rem; margin-bottom: 14px; line-height: 1.7; }

.footer-phones {
  color: rgba(255,255,255,0.78);
  font-weight: 600;
}

.nl-form { display: flex; gap: 8px; margin-bottom: 10px; }
.nl-form input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: #fff; font-size: 0.84rem;
  outline: none; font-family: 'Poppins', sans-serif;
}
.nl-form input::placeholder { color: rgba(255,255,255,0.4); }
.nl-form input:focus { border-color: var(--green-2); }
.nl-form button {
  background: var(--gradient);
  color: #fff; border: none;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 0.82rem; font-weight: 700;
  cursor: none; font-family: 'Poppins', sans-serif;
  transition: transform var(--t-fast);
}
.nl-form button:hover { transform: translateY(-2px); }
.nl-privacy { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 7%;
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin: 3px 0; }

/* ===== TOAST ===== */
.toast-msg {
  position: fixed; bottom: 30px; right: 30px;
  background: var(--white);
  border: 1.5px solid rgba(167,139,250,0.25);
  border-left: 4px solid var(--green-1);
  border-radius: var(--radius);
  padding: 16px 22px;
  color: var(--text-900);
  font-size: 0.88rem; font-weight: 500;
  z-index: 99990;
  transform: translateX(120px);
  opacity: 0;
  transition: transform 0.4s var(--ease-spring), opacity 0.4s;
  max-width: 340px;
  box-shadow: var(--shadow-lg);
}
.toast-msg.show { transform: translateX(0); opacity: 1; }

/* ===== FLOATING WHATSAPP CHAT ===== */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.34);
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s var(--ease);
}

.whatsapp-float i {
  font-size: 1.35rem;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(37, 211, 102, 0.42);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes heroPhotoFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 0.2; transform: scale(1.06); }
}
@keyframes floatA {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(1deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-9px) rotate(-1deg); }
}

/* ===== PROFESSIONAL POLISH LAYER ===== */
body {
  background:
    linear-gradient(180deg, rgba(244,251,247,0.72), rgba(255,255,255,0.96) 28%),
    var(--white);
  cursor: auto;
}

body,
.form-group input,
.form-group select,
.form-group textarea,
button {
  letter-spacing: 0;
}

.cursor-dot,
.cursor-ring {
  display: none;
}

a,
button,
label,
.g-item,
.pay-card,
.testi-btn,
.g-tab,
.v-item,
.pcard-quick-view,
.pcard-wish,
.lightbox-overlay,
.lb-close {
  cursor: pointer;
}

.announcement-bar {
  background: linear-gradient(90deg, var(--green-darker), var(--green-1), #d9a441);
  padding: 9px 0;
  box-shadow: 0 2px 18px rgba(7,95,53,0.22);
}

.navbar {
  top: 36px;
  left: 50%;
  right: auto;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  border: 1px solid rgba(23,166,91,0.12);
  border-radius: 0 0 22px 22px;
  padding: 13px 22px;
  box-shadow: 0 14px 38px rgba(17,32,24,0.08);
}

.navbar.scrolled {
  top: 10px;
  border-radius: 22px;
}

.nav-link {
  color: var(--text-700);
  padding: 8px 13px;
}

.nav-link:hover,
.nav-link.active {
  background: var(--green-light);
  color: var(--green-dark);
}

.btn-nav,
.btn-primary,
.btn-product,
.btn-copy-acc,
.ct-btn,
.nl-form button {
  background: var(--gradient-dark);
  box-shadow: 0 10px 24px rgba(8,120,66,0.24);
}

.btn-nav:hover,
.btn-primary:hover,
.btn-product:hover,
.btn-copy-acc:hover,
.ct-btn:hover {
  box-shadow: 0 14px 34px rgba(8,120,66,0.28);
}

.btn-primary,
.btn-ghost,
.btn-product,
.btn-submit,
.btn-paystack-pay,
.ct-btn,
.btn-copy-acc,
.g-tab,
.pay-card {
  min-height: 44px;
}

.btn-ghost {
  background: rgba(255,255,255,0.74);
  border-color: rgba(8,120,66,0.22);
}

.section-header {
  max-width: 760px;
  margin: 0 auto 54px;
}

.section-chip {
  background: var(--green-light);
  color: var(--green-dark);
  border-color: rgba(23,166,91,0.18);
}

.section-heading {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  padding: 168px max(6%, calc((100vw - 1180px) / 2)) 96px;
}

.hero-content {
  max-width: 620px;
}

.hero-heading {
  font-size: clamp(2.75rem, 5vw, 5rem);
  letter-spacing: 0;
}

.hero-subtext {
  max-width: 580px;
  color: var(--text-700);
}

.hero-trust {
  width: fit-content;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(23,166,91,0.12);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
}

.trust-divider {
  background: rgba(23,166,91,0.16);
}

.hero-visual {
  min-height: 500px;
}

.transform-frame {
  width: min(390px, 100%);
  height: 500px;
  border-radius: 38px;
  background: linear-gradient(160deg, #f7fff9 0%, #eaf8ef 54%, #fff7e7 100%);
}

.transform-frame .hero-photo-ring {
  border-color: rgba(23,166,91,0.22);
}

.tf-divider {
  box-shadow: 0 0 12px rgba(255,255,255,0.82), 0 0 26px rgba(23,166,91,0.32);
}

.float-card {
  border-color: rgba(23,166,91,0.13);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(17,32,24,0.11);
}

.fc-1 { right: -2%; }
.fc-2 { left: -4%; }

.about,
.order-section,
.gallery {
  background:
    radial-gradient(circle at 8% 8%, rgba(245,158,11,0.08), transparent 30%),
    linear-gradient(180deg, #f4fbf7 0%, #ffffff 100%);
}

.products,
.testimonials,
.contact {
  background: #fff;
}

.about,
.products,
.order-section,
.testimonials,
.gallery,
.contact {
  padding: clamp(72px, 8vw, 112px) 0;
}

.container {
  max-width: 1180px;
  padding: 0 24px;
}

.about-grid {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(38px, 6vw, 76px);
}

.about-photo-wrap,
.product-card,
.order-form-card,
.info-tile,
.testi-card,
.contact-tile,
.v-item,
.lightbox-box {
  border-radius: 18px;
}

.about-photo-wrap {
  border: 8px solid #fff;
}

.about-img {
  height: min(540px, 62vw);
  min-height: 420px;
}

.about-text-col {
  max-width: 620px;
}

.about-lead {
  color: var(--text-700);
}

.pill {
  border-color: rgba(23,166,91,0.16);
}

.products-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.product-card {
  border-color: rgba(17,32,24,0.08);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(23,166,91,0.24);
}

.popular {
  background: linear-gradient(135deg, #087842, #17a65b);
}

.combo {
  background: linear-gradient(135deg, #073b2a, #d9a441);
}

.product-img-wrap {
  height: 250px;
  background: #eef8f2;
}

.pcard-featured .product-img-wrap {
  min-height: 360px;
}

.pcard-img-overlay {
  background: linear-gradient(to top, rgba(7,59,42,0.68) 0%, transparent 62%);
}

.pcard-tag,
.order-total-bar,
.bank-details-card {
  background: var(--green-light);
  border-color: rgba(23,166,91,0.16);
}

.product-meta {
  border-top-color: rgba(17,32,24,0.08);
  gap: 12px;
}

.pcard-actions {
  margin-top: auto;
}

.order-wrapper {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 5vw, 56px);
}

.order-form-card {
  padding: clamp(24px, 4vw, 42px);
  border-color: rgba(17,32,24,0.08);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #f8fcfa;
  border-color: rgba(17,32,24,0.12);
  border-radius: 12px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-1);
  box-shadow: 0 0 0 4px rgba(23,166,91,0.12);
}

.pay-card,
.info-tile,
.testi-card,
.contact-tile {
  border-color: rgba(17,32,24,0.08);
}

.pay-card:hover,
.pay-card:has(input:checked) {
  background: var(--green-light);
}

.tile-icon,
.ct-icon.em,
.video-upload-note code {
  background: var(--green-light);
}

.info-tile:hover,
.testi-card:hover,
.contact-tile:hover {
  border-color: rgba(23,166,91,0.22);
}

.testi-slider-wrap {
  padding: 4px;
}

.testi-quote i {
  color: rgba(23,166,91,0.22);
}

.testi-result,
.g-tab.active,
.g-tab:hover {
  background: var(--gradient-dark);
}

.testi-card {
  min-height: 280px;
}

.gallery-tabs {
  flex-wrap: wrap;
}

.photo-masonry {
  grid-auto-rows: 240px;
  gap: 18px;
}

.g-item {
  border-radius: 16px;
}

.contact-grid {
  max-width: 1080px;
}

.contact-tile {
  display: flex;
  min-height: 265px;
  flex-direction: column;
  align-items: center;
}

.contact-tile p {
  flex: 1;
}

.footer {
  background:
    radial-gradient(circle at 12% 10%, rgba(101,201,140,0.15), transparent 32%),
    var(--green-footer);
}

.footer-body {
  max-width: 1180px;
  padding-left: 24px;
  padding-right: 24px;
}

.toast-msg {
  border-color: rgba(23,166,91,0.22);
  border-left-color: var(--green-1);
}

/* ===== PURPLE + WHITE BRAND REFRESH ===== */
body {
  background:
    linear-gradient(180deg, rgba(250,247,255,0.78), rgba(255,255,255,0.98) 28%),
    #fff;
}

.announcement-bar {
  background: linear-gradient(90deg, #4c1d95, #8b5cf6, #c084fc);
  box-shadow: 0 2px 18px rgba(76,29,149,0.22);
}

.navbar {
  border-color: rgba(139,92,246,0.14);
  box-shadow: 0 14px 38px rgba(31,22,51,0.08);
}

.nav-link:hover,
.nav-link.active,
.section-chip,
.hero-tag,
.pill,
.order-total-bar,
.bank-details-card,
.tile-icon,
.ct-icon.em,
.video-upload-note code {
  background: var(--green-light);
  border-color: rgba(139,92,246,0.18);
  color: var(--green-dark);
}

.btn-nav,
.btn-primary,
.btn-product,
.btn-copy-acc,
.ct-btn,
.btn-submit,
.nl-form button,
.testi-result,
.g-tab.active,
.g-tab:hover {
  background: var(--gradient-dark);
  box-shadow: 0 10px 24px rgba(109,40,217,0.24);
}

.btn-nav:hover,
.btn-primary:hover,
.btn-product:hover,
.btn-copy-acc:hover,
.btn-submit:hover,
.ct-btn:hover {
  box-shadow: 0 14px 34px rgba(109,40,217,0.30);
}

.btn-ghost {
  border-color: rgba(139,92,246,0.24);
}

.hero {
  background: var(--gradient-hero);
}

.blob-1 {
  background: radial-gradient(circle, #ddd6fe, #8b5cf6);
}

.blob-2 {
  background: radial-gradient(circle, #f5d0fe, #c084fc);
}

.blob-3 {
  background: radial-gradient(circle, #f59e0b, #f5d0fe);
}

.hero-photo-card {
  width: min(540px, 100%);
  height: 430px;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  background: #fff;
  border: 0;
  box-shadow: 0 28px 72px rgba(31,22,51,0.13);
  animation: heroPhotoFloat 7s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-real-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 68%;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 0.65s var(--ease);
}

.hero-photo-card:hover .hero-real-photo {
  transform: scale(1.045);
}

.hero-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(46,16,101,0) 0%, rgba(46,16,101,0.03) 48%, rgba(46,16,101,0.50) 100%);
  pointer-events: none;
}

.hero-photo-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
}

.hero-photo-caption span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.26);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-photo-caption strong {
  display: block;
  max-width: 330px;
  font-size: 1.05rem;
  line-height: 1.45;
}

.hero-visual .transform-frame {
  display: none;
}

.float-card {
  border-color: rgba(139,92,246,0.15);
}

.about,
.order-section,
.gallery {
  background:
    radial-gradient(circle at 8% 8%, rgba(192,132,252,0.12), transparent 30%),
    linear-gradient(180deg, #faf7ff 0%, #ffffff 100%);
}

.footer {
  background:
    radial-gradient(circle at 12% 10%, rgba(192,132,252,0.18), transparent 32%),
    var(--green-footer);
}

.ct-icon.wa {
  background: rgba(139,92,246,0.10);
  color: var(--green-dark);
}

.product-showcase {
  background:
    radial-gradient(circle at 88% 6%, rgba(192,132,252,0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
}

.product-info-grid {
  display: grid;
  gap: 24px;
}

.product-info-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 56px);
  background: #ffffff;
  border: 1px solid rgba(139,92,246,0.12);
  border-radius: 22px;
  padding: clamp(20px, 3vw, 34px);
  box-shadow: 0 18px 48px rgba(31,22,51,0.08);
}

.product-info-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
}

.product-info-card:nth-child(even) .product-info-image {
  order: 2;
}

.product-info-image {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
}

.product-info-image img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 30px rgba(31,22,51,0.12));
}

.product-info-content {
  max-width: 560px;
}

.product-info-kicker {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.product-info-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.16;
  color: var(--text-900);
  margin-bottom: 12px;
}

.product-info-content p {
  color: var(--text-500);
  line-height: 1.75;
  margin-bottom: 20px;
}

.product-info-content ul {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.product-info-content li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-700);
  font-size: 0.92rem;
  font-weight: 600;
}

.product-info-content li i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #faf7ff;
  color: var(--green-dark);
  flex-shrink: 0;
}

.product-info-content .btn-product {
  width: fit-content;
  min-width: 190px;
  display: inline-flex;
  justify-content: center;
}

.popular {
  background: linear-gradient(135deg, #7c3aed, #c084fc);
}

.combo {
  background: linear-gradient(135deg, #4c1d95, #f59e0b);
}

/* ===== PRODUCT CATALOG UPGRADE ===== */
.products {
  background: #ffffff;
}

.products .section-header {
  margin-bottom: 42px;
}

.products-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  grid-column: span 4;
  isolation: isolate;
  background: #ffffff;
  border: 1px solid rgba(17,32,24,0.09);
  border-radius: 20px;
  box-shadow: 0 14px 38px rgba(17,32,24,0.07);
}

.product-card::before {
  content: none;
}

.product-card:hover::before {
  opacity: 0;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 58px rgba(17,32,24,0.13);
}

.pcard-featured {
  grid-column: span 8;
  min-height: 430px;
}

.product-img-wrap {
  height: 270px;
  background: #ffffff;
}

.pcard-featured .product-img-wrap {
  width: 48%;
  min-height: 430px;
}

.product-img-wrap img {
  object-fit: contain;
  padding: 0;
}

.pcard-featured .product-img-wrap img {
  padding: 0;
}

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

.product-badge-top {
  top: 16px;
  left: 16px;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.68rem;
  box-shadow: 0 10px 24px rgba(17,32,24,0.13);
}

.pcard-img-overlay {
  justify-content: flex-start;
  padding: 0 18px 18px;
}

.pcard-quick-view {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--green-darker);
}

.product-body {
  padding: 24px;
  gap: 0;
}

.pcard-featured .product-body {
  padding: 34px;
}

.pcard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.pcard-tag {
  margin-bottom: 0;
  background: #f6f7f6;
  border-color: rgba(17,32,24,0.10);
  color: var(--text-700);
}

.pcard-stock {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(245,158,11,0.12);
  color: #9a5f04;
  font-size: 0.69rem;
  font-weight: 800;
  white-space: nowrap;
}

.product-body h3 {
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  margin-bottom: 9px;
}

.pcard-featured .product-body h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.product-body p {
  flex: 0;
  min-height: 72px;
  margin-bottom: 18px;
  color: var(--text-700);
}

.pcard-featured .product-body p {
  min-height: auto;
  font-size: 0.96rem;
}

.product-details {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.product-details li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 12px;
  background: #f8f8f7;
  color: var(--text-700);
  font-size: 0.8rem;
  font-weight: 600;
}

.product-details i {
  width: 20px;
  color: #d28a09;
  text-align: center;
  flex-shrink: 0;
}

.product-meta {
  align-items: flex-start;
  gap: 14px;
  margin-top: auto;
  margin-bottom: 18px;
  padding-top: 16px;
  border-top-color: rgba(17,32,24,0.08);
}

.product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
  font-size: 1.3rem;
}

.product-price s {
  margin-left: 0;
}

.product-stars {
  min-width: max-content;
  padding-top: 3px;
  line-height: 1.4;
}

.btn-product {
  border-radius: 13px;
  padding: 13px 16px;
}

.pcard-wish {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #f8f8f7;
  border-color: rgba(17,32,24,0.10);
}

.pcard-wish:hover {
  background: #fff1f2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .navbar {
    width: calc(100% - 24px);
  }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 154px;
  }
  .hero-content,
  .hero-subtext,
  .hero-trust {
    margin-left: auto;
    margin-right: auto;
  }
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-card,
  .pcard-featured {
    grid-column: auto;
  }
  .pcard-featured {
    flex-direction: column;
  }
  .pcard-featured .product-img-wrap {
    width: 100%;
    height: 300px;
    min-height: unset;
  }
  .footer-body { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-photo-col { max-width: 400px; margin: 0 auto; }
  .about-img { height: 380px; }
  .about-pills { justify-content: center; }
  .order-wrapper { grid-template-columns: 1fr; }
  .order-info-col { display: grid; grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-card { min-width: calc(50% - 12px); }
  .photo-masonry { grid-template-columns: repeat(2, 1fr); }
  .product-info-card,
  .product-info-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .product-info-card:nth-child(even) .product-info-image {
    order: 0;
  }
  .product-info-image {
    min-height: 300px;
  }

  .pcard-featured .product-img-wrap {
    width: 100%;
    height: 280px;
    min-height: unset;
  }
  .pcard-featured .product-body {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .navbar {
    top: 34px;
    width: calc(100% - 18px);
    padding: 11px 14px;
    border-radius: 0 0 18px 18px;
  }
  .navbar.scrolled {
    top: 8px;
    border-radius: 18px;
  }
  .nav-links {
    position: fixed; top: 72px; left: 9px; right: 9px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column; gap: 0;
    border: 1px solid rgba(23,166,91,0.12);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: none; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 15px 5%; border-bottom: 1px solid rgba(0,0,0,0.04); }
  .btn-nav { display: none; }
  .hamburger { display: flex; }

  .hero {
    padding: 132px 20px 70px;
    text-align: center;
    gap: 30px;
  }
  .hero-actions { justify-content: center; }
  .hero-trust {
    justify-content: center;
    width: 100%;
    gap: 16px;
    padding: 16px;
  }
  .hero-photo-frame { width: 280px; height: 340px; }
  .hero-visual {
    min-height: 420px;
    width: 100%;
  }
  .hero-photo-card {
    width: min(500px, 92vw);
    height: 360px;
    border-radius: 28px;
  }
  .transform-frame {
    width: min(330px, 92vw);
    height: 420px;
  }
  .fc-1 { top: 3%; right: -2%; }
  .fc-2 { display: none; }
  .fc-3 { bottom: 2%; right: 0; }

  /* Single column on mobile — featured card also stacks */
  .products-grid { grid-template-columns: 1fr; }
  .product-card,
  .pcard-featured { grid-column: auto; }
  .pcard-featured {
    flex-direction: column;
  }
  .pcard-featured .product-img-wrap {
    width: 100%;
    height: 260px;
    min-height: unset;
  }
  .pcard-featured .product-body {
    padding: 24px;
  }

  .form-row { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: 1fr; }
  .order-info-col { grid-template-columns: 1fr; }
  .testi-card { min-width: 85%; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .photo-masonry { grid-template-columns: 1fr 1fr; }
  .footer-body { grid-template-columns: 1fr; gap: 28px; padding: 50px 6% 40px; }
}

@media (max-width: 520px) {
  .logo-words span { font-size: 0.68rem; }
  .logo-words em { font-size: 1rem; }
  .hero-heading { font-size: clamp(2.35rem, 14vw, 3.4rem); }
  .hero-actions > a {
    width: 100%;
    justify-content: center;
  }
  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .trust-item {
    align-items: center;
  }
  .trust-divider {
    width: 100%;
    height: 1px;
  }
  .about-img {
    min-height: 320px;
    height: 360px;
  }
  .order-form-card {
    padding: 22px 16px;
  }
  .bank-row {
    align-items: flex-start;
    gap: 8px;
    flex-direction: column;
  }
  .product-body {
    padding: 20px;
  }
  .pcard-head,
  .product-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-body p {
    min-height: auto;
  }
  .product-img-wrap,
  .pcard-featured .product-img-wrap {
    height: 230px;
  }
  .product-info-card {
    padding: 18px;
  }
  .product-info-image {
    min-height: 240px;
  }
  .product-info-content .btn-product {
    width: 100%;
  }
  .hero-photo-card {
    height: 300px;
  }
  .hero-photo-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .contact-grid { grid-template-columns: 1fr; }
  .photo-masonry { grid-template-columns: 1fr; }
  .g-item.tall { grid-row: span 1; }
  .nl-form { flex-direction: column; }
}

@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  .hamburger, .pay-card, .g-tab, .testi-btn, .btn-copy-acc,
  .btn-paystack-pay, .btn-submit, .nl-form button { cursor: pointer; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== MOBILE RESPONSIVENESS REFINEMENT ===== */
@media (max-width: 768px) {
  html { font-size: 15px; }

  [data-parallax] {
    transform: none !important;
  }

  .announcement-bar {
    font-size: 0.72rem;
    padding: 8px 0;
  }

  .tick {
    padding: 0 30px;
  }

  .navbar {
    top: 31px;
    min-height: 62px;
    width: calc(100% - 14px);
    padding: 10px 12px;
  }

  .nav-logo {
    min-width: 0;
  }

  .logo-leaf {
    font-size: 1.35rem;
  }

  .logo-words span {
    font-size: 0.66rem;
  }

  .logo-words em {
    font-size: 1rem;
  }

  .hamburger {
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--green-light);
  }

  .nav-links {
    top: 102px;
    max-height: calc(100vh - 118px);
    overflow-y: auto;
  }

  .nav-link {
    width: 100%;
    padding: 16px 18px;
    text-align: left;
    font-size: 0.94rem;
  }

  .hero {
    padding: 126px 16px 54px;
    gap: 24px;
  }

  .hero-tag {
    margin-bottom: 16px;
    font-size: 0.76rem;
    padding: 7px 13px;
  }

  .hero-heading {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
    line-height: 1.04;
    margin-bottom: 16px;
  }

  .hero-subtext {
    font-size: 0.96rem;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }

  .hero-actions a {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    display: grid;
    gap: 0;
    padding: 14px 8px;
  }

  .trust-item {
    align-items: center;
    text-align: center;
    padding: 0 8px;
  }

  .trust-item strong {
    font-size: 1.28rem;
  }

  .trust-item span {
    font-size: 0.66rem;
    line-height: 1.3;
  }

  .trust-divider {
    display: none;
  }

  .hero-visual {
    min-height: auto;
    padding-bottom: 28px;
  }

  .hero-photo-card {
    width: min(100%, 420px);
    height: 300px;
    border-radius: 24px;
  }

  .hero-real-photo {
    object-position: center 66%;
  }

  .hero-photo-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .hero-photo-caption strong {
    font-size: 0.92rem;
    max-width: 260px;
  }

  .float-card {
    padding: 9px 12px;
    gap: 8px;
    border-radius: 14px;
    max-width: 170px;
  }

  .float-card strong {
    font-size: 0.82rem;
  }

  .float-card span {
    font-size: 0.66rem;
  }

  .fc-icon {
    font-size: 1.2rem;
  }

  .fc-1 {
    top: 10px;
    right: 4px;
  }

  .fc-3 {
    left: 50%;
    right: auto;
    bottom: -6px;
    transform: translateX(-50%);
  }

  .section-header {
    margin-bottom: 34px;
  }

  .section-heading {
    font-size: clamp(1.8rem, 9vw, 2.55rem);
  }

  .section-header p {
    font-size: 0.93rem;
  }

  .about,
  .products,
  .order-section,
  .gallery,
  .contact {
    padding: 64px 0;
  }

  .container {
    padding: 0 16px;
  }

  .about-img {
    height: 330px;
    min-height: 0;
  }

  .about-badge {
    left: 14px;
    right: 14px;
    justify-content: center;
    border-radius: 14px;
  }

  .about-pills {
    justify-content: flex-start;
  }

  .pill {
    width: 100%;
    justify-content: center;
  }

  .products-grid {
    gap: 18px;
  }

  .product-card,
  .pcard-featured {
    border-radius: 18px;
  }

  .product-img-wrap,
  .pcard-featured .product-img-wrap {
    height: 250px;
  }

  .product-body,
  .pcard-featured .product-body {
    padding: 20px;
  }

  .pcard-head {
    flex-direction: row;
    align-items: center;
  }

  .product-body h3,
  .pcard-featured .product-body h3 {
    font-size: 1.18rem;
    line-height: 1.25;
  }

  .product-body p {
    min-height: auto;
    font-size: 0.86rem;
  }

  .product-meta {
    flex-direction: column;
    gap: 8px;
  }

  .product-stars {
    min-width: 0;
  }

  .pcard-actions {
    gap: 8px;
  }

  .btn-product {
    min-height: 48px;
  }

  .pcard-wish {
    width: 48px;
    height: 48px;
  }

  .order-form-card {
    border-radius: 18px;
    padding: 22px 16px;
  }

  .order-form-card h3 {
    font-size: 1.08rem;
    margin-bottom: 20px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 48px;
    font-size: 16px;
    padding: 12px 13px;
  }

  .order-total-bar,
  .bank-details-card {
    border-radius: 14px;
  }

  .pay-card {
    min-height: 54px;
  }

  .btn-paystack-pay,
  .btn-submit {
    min-height: 52px;
    border-radius: 14px;
  }

  .info-tile {
    border-radius: 16px;
    padding: 20px;
  }

  .product-info-grid {
    gap: 18px;
  }

  .product-info-card {
    gap: 18px;
    border-radius: 18px;
    padding: 18px;
  }

  .product-info-image {
    min-height: 230px;
  }

  .product-info-image img {
    max-height: 280px;
  }

  .product-info-content h3 {
    font-size: 1.45rem;
  }

  .product-info-content li {
    align-items: flex-start;
    font-size: 0.86rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-tile {
    min-height: 0;
    padding: 24px 18px;
  }

  .footer-body {
    padding: 44px 18px 34px;
  }

  .footer-brand-col p,
  .footer-newsletter-col p {
    max-width: none;
  }

  .footer-socials {
    flex-wrap: wrap;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 15px;
    font-size: 0.84rem;
  }
}

@media (max-width: 420px) {
  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-photo-card {
    height: 260px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trust-item {
    padding: 0;
  }

  .product-img-wrap,
  .pcard-featured .product-img-wrap {
    height: 220px;
  }

  .pcard-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-details li {
    align-items: flex-start;
  }

  .product-info-image {
    min-height: 210px;
  }

  .nl-form {
    gap: 10px;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    justify-content: center;
    padding: 0;
  }
}
