/* ============================================================
   MelloTabs — main.css
   MOBILE-FIRST. Shared brand tokens, nav, footer, buttons,
   form primitives. Imported by public pages AND admin/portal.html
   ============================================================ */

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

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

/* ── BRAND TOKENS ── */
:root {
  --aqua:        #00C4CC;
  --aqua-light:  #7EEAEE;
  --aqua-glow:   rgba(0,196,204,0.15);
  --navy:        #0A2540;
  --navy-mid:    #163A5F;
  --navy-soft:   rgba(10,37,64,0.08);
  --bg:          #F4F6F8;
  --bg-white:    #FFFFFF;
  --glass:       rgba(255,255,255,0.72);
  --glass-border:rgba(255,255,255,0.9);
  --text:        #0A2540;
  --text-mid:    #3D5A73;
  --text-light:  #7A9BB5;
  --radius:      20px;
  --radius-sm:   12px;
  --shadow:      0 8px 40px rgba(10,37,64,0.10);
  --shadow-sm:   0 2px 16px rgba(10,37,64,0.07);

  /* Holographic / sparkle palette */
  --holo-1: #00C4CC;
  --holo-2: #818cf8;
  --holo-3: #c084fc;
  --holo-4: #f472b6;
  --holo-5: #7EEAEE;
  --silver:  #C8D6E5;

  /* Semantic status colours (used by admin) */
  --status-pending-bg:    rgba(251,191,36,0.15);
  --status-pending-text:  #92400E;
  --status-success-bg:    rgba(16,185,129,0.12);
  --status-success-text:  #065F46;
  --status-danger-bg:     rgba(239,68,68,0.10);
  --status-danger-text:   #991B1B;
  --status-info-bg:       rgba(0,196,204,0.12);
  --status-info-text:     #0E7490;
  --status-purple-bg:     rgba(139,92,246,0.12);
  --status-purple-text:   #5B21B6;
}

/* ── BASE ── */
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Nunito', 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
}
h1 {
  font-size: clamp(2.6rem, 10vw, 5rem);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
h1 em { font-style: normal; color: var(--aqua); }
h2 {
  font-size: clamp(1.9rem, 6vw, 3.2rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}
h2 em { font-style: normal; color: var(--aqua); }

/* ── HOLOGRAPHIC ANIMATIONS ── */
@keyframes holo-shift {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}
@keyframes sparkle-pop {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  40%       { opacity: 1; transform: scale(1.3) rotate(120deg); }
  70%       { opacity: 0.8; transform: scale(1) rotate(200deg); }
}
@keyframes sparkle-drift {
  0%   { transform: translateY(0px) rotate(0deg);   opacity: 0.8; }
  50%  { transform: translateY(-12px) rotate(90deg); opacity: 1; }
  100% { transform: translateY(0px) rotate(180deg); opacity: 0.8; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0,196,204,0.4), 0 0 40px rgba(192,132,252,0.2); }
  50%       { box-shadow: 0 0 30px rgba(0,196,204,0.7), 0 0 60px rgba(192,132,252,0.4); }
}
@keyframes shimmer-bar {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ── HOLOGRAPHIC UTILITY CLASSES ── */
.holo-text {
  background: linear-gradient(90deg, var(--holo-1), var(--holo-2), var(--holo-3), var(--holo-4), var(--holo-1));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: holo-shift 3s ease infinite;
}
.holo-border {
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
}
.holo-border::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--holo-1), var(--holo-3), var(--holo-4), var(--holo-1));
  background-size: 300% auto;
  animation: holo-shift 3s ease infinite;
  z-index: -1;
  border-radius: inherit;
}

/* Sparkle decoration elements */
.sparkle-group {
  position: relative;
}
.sparkle-group .s1,
.sparkle-group .s2,
.sparkle-group .s3 {
  position: absolute;
  font-size: 1rem;
  animation: sparkle-drift 2.4s ease-in-out infinite;
  background: linear-gradient(135deg, var(--holo-1), var(--holo-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
}
.sparkle-group .s2 { animation-delay: -0.8s; }
.sparkle-group .s3 { animation-delay: -1.6s; }

/* ── SHARED BUTTON PRIMITIVES ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--aqua), var(--holo-2), var(--aqua));
  background-size: 200% auto;
  animation: holo-shift 4s ease infinite;
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  padding: 15px 36px;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(0,196,204,0.4);
  animation: holo-shift 4s ease infinite, glow-pulse 2.5s ease-in-out infinite;
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 40px rgba(0,196,204,0.5), 0 0 30px rgba(192,132,252,0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--navy);
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 2px solid rgba(10,37,64,0.2);
  padding: 13px 36px;
  border-radius: 100px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
}
.btn-secondary:hover { border-color: var(--aqua); color: var(--aqua); background: rgba(0,196,204,0.05); }

.btn-outline-aqua {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--aqua);
  color: var(--aqua);
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  min-height: 48px;
}
.btn-outline-aqua:hover { background: var(--aqua); color: var(--navy); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 32px;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
  min-height: 48px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.6); }

/* ── SHARED FORM PRIMITIVES ── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
  font-family: 'Nunito', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(244,246,248,0.8);
  border: 1.5px solid rgba(10,37,64,0.1);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  min-height: 48px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(0,196,204,0.12);
  background: #fff;
}
.form-group select  { appearance: none; cursor: pointer; }
.form-group textarea{ resize: vertical; min-height: 90px; }

/* ── PAGES ── */
.page { display: none; padding-top: 64px; }
.page.active { display: block; }

/* ═══════════════════════════════════════════
   PUBLIC NAV — mobile first
   ═══════════════════════════════════════════ */
nav.public-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: rgba(244,246,248,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 2px 20px rgba(10,37,64,0.08);
  padding: 0 18px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1;
}
.nav-logo span { color: var(--aqua); }
.nav-tagline {
  display: none; /* hidden on mobile */
  font-size: 0.68rem;
  color: rgba(10,37,64,0.45);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-style: italic;
  border-left: 1px solid rgba(10,37,64,0.15);
  padding-left: 14px;
  margin-left: 2px;
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 210;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-links {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(244,246,248,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 2px solid rgba(0,196,204,0.2);
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 18px 28px;
  box-shadow: 0 8px 32px rgba(10,37,64,0.12);
  z-index: 199;
}
.nav-links.open { display: flex; }
.nav-links a {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
  padding: 10px 20px;
  border-radius: 12px;
  width: 100%;
  text-align: center;
}
.nav-links a:hover, .nav-links a.active { color: var(--aqua); background: rgba(0,196,204,0.06); }
.nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
  padding: 12px 28px !important;
  border-radius: 100px !important;
  margin-top: 8px;
  width: auto !important;
}
.nav-cta:hover { background: var(--aqua) !important; color: var(--navy) !important; }

/* ── TABLET+ nav ── */
@media (min-width: 640px) {
  nav.public-nav { padding: 0 32px; }
  .nav-tagline { display: block; }
}
@media (min-width: 1024px) {
  nav.public-nav { padding: 0 48px; height: 72px; }
  .page { padding-top: 72px; }
  .nav-hamburger { display: none; }
  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    gap: 28px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    width: auto;
    align-items: center;
  }
  .nav-links a {
    font-size: 0.85rem;
    padding: 0;
    background: transparent !important;
    width: auto;
  }
  .nav-links a:hover, .nav-links a.active { background: transparent !important; }
  .nav-cta {
    padding: 10px 22px !important;
    margin-top: 0;
  }
}

/* ═══════════════════════════════════════════
   HOME — HERO   (mobile-first)
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: clamp(340px, 62svh, 520px); /* compact on mobile */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 90px 0 40px; /* 64px nav + 26px breathing room */
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('../MelloTabs-Wholesale-CBD-Tablets.png');
  background-size: cover;
  background-position: 72% top; /* show right side (pill bottles) on mobile */
}
@media (min-width: 768px) {
  .hero-bg { background-position: center top; }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,37,64,0.72) 0%,
    rgba(10,37,64,0.40) 35%,
    rgba(10,37,64,0.20) 65%,
    rgba(10,37,64,0.50) 100%
  );
}
/* Holographic sparkle decorations on hero */
.hero-sparkles {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.hero-sparkles .hs {
  position: absolute;
  font-size: 1.4rem;
  animation: sparkle-drift 3s ease-in-out infinite;
  background: linear-gradient(135deg, #fff, var(--holo-3), var(--holo-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sparkles .hs:nth-child(1) { top: 15%; left: 8%;  animation-delay: 0s;    font-size: 1.6rem; }
.hero-sparkles .hs:nth-child(2) { top: 22%; right: 10%; animation-delay: -1s;   font-size: 1rem; }
.hero-sparkles .hs:nth-child(3) { top: 55%; left: 5%;  animation-delay: -2s;   font-size: 1.2rem; }
.hero-sparkles .hs:nth-child(4) { top: 40%; right: 7%; animation-delay: -0.5s; font-size: 0.9rem; }
.hero-sparkles .hs:nth-child(5) { top: 70%; right: 12%;animation-delay: -1.5s; font-size: 1.3rem; }

.hero-content {
  position: relative; z-index: 3;
  width: 100%;
  padding: 0 20px;
  max-width: 700px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.hero-badge-dot {
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--aqua), var(--holo-3));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  color: #fff;
  animation: sparkle-pop 2s ease-in-out infinite;
}
.hero h1 {
  color: #fff;
  text-shadow:
    0 2px 24px rgba(0,0,0,0.6),
    0 0 80px rgba(10,37,64,0.9),
    0 0 140px rgba(10,37,64,0.7);
  margin-bottom: 14px;
  font-size: clamp(2.8rem, 11vw, 5.5rem);
}
.hero-tagline {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1rem, 3.5vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

@media (min-width: 480px) {
  .hero-actions { flex-direction: row; justify-content: center; }
}
@media (min-width: 768px) {
  .hero { min-height: min(80svh, 700px); padding: 110px 0 60px; }
}
@media (min-width: 1024px) {
  .hero { min-height: 100vh; text-align: left; align-items: flex-start; justify-content: flex-start; padding: 140px 0 80px; }
  .hero-content { max-width: 1100px; padding: 0 48px; margin: 0 auto; }
  .hero-actions { justify-content: flex-start; }
  .hero h1 { font-size: clamp(3.5rem, 5vw, 5.5rem); }
}

/* ═══════════════════════════════════════════
   HOME — FORMAT SECTION (mobile-first)
   ═══════════════════════════════════════════ */
.format-section {
  background: linear-gradient(170deg, #FAFBFC 0%, #EEF2F7 100%);
  padding: 64px 20px;
  position: relative;
  overflow: hidden;
}
.format-section::before {
  content: ''; position: absolute; top: -80px; right: -60px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(192,132,252,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.format-section::after {
  content: ''; position: absolute; bottom: -60px; left: -40px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,196,204,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative; z-index: 1;
}
.section-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 10px;
}
.section-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-mid);
  font-weight: 400;
  max-width: 560px;
  margin: 0 auto;
}
.format-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative; z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}
.format-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.format-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.format-card.featured {
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, var(--holo-1), var(--holo-3), var(--holo-4), var(--holo-1)) border-box;
  background-size: auto, 300% auto;
  animation: holo-shift 4s ease infinite;
  animation-name: none; /* border only animates */
}
.format-card.featured::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,196,204,0.06) 0%, rgba(192,132,252,0.06) 100%);
  pointer-events: none;
}
.format-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--aqua), var(--holo-2));
  color: #fff;
}
.format-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}
.format-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.format-card.featured .format-title { color: var(--aqua); }
.format-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.format-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.tag {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 500;
}
.tag-muted  { background: rgba(10,37,64,0.07); color: var(--text-mid); }
.tag-green  { background: rgba(0,196,204,0.12); color: var(--aqua); border: 1px solid rgba(0,196,204,0.25); }
.tag-holo   {
  background: linear-gradient(90deg, var(--holo-1), var(--holo-3));
  color: #fff;
}

@media (min-width: 640px) {
  .format-section { padding: 80px 32px; }
  .format-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .format-card.featured {
    grid-column: 1 / -1;
  }
}
@media (min-width: 1024px) {
  .format-section { padding: 100px 48px; }
  .format-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .format-card.featured {
    grid-column: auto;
  }
}

/* ═══════════════════════════════════════════
   HOME — FEATURES STRIP  (mobile-first)
   ═══════════════════════════════════════════ */
.features-strip {
  background: var(--navy);
  padding: 64px 20px;
  position: relative;
  overflow: hidden;
}
.features-strip::before {
  content: ''; position: absolute; top: -40%; left: -5%;
  width: 50%; height: 180%;
  background: radial-gradient(ellipse, rgba(0,196,204,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.features-strip::after {
  content: ''; position: absolute; top: -40%; right: -5%;
  width: 40%; height: 180%;
  background: radial-gradient(ellipse, rgba(192,132,252,0.08) 0%, transparent 60%);
  pointer-events: none;
}
/* Sparkle decorations inside features strip */
.features-strip .fs-sparkle {
  position: absolute;
  font-size: 1.2rem;
  animation: sparkle-drift 2.8s ease-in-out infinite;
  background: linear-gradient(135deg, var(--holo-1), var(--holo-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
}
.features-strip-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative; z-index: 1;
}
.features-strip-header .section-label { color: var(--aqua); }
.features-strip-header h2 { color: #fff; }
.features-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative; z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}
.feature-item { text-align: center; }
.feature-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(0,196,204,0.12); border: 1px solid rgba(0,196,204,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  margin: 0 auto 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-item:hover .feature-icon-wrap {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0,196,204,0.3);
}
.feature-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.feature-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

@media (min-width: 640px) {
  .features-strip { padding: 80px 32px; }
}
@media (min-width: 1024px) {
  .features-strip { padding: 100px 48px; }
  .features-strip-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════════════════════════════════
   HOME — WHOLESALE CTA SECTION (mobile-first)
   ═══════════════════════════════════════════ */
.wholesale-cta-section {
  padding: 72px 20px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a1060 50%, var(--navy-mid) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.wholesale-cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(192,132,252,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.wcs-sparkles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.wcs-sparkles .ws {
  position: absolute;
  font-size: 1.3rem;
  animation: sparkle-drift 2.5s ease-in-out infinite;
  background: linear-gradient(135deg, var(--silver), var(--holo-1), var(--holo-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wcs-sparkles .ws:nth-child(1) { top: 10%; left: 8%;  animation-delay: 0s;    }
.wcs-sparkles .ws:nth-child(2) { top: 15%; right: 12%; animation-delay: -1s;  }
.wcs-sparkles .ws:nth-child(3) { bottom: 20%; left: 15%; animation-delay: -0.5s; }
.wcs-sparkles .ws:nth-child(4) { bottom: 15%; right: 8%; animation-delay: -1.8s; }
.wcs-sparkles .ws:nth-child(5) { top: 45%; left: 3%;  animation-delay: -2s;   font-size: 0.9rem; }
.wcs-sparkles .ws:nth-child(6) { top: 40%; right: 4%; animation-delay: -0.3s; font-size: 0.9rem; }
.wholesale-cta-section .inner {
  position: relative; z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.wholesale-cta-section .section-label { color: var(--aqua); }
.wholesale-cta-section h2 { color: #fff; margin-bottom: 16px; }
.wholesale-cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.wcs-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
  align-items: center;
}
.wcs-perk {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
@media (min-width: 640px) {
  .wcs-perks { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 16px 28px; }
}
.wcs-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
@media (min-width: 480px) {
  .wcs-actions { flex-direction: row; justify-content: center; }
}
@media (min-width: 640px) {
  .wholesale-cta-section { padding: 100px 32px; }
}
@media (min-width: 1024px) {
  .wholesale-cta-section { padding: 120px 48px; }
}

/* ═══════════════════════════════════════════
   HOME — PRODUCTS SHOWCASE SECTION (mobile-first)
   ═══════════════════════════════════════════ */
.products-showcase {
  padding: 64px 20px;
  background: linear-gradient(170deg, #F4F6F8 0%, #EEF2F7 100%);
  position: relative;
  overflow: hidden;
}
.products-showcase::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,196,204,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.products-showcase-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.products-showcase-img {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(10,37,64,0.16);
  position: relative;
  flex-shrink: 0;
  aspect-ratio: 4/3;
}
.products-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  display: block;
}
/* Holographic shimmer stripe on the image */
.products-showcase-img::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg,
    transparent 40%,
    rgba(0,196,204,0.08) 60%,
    transparent 80%
  );
  pointer-events: none;
}
.products-showcase-copy {
  text-align: center;
}
.products-showcase-copy .section-label { margin-bottom: 10px; }
.products-showcase-copy h2 { margin-bottom: 14px; }
.products-showcase-copy p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto 32px;
}
.products-showcase-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
@media (min-width: 480px) {
  .products-showcase-actions { flex-direction: row; justify-content: center; }
}
@media (min-width: 640px) {
  .products-showcase { padding: 80px 32px; }
}
@media (min-width: 900px) {
  .products-showcase-inner {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
  .products-showcase-img { max-width: 480px; }
  .products-showcase-copy { text-align: left; }
  .products-showcase-copy p { margin: 0 0 32px; }
  .products-showcase-actions { justify-content: flex-start; }
}
@media (min-width: 1024px) {
  .products-showcase { padding: 100px 48px; }
  .products-showcase-img { max-width: 540px; }
}

/* ═══════════════════════════════════════════
   HOME — FIND US IN STORES SECTION (mobile-first)
   ═══════════════════════════════════════════ */
.find-us-section {
  padding: 48px 20px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.find-us-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 120% at 50% 50%, rgba(0,196,204,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.find-us-section::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--holo-1), var(--holo-3), var(--holo-1), transparent);
  background-size: 300% auto;
  animation: holo-shift 4s ease infinite;
}
.find-us-inner {
  position: relative; z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.find-us-icon {
  font-size: 2.4rem;
  animation: sparkle-drift 2.5s ease-in-out infinite;
  background: linear-gradient(135deg, var(--holo-1), var(--holo-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.find-us-section h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.find-us-section p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 400px;
}
@media (min-width: 640px) {
  .find-us-section { padding: 60px 32px; }
}

/* ═══════════════════════════════════════════
   STORE LOCATOR PAGE  (mobile-first)
   ═══════════════════════════════════════════ */
.stores-page { background: linear-gradient(170deg, #F4F6F8 0%, #EEF2F7 100%); }
.stores-hero {
  padding: 56px 20px 40px;
  text-align: center;
  background: linear-gradient(170deg, var(--navy) 0%, #163A5F 100%);
  position: relative;
  overflow: hidden;
}
.stores-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 40%, rgba(0,196,204,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.stores-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--holo-1), var(--holo-3), var(--holo-1), transparent);
  background-size: 300% auto;
  animation: holo-shift 4s ease infinite;
}
.stores-hero .section-label { color: var(--aqua); }
.stores-hero h1, .stores-hero h2 { color: #fff; position: relative; z-index: 1; }
.stores-hero .section-body { color: rgba(255,255,255,0.65); position: relative; z-index: 1; }

.stores-search-wrap {
  padding: 28px 20px 0;
  max-width: 640px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.stores-search {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.stores-search input {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 13px 20px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: #fff;
  outline: none;
  min-height: 50px;
  transition: border-color 0.2s;
}
.stores-search input::placeholder { color: rgba(255,255,255,0.4); }
.stores-search input:focus { border-color: var(--aqua); background: rgba(255,255,255,0.18); }
.stores-search .btn-primary { padding: 13px 28px; min-height: 50px; }

.stores-body {
  padding: 40px 20px 72px;
  max-width: 1100px;
  margin: 0 auto;
}
.stores-map-placeholder {
  width: 100%;
  height: 220px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(10,37,64,0.06) 0%, rgba(0,196,204,0.06) 100%);
  border: 2px dashed rgba(0,196,204,0.25);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stores-map-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,196,204,0.06) 0%, transparent 70%);
}
.stores-map-icon { font-size: 2.4rem; position: relative; z-index: 1; }
.stores-map-text { font-family: 'Fredoka', sans-serif; font-size: 1rem; color: var(--text-mid); position: relative; z-index: 1; }
.stores-map-sub  { font-size: 0.78rem; color: var(--text-light); position: relative; z-index: 1; }

.stores-section-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 16px;
}
.store-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}
.store-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.store-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.store-card-top { display: flex; align-items: flex-start; gap: 14px; }
.store-card-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,196,204,0.15), rgba(192,132,252,0.10));
  border: 1px solid rgba(0,196,204,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.store-card-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.store-card-type {
  display: inline-block;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 100px;
  background: rgba(0,196,204,0.12);
  color: var(--aqua);
}
.store-card-addr { font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; }
.store-card-hours { font-size: 0.78rem; color: var(--text-light); }
.store-card-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.store-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--aqua);
  text-decoration: none;
  border: 1.5px solid rgba(0,196,204,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
  min-height: 34px;
}
.store-card-link:hover { background: var(--aqua); color: var(--navy); }

.stores-cta-card {
  background: linear-gradient(135deg, var(--navy) 0%, #1a1060 100%);
  border-radius: 24px;
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stores-cta-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, var(--holo-1), var(--holo-3), var(--holo-4), var(--holo-1));
  background-size: 300% auto;
  animation: holo-shift 3s ease infinite;
}
.stores-cta-card h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.stores-cta-card p { color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.6; margin-bottom: 24px; }

@media (min-width: 640px) {
  .stores-hero { padding: 72px 32px 48px; }
  .stores-search-wrap { padding: 32px 32px 0; }
  .stores-body { padding: 48px 32px 80px; }
  .stores-map-placeholder { height: 300px; }
  .store-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (min-width: 1024px) {
  .stores-hero { padding: 80px 48px 56px; }
  .stores-body { padding: 60px 48px 100px; }
  .stores-map-placeholder { height: 360px; }
  .store-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════
   PRODUCTS PAGE  (mobile-first)
   ═══════════════════════════════════════════ */
.products-hero {
  padding: 56px 20px 36px;
  text-align: center;
  background: linear-gradient(170deg, #F4F6F8 0%, #EEF4F7 100%);
  position: relative; overflow: hidden;
}
.products-hero::before {
  content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,196,204,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.products-hero .section-label { text-align: center; }
.products-hero h2 { max-width: 600px; margin: 0 auto 16px; position: relative; }
.products-hero .section-body { margin: 0 auto; text-align: center; }

.product-grid {
  padding: 40px 20px 72px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.product-card {
  background: var(--glass);
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(10,37,64,0.14); }
.product-card-visual {
  height: 220px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-card-visual.mint  { background: linear-gradient(145deg, rgba(0,196,204,0.15) 0%, rgba(126,234,238,0.08) 100%); }
.product-card-visual.berry { background: linear-gradient(145deg, rgba(139,92,246,0.12) 0%, rgba(192,132,252,0.06) 100%); }
.product-visual-orb {
  width: 150px; height: 150px; border-radius: 50%;
  position: absolute; animation: float 4s ease-in-out infinite;
}
.product-visual-orb.mint  { background: radial-gradient(circle, rgba(0,196,204,0.35), rgba(0,196,204,0.05)); box-shadow: 0 0 60px rgba(0,196,204,0.3); }
.product-visual-orb.berry { background: radial-gradient(circle, rgba(139,92,246,0.35), rgba(139,92,246,0.05)); box-shadow: 0 0 60px rgba(139,92,246,0.3); animation-delay: -2s; }
.product-tabs-display { position: absolute; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.tab-pill {
  width: 110px; height: 40px; border-radius: 100px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.85rem; font-weight: 600;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}
.tab-pill.mint-tab  { background: linear-gradient(135deg, var(--aqua), var(--aqua-light)); color: var(--navy); }
.tab-pill.berry-tab { background: linear-gradient(135deg, #8B5CF6, #C084FC); color: #fff; }
/* Holographic sparkle on product cards */
.product-card-sparkle {
  position: absolute; top: 12px; right: 16px;
  animation: sparkle-drift 2.5s ease-in-out infinite;
  background: linear-gradient(135deg, var(--holo-1), var(--holo-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.4rem;
}
.product-card-body { padding: 28px 24px 32px; }
.product-flavor-tag {
  display: inline-block;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px; margin-bottom: 14px;
}
.product-flavor-tag.mint  { background: rgba(0,196,204,0.12); color: var(--aqua); }
.product-flavor-tag.berry { background: rgba(139,92,246,0.12); color: #8B5CF6; }
.product-card-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.product-card-desc { font-size: 0.95rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 22px; }
.product-card-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.spec-item { background: rgba(10,37,64,0.04); border-radius: var(--radius-sm); padding: 12px 14px; }
.spec-val   { font-family: 'Fredoka', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); }
.spec-label { font-size: 0.72rem; color: var(--text-light); font-weight: 400; letter-spacing: 0.05em; margin-top: 2px; }
.product-disclaimer { font-size: 0.72rem; color: var(--text-light); line-height: 1.6; margin-bottom: 22px; font-style: italic; }

@media (min-width: 640px) {
  .products-hero { padding: 72px 32px 48px; }
  .product-grid { padding: 56px 32px 80px; }
  .product-card-visual { height: 280px; }
}
@media (min-width: 900px) {
  .product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-card-visual { height: 300px; }
}
@media (min-width: 1024px) {
  .products-hero { padding: 80px 48px 56px; }
  .product-grid { padding: 60px 48px 100px; }
}

/* ═══════════════════════════════════════════
   WHOLESALE PAGE  (mobile-first)
   ═══════════════════════════════════════════ */
.wholesale-page {
  background: linear-gradient(160deg, #F4F6F8 0%, #EEF2F7 100%);
}
.wholesale-hero {
  padding: 48px 20px 56px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
}
.wholesale-perks { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.perk-item { display: flex; gap: 14px; align-items: flex-start; }
.perk-dot {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--aqua), var(--holo-2));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.85rem; font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,196,204,0.3);
  animation: glow-pulse 3s ease-in-out infinite;
}
.perk-text h4 { font-family: 'Fredoka', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.perk-text p  { font-size: 0.88rem; color: var(--text-mid); line-height: 1.55; }
.wholesale-form-card {
  background: var(--glass);
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
}
.form-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.7rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px;
}
.form-subtitle { font-size: 0.9rem; color: var(--text-light); margin-bottom: 24px; }
.form-row { display: flex; flex-direction: column; gap: 0; }
.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--aqua), var(--holo-2), var(--aqua));
  background-size: 200% auto;
  animation: holo-shift 4s ease infinite;
  color: #fff;
  font-family: 'Fredoka', sans-serif; font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.04em;
  border: none; padding: 16px; border-radius: 100px; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(0,196,204,0.4);
  margin-top: 8px;
  min-height: 52px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,196,204,0.5); }
.form-legal { font-size: 0.72rem; color: var(--text-light); text-align: center; margin-top: 14px; line-height: 1.5; }
.success-msg { display: none; text-align: center; padding: 32px 0; }
.success-msg .check { font-size: 3rem; margin-bottom: 14px; }
.success-msg h4 { font-family: 'Fredoka', sans-serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 8px; }
.success-msg p  { font-size: 0.9rem; color: var(--text-mid); }

@media (min-width: 640px) {
  .wholesale-hero { padding: 64px 32px 72px; }
  .wholesale-form-card { padding: 40px 36px; }
  .form-row { flex-direction: row; gap: 16px; }
  .form-row .form-group { flex: 1; }
}
@media (min-width: 1024px) {
  .wholesale-hero { padding: 80px 48px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .wholesale-form-card { padding: 44px; }
}

/* ═══════════════════════════════════════════
   COA PAGE  (mobile-first)
   ═══════════════════════════════════════════ */
.coa-hero {
  padding: 56px 20px 36px;
  background: linear-gradient(170deg, #F4F6F8 0%, #EEF4F7 100%);
  text-align: center;
  position: relative; overflow: hidden;
}
.coa-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 30%, rgba(0,196,204,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.coa-grid {
  padding: 36px 20px 72px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.coa-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.coa-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.coa-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.coa-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,196,204,0.15), rgba(192,132,252,0.1));
  border: 1px solid rgba(0,196,204,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.coa-card-name { font-family: 'Fredoka', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.coa-card-lot  { font-size: 0.72rem; color: var(--text-light); margin-top: 2px; }
.coa-detail-list { list-style: none; margin-bottom: 24px; }
.coa-detail-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid rgba(10,37,64,0.06);
  font-size: 0.9rem;
}
.coa-detail-list li:last-child { border-bottom: none; }
.coa-detail-list .key { color: var(--text-mid); }
.coa-detail-list .val { font-weight: 600; color: var(--navy); font-family: 'Fredoka', sans-serif; }
.coa-pass { color: #10B981 !important; }
.coa-download {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: transparent;
  border: 2px solid rgba(0,196,204,0.4); color: var(--aqua);
  font-family: 'Fredoka', sans-serif; font-size: 0.9rem; font-weight: 600;
  padding: 13px; border-radius: 100px; cursor: pointer;
  transition: all 0.2s; min-height: 48px;
}
.coa-download:hover { background: var(--aqua); color: var(--navy); }
.coa-empty {
  border: 2px dashed rgba(0,196,204,0.25);
  background: rgba(0,196,204,0.03);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 200px; border-radius: var(--radius);
  padding: 36px; text-align: center;
}
.coa-empty-icon { font-size: 2.2rem; margin-bottom: 12px; opacity: 0.5; }
.coa-empty-text { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

@media (min-width: 640px) {
  .coa-hero { padding: 72px 32px 48px; }
  .coa-grid { padding: 48px 32px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (min-width: 1024px) {
  .coa-hero { padding: 80px 48px 56px; }
  .coa-grid { padding: 60px 48px 100px; grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════
   FOOTER  (mobile-first)
   ═══════════════════════════════════════════ */
footer {
  background: var(--navy);
  padding: 56px 20px 28px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--holo-1), var(--holo-3), var(--holo-1), transparent);
  background-size: 300% auto;
  animation: holo-shift 4s ease infinite;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-brand .nav-logo { color: #fff; display: block; margin-bottom: 10px; cursor: default; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 220px; }
.footer-col-title { color: #fff; font-family: 'Fredoka', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 14px; }
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { color: rgba(255,255,255,0.55); font-size: 0.88rem; text-decoration: none; transition: color 0.2s; }
.footer-col-links a:hover { color: var(--aqua); }
.footer-contact-text { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.78rem;
}

@media (min-width: 640px) {
  footer { padding: 64px 32px 32px; }
  .footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; }
}
@media (min-width: 1024px) {
  footer { padding: 72px 48px 36px; }
}

/* ═══════════════════════════════════════════
   SHARED CARD
   ═══════════════════════════════════════════ */
.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* ── STATUS BADGES (used by admin) ── */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-pending    { background: var(--status-pending-bg);  color: var(--status-pending-text); }
.badge-processing { background: var(--status-info-bg);     color: var(--status-info-text); }
.badge-fulfilled  { background: var(--status-success-bg);  color: var(--status-success-text); }
.badge-shipped    { background: var(--status-purple-bg);   color: var(--status-purple-text); }
.badge-cancelled  { background: var(--status-danger-bg);   color: var(--status-danger-text); }
.badge-approved   { background: var(--status-success-bg);  color: var(--status-success-text); }
.badge-rejected   { background: var(--status-danger-bg);   color: var(--status-danger-text); }
.badge-review     { background: var(--status-pending-bg);  color: var(--status-pending-text); }
.badge-wholesale  { background: var(--status-purple-bg);   color: var(--status-purple-text); }
.badge-retail     { background: var(--navy-soft);          color: var(--navy-mid); }
.badge-active     { background: var(--status-success-bg);  color: var(--status-success-text); }
.badge-archived   { background: var(--navy-soft);          color: var(--text-light); }
.badge-low        { background: var(--status-danger-bg);   color: var(--status-danger-text); }
.badge-superadmin { background: var(--status-info-bg);     color: var(--status-info-text); }
.badge-staff      { background: var(--navy-soft);          color: var(--navy-mid); }

/* ── ALERT BANNERS ── */
.alert {
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 0.88rem;
  margin-bottom: 16px;
}
.alert-success { background: var(--status-success-bg); border: 1px solid #10B981; color: #065F46; }
.alert-error   { background: var(--status-danger-bg);  border: 1px solid #EF4444; color: #991B1B; }
.alert-info    { background: var(--aqua-glow);         border: 1px solid var(--aqua); color: var(--navy-mid); }
.alert-warning { background: var(--status-pending-bg); border: 1px solid #F59E0B; color: #92400E; }

/* ── UTILITY ── */
.pill {
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.pill-muted { background: rgba(10,37,64,0.07); color: var(--text-mid); }
.pill-green { background: rgba(0,196,204,0.12); color: var(--aqua); border: 1px solid rgba(0,196,204,0.25); }

.text-aqua  { color: var(--aqua); }
.text-muted { color: var(--text-light); }
.text-mid   { color: var(--text-mid); }
.mono       { font-family: 'Courier New', monospace; }

/* ── WHY-TABS SECTION (kept for compatibility) ── */
.why-tabs-section { background: linear-gradient(170deg, #FAFBFC 0%, #EEF2F7 100%); position: relative; overflow: hidden; padding: 64px 20px; }
.why-grid { display: flex; flex-direction: column; gap: 32px; margin-top: 32px; }
.why-left .section-body { max-width: 100%; }
.compare-cards { display: flex; flex-direction: column; gap: 16px; }
.compare-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.compare-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.compare-card.featured {
  border-color: rgba(0,196,204,0.35);
  background: linear-gradient(135deg, rgba(0,196,204,0.08) 0%, rgba(255,255,255,0.85) 100%);
}
.compare-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.compare-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.compare-icon.oils    { background: rgba(251,191,36,0.15); }
.compare-icon.gummies { background: rgba(239,68,68,0.10); }
.compare-icon.tabs    { background: linear-gradient(135deg, rgba(0,196,204,0.2), rgba(192,132,252,0.15)); }
.compare-card-title { font-family: 'Fredoka', sans-serif; font-size: 1.2rem; font-weight: 600; color: var(--navy); }
.compare-card.featured .compare-card-title { color: var(--aqua); }
.compare-card-desc { font-size: 0.9rem; line-height: 1.65; color: var(--text-mid); }
.compare-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.featured-badge {
  position: absolute; top: 14px; right: 14px;
  background: linear-gradient(135deg, var(--aqua), var(--holo-2)); color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
}
@media (min-width: 1024px) {
  .why-tabs-section { padding: 100px 48px; }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 60px; flex-direction: unset; }
  .why-left .section-body { max-width: 420px; }
}

/* ── SECTION legacy compat ── */
section { padding: 64px 20px; }
@media (min-width: 640px) { section { padding: 80px 32px; } }
@media (min-width: 1024px) { section { padding: 100px 48px; } }

/* ═══════════════════════════════════════════
   AGE GATE MODAL  (mobile-first)
   ═══════════════════════════════════════════ */
#age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(160deg, #0A2540 0%, #0f1c35 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: opacity 0.35s ease;
}
#age-gate-overlay::before {
  content: '';
  position: absolute; top: -20%; left: -10%;
  width: 70%; height: 100%;
  background: radial-gradient(ellipse, rgba(0,196,204,0.10) 0%, transparent 60%);
  pointer-events: none;
}
#age-gate-overlay::after {
  content: '';
  position: absolute; bottom: -20%; right: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse, rgba(192,132,252,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.age-gate-card {
  background: rgba(255,255,255,0.97);
  border-radius: 28px;
  padding: 40px 28px 36px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}
/* Holographic top stripe */
.age-gate-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(90deg, var(--aqua), var(--holo-3), var(--holo-4), var(--aqua));
  background-size: 300% auto;
  animation: holo-shift 3s ease infinite;
}
.age-gate-sparkles {
  position: absolute; inset: 0;
  border-radius: 28px;
  pointer-events: none; overflow: hidden;
}
.age-gate-sparkles .ags {
  position: absolute;
  font-size: 1rem;
  animation: sparkle-drift 2.8s ease-in-out infinite;
  background: linear-gradient(135deg, var(--holo-1), var(--holo-3));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
}
.age-gate-sparkles .ags:nth-child(1) { top: 14%; left: 10%;  animation-delay: 0s; }
.age-gate-sparkles .ags:nth-child(2) { top: 10%; right: 12%; animation-delay: -1s; }
.age-gate-sparkles .ags:nth-child(3) { bottom: 14%; left: 8%; animation-delay: -0.5s; }
.age-gate-sparkles .ags:nth-child(4) { bottom: 10%; right: 10%; animation-delay: -1.8s; }

.age-gate-logo {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  line-height: 1;
}
.age-gate-logo span { color: var(--aqua); }
.age-gate-icon {
  font-size: 2.4rem;
  margin: 18px 0 8px;
}
.age-gate-heading {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.age-gate-body {
  font-family: 'DM Sans', 'Nunito', sans-serif;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.age-gate-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
#age-gate-yes {
  width: 100%;
  background: linear-gradient(135deg, var(--aqua), var(--holo-2), var(--aqua));
  background-size: 200% auto;
  animation: holo-shift 4s ease infinite;
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  padding: 15px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(0,196,204,0.4);
  min-height: 52px;
}
#age-gate-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,196,204,0.55), 0 0 24px rgba(192,132,252,0.2);
}
#age-gate-no {
  width: 100%;
  background: transparent;
  border: 1.5px solid rgba(10,37,64,0.15);
  color: var(--text-mid);
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 13px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  min-height: 48px;
}
#age-gate-no:hover { border-color: var(--text-mid); color: var(--navy); }
.age-gate-legal {
  font-family: 'DM Sans', 'Nunito', sans-serif;
  font-size: 0.68rem;
  color: var(--text-light);
  line-height: 1.55;
}
.age-gate-legal a { color: var(--text-light); text-decoration: underline; }

@media (min-width: 480px) {
  .age-gate-card { padding: 48px 44px 40px; }
  .age-gate-btns { flex-direction: row; }
  #age-gate-yes, #age-gate-no { width: auto; flex: 1; }
}

/* ═══════════════════════════════════════════
   AGE GATE DENIED PAGE
   ═══════════════════════════════════════════ */
.denied-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #0A2540 0%, #0f1c35 100%);
  padding: 32px 20px;
  text-align: center;
}
.denied-card {
  max-width: 440px;
  width: 100%;
}
.denied-logo {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.denied-logo span { color: var(--aqua); opacity: 0.7; }
.denied-icon { font-size: 3rem; margin-bottom: 16px; }
.denied-heading {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.denied-body {
  font-family: 'DM Sans', 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 32px;
}
.denied-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 22px;
  border-radius: 100px;
  transition: color 0.2s, border-color 0.2s;
}
.denied-link:hover { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.35); }

/* ============================================================
   FORM HELPERS — shared across wholesale + checkout forms
   ============================================================ */
.form-helper {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 5px;
  line-height: 1.5;
}
.form-required { color: #e55; font-size: 0.8em; }
.form-optional  { color: var(--text-light); font-size: 0.8em; font-style: italic; }
.form-file-input {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border: 1.5px dashed var(--silver);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text-mid);
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s;
}
.form-file-input:hover { border-color: var(--aqua); }

/* ============================================================
   LEGAL PAGES — terms, privacy, shipping
   ============================================================ */
.legal-wrap {
  min-height: 70vh;
  padding: 80px 20px 60px;
  background: var(--bg);
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin: 12px 0 8px;
}
.legal-updated {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 36px;
}
.legal-placeholder {
  color: var(--text-mid);
  background: var(--bg-white);
  border: 1.5px dashed var(--silver);
  border-radius: var(--radius-sm);
  padding: 32px 24px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.7;
}
.legal-inner h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin: 32px 0 10px;
}
.legal-inner p, .legal-inner li {
  color: var(--text-mid);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.legal-inner ul, .legal-inner ol {
  padding-left: 1.4em;
  margin-bottom: 16px;
}
.legal-back { margin-top: 48px; }

/* ============================================================
   ACCOUNT PAGE — login + dashboard
   ============================================================ */
.account-wrap {
  min-height: 80vh;
  padding: 80px 20px 60px;
  background: var(--bg);
}
/* ── Login ── */
.login-page-pub {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 20px;
}
.login-card-pub {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 32px;
  width: 100%;
  max-width: 440px;
}
.login-logo-pub { text-align: center; margin-bottom: 4px; }
.login-subtitle-pub {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.login-title-pub {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 20px;
}
.acct-banner {
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 16px;
}
.acct-banner--warn  { background: var(--status-pending-bg);  color: var(--status-pending-text); }
.acct-banner--error { background: var(--status-danger-bg);   color: var(--status-danger-text); }
.acct-divider {
  text-align: center;
  color: var(--text-light);
  font-size: 0.82rem;
  margin: 20px 0 14px;
  position: relative;
}
.acct-divider::before, .acct-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 36%;
  height: 1px;
  background: var(--silver);
}
.acct-divider::before { left: 0; }
.acct-divider::after  { right: 0; }

/* ── Dashboard ── */
.acct-dashboard {
  max-width: 800px;
  margin: 0 auto;
}
.acct-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.acct-greeting {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--navy);
  margin-bottom: 4px;
}
.acct-biz {
  color: var(--text-mid);
  font-size: 0.9rem;
}
.btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  font-family: 'Fredoka', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.btn-sm:hover { opacity: 0.85; }
.btn-sm-danger { background: var(--status-danger-bg); color: var(--status-danger-text); }

.acct-status-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px 28px;
  margin-bottom: 28px;
}
.acct-status-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.acct-status {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}
.acct-status--success { color: var(--status-success-text); }
.acct-status--warn    { color: var(--status-pending-text); }
.acct-status--danger  { color: var(--status-danger-text); }
.acct-status-note {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 10px;
  line-height: 1.6;
}

.acct-section { margin-bottom: 32px; }
.acct-section-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--silver);
}
.acct-loading-sm { color: var(--text-light); font-size: 0.9rem; padding: 16px 0; }
.acct-empty, .acct-error {
  color: var(--text-mid);
  font-size: 0.9rem;
  padding: 20px 0;
}
.acct-error { color: var(--status-danger-text); }

.acct-order-card {
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 18px 20px;
  margin-bottom: 12px;
}
.acct-order-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.acct-order-id {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}
.acct-order-date {
  font-size: 0.8rem;
  color: var(--text-light);
}
.acct-order-total {
  margin-left: auto;
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--aqua);
}
.acct-order-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.acct-order-item {
  background: var(--bg);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 0.78rem;
  color: var(--text-mid);
}

/* ============================================================
   PRODUCT CATALOG — category tabs, size tabs, pricing gate
   ============================================================ */
.cat-tabs-wrap {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 100px;
  border: 2px solid var(--silver);
  background: var(--bg-white);
  color: var(--text-mid);
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.cat-tab:hover { border-color: var(--aqua); color: var(--aqua); }
.cat-tab[aria-selected="true"] {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.size-tabs-wrap {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}
.size-tab {
  padding: 7px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--silver);
  background: var(--bg);
  color: var(--text-mid);
  font-family: 'Fredoka', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.size-tab:hover { border-color: var(--aqua); color: var(--aqua); }
.size-tab.active {
  background: var(--aqua);
  border-color: var(--aqua);
  color: var(--navy);
}

/* ── Pricing gate ── */
.pricing-gate { margin-top: 16px; min-height: 60px; }

.pricing-locked {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 24px 20px;
  background: var(--bg);
  border: 1.5px dashed var(--silver);
  border-radius: var(--radius-sm);
}
.pricing-lock-icon { font-size: 1.6rem; }
.pricing-lock-msg { font-size: 0.88rem; color: var(--text-mid); line-height: 1.5; }

.pricing-status {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  line-height: 1.5;
}
.pricing-status--pending  { background: var(--status-pending-bg); color: var(--status-pending-text); }
.pricing-status--rejected { background: var(--status-danger-bg);  color: var(--status-danger-text); }

.pricing-tiers-table { width: 100%; border-collapse: collapse; margin-bottom: 14px; }
.pricing-tiers-table th {
  text-align: left;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 6px 10px 8px;
  border-bottom: 1px solid var(--silver);
}
.tier-row td {
  padding: 10px 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(200,214,229,0.4);
  transition: background 0.15s;
}
.tier-row:last-child td { border-bottom: none; }
.tier-row.active-tier td {
  background: var(--aqua-glow);
  color: var(--navy);
  font-weight: 600;
}
.tier-row.active-tier .tier-price { color: var(--aqua); font-size: 1rem; }

.atc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid var(--silver);
}
.qty-controls {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--silver);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  background: var(--bg);
  border: none;
  width: 36px;
  height: 38px;
  font-size: 1.1rem;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: var(--silver); }
.qty-input {
  width: 52px;
  height: 38px;
  border: none;
  border-left: 1px solid var(--silver);
  border-right: 1px solid var(--silver);
  text-align: center;
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  color: var(--navy);
  background: var(--bg-white);
}
.qty-input:focus { outline: none; }
.atc-preview {
  font-size: 0.88rem;
  color: var(--text-mid);
  flex: 1;
  min-width: 100px;
}
.atc-preview strong { color: var(--navy); }

/* ── Cart toast + badge ── */
.cart-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--navy);
  color: #fff;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  box-shadow: 0 6px 24px rgba(10,37,64,0.25);
  z-index: 9000;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  white-space: nowrap;
}
.cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--aqua);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  min-width: 18px;
  height: 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* ── Products FAQ ── */
.products-faq {
  max-width: 760px;
  margin: 60px auto 0;
  padding: 0 20px;
}
.products-faq-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 28px;
}
.faq-item {
  border-bottom: 1px solid var(--silver);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--aqua);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 18px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-wrap {
  min-height: 80vh;
  padding: 80px 20px 60px;
  background: var(--bg);
  max-width: 960px;
  margin: 0 auto;
}
.checkout-loading {
  text-align: center;
  padding: 60px 0;
  color: var(--text-light);
  font-size: 1rem;
}
.checkout-empty {
  text-align: center;
  padding: 80px 20px;
}
.checkout-empty-icon { font-size: 3rem; margin-bottom: 16px; }
.checkout-empty h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.checkout-empty p { color: var(--text-mid); margin-bottom: 24px; }

.checkout-header { margin-bottom: 32px; }
.checkout-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 6px;
}
.checkout-sub { color: var(--text-mid); font-size: 0.95rem; }

.checkout-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 680px) {
  .checkout-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

.checkout-summary, .checkout-form-col {
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
}
.checkout-section-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--silver);
}
.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(200,214,229,0.4);
}
.checkout-item:last-child { border-bottom: none; }
.checkout-item-name { font-size: 0.9rem; color: var(--navy); font-weight: 500; }
.checkout-item-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.checkout-item-qty { font-size: 0.82rem; color: var(--text-light); }
.checkout-item-price { font-size: 0.9rem; color: var(--navy); font-weight: 600; }
.checkout-divider { height: 1px; background: var(--silver); margin: 14px 0; }
.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}
.checkout-total-row strong {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  color: var(--aqua);
}
.checkout-price-note {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 10px;
  line-height: 1.5;
}
.checkout-edit-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--aqua);
  text-decoration: none;
}
.checkout-edit-link:hover { text-decoration: underline; }

.compliance-section {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  margin-bottom: 20px;
}
.compliance-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.compliance-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 14px;
}
.compliance-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  cursor: pointer;
}
.compliance-check input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--aqua);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.compliance-check-text {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.55;
}
.compliance-check-text a { color: var(--aqua); }
.co-legal-note {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.5;
  text-align: center;
}

/* ── Checkout success ── */
.checkout-success {
  text-align: center;
  padding: 60px 20px;
  max-width: 520px;
  margin: 0 auto;
}
.checkout-success-icon {
  font-size: 3rem;
  color: var(--aqua);
  margin-bottom: 16px;
  animation: holo-shift 4s ease-in-out infinite alternate;
}
.checkout-success h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 10px;
}
.checkout-success-sub { color: var(--text-mid); margin-bottom: 28px; }
.checkout-success-details {
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 20px 24px;
  margin-bottom: 24px;
}
.checkout-success-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(200,214,229,0.4);
}
.checkout-success-row:last-child { border-bottom: none; }
.checkout-success-row strong { color: var(--navy); font-weight: 700; }
.checkout-success-note {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}
.checkout-success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   PRODUCTS LANDING — dark hero + category cards
   ============================================================ */
.prod-landing-hero {
  background: var(--navy);
  padding: 100px 20px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.prod-landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(0,196,204,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 40%, rgba(129,140,248,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.prod-landing-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.prod-landing-sparkles .hs {
  position: absolute;
  font-size: clamp(0.7rem, 1.5vw, 1rem);
  color: var(--aqua-light);
  opacity: 0.4;
  animation: float-sparkle 5s ease-in-out infinite;
}
.prod-landing-sparkles .hs:nth-child(1) { top: 18%; left: 8%; animation-delay: 0s; }
.prod-landing-sparkles .hs:nth-child(2) { top: 30%; right: 12%; animation-delay: -1.3s; }
.prod-landing-sparkles .hs:nth-child(3) { bottom: 22%; left: 15%; animation-delay: -0.7s; }
.prod-landing-sparkles .hs:nth-child(4) { bottom: 30%; right: 8%; animation-delay: -2s; }
.prod-landing-sparkles .hs:nth-child(5) { top: 55%; left: 50%; animation-delay: -1.7s; }

.prod-landing-hero-inner { position: relative; max-width: 680px; margin: 0 auto; }
.prod-landing-hero-inner h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin: 12px 0 18px;
}
.prod-landing-hero-inner h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--aqua), var(--holo-2), var(--aqua));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: holo-shift 4s linear infinite;
}
.prod-landing-hero-inner p {
  color: rgba(255,255,255,0.7);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  line-height: 1.7;
}

/* ── Category cards grid ── */
.prod-cats-section {
  background: var(--bg);
  padding: 48px 20px 64px;
}
.prod-cats-grid {
  display: grid;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .prod-cats-grid { grid-template-columns: 1fr 1fr; }
}

.prod-cat-card {
  display: flex;
  flex-direction: column;
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.prod-cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(10,37,64,0.22);
}

/* Image area */
.prod-cat-img {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, #0A2540 0%, #0e3a60 100%);
}
@media (min-width: 700px) { .prod-cat-img { height: 300px; } }
.prod-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.prod-cat-card:hover .prod-cat-img img { transform: scale(1.05); }

/* bottom fade from image into card body */
.prod-cat-img-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--navy));
}
.prod-cat-img--cbg { background: linear-gradient(135deg, #1a1040 0%, #2d1b6e 100%); }
.prod-cat-img-fade--cbg { background: linear-gradient(to bottom, transparent, #1a0f3a); }

/* Card body */
.prod-cat-body {
  padding: 20px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.prod-cat-body--cbg { background: linear-gradient(180deg, #1a0f3a 0%, #12052a 100%); }

.prod-cat-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  background: var(--aqua);
  color: var(--navy);
  font-family: 'Fredoka', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  align-self: flex-start;
}
.prod-cat-badge--cbg {
  background: linear-gradient(90deg, var(--holo-2), var(--holo-3));
  color: #fff;
}

.prod-cat-name {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.prod-cat-name em { font-style: normal; color: var(--aqua); }
.prod-cat-card--cbg .prod-cat-name em {
  background: linear-gradient(90deg, var(--holo-2), var(--holo-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prod-cat-desc {
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.prod-cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}
.prod-cat-pill {
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
}
.prod-cat-pill--cbg { background: rgba(129,140,248,0.18); color: rgba(200,200,255,0.85); }

.prod-cat-cta-row { margin-top: auto; }
.prod-cat-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--aqua);
  color: var(--navy);
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
}
.prod-cat-card:hover .prod-cat-cta { background: #fff; }
.prod-cat-cta--cbg {
  background: linear-gradient(90deg, var(--holo-2), var(--holo-3));
  color: #fff;
}
.prod-cat-card--cbg:hover .prod-cat-cta--cbg { background: #fff; color: var(--navy); }

/* ============================================================
   INDIVIDUAL PRODUCT PAGES — sub-hero + breadcrumb
   ============================================================ */
.prods-subhero {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--navy);
  overflow: hidden;
  min-height: 260px;
  position: relative;
}
@media (min-width: 768px) {
  .prods-subhero { grid-template-columns: 1fr 1fr; min-height: 320px; }
}

.prods-subhero-inner {
  padding: 80px 28px 48px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .prods-subhero-inner { padding: 80px 48px 60px; }
}

.prods-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.prods-breadcrumb a {
  color: var(--aqua-light);
  text-decoration: none;
}
.prods-breadcrumb a:hover { text-decoration: underline; }

.prods-subhero-inner h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.prods-subhero-inner h1 em { font-style: normal; color: var(--aqua); }
.prods-subhero--cbg .prods-subhero-inner h1 em {
  background: linear-gradient(90deg, var(--holo-2), var(--holo-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.prods-subhero-inner p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}

.prods-subhero-img {
  display: none;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .prods-subhero-img { display: block; } }
.prods-subhero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.85;
}
.prods-subhero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}
.prods-subhero--cbg { background: linear-gradient(135deg, #1a0f3a 0%, #0d0820 100%); }
.prods-subhero-img--cbg img { filter: hue-rotate(200deg) saturate(0.9); }
