/* =============================================
   VERTEX WELLNESS SUPPLY — LANDING PAGE STYLES
   ============================================= */

/* ─── CSS Variables ─── */
:root {
  --green-900: #0d2418;
  --green-800: #163320;
  --green-700: #1e4a2e;
  --green-600: #276038;
  --green-500: #2e7d45;
  --green-400: #48a065;
  --green-300: #6dbf85;
  --green-200: #a8dbb8;
  --green-100: #d4f0dc;
  --green-50:  #edf8f1;

  --purple-600: #5b3d8f;
  --purple-500: #7a52b8;
  --purple-400: #9b6ed4;
  --purple-100: #ede5f8;

  --blue-600: #1a5fa8;
  --blue-500: #2478cc;
  --blue-400: #4e9de3;
  --blue-100: #ddeeff;

  --accent: #2e7d45;
  --accent-light: #6dbf85;
  --accent-dark: #163320;

  --gold: #c9973a;
  --cream: #f7f4ef;
  --white: #ffffff;
  --dark: #111814;
  --text: #2a3530;
  --text-muted: #607060;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 48px rgba(0,0,0,.14);
  --shadow-xl: 0 32px 80px rgba(0,0,0,.20);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-pill: 999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay  { transition-delay: 0.15s; }
.reveal-delay-2{ transition-delay: 0.30s; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 1rem; }

.btn-primary {
  background: var(--green-500);
  color: var(--white);
  border-color: var(--green-500);
}
.btn-primary:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,125,69,.35);
}

.btn--purple {
  background: var(--purple-500);
  border-color: var(--purple-500);
}
.btn--purple:hover {
  background: var(--purple-600);
  border-color: var(--purple-600);
  box-shadow: 0 8px 24px rgba(122,82,184,.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}

.btn-outline {
  background: transparent;
  color: var(--green-600);
  border-color: var(--green-500);
}
.btn-outline:hover {
  background: var(--green-500);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,125,69,.25);
}

.btn-light {
  background: var(--white);
  color: var(--green-700);
  border-color: var(--white);
}
.btn-light:hover {
  background: var(--green-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

/* ─── Section Shared ─── */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ─── Announcement Bar ─── */
.announcement-bar {
  background: var(--green-800);
  color: var(--green-100);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1001;
}

/* ─── Navbar ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247,244,239,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(46,125,69,.3);
}
.brand-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}
.brand-text em { font-style: normal; color: var(--green-500); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--green-500);
  transition: width var(--transition);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--green-600); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: 16px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.menu-toggle:hover { background: rgba(0,0,0,.06); }
.menu-toggle span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 2px solid var(--green-100);
  padding: 8px 20px 24px;
  gap: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.mobile-menu a {
  padding: 14px 4px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,.05);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--green-600); padding-left: 8px; }
.mobile-menu.open { display: flex; }

/* Mobile menu CTA button */
.mobile-menu-cta {
  margin-top: 16px;
  display: flex;
  gap: 10px;
}
.mobile-menu-cta .btn {
  flex: 1;
  text-align: center;
  justify-content: center;
}

/* ─── Hero ─── */
.hero {
  min-height: calc(100vh - 104px);
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 50%, var(--green-800) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--green-300);
  top: -150px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--blue-400);
  bottom: -100px; left: 10%;
  animation: float2 10s ease-in-out infinite;
}
.shape-3 {
  width: 300px; height: 300px;
  background: var(--purple-400);
  top: 40%; right: 25%;
  animation: float1 12s ease-in-out infinite reverse;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--green-100);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--green-300);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.07);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.1);
}

/* Hero Visual — Strip Cards Carousel */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.hero-carousel-viewport {
  width: 420px;
  /* 2 cards (168px) + 1 gap (20px) */
  height: 356px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero-carousel-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.strip-card {
  position: relative;
  width: 420px;
  height: 168px;
  box-sizing: border-box;
  flex-shrink: 0;
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.strip-card-content {
  flex: 1;
  min-width: 0;
}
.strip-card-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  transform: rotate(3deg);
  transition: transform var(--transition);
}
.strip-card-img--contain { object-fit: contain; background: rgba(255,255,255,.06); }
.strip-card:hover .strip-card-img { transform: rotate(0deg) scale(1.05); }
.strip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.strip-card--blue   { background: rgba(36,120,204,.28); }
.strip-card--purple { background: rgba(122,82,184,.28); }
.strip-card--green  { background: rgba(34,160,90,.28);  }
.strip-card--amber  { background: rgba(204,130,36,.28); }
.strip-card--teal   { background: rgba(20,184,166,.28); }

.strip-card-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  top: -50px; right: -50px;
  opacity: 0.4;
}
.strip-card--blue   .strip-card-glow { background: var(--blue-400); }
.strip-card--purple .strip-card-glow { background: var(--purple-400); }
.strip-card--green  .strip-card-glow { background: #22c55e; }
.strip-card--amber  .strip-card-glow { background: #f59e0b; }
.strip-card--teal   .strip-card-glow { background: #14b8a6; }

/* Carousel dots */
.hero-carousel-dots {
  display: flex;
  gap: 7px;
  justify-content: flex-end;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.32);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
}
.hero-dot.active {
  width: 26px;
  border-radius: 4px;
  background: rgba(255,255,255,.85);
}

.strip-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}
.strip-pill {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,.3);
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.strip-pill::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 50%;
  background: rgba(255,255,255,.7);
  border-radius: var(--radius-pill);
  animation: shimmer 2.5s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}
.strip-detail {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.mouse {
  width: 24px; height: 36px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.wheel {
  width: 3px; height: 8px;
  background: rgba(255,255,255,.6);
  border-radius: 2px;
  animation: scroll-wheel 2s ease-in-out infinite;
}
@keyframes scroll-wheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ─── Ticker ─── */
.ticker-wrap {
  background: var(--green-800);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.ticker {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
  width: max-content;
}
.ticker span {
  display: inline-block;
  padding: 0 32px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--green-100);
  border-right: 1px solid rgba(255,255,255,.12);
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Products ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}
.products-cta { text-align: center; margin-top: 40px; }

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.product-badge--purple { background: var(--purple-500); }

.product-image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.product-image--blue   { background: linear-gradient(135deg, var(--blue-100), #c2dff7); }
.product-image--purple { background: linear-gradient(135deg, var(--purple-100), #d9c8f8); }
.product-image--photo  { background: #f5f5f5; padding: 0; }
.product-image--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-icon { font-size: 3.5rem; }
.product-strips {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mini-strip {
  width: 60px; height: 10px;
  background: var(--blue-400);
  border-radius: var(--radius-pill);
  opacity: 0.7;
}
.mini-strip--purple { background: var(--purple-400); }

.product-body { padding: 24px; }
.product-type {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 6px;
}
.product-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.product-tags li {
  background: var(--green-50);
  color: var(--green-700);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--green-200);
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.product-footer-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.product-footer-btns .btn {
  font-size: 0.85rem;
  padding: 8px 14px;
}
.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}
.product-price small { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); }

/* ─── How It Works ─── */
.how-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-400), var(--blue-400), var(--purple-400));
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0 24px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  text-align: center;
  padding: 32px 20px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,.05);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-100);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon { font-size: 2.5rem; margin-bottom: 12px; }
.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-300), var(--green-400));
  border-radius: 2px;
  flex-shrink: 0;
}

/* ─── Features ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ─── Testimonials ─── */
.testimonials-section {
  background: var(--green-900);
}
.testimonials-section .section-header h2 { color: var(--white); }
.testimonials-section .section-label { color: var(--green-300); }
.testimonials-section .section-sub { color: rgba(255,255,255,.5); }

.star-row {
  font-size: 1.4rem;
  color: var(--gold);
  margin-top: 8px;
  letter-spacing: 3px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
  transition: transform var(--transition), background var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.1);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: rgba(255,255,255,.85);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-card blockquote::before { content: '\201C'; }
.testimonial-card blockquote::after  { content: '\201D'; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-500);
  color: var(--white);
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.author-avatar--green  { background: var(--green-600); }
.author-avatar--purple { background: var(--purple-500); }
.testimonial-author strong { display: block; color: var(--white); font-size: 0.9rem; }
.testimonial-author span  { font-size: 0.78rem; color: rgba(255,255,255,.4); }

/* ─── Wholesale ─── */
.wholesale-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  position: relative;
  overflow: hidden;
}
.wholesale-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.wholesale-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.wholesale-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.wholesale-text p {
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 24px;
}
.wholesale-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.wholesale-list li {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--green-100);
}

.wholesale-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.wv-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--transition), background var(--transition);
}
.wv-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.14);
}
.wv-icon { font-size: 2.2rem; margin-bottom: 10px; }
.wv-card p { color: rgba(255,255,255,.7); font-size: 0.88rem; font-weight: 500; }

/* ─── CTA Section ─── */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-500) 0%, var(--green-700) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  top: -200px; right: -100px;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-inner > p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 36px;
}
.cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.cta-trust span {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
}

/* ─── Newsletter ─── */
.newsletter-section {
  background: var(--cream);
  padding: 80px 0;
  border-top: 1px solid rgba(0,0,0,.06);
}
.newsletter-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.newsletter-inner h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--dark);
  margin-bottom: 10px;
}
.newsletter-inner > p {
  color: var(--text-muted);
  margin-bottom: 28px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 20px;
  border: 2px solid rgba(0,0,0,.07);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.newsletter-form:focus-within {
  border-color: var(--green-400);
  box-shadow: 0 0 0 4px rgba(46,125,69,.1);
}
.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.92rem;
  background: transparent;
  color: var(--text);
  font-family: 'Inter', sans-serif;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ─── Footer ─── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}
.footer-brand .brand-text { color: var(--white); }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 12px;
  margin-bottom: 20px;
  max-width: 260px;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.footer-social:hover { background: var(--green-500); color: var(--white); }

.footer-links h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--green-300); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom a {
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--white); }
.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,.25);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
    padding: 60px 24px;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual {
    align-items: center;
  }
  .hero-carousel-viewport { width: 340px; height: 322px; }
  .strip-card { width: 340px; height: 151px; padding: 18px 20px; }
  .strip-card-img { width: 104px; height: 104px; }
  .strip-detail { font-size: 0.85rem; }

  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-inner { gap: 0; }
  .navbar .container { padding: 0 12px; }
  .nav-actions { margin-left: auto; gap: 0; }
  .nav-actions .nav-icon-btn { padding: 6px; }
  .menu-toggle { padding: 6px; width: 36px; height: 36px; }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .step-connector {
    width: 2px;
    height: 30px;
    justify-self: center;
  }

  .products-grid  { grid-template-columns: 1fr; max-width: 420px; }
  .features-grid  { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .wholesale-inner { grid-template-columns: 1fr; gap: 40px; }
  .wholesale-visual { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .newsletter-form { flex-direction: column; padding: 12px; border-radius: var(--radius-lg); }
  .newsletter-form .btn { border-radius: var(--radius-pill); }
}

@media (max-width: 480px) {
  .hero-visual { align-items: center; }
  .hero-carousel-viewport { width: 90vw; height: 322px; }
  .strip-card { width: 90vw; height: 151px; padding: 18px 20px; }
  .strip-card-img { width: 104px; height: 104px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* =============================================
   NAV ICONS — Search, Account, Cart
   ============================================= */

.nav-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: inherit;
  white-space: nowrap;
}
.nav-icon-btn:hover { background: var(--green-50); color: var(--green-600); }
.nav-icon-btn svg { flex-shrink: 0; }

/* When user is logged in, show a subtle green tint */
.nav-icon-btn.logged-in { color: var(--green-600); }
.nav-icon-btn.logged-in svg { stroke: var(--green-600); }

.account-nav-label {
  font-size: 0.8rem;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Cart badge */
.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-pill);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* Account dropdown wrapper */
.account-toggle-wrap {
  position: relative;
}

/* =============================================
   CART DRAWER
   ============================================= */

body.drawer-open { overflow: hidden; }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100%;
  background: var(--white);
  z-index: 1201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,.18);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}
.cart-drawer-header h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.cart-close-btn {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--text-muted);
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  line-height: 1;
}
.cart-close-btn:hover { background: var(--green-50); color: var(--dark); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

/* Individual cart item */
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cart-item:last-child { border-bottom: none; }

.cart-item-image-wrap {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--green-50);
  flex-shrink: 0;
}
.cart-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-100);
  color: var(--green-600);
  font-weight: 700;
  font-size: 1.4rem;
}

.cart-item-details { min-width: 0; }
.cart-item-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 4px;
}
.cart-item-price {
  font-size: 0.85rem;
  color: var(--green-600);
  font-weight: 600;
  margin-bottom: 8px;
}
.cart-item-price span { color: var(--text-muted); font-weight: 400; font-size: 0.78rem; }

.cart-item-qty-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 26px;
  height: 26px;
  border: 1px solid #ddd;
  background: var(--white);
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background var(--transition), border-color var(--transition);
  padding: 0;
}
.qty-btn:hover { background: var(--green-50); border-color: var(--green-300); }
.qty-num { font-size: 0.9rem; font-weight: 600; min-width: 20px; text-align: center; }

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.75rem;
  padding: 4px 6px;
  border-radius: 4px;
  line-height: 1;
  transition: color var(--transition), background var(--transition);
  align-self: start;
  margin-top: 2px;
}
.cart-item-remove:hover { color: #c0392b; background: #fdf0ee; }

/* Empty cart */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
  gap: 16px;
}
.cart-empty-icon { font-size: 3rem; opacity: 0.4; }
.cart-empty p { color: var(--text-muted); font-size: 0.95rem; }

/* Cart footer */
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid #eee;
  background: var(--white);
}
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
#cartSubtotal { font-size: 1.05rem; color: var(--green-600); }
.cart-shipping-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.cart-checkout-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}
.cart-continue-link {
  display: block;
  width: 100%;
  text-align: center;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
  padding: 4px;
}
.cart-continue-link:hover { color: var(--dark); }

/* =============================================
   ACCOUNT MODAL
   ============================================= */

body.modal-open { overflow: hidden; }

.account-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.account-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.account-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 440px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  z-index: 1301;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: var(--shadow-xl);
}
.account-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.account-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 0;
}

.account-tabs {
  display: flex;
  gap: 4px;
  background: var(--green-50);
  border-radius: var(--radius-pill);
  padding: 4px;
}
.account-tab-btn {
  background: none;
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
}
.account-tab-btn.active {
  background: var(--green-600);
  color: var(--white);
  font-weight: 600;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: var(--text-muted);
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  line-height: 1;
}
.modal-close-btn:hover { background: var(--green-50); color: var(--dark); }

.account-modal-body {
  padding: 24px;
}
.account-modal-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 6px;
}
.account-sub {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 24px;
}

/* Form */
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  box-sizing: border-box;
  outline: none;
}
.form-input:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(46,125,69,.15);
}
.form-input::placeholder { color: #bbb; }

.form-message {
  font-size: 0.82rem;
  margin-bottom: 12px;
  min-height: 20px;
  border-radius: 6px;
  padding: 0;
}
.form-message--error {
  color: #c0392b;
  background: #fdf0ee;
  padding: 8px 12px;
}
.form-message--success {
  color: var(--green-600);
  background: var(--green-50);
  padding: 8px 12px;
}

.btn-full { width: 100%; justify-content: center; }

.account-switch {
  text-align: center;
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 0;
}
.link-btn {
  background: none;
  border: none;
  color: var(--green-600);
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  text-decoration: underline;
  padding: 0;
}
.link-btn:hover { color: var(--green-500); }

/* Account dropdown */
.account-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 240px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: 1px solid rgba(0,0,0,.06);
  overflow: hidden;
}
.account-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.account-dropdown-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--green-50);
}
.account-dropdown-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.account-dropdown-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
}
.account-dropdown-email {
  font-size: 0.75rem;
  color: var(--text-muted);
  word-break: break-all;
}

.account-dropdown-divider {
  height: 1px;
  background: #eee;
  border: none;
  margin: 0;
}
.account-dropdown-item {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  transition: background var(--transition);
}
.account-dropdown-item:hover { background: var(--green-50); }
.account-dropdown-item--danger { color: #c0392b; }
.account-dropdown-item--danger:hover { background: #fdf0ee; }

/* =============================================
   SEARCH OVERLAY
   ============================================= */

body.search-open { overflow: hidden; }

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  pointer-events: none;
}
.search-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.search-overlay.open .search-overlay-backdrop {
  opacity: 1;
  pointer-events: all;
}
.search-overlay-inner {
  position: relative;
  z-index: 1;
  width: 600px;
  max-width: calc(100vw - 32px);
  transform: translateY(-20px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.search-overlay.open .search-overlay-inner {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0 16px;
  gap: 12px;
  box-shadow: var(--shadow-xl);
}
.search-icon-inline { color: var(--text-muted); flex-shrink: 0; }
.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 0;
  font-family: inherit;
  font-size: 1rem;
  color: var(--dark);
  background: transparent;
}
.search-input::placeholder { color: #bbb; }
.search-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  padding: 6px;
  border-radius: 4px;
  font-family: inherit;
  transition: color var(--transition);
  flex-shrink: 0;
}
.search-close-btn:hover { color: var(--dark); }

.search-results {
  margin-top: 8px;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  max-height: 420px;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}
.search-hint,
.search-no-results {
  padding: 20px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
}

.search-results-grid { display: flex; flex-direction: column; }
.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: none;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background var(--transition);
  width: 100%;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--green-50); }

.search-result-img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--green-50);
  flex-shrink: 0;
}
.search-result-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.search-result-category {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-500);
  font-weight: 600;
}
.search-result-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result-price {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.search-result-arrow { color: var(--text-muted); flex-shrink: 0; }
.search-result-item:hover .search-result-arrow { color: var(--green-500); }

/* Highlight effect when search navigates to a product card */
.search-highlight {
  outline: 3px solid var(--green-400) !important;
  outline-offset: 4px;
  border-radius: var(--radius-md);
  transition: outline 0.3s ease;
}

/* =============================================
   TOAST NOTIFICATION
   ============================================= */

.vws-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--green-700);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
  pointer-events: none;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  max-width: calc(100vw - 48px);
  text-align: center;
}
.vws-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =============================================
   RESPONSIVE — new components
   ============================================= */

@media (max-width: 480px) {
  .cart-drawer { width: 100vw; }
  .search-overlay { padding-top: 60px; }
  .account-modal { max-height: calc(100vh - 20px); top: 50%; }
}
