/* ============================================================
   OohWee Smoothie 2.0 - Re-Imagined Brand System
   "Fresh flavor. Real ingredients. Built to move."
   ============================================================ */

@import url('google-fonts.css');

/* ── DESIGN TOKENS ── */
:root {
  --mango:          #00B4CC;
  --mango-light:    #4DD0E1;
  --mango-pale:     #E0F7FA;
  --berry:          #E8386D;
  --berry-light:    #FFE0EB;
  --green:          #2DB87A;
  --green-dark:     #1A9660;
  --green-pale:     #E6F7F0;
  --cream:          #FFFBF4;
  --cream-dark:     #F0FDFD;
  --charcoal:       #1C1917;
  --charcoal-75:    #44403C;
  --charcoal-50:    #78716C;
  --charcoal-20:    #D6D3D1;
  --white:          #FFFFFF;
  --border:         rgba(28,25,23,0.08);
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:      0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:      0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-xl:      0 24px 64px rgba(0,0,0,0.12);
  --radius-sm:      10px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      32px;
  --radius-full:    9999px;
  --transition:     all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
h1 { font-size: clamp(40px, 6vw, 80px); }
h2 { font-size: clamp(28px, 4vw, 52px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: 20px; font-weight: 700; }

.eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mango);
  display: block;
  margin-bottom: 12px;
}
.tasting-note {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--charcoal-50);
  line-height: 1.5;
}

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
section.compact { padding: 40px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ── ANNOUNCEMENT BANNER ── */
.announcement-bar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.announcement-bar a { color: var(--mango-light); font-weight: 700; }
.announcement-bar a:hover { color: var(--mango); }

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,251,244,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.site-nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text { line-height: 1.1; }
.nav-logo-text .brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.nav-logo-text .brand-name span { color: var(--mango); }
.nav-logo-text .brand-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-50);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal-75);
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--charcoal); background: var(--cream-dark); }
.nav-links a.active { color: var(--mango); }

/* dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ↓'; font-size: 10px; opacity: 0.5; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 200px;
  padding: 8px;
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--mango);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,180,204,0.35);
}
.btn-primary:hover {
  background: #0097A7;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,180,204,0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.btn-dark:hover {
  background: #2C2825;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal-20);
}
.btn-ghost:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
}

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.8);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(45,184,122,0.3);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-icon { padding: 14px 14px; }

/* ── BADGE / CHIP ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.badge-mango  { background: var(--mango-pale);  color: var(--mango); }
.badge-berry  { background: var(--berry-light);  color: var(--berry); }
.badge-green  { background: var(--green-pale);   color: var(--green-dark); }
.badge-dark   { background: var(--charcoal);     color: var(--white); }
.badge-cream  { background: var(--cream-dark);   color: var(--charcoal-75); }
.badge i,
.badge svg,
.ingredient-chip i,
.ingredient-chip svg,
.filter-chip i,
.filter-chip svg,
.form-option-chip i {
  line-height: 1;
}
.badge svg,
.filter-chip svg,
.ingredient-chip svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
  flex-shrink: 0;
}

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  font-size: 17px;
  color: var(--charcoal-50);
  max-width: 560px;
  line-height: 1.7;
}
.section-header.centered p { margin: 0 auto; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    130deg,
    rgba(28,25,23,0.97) 0%,
    rgba(28,25,23,0.80) 40%,
    rgba(0,180,204,0.25) 80%,
    rgba(0,180,204,0.12) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.hero-text {}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,204,0.15);
  border: 1px solid rgba(0,180,204,0.3);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  margin-bottom: 28px;
}
.hero-tag span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mango-light);
}
.hero-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mango);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--mango), var(--mango-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat .num span { color: var(--mango); }
.hero-stat .label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-product-stack {
  position: relative;
  width: 100%;
}
.hero-product-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(16px);
  display: flex;
  gap: 16px;
  align-items: center;
  transition: var(--transition);
}
.hero-product-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(4px);
}
.hero-product-card + .hero-product-card { margin-top: 14px; }
.hero-product-card img {
  width: 80px; height: 80px;
  object-fit: contain;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  padding: 4px;
  flex-shrink: 0;
}
.hero-product-card .pname {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 4px;
}
.hero-product-card .ptag {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.hero-badge-float {
  position: absolute;
  top: -24px;
  right: -24px;
  background: var(--mango);
  color: var(--white);
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  box-shadow: 0 8px 28px rgba(0,180,204,0.5);
  z-index: 5;
}
.hero-badge-float .big {
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-badge-float .small { font-size: 10px; letter-spacing: 0.05em; opacity: 0.85; }

/* ── VALUE PROPS ── */
.value-props {
  background: var(--charcoal);
  padding: 24px 0;
}
.value-props-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.value-prop {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.value-prop-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.value-prop-icon i { line-height: 1; }
.value-prop-text .title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.value-prop-text .sub {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.value-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ── SECTION BACKGROUNDS ── */
.bg-cream { background: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-white { background: var(--white); }
.bg-charcoal { background: var(--charcoal); }
.bg-mango-pale { background: var(--mango-pale); }
.bg-green-pale { background: var(--green-pale); }

/* ── PRODUCT CARDS ── */
.product-lineup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card-v2 {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card-img {
  position: relative;
  padding: 32px 32px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.product-card-img-bg {
  position: absolute; inset: 0;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  opacity: 0.12;
}
.product-card-img img {
  position: relative;
  z-index: 2;
  height: 180px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.15));
  transition: transform 0.3s ease;
}
.product-card-v2:hover .product-card-img img {
  transform: scale(1.05) translateY(-4px);
}
.product-card-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
}
.product-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-body .flavor-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.product-card-body .tasting-note {
  margin-bottom: 14px;
}
.product-card-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.ingredient-chip {
  padding: 4px 10px;
  background: var(--cream-dark);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: var(--charcoal-75);
}
.product-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.product-price-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--charcoal);
}
.product-price-tag .from {
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal-50);
}

/* ── FEATURED PRODUCT (HERO CARD) ── */
.featured-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--charcoal);
  min-height: 480px;
}
.featured-product-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  overflow: hidden;
}
.featured-product-visual-bg {
  position: absolute; inset: 0;
  opacity: 0.2;
}
.featured-product-visual img {
  position: relative;
  z-index: 2;
  max-height: 320px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}
.featured-product-content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-product-content h3 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 12px;
}
.featured-product-content p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ── BRAND STORY ── */
.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.brand-story-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.brand-story-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.brand-story-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 16px;
  align-items: center;
}
.brand-story-badge .icon { font-size: 32px; }
.brand-story-badge .icon i { line-height: 1; }
.brand-story-badge .label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--charcoal);
}
.brand-story-badge .sublabel {
  font-size: 12px;
  color: var(--charcoal-50);
}
.brand-story-content {}
.brand-story-content h2 { margin-bottom: 20px; }
.brand-story-content p {
  font-size: 16px;
  color: var(--charcoal-75);
  line-height: 1.8;
  margin-bottom: 18px;
}
.brand-story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.brand-stat .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--mango);
  line-height: 1;
  margin-bottom: 4px;
}
.brand-stat .label {
  font-size: 14px;
  color: var(--charcoal-50);
}

/* ── RETAIL PARTNER BANNER ── */
.retail-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2C2825 100%);
  border-radius: var(--radius-xl);
  padding: 64px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
}
.retail-banner::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,204,0.2) 0%, transparent 70%);
}
.retail-banner::after {
  content: '';
  position: absolute;
  left: -40px;
  bottom: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,56,109,0.12) 0%, transparent 70%);
}
.retail-banner-text { position: relative; z-index: 2; }
.retail-banner-text h2 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 36px;
}
.retail-banner-text p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  max-width: 480px;
  line-height: 1.7;
}
.retail-banner-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* ── WHO WE SERVE CARDS ── */
.serve-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.serve-card:hover {
  border-color: var(--mango);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.serve-card .icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.serve-card .icon i { line-height: 1; }
.serve-card h4 {
  margin-bottom: 8px;
  font-size: 17px;
}
.serve-card p {
  font-size: 14px;
  color: var(--charcoal-50);
  line-height: 1.6;
}

/* ── TESTIMONIAL CARDS ── */
.testimonial-card-v2 {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testimonial-card-v2:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testimonial-stars {
  color: var(--mango-light);
  font-size: 16px;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}
.testimonial-card-v2 blockquote {
  font-size: 16px;
  color: var(--charcoal-75);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mango), var(--berry));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author-info .name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--charcoal);
}
.testimonial-author-info .role {
  font-size: 13px;
  color: var(--charcoal-50);
}

/* ── INGREDIENT DISPLAY ── */
.ingredient-display {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ingredient-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.ingredient-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.ingredient-card .emoji {
  font-size: 40px;
  margin-bottom: 12px;
  line-height: 1;
}
.ingredient-card h4 { font-size: 15px; margin-bottom: 6px; }
.ingredient-card p { font-size: 13px; color: var(--charcoal-50); line-height: 1.5; }

/* ── WHOLESALE PAGE ── */
.wholesale-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2C2825 100%);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.wholesale-hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,180,204,0.08) 0%, rgba(232,56,109,0.06) 100%);
}
.wholesale-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.wholesale-hero h1 { color: var(--white); margin-bottom: 20px; }
.wholesale-hero p {
  font-size: 19px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
}
.wholesale-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.wholesale-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.wholesale-stat {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.wholesale-stat:last-child { border-right: none; }
.wholesale-stat .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--mango);
  line-height: 1;
  margin-bottom: 6px;
}
.wholesale-stat .label {
  font-size: 14px;
  color: var(--charcoal-50);
}

.order-steps {
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.order-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.order-step:last-child { border-bottom: none; }
.order-step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--mango-pale);
  border: 2px solid var(--mango);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--mango);
  flex-shrink: 0;
}
.order-step-content h4 { margin-bottom: 6px; }
.order-step-content p { font-size: 15px; color: var(--charcoal-50); line-height: 1.6; }

/* ── WHOLESALE INQUIRY FORM ── */
.wholesale-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.form-group label .req { color: var(--berry); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--charcoal-20);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--cream);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mango);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,180,204,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.form-option-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid var(--charcoal-20);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  transition: var(--transition);
}
.form-option-chip:hover {
  border-color: var(--mango);
  color: var(--mango);
}
.form-option-chip input[type=checkbox] { display: none; }
.form-option-chip.selected {
  background: var(--mango-pale);
  border-color: var(--mango);
  color: var(--mango);
}

/* ── STORE LOCATOR TEASER ── */
.locator-teaser {
  background: var(--green-pale);
  border-radius: var(--radius-xl);
  padding: 56px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.locator-teaser-text { flex: 1; }
.locator-teaser-text h3 { margin-bottom: 10px; }
.locator-teaser-text p { color: var(--charcoal-50); font-size: 15px; }
.locator-search {
  flex: 1;
  display: flex;
  gap: 10px;
}
.locator-search input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(45,184,122,0.3);
  background: var(--white);
  font-size: 15px;
  outline: none;
  transition: var(--transition);
}
.locator-search input:focus { border-color: var(--green); }

/* ── ABOUT TIMELINE ── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--mango), var(--berry), var(--green));
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--mango);
  box-shadow: var(--shadow-sm);
}
.timeline-year {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--mango);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.timeline-item h4 { font-size: 18px; margin-bottom: 6px; }
.timeline-item p { font-size: 14px; color: var(--charcoal-50); line-height: 1.6; }

/* ── PAGE HERO (INNER PAGES) ── */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2C2825 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,204,0.15) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--mango-light); }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  max-width: 560px;
  line-height: 1.7;
}
.breadcrumb-v2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.breadcrumb-v2 a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb-v2 a:hover { color: var(--mango-light); }
.breadcrumb-v2 .sep { opacity: 0.4; }

/* ── NUTRITION TABLE ── */
.nutrition-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.nutrition-header {
  background: var(--charcoal);
  padding: 24px 28px;
  color: var(--white);
}
.nutrition-header h4 { color: var(--white); margin-bottom: 4px; }
.nutrition-header p { font-size: 13px; color: rgba(255,255,255,0.5); }
.nutrition-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.nutrition-row:last-child { border-bottom: none; }
.nutrition-row .label { color: var(--charcoal-75); }
.nutrition-row .value { font-weight: 700; color: var(--charcoal); }
.nutrition-row.bold { font-weight: 700; background: var(--cream); }
.nutrition-row.bold .label { font-size: 15px; color: var(--charcoal); }

/* ── FAQ ── */
.faq-v2 { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--mango); }
.faq-btn {
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal);
  cursor: pointer;
  transition: var(--transition);
}
.faq-btn:hover { color: var(--mango); }
.faq-btn .icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-btn.open .icon { background: var(--mango); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
  font-size: 15px;
  color: var(--charcoal-50);
  line-height: 1.7;
}
.faq-answer.open { max-height: 300px; padding: 0 24px 22px; }

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--mango-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-icon i { line-height: 1; }
.contact-info-text .label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--charcoal-50);
  margin-bottom: 4px;
}
.contact-info-text .value {
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.contact-info-text .sub {
  font-size: 13px;
  color: var(--charcoal-50);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
}
.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-brand {}
.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-brand .logo-wrap img { height: 40px; }
.footer-brand .brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.footer-brand .brand-name span { color: var(--mango); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
  max-width: 280px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: var(--mango);
  color: var(--white);
}
.footer-col h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--mango-light); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-bottom a:hover { color: var(--mango-light); }

/* ── UTILITIES ── */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-mango { color: var(--mango); }
.text-green { color: var(--green); }
.text-berry { color: var(--berry); }
.text-muted { color: var(--charcoal-50); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.divider { height: 1px; background: var(--border); margin: 40px 0; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.animate-float { animation: float 4s ease-in-out infinite; }
.fade-up { animation: fadeUp 0.6s ease forwards; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--charcoal-20); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--charcoal-50); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .brand-story { grid-template-columns: 1fr; }
  .brand-story-visual { display: none; }
  .product-lineup { grid-template-columns: repeat(2, 1fr); }
  .ingredient-display { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .wholesale-stats { grid-template-columns: repeat(2, 1fr); }
  .wholesale-stats .wholesale-stat:nth-child(2) { border-right: none; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .nav-links { display: none; }
  .hero { min-height: auto; padding: 80px 0; }
  .product-lineup { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .retail-banner { flex-direction: column; padding: 40px; }
  .locator-teaser { flex-direction: column; }
  .locator-search { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .value-props-inner { flex-direction: column; gap: 20px; }
  .value-divider { display: none; }
  .featured-product { grid-template-columns: 1fr; }
  .featured-product-visual { min-height: 260px; }
  .wholesale-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-stat .num { font-size: 22px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn-lg { padding: 14px 24px; font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
