/* ==========================================================================
   EAGLE PEPTIDES / EAGLE LABS - PRODUCTION FIGMA DESIGN SYSTEM
   Exact match for Figma Prototype: https://www.figma.com/proto/PUcgB3QTAgXcQrqCCCGgVE
   Manufacturer: Eagle Beauty Supply Inc.
   Laboratory Verified & WooCommerce Compliant
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,400;1,600;1,700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Exact Figma Midnight Navy & Laboratory Blue Palette */
  --bg-primary: #050a17;
  --bg-secondary: #0a1128;
  --bg-card: #0d1633;
  --bg-card-hover: #132048;
  --bg-card-alt: #091024;
  --bg-input: #060c1d;
  
  --border-color: #172554;
  --border-highlight: #1e3a8a;
  --border-glow: rgba(59, 130, 246, 0.4);

  /* Brand Accents */
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-dark: #1e40af;
  --primary-glow: rgba(37, 99, 235, 0.35);

  --emerald: #10b981;
  --emerald-hover: #059669;
  --emerald-glow: rgba(16, 185, 129, 0.35);

  --accent-cyan: #0ea5e9;
  --accent-sky: #38bdf8;
  --accent-gold: #f59e0b;
  --accent-rose: #f43f5e;
  --accent-purple: #8b5cf6;

  --text-main: #ffffff;
  --text-body: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;

  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.7);
  --shadow-blue-glow: 0 0 35px rgba(37, 99, 235, 0.25);
  --shadow-emerald-glow: 0 0 30px rgba(16, 185, 129, 0.2);

  --container-max: 1320px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 10% 40%, rgba(14, 165, 233, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.age-locked, body.modal-open, body.drawer-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.25;
  font-weight: 700;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-sky);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Utilities */
.text-emerald { color: var(--emerald) !important; }
.text-cyan { color: var(--accent-cyan) !important; }
.text-gold { color: var(--accent-gold) !important; }
.text-danger { color: var(--accent-rose) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.py-8 { padding-top: 4.5rem; padding-bottom: 4.5rem; }
.strike { text-decoration: line-through; opacity: 0.55; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.4);
  border-color: rgba(96, 165, 250, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.6);
  transform: translateY(-2px);
}

.btn-emerald {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.35);
  border-color: rgba(52, 211, 153, 0.3);
}

.btn-emerald:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.55);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(37, 99, 235, 0.12);
  color: #60a5fa;
  border-color: rgba(37, 99, 235, 0.35);
}

.btn-secondary:hover {
  background: rgba(37, 99, 235, 0.22);
  color: #93c5fd;
  border-color: rgba(59, 130, 246, 0.6);
}

.btn-outline {
  background: rgba(13, 22, 51, 0.6);
  color: var(--text-body);
  border-color: var(--border-color);
}

.btn-outline:hover {
  background: var(--bg-card-hover);
  color: #ffffff;
  border-color: var(--border-highlight);
}

.btn-sm { padding: 0.45rem 0.95rem; font-size: 0.85rem; border-radius: var(--radius-sm); }
.btn-xs { padding: 0.3rem 0.65rem; font-size: 0.78rem; border-radius: var(--radius-xs); }
.btn-lg { padding: 0.9rem 1.9rem; font-size: 1.05rem; }
.btn-xl { padding: 1.05rem 2.4rem; font-size: 1.15rem; border-radius: var(--radius-lg); }
.btn-block { width: 100%; }

/* Form Controls */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.form-input, .form-select, .calc-input, .calc-select {
  width: 100%;
  padding: 0.8rem 1.1rem;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus, .form-select:focus, .calc-input:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.25);
}

.form-select-sm {
  padding: 0.45rem 0.85rem;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.85rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #1e3a8a 0%, #1e40af 50%, #1d4ed8 100%);
  color: #eff6ff;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(59, 130, 246, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.announcement-bar a {
  color: #93c5fd;
  text-decoration: underline;
  margin-left: 0.5rem;
  font-weight: 700;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 10, 23, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1.75rem;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.35rem;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.brand-text {
  white-space: nowrap;
}

.brand-text h1 {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--accent-sky);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
}

.nav-link {
  padding: 0.55rem 0.95rem;
  color: var(--text-body);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
  background: rgba(37, 99, 235, 0.16);
}

.header-search-wrap {
  position: relative;
  min-width: 260px;
  max-width: 320px;
  flex: 0 1 300px;
}

.header-search-input {
  width: 100%;
  min-width: 250px;
  height: 42px;
  padding: 0.6rem 1.1rem 0.6rem 2.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.header-search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.35);
  background: var(--bg-card-hover);
}

.search-input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.95rem;
  pointer-events: none;
}

.search-suggest-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 380px;
  max-width: 440px;
  background: #0d1633;
  border: 1px solid #2563eb;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9), 0 0 30px rgba(37, 99, 235, 0.35);
  display: none;
  z-index: 999;
  max-height: 420px;
  overflow-y: auto;
  padding: 0.5rem;
}

.search-suggest-dropdown.active {
  display: block;
}

.suggest-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.suggest-item:last-child {
  border-bottom: none;
}

.suggest-item:hover {
  background: rgba(37, 99, 235, 0.25);
}

/* ── Eagle Labs Navbar Logo ─────────────────────────────────── */
.navbar-eagle-logo {
  height: 44px;           /* fixed height – width scales with 2:1 ratio ≈ 88px */
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  background: transparent !important;
  border-radius: 0;
  padding: 0;
  margin: 0;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.18));
  transition: transform 0.2s ease, filter 0.2s ease;
  image-rendering: -webkit-optimize-contrast;
}

.navbar-eagle-logo:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 2px 8px rgba(56,182,255,0.35));
}

@media (max-width: 768px) {
  .navbar-eagle-logo {
    height: 34px;
    max-width: 140px;
  }
}

/* Hero Section Logo */
.figma-hero-brand-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 0;
}

.hero-eagle-logo {
  height: 85px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: none !important;
  border-radius: 8px;
  transition: transform 0.2s ease;
  margin-bottom: 0.5rem;
}

.hero-eagle-logo:hover {
  transform: scale(1.02);
}

.f-brand-underline {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8 0%, rgba(56, 189, 248, 0) 100%);
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .hero-eagle-logo {
    height: 60px;
    max-width: 180px;
  }
}

/* Footer Logo */
.footer-eagle-logo {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: none !important;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

.footer-eagle-logo:hover {
  transform: scale(1.02);
}

.mobile-menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.15rem;
  transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(37, 99, 235, 0.2);
  border-color: var(--primary);
  color: #38bdf8;
}

@media (max-width: 992px) {
  .primary-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}

.suggest-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.suggest-info {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.suggest-info strong {
  display: block;
  font-size: 0.92rem;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggest-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.suggest-price {
  font-weight: 700;
  color: var(--emerald);
  font-size: 0.92rem;
  white-space: nowrap;
}

.suggest-item.empty {
  color: var(--text-muted);
  font-size: 0.88rem;
  text-align: center;
  padding: 1.25rem 0.5rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.cart-trigger-btn {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.2s;
}

.cart-trigger-btn:hover {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.12);
}

.cart-count-badge {
  background: var(--emerald);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px var(--emerald);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section (Figma Exact Layout) */
.hero-section {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  background: linear-gradient(180deg, rgba(10, 17, 40, 0.6) 0%, rgba(5, 10, 23, 1) 100%);
}

/* Figma Header Styling */
.figma-white-header {
  background: rgba(5, 10, 23, 0.94) !important;
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  height: 80px;
}

.figma-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-text-figma {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-eagle-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-style: italic;
  font-size: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.brand-peptides-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: italic;
  font-size: 0.82rem;
  color: #0ea5e9;
  letter-spacing: 0.02em;
  margin-top: -2px;
}

.figma-nav .nav-link {
  color: #cbd5e1 !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.04em !important;
  padding: 0.5rem 0.95rem !important;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.figma-nav .nav-link:hover,
.figma-nav .nav-link.active {
  color: #38bdf8 !important;
  background: rgba(14, 165, 233, 0.1) !important;
}

.figma-header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.figma-circle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: rgba(13, 22, 51, 0.8);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.figma-circle-btn:hover {
  border-color: #0ea5e9;
  color: #0ea5e9;
  background: rgba(14, 165, 233, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

.figma-search-box {
  display: none;
}
@media (min-width: 1200px) {
  .figma-search-box {
    display: block;
  }
}

/* ==========================================================================
   FIGMA EXACT HERO SECTION DESIGN (FULL PANORAMIC HIGH-RES BANNER)
   ========================================================================== */
.figma-hero-banner-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background-color: #030a1c;
  overflow: hidden;
  border-bottom: none;
  display: block;
  line-height: 0;
}

.hero-banner-frame {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: block;
  background-color: #030a1c;
  line-height: 0;
}

.hero-banner-frame picture {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.hero-banner-img {
  display: block;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: cover;
  object-position: center center;
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  border: none;
}

@media (max-width: 768px) {
  .figma-hero-banner-section {
    margin: 0;
    padding: 0;
  }
  .hero-banner-img {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
}

.figma-hero-section {
  position: relative;
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  background-color: #030818;
  background-image: 
    linear-gradient(to right, #020617 0%, #020617 38%, rgba(2, 6, 23, 0.75) 55%, transparent 100%),
    url('../assets/images/hero_banner.png');
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 5.5rem 0 6.5rem 0;
  overflow: hidden;
  border-bottom: 1px solid #172554;
}

.figma-hero-container {
  display: flex;
  align-items: center;
  width: 100%;
}

.figma-hero-left {
  max-width: 680px;
}

.figma-hero-brand-mark {
  margin-bottom: 2.25rem;
}

.f-brand-logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.f-brand-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-style: italic;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.f-name-eagle {
  color: #ffffff;
}

.f-name-labs {
  color: #38bdf8;
  margin-left: 0.4rem;
}

.f-brand-underline {
  width: 190px;
  height: 3px;
  background: #0ea5e9;
  margin-top: 0.85rem;
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(14, 165, 233, 0.8);
}

.figma-hero-main-title {
  font-family: var(--font-heading);
  font-size: 4.8rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 2.25rem;
}

.figma-hero-blue-accent {
  color: #38bdf8;
  display: block;
  text-shadow: 0 0 35px rgba(56, 189, 248, 0.3);
}

.figma-hero-purity-box {
  margin-bottom: 2.75rem;
}

.f-purity-top-line {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.f-purity-percent {
  font-size: 2.2rem;
  color: #38bdf8;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.f-purity-label {
  font-size: 1.35rem;
  color: #ffffff;
}

.f-purity-sub {
  font-size: 1rem;
  color: #94a3b8;
  margin-top: 0.4rem;
}

.figma-hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .figma-hero-section {
    background-position: center right;
  }
  .figma-hero-main-title {
    font-size: 3.2rem;
  }
}

.glass-card-header {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--emerald);
}

.glass-batch-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
  font-size: 0.82rem;
}

/* Trust Bar */
.trust-bar-section {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 1.75rem 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.trust-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #ffffff;
}

.trust-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Section Titles */
.section-kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-sky);
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.75rem;
}

/* ==========================================================================
   FIGMA EXACT PRODUCT CARDS & SHOP CATALOG SYSTEM
   ========================================================================== */
.figma-prod-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.figma-prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(14, 165, 233, 0.15), 0 6px 18px rgba(0, 0, 0, 0.08);
  border-color: #38bdf8;
}

.f-card-image-wrap {
  position: relative;
  background: linear-gradient(180deg, #091736 0%, #11295b 60%, #1e457e 100%);
  padding: 1.5rem 1rem 1rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 240px;
  overflow: hidden;
}

.f-save-badge-top {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0ea5e9;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.4);
  z-index: 2;
}

.f-card-vial-frame {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-card-vial-img {
  max-height: 190px;
  max-width: 140px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
  transition: transform 0.35s ease;
}

.figma-prod-card:hover .f-card-vial-img {
  transform: scale(1.06);
}

.f-card-body {
  padding: 1.25rem 1.25rem 1.4rem 1.25rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.f-card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: #0f172a;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.3;
}

.f-card-badges-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.f-badge-pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.f-badge-blue {
  background: #0ea5e9;
  color: #ffffff;
}

.f-badge-amber {
  background: #fef3c7;
  color: #b45309;
}

.f-card-pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.6rem;
  border-top: 1px solid #f1f5f9;
}

.f-save-badge-pill {
  background: #0ea5e9;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.f-prices-box {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.f-reg-price {
  font-size: 0.88rem;
  color: #94a3b8;
  font-weight: 600;
}

.f-sale-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: #0284c7;
}

.f-card-actions-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.btn-figma-add-cart {
  flex: 1;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 3px 10px rgba(14, 165, 233, 0.35);
}

.btn-figma-add-cart:hover {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(14, 165, 233, 0.5);
}

.btn-figma-quick-coa {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-figma-quick-coa:hover {
  border-color: #0ea5e9;
  background: #f0f9ff;
  color: #0284c7;
}

.f-sale-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: #0284c7;
}

/* Shop Sidebar & Search Filter */
.figma-shop-search-bar {
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
}

.figma-shop-search-bar input {
  width: 100%;
  padding: 0.95rem 1.25rem 0.95rem 3rem;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #0f172a;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.figma-shop-search-bar input:focus {
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.25);
}

.figma-shop-search-bar i {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 1.1rem;
}

.figma-sidebar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.figma-filter-group {
  margin-bottom: 2rem;
}

.figma-filter-group:last-child {
  margin-bottom: 0;
}

.figma-filter-heading {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.1rem;
}

.figma-checkbox-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  color: #334155;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
}

.figma-checkbox-item input {
  margin-right: 0.65rem;
  accent-color: #0ea5e9;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.figma-checkbox-count {
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.85rem;
}

.figma-products-count-header {
  font-size: 1.1rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 1.5rem;
}

/* Product Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card-badge {
  background: rgba(10, 17, 40, 0.95);
  border: 1px solid var(--emerald);
  color: var(--emerald);
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  margin-bottom: 0.45rem;
}

.product-category-tag {
  color: var(--accent-sky);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.74rem;
  font-weight: 700;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: #ffffff;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
  color: #ffffff;
}

.product-strength-line {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.95rem;
}

.card-janoshik-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  font-size: 0.8rem;
}

.j-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.j-row:last-child { margin-bottom: 0; }
.j-lbl { color: var(--text-muted); }

.product-card-bottom {
  padding: 1.1rem 1.4rem;
  background: rgba(10, 17, 40, 0.75);
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.regular-price, .sale-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
}

.sale-price { color: var(--accent-sky); }

.card-actions {
  display: flex;
  gap: 0.5rem;
}

/* Category Grid */
.category-spotlight-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 2.75rem;
}

.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  cursor: pointer;
  transition: all 0.25s;
}

.cat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md), var(--shadow-blue-glow);
}

.cat-icon-box {
  width: 58px;
  height: 58px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 1.6rem;
  margin-bottom: 1.35rem;
}

.cat-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.cat-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
  line-height: 1.45;
}

.cat-link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--accent-sky);
}

/* Calculator Styles */
.peptide-calculator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-xl);
  padding: 2.75rem;
  box-shadow: var(--shadow-lg), var(--shadow-blue-glow);
  position: relative;
}

/* Calculator Authenticated Session Header */
.calc-auth-session-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
  gap: 1rem;
  flex-wrap: wrap;
}

.session-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.session-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  box-shadow: 0 0 12px rgba(2, 132, 199, 0.4);
}

.session-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.session-name {
  font-weight: 800;
  font-size: 0.95rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge-status-verified {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.session-sub {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* Calculator Sign In & Register Gate */
.calc-auth-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(56, 189, 248, 0.3);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(5, 10, 23, 0.98) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(2, 132, 199, 0.25);
}

.calc-auth-brand-badge {
  display: inline-block;
  background: #ffffff;
  padding: 8px 18px;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.calc-gate-logo {
  height: 52px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

.calc-badge-secure {
  background: rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.4);
  color: #38bdf8;
}

.calc-auth-box {
  margin-top: 1.75rem;
}

.calc-auth-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-auth-tab {
  flex: 1;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.calc-auth-tab.active {
  background: #0284c7;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
}

.calc-auth-tab:hover:not(.active) {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.calc-auth-alert {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.calc-auth-alert.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}

.calc-auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calc-auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.calc-auth-divider::before,
.calc-auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-auth-divider span {
  padding: 0 0.85rem;
}

.calc-gate-perks {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gate-perk-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.86rem;
  color: #cbd5e1;
}

.calc-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.25rem;
}

.calc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #93c5fd;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.calc-title {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
}

.calc-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
}

.calc-preset-bar {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.4rem;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}

.preset-label {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--text-main);
}

.preset-buttons {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.preset-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  color: var(--text-body);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s;
}

.preset-btn:hover, .preset-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.4);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  margin-bottom: 2.25rem;
}

.input-with-unit { position: relative; }
.input-unit {
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.88rem;
}

.range-slider-wrap { margin-top: 0.6rem; }
.calc-slider {
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: var(--border-color);
  outline: none;
  -webkit-appearance: none;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-sky);
  cursor: pointer;
  box-shadow: 0 0 10px var(--accent-sky);
}

.results-primary-card {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(14, 165, 233, 0.1) 100%);
  border: 1px solid rgba(59, 130, 246, 0.45);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  margin-bottom: 1.4rem;
}

.result-highlight-badge {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #93c5fd;
  margin-bottom: 0.4rem;
}

.result-big-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.6rem;
}

.units-val {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.units-label {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-sky);
}

.result-volume-sub {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-top: 0.6rem;
}

.results-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.stat-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.95rem;
}

.stat-label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.stat-value { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800; color: #ffffff; }
.stat-unit { font-size: 0.78rem; color: var(--accent-sky); }
.stat-sub { font-size: 0.74rem; color: var(--text-muted); }

.calc-warning-alert {
  background: rgba(239, 68, 68, 0.16);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  font-size: 0.88rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  margin-top: 1.1rem;
}

/* Syringe Visualizer */
.syringe-visualizer-container {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: 2.25rem;
}

.visualizer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.visualizer-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: #ffffff;
}

.visualizer-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  font-size: 0.78rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  color: var(--accent-sky);
  font-weight: 700;
}

.syringe-svg-wrapper { width: 100%; overflow-x: auto; }
.syringe-svg-canvas { width: 100%; height: auto; min-width: 520px; }

/* Protocol Steps */
.reconstitution-protocol-card {
  border-top: 1px solid var(--border-color);
  padding-top: 2.25rem;
}

.protocol-title { font-size: 1.3rem; margin-bottom: 1.35rem; }
.protocol-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.step-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.4rem;
}

.step-num {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #ffffff;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}

.step-content h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.step-content p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.45; }

/* Janoshik Spotlight */
.janoshik-spotlight-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.janoshik-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.spotlight-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-highlight);
  box-shadow: var(--shadow-lg), var(--shadow-blue-glow);
}

.spotlight-stat-badge {
  position: absolute;
  top: 1.35rem;
  left: 1.35rem;
  background: rgba(10, 17, 40, 0.94);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.45);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #ffffff;
}

.spotlight-stat-badge i { color: var(--accent-sky); font-size: 1.35rem; }
.spotlight-features { display: flex; flex-direction: column; gap: 1.35rem; margin-top: 1.75rem; }
.sp-feat { display: flex; gap: 1.1rem; }
.sp-feat i { font-size: 1.25rem; margin-top: 0.2rem; }
.sp-feat strong { display: block; color: #ffffff; font-size: 1.05rem; margin-bottom: 0.2rem; }
.sp-feat p { font-size: 0.88rem; color: var(--text-muted); }

/* Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 2.75rem;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  position: relative;
}

.pillar-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(59, 130, 246, 0.4);
  margin-bottom: 0.85rem;
}

.pillar-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.pillar-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

/* Testimonials */
.testimonials-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.75rem;
}

.test-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.test-stars { color: var(--accent-gold); margin-bottom: 1.1rem; font-size: 0.95rem; }
.test-card p { font-size: 0.95rem; color: var(--text-body); font-style: italic; margin-bottom: 1.35rem; line-height: 1.55; }
.test-author strong { display: block; color: #ffffff; font-size: 0.95rem; }
.test-author span { font-size: 0.8rem; color: var(--text-muted); }

/* COA Library */
.coa-library-container { padding: 3.5rem 0 5.5rem; }
.coa-hero-banner { text-align: center; max-width: 840px; margin: 0 auto 2.75rem; }
.coa-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #93c5fd;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.coa-hero-title { font-size: 2.8rem; margin-bottom: 0.85rem; }
.coa-hero-desc { font-size: 1.1rem; color: var(--text-body); margin-bottom: 1.75rem; }
.coa-trust-pills { display: flex; justify-content: center; gap: 1.1rem; flex-wrap: wrap; }
.trust-pill {
  background: var(--bg-secondary);
  border: 1px solid var(--border-highlight);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.52rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  font-family: var(--font-heading), 'Plus Jakarta Sans', sans-serif;
  outline: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.trust-pill:hover {
  background: rgba(2, 132, 199, 0.2);
  border-color: #0284c7;
  color: #38bdf8;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

.trust-pill:active {
  transform: translateY(0);
}

.trust-pill.active {
  background: #0284c7;
  border-color: #38bdf8;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.45);
}

.trust-pill i {
  color: #38bdf8;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.trust-pill.active i,
.trust-pill:hover i {
  color: #ffffff;
}

@keyframes pulseHighlight {
  0% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7); }
  50% { box-shadow: 0 0 25px 5px rgba(56, 189, 248, 0.5); }
  100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

.pulse-highlight {
  animation: pulseHighlight 1.5s ease-out;
  border-color: #38bdf8 !important;
}

.coa-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.75rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.coa-search-wrap { position: relative; flex: 1; max-width: 480px; }
.coa-search-input {
  width: 100%;
  padding: 0.85rem 1.1rem 0.85rem 2.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 0.95rem;
}

.search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.coa-filter-chips { display: flex; gap: 0.55rem; flex-wrap: wrap; }
.coa-chip {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-body);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s;
}

.coa-chip:hover, .coa-chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.coa-table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin-bottom: 3.5rem;
}

.coa-table { width: 100%; border-collapse: collapse; text-align: left; }
.coa-table th {
  background: var(--bg-secondary);
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--border-color);
}

.coa-table td {
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.92rem;
}

.coa-row:hover { background: var(--bg-card-hover); }
.product-mini-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.product-info-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}
.coa-row-mini-vial {
  width: 38px;
  height: 46px;
  background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.15) 0%, rgba(15, 23, 42, 0.7) 85%);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  padding: 3px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}
.coa-row-mini-vial:hover {
  transform: scale(1.18);
  border-color: #38bdf8;
  background: rgba(14, 165, 233, 0.25);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.5);
}
.coa-row-mini-vial .mini-vial-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.7));
}
.vial-mini-dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
.strength-badge { background: rgba(255, 255, 255, 0.1); font-size: 0.78rem; padding: 0.18rem 0.5rem; border-radius: 4px; }
.batch-badge {
  background: var(--bg-secondary);
  border: 1px solid var(--border-highlight);
  font-family: monospace;
  font-size: 0.84rem;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

.purity-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: var(--emerald);
  font-weight: 800;
  font-size: 0.84rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.purity-badge.ultra {
  background: rgba(14, 165, 233, 0.16);
  border-color: rgba(14, 165, 233, 0.5);
  color: var(--accent-cyan);
}

/* Modals */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.88);
  backdrop-filter: blur(10px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-backdrop.active { opacity: 1; pointer-events: auto; }
.modal-dialog {
  background: #ffffff;
  color: #0f172a;
  border-radius: var(--radius-lg);
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}

.modal-close-btn {
  position: absolute;
  top: 1.1rem;
  right: 1.35rem;
  background: #e2e8f0;
  border: none;
  font-size: 1.6rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.modal-close-btn:hover { background: #cbd5e1; }
.janoshik-cert-container { padding: 2.75rem; }
.cert-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #0f172a;
  padding-bottom: 1.4rem;
  margin-bottom: 1.75rem;
}

.cert-lab-brand { display: flex; align-items: center; gap: 1rem; }
.lab-logo-mark {
  width: 48px;
  height: 48px;
  background: #0f172a;
  color: #2563eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.lab-name { font-size: 1.35rem; font-weight: 900; color: #0f172a; letter-spacing: 0.05em; }
.lab-sub { font-size: 0.8rem; color: #64748b; text-transform: uppercase; letter-spacing: 0.05em; }
.stamp-pill {
  background: #eff6ff;
  border: 1px solid #3b82f6;
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 0.3rem;
}

.cert-task-id { display: block; font-size: 0.82rem; color: #475569; }
.cert-title-heading { text-align: center; margin-bottom: 1.75rem; }
.cert-title-heading h2 { color: #0f172a; font-size: 1.7rem; letter-spacing: 0.05em; }
.cert-subtitle { font-size: 0.88rem; color: #64748b; }
.cert-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.75rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.35rem;
  margin-bottom: 1.75rem;
}

.meta-item { display: flex; font-size: 0.88rem; }
.meta-label { width: 145px; color: #64748b; font-weight: 600; }
.meta-val { color: #0f172a; font-weight: 700; }
.highlight-val { color: #1d4ed8; }

.cert-results-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-bottom: 1.75rem;
}

.result-showcase-box {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 1.1rem;
  text-align: center;
}

.result-showcase-box.highlight-purity { background: #ecfdf5; border-color: #10b981; }
.res-box-label { display: block; font-size: 0.78rem; color: #475569; font-weight: 600; margin-bottom: 0.3rem; }
.res-box-value { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 900; display: block; color: #0f172a; }
.res-box-value.emerald { color: #047857; }
.res-box-value.cyan { color: #0284c7; }
.badge-pass { color: #047857; font-size: 1.25rem; }
.res-box-note { font-size: 0.74rem; color: #64748b; }
.cert-chart-section { background: #050a17; border-radius: 8px; padding: 1.1rem; margin-bottom: 1.75rem; color: #ffffff; }
.chart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.6rem; }
.chart-header h4 { font-size: 0.95rem; color: #ffffff; }
.hplc-graph-svg { width: 100%; height: auto; }
.cert-footer-auth {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1.35rem 0;
  border-top: 1px solid #e2e8f0;
}

.auth-signatures { display: flex; gap: 2.75rem; }
.sig-block { text-align: center; }
.sig-image-sim { font-family: 'Brush Script MT', cursive, sans-serif; font-size: 1.7rem; color: #1e3a8a; margin-bottom: 0.3rem; }
.sig-line { width: 140px; height: 1px; background: #0f172a; margin: 0 auto 0.3rem; }
.sig-name { display: block; font-size: 0.8rem; font-weight: 700; color: #0f172a; }
.sig-title { font-size: 0.72rem; color: #64748b; }
.qr-code-box {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 0.7rem 0.95rem;
  border-radius: 6px;
}

.qr-code-sim { font-size: 2.4rem; color: #0f172a; }
.qr-info { font-size: 0.78rem; color: #475569; }
.qr-link { font-weight: 700; color: #2563eb; display: block; }
.cert-disclaimer { font-size: 0.74rem; color: #64748b; line-height: 1.4; border-top: 1px solid #e2e8f0; padding-top: 0.85rem; }
.cert-actions-bar {
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
  padding: 1.1rem 2.75rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.85rem;
}

/* Age Gate Modal (Elytra Labs Style) */
.age-gate-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.age-gate-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.age-gate-card {
  background: linear-gradient(180deg, #0d1633 0%, #080e22 100%);
  border: 1px solid #1e3a8a;
  border-radius: var(--radius-xl);
  max-width: 580px;
  width: 100%;
  padding: 2.75rem 2.5rem;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.95), 0 0 45px rgba(37, 99, 235, 0.35);
  animation: modalPop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.age-gate-crest {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.age-gate-logo-icon {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25) 0%, rgba(14, 165, 233, 0.25) 100%);
  border: 2px solid var(--primary);
  color: #60a5fa;
  font-size: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
}

.age-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.5);
  color: #93c5fd;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  text-transform: uppercase;
}

.age-gate-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.85rem;
  letter-spacing: -0.5px;
}

.age-gate-desc {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.age-gate-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: rgba(6, 12, 29, 0.75);
  border: 1px solid rgba(30, 58, 138, 0.6);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.75rem;
  text-align: left;
}

.age-check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.45;
}

.age-check-row input[type="checkbox"] {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  accent-color: var(--emerald);
  flex-shrink: 0;
  cursor: pointer;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.btn-enter-site {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  padding: 1rem;
  font-size: 1rem;
  transition: all 0.25s ease;
}

.btn-enter-site:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.6);
  transform: translateY(-2px);
}

.btn-exit-site {
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 0.75rem;
}

.btn-exit-site:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: #ef4444;
  color: #f87171;
}

.age-gate-footer-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.1rem;
}

.age-remember-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
}

.age-remember-label input[type="checkbox"] {
  accent-color: var(--primary);
  cursor: pointer;
}

.age-footer-copy {
  font-size: 0.76rem;
  color: var(--text-dim);
}

/* Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.75);
  backdrop-filter: blur(5px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-drawer-overlay.active { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 460px;
  background: var(--bg-card);
  border-left: 1px solid var(--border-highlight);
  z-index: 160;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  padding: 1.35rem 1.6rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h3 { font-size: 1.25rem; }
.cart-drawer-items { flex: 1; overflow-y: auto; padding: 1.35rem 1.6rem; }
.cart-drawer-item { display: flex; gap: 1.1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--border-color); position: relative; }
.item-vial-indicator { width: 14px; border-radius: 7px; flex-shrink: 0; }
.item-details { flex: 1; }
.item-title-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.25rem; }
.item-name { font-size: 1rem; color: #ffffff; }
.item-batch-tag { font-size: 0.74rem; background: var(--bg-secondary); padding: 0.12rem 0.45rem; border-radius: 4px; color: var(--text-muted); }
.item-specs-sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.55rem; }
.item-pricing-row { display: flex; justify-content: space-between; align-items: center; }
.quantity-stepper { display: flex; align-items: center; background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: var(--radius-sm); }
.qty-btn { background: transparent; border: none; color: var(--text-main); width: 28px; height: 28px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.qty-display { font-size: 0.88rem; font-weight: 800; padding: 0 0.6rem; }
.item-remove-btn { background: transparent; border: none; color: var(--text-muted); font-size: 1.35rem; cursor: pointer; }
.item-remove-btn:hover { color: var(--accent-rose); }
.cart-drawer-footer { padding: 1.35rem 1.6rem; background: var(--bg-secondary); border-top: 1px solid var(--border-color); }
.tier-discount-banner { background: rgba(16, 185, 129, 0.16); border: 1px solid rgba(16, 185, 129, 0.4); color: var(--emerald); font-size: 0.82rem; padding: 0.45rem 0.85rem; border-radius: var(--radius-sm); margin-bottom: 0.85rem; }
.tier-upsell-banner { background: rgba(245, 158, 11, 0.14); border: 1px solid rgba(245, 158, 11, 0.35); color: #fbbf24; font-size: 0.82rem; padding: 0.45rem 0.85rem; border-radius: var(--radius-sm); margin-bottom: 0.85rem; }
.cart-shipping-notice { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-sm); padding: 0.65rem 0.85rem; font-size: 0.8rem; margin-bottom: 0.85rem; }
.cart-totals-breakdown { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.88rem; margin-bottom: 1.1rem; }
.breakdown-row { display: flex; justify-content: space-between; }
.breakdown-row.discount { color: var(--emerald); }
.total-row { border-top: 1px solid var(--border-highlight); padding-top: 0.55rem; font-size: 1.15rem; font-weight: 900; color: #ffffff; }
.cart-action-buttons { display: flex; flex-direction: column; gap: 0.55rem; }

/* Shop Layout */
.shop-page-container { padding-bottom: 5.5rem; }
.shop-hero-header { background: var(--bg-secondary); border-bottom: 1px solid var(--border-color); padding: 3.25rem 0; margin-bottom: 3.25rem; }
.shop-kicker { color: var(--accent-sky); font-weight: 800; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em; }
.shop-title { font-size: 2.6rem; margin: 0.4rem 0; }
.shop-desc { color: var(--text-muted); font-size: 1.05rem; }
.shop-body-layout { display: grid; grid-template-columns: 290px 1fr; gap: 2.75rem; }
.shop-sidebar { display: flex; flex-direction: column; gap: 1.85rem; }
.sidebar-block { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 1.35rem; }
.sidebar-title { font-size: 1rem; margin-bottom: 0.95rem; }
.cat-filter-list { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.cat-filter-list li { display: flex; justify-content: space-between; padding: 0.5rem 0.75rem; border-radius: var(--radius-sm); font-size: 0.9rem; cursor: pointer; transition: all 0.15s; }
.cat-filter-list li:hover, .cat-filter-list li.active { background: rgba(37, 99, 235, 0.16); color: #ffffff; }
.cat-count { font-size: 0.78rem; color: var(--text-muted); }
.sidebar-promo-box, .sidebar-shipping-box { background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 1.35rem; }
.tier-list { list-style: none; font-size: 0.84rem; margin-top: 0.55rem; display: flex; flex-direction: column; gap: 0.3rem; }
.tier-list li { display: flex; justify-content: space-between; }
.sidebar-shipping-box { display: flex; gap: 1rem; align-items: center; }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.75rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--border-color); }
.toolbar-sort-wrap { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; }

/* Product Details & Swipeable Lab Report Gallery */
.product-detail-page { padding: 2.25rem 0 5.5rem; }
.detail-breadcrumbs { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 2.25rem; }
.detail-breadcrumbs a { color: var(--text-muted); }
.detail-breadcrumbs a:hover { color: var(--accent-sky); }
.detail-breadcrumbs .current { color: #ffffff; font-weight: 700; }
.product-hero-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 3.5rem; margin-bottom: 4.5rem; }
@media (max-width: 992px) {
  .product-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.product-gallery-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-md), var(--shadow-blue-glow);
  position: relative;
  overflow: hidden;
}

.pdp-gallery-stage {
  position: relative;
  width: 100%;
  height: 440px;
  background: radial-gradient(circle at 50% 40%, #0c204c 0%, #030818 75%);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y;
  user-select: none;
}

.pdp-gallery-top-bar {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}

.pdp-gallery-badge {
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.pdp-gallery-counter {
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #94a3b8;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.pdp-gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdp-gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 3.25rem 1.25rem 1.25rem;
  box-sizing: border-box;
  position: relative;
}

.pdp-slide-content {
  width: 100%;
  height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pdp-vial-img {
  max-height: 290px;
  max-width: 90%;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7));
  transition: transform 0.3s ease;
}

.pdp-vial-img:hover {
  transform: scale(1.04);
}

.pdp-coa-slide {
  cursor: pointer;
}

.pdp-coa-preview-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(16, 185, 129, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pdp-coa-preview-frame:hover {
  transform: scale(1.02);
  border-color: #10b981;
}

.pdp-coa-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pdp-coa-inspect-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.45);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.pdp-coa-preview-frame:hover .pdp-coa-inspect-overlay {
  opacity: 1;
}

.btn-coa-zoom {
  background: #0284c7;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.5);
}

.pdp-protocol-card {
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.protocol-card-header {
  font-size: 0.95rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.protocol-specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.82rem;
}

.p-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #94a3b8;
}

.p-spec-row strong, .p-spec-row code {
  color: #f1f5f9;
}

.pdp-slide-caption {
  font-size: 0.84rem;
  color: #94a3b8;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.pdp-slide-caption.coa-caption {
  color: #10b981;
}

.jano-task-tag {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  font-size: 0.74rem;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: rgba(2, 6, 23, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.gallery-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.gallery-arrow.prev { left: 0.75rem; }
.gallery-arrow.next { right: 0.75rem; }

.pdp-gallery-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery-dot.active {
  width: 22px;
  border-radius: 4px;
  background: #38bdf8;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
}

.pdp-thumbnails-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  width: 100%;
  margin-top: 1.1rem;
}

.gallery-thumb-btn {
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery-thumb-btn:hover {
  border-color: rgba(56, 189, 248, 0.5);
  background: rgba(14, 165, 233, 0.08);
}

.gallery-thumb-btn.active {
  border-color: #38bdf8;
  background: rgba(14, 165, 233, 0.12);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
}

.gallery-thumb-btn.coa-thumb.active {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.3);
}

.thumb-media {
  width: 100%;
  height: 58px;
  background: #081126;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.thumb-media img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

.thumb-spec-icon {
  font-size: 1.3rem;
  background: rgba(15, 23, 42, 0.9);
}

.thumb-verified-badge {
  position: absolute;
  top: 3px;
  right: 3px;
  background: #10b981;
  color: #ffffff;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  font-size: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: #cbd5e1;
  text-align: center;
}

.main-vial-stage { padding: 2.25rem 0; }
.gallery-trust-pills { display: flex; gap: 0.85rem; margin-top: 1.25rem; flex-wrap: wrap; justify-content: center; }
.g-pill { background: var(--bg-secondary); border: 1px solid var(--border-highlight); font-size: 0.78rem; padding: 0.4rem 0.85rem; border-radius: 999px; color: var(--text-muted); font-weight: 600; }
.product-subcat-badge { font-size: 0.82rem; font-weight: 800; text-transform: uppercase; color: var(--accent-sky); letter-spacing: 0.06em; }
.pdp-title { font-size: 2.6rem; margin: 0.55rem 0 1.1rem; }
.pdp-price-row { display: flex; align-items: center; gap: 1.1rem; margin-bottom: 1.75rem; }
.pdp-price { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 900; color: #ffffff; }
.pdp-price.sale { color: var(--accent-sky); }
.pdp-save-pill { background: rgba(245, 158, 11, 0.16); border: 1px solid rgba(245, 158, 11, 0.45); color: #fbbf24; font-size: 0.84rem; font-weight: 800; padding: 0.3rem 0.7rem; border-radius: 999px; }
.pdp-stock-status { font-size: 0.88rem; font-weight: 700; }
.pdp-stock-status.in-stock { color: var(--emerald); }
.pdp-janoshik-box {
  background: var(--bg-secondary);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  margin-bottom: 1.75rem;
}

.janoshik-box-header { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.95rem; }
.j-seal { font-size: 1.6rem; color: #60a5fa; }
.janoshik-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; }
.j-stat { background: var(--bg-card); padding: 0.75rem; border-radius: var(--radius-sm); }
.j-label { display: block; font-size: 0.75rem; color: var(--text-muted); }
.j-val { font-size: 1rem; color: #ffffff; }
.tier-pricing-table-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 1.35rem; margin-bottom: 1.75rem; }
.tier-card-header { display: flex; align-items: center; gap: 0.55rem; font-size: 0.92rem; margin-bottom: 0.85rem; }
.tier-options-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.tier-opt { background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: var(--radius-sm); padding: 0.75rem 0.6rem; text-align: center; cursor: pointer; transition: all 0.15s; }
.tier-opt:hover, .tier-opt.highlight { border-color: var(--primary); background: rgba(37, 99, 235, 0.12); }
.tier-qty { display: block; font-size: 0.78rem; color: var(--text-muted); }
.tier-rate { display: block; font-size: 0.82rem; font-weight: 800; margin: 0.2rem 0; }
.tier-price { display: block; font-size: 0.9rem; font-weight: 900; color: #ffffff; }
.pdp-add-cart-row { display: flex; gap: 1.1rem; margin-bottom: 1.75rem; }
.pdp-quantity-selector { display: flex; align-items: center; background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: var(--radius-md); }
.pdp-qty-btn { background: transparent; border: none; color: #ffffff; font-size: 1.3rem; width: 46px; height: 54px; cursor: pointer; }
.pdp-qty-input { width: 54px; background: transparent; border: none; text-align: center; font-family: var(--font-heading); font-size: 1.15rem; font-weight: 800; color: #ffffff; }
.btn-add-main { flex: 1; }
.pdp-calc-banner {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(14, 165, 233, 0.06) 100%);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: var(--radius-md);
  padding: 0.95rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  cursor: pointer;
  margin-bottom: 1.75rem;
  transition: border-color 0.2s;
}

.pdp-calc-banner:hover { border-color: var(--primary); }
.pdp-shipping-box { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 1.1rem 1.35rem; display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.85rem; }
.ship-line { display: flex; align-items: center; gap: 0.85rem; }

/* Tabs */
.pdp-tabs-section { margin-bottom: 4.5rem; }
.pdp-tab-headers { display: flex; gap: 0.6rem; border-bottom: 1px solid var(--border-color); margin-bottom: 2.25rem; overflow-x: auto; }
.pdp-tab-btn { background: transparent; border: none; border-bottom: 2px solid transparent; color: var(--text-muted); font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; padding: 0.85rem 1.4rem; cursor: pointer; white-space: nowrap; }
.pdp-tab-btn.active { color: #ffffff; border-bottom-color: var(--primary); }
.tab-pane { display: none; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 2.25rem; }
.tab-pane.active { display: block; }
.specs-table { width: 100%; border-collapse: collapse; margin-top: 1.1rem; }
.specs-table tr { border-bottom: 1px solid var(--border-color); }
.spec-key { width: 35%; padding: 0.85rem 1.1rem; color: var(--text-muted); font-weight: 600; font-size: 0.9rem; }
.spec-val { padding: 0.85rem 1.1rem; color: #ffffff; font-size: 0.9rem; }
.ruo-alert-box { display: flex; gap: 1.35rem; background: rgba(245, 158, 11, 0.12); border: 1px solid rgba(245, 158, 11, 0.4); border-radius: var(--radius-md); padding: 1.6rem; }
.ruo-alert-box h4 { color: #fbbf24; margin-bottom: 0.55rem; }
.ruo-alert-box p { font-size: 0.9rem; color: var(--text-body); line-height: 1.55; }

/* Checkout */
.checkout-page-layout { display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 2.75rem; padding: 3.5rem 0 5.5rem; }
.form-card-section { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 1.85rem; margin-bottom: 1.75rem; }
.section-title { font-size: 1.2rem; margin-bottom: 1.35rem; display: flex; align-items: center; gap: 0.7rem; color: #ffffff; }
.shipping-option-card { background: var(--bg-secondary); border: 1px solid var(--primary); border-radius: var(--radius-md); padding: 1.35rem; }
.ship-title-row { display: flex; justify-content: space-between; font-weight: 800; color: #ffffff; margin-bottom: 0.4rem; }
.ship-price-tag { color: var(--accent-sky); }
.ship-eta, .ship-packaging-tag { font-size: 0.84rem; color: var(--text-muted); margin-top: 0.3rem; }
.payment-tabs { display: flex; gap: 0.6rem; margin-bottom: 1.35rem; }
.pay-tab { flex: 1; background: var(--bg-secondary); border: 1px solid var(--border-color); color: var(--text-body); font-family: var(--font-heading); font-size: 0.92rem; font-weight: 700; padding: 0.85rem; border-radius: var(--radius-md); cursor: pointer; transition: all 0.2s; }
.pay-tab.active { background: rgba(37, 99, 235, 0.16); border-color: var(--primary); color: #ffffff; box-shadow: 0 0 12px rgba(37, 99, 235, 0.25); }
.pay-tab i { margin-right: 0.4rem; }

/* Stripe Elements & Payment UI */
.stripe-payment-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.35rem;
}
.stripe-element-wrap {
  background: #070c14;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 0.95rem 1.15rem;
  transition: all var(--transition-fast);
  margin-top: 0.45rem;
  min-height: 44px;
}
.stripe-element-wrap.StripeElement--focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}
.stripe-element-wrap.StripeElement--invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
}
.stripe-direct-fields {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.stripe-direct-fields .form-input {
  background: #0b1120;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f8fafc;
  padding: 0.75rem 0.95rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: inherit;
}
.stripe-direct-fields .form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
}
.stripe-error-message {
  color: #f87171;
  font-size: 0.85rem;
  margin-top: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.stripe-badge-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.stripe-badge-banner .badge-pci {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--emerald);
  font-weight: 600;
}
.b2b-invoice-box {
  background: rgba(16, 185, 129, 0.07);
  border: 1px dashed rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-md);
  padding: 1.35rem;
}
.b2b-invoice-box h4 {
  font-size: 0.98rem;
  color: var(--emerald);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.b2b-invoice-box p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.invoice-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.95rem 1.5rem;
  background: #635bff;
  color: #ffffff;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 1rem;
  margin: 1.25rem 0 0.75rem;
  transition: opacity 0.2s;
}
.invoice-link-btn:hover {
  opacity: 0.92;
  color: #ffffff;
}
.gateway-sandbox-notice { background: rgba(37, 99, 235, 0.12); border: 1px solid rgba(59, 130, 246, 0.3); color: #93c5fd; font-size: 0.8rem; padding: 0.6rem 0.95rem; border-radius: var(--radius-sm); margin-top: 0.85rem; }
.checkbox-container { display: flex; align-items: flex-start; gap: 0.85rem; cursor: pointer; font-size: 0.88rem; }
.checkbox-container input { margin-top: 0.3rem; width: 19px; height: 19px; accent-color: var(--primary); }
.checkout-order-review-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 1.85rem; position: sticky; top: 95px; }
.review-title { font-size: 1.25rem; margin-bottom: 1.35rem; padding-bottom: 0.85rem; border-bottom: 1px solid var(--border-color); }
.review-item-row { display: flex; align-items: center; gap: 0.85rem; padding: 0.75rem 0; border-bottom: 1px solid var(--border-color); font-size: 0.88rem; }
.item-badge-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.review-totals { margin-top: 1.35rem; display: flex; flex-direction: column; gap: 0.55rem; font-size: 0.92rem; }
.review-totals .total-row { font-size: 1.3rem; }
.grand-total-amount { color: var(--accent-sky); }
.checkout-trust-box { margin-top: 1.6rem; border-top: 1px solid var(--border-color); padding-top: 1.35rem; display: flex; flex-direction: column; gap: 0.95rem; }
.trust-signal-item { display: flex; gap: 0.85rem; font-size: 0.84rem; }
.trust-signal-item i { color: #60a5fa; font-size: 1.2rem; }
.trust-signal-item p { color: var(--text-muted); font-size: 0.78rem; }

/* Order Success */
.order-success-container { max-width: 880px; margin: 3.5rem auto 5.5rem; }
.success-hero-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-xl); padding: 2.75rem; text-align: center; margin-bottom: 2.25rem; }
.success-check-icon { font-size: 3.8rem; color: var(--emerald); margin-bottom: 1.1rem; }
.order-id-pill { display: inline-block; background: var(--bg-secondary); border: 1px solid var(--border-highlight); padding: 0.55rem 1.35rem; border-radius: 999px; margin-top: 1.1rem; font-size: 0.92rem; font-weight: 700; }
.shipping-tracking-banner { background: linear-gradient(135deg, rgba(37, 99, 235, 0.18) 0%, rgba(14, 165, 233, 0.1) 100%); border: 1px solid var(--primary); border-radius: var(--radius-lg); padding: 1.6rem; display: flex; justify-content: space-between; align-items: center; margin-bottom: 2.25rem; }
.order-details-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2.25rem; }
.receipt-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.receipt-table th, .receipt-table td { padding: 0.85rem 0.6rem; border-bottom: 1px solid var(--border-color); }
.receipt-totals-box { margin: 1.35rem 0; display: flex; flex-direction: column; gap: 0.45rem; font-size: 0.9rem; }
.r-row { display: flex; justify-content: space-between; }
.r-row.total { border-top: 1px solid var(--border-color); padding-top: 0.6rem; font-size: 1.2rem; font-weight: 900; color: #ffffff; }

/* Admin */
.admin-panel-container { padding: 2.25rem 0 5.5rem; }
.admin-header-bar { display: flex; justify-content: space-between; align-items: center; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 1.35rem 1.85rem; margin-bottom: 1.75rem; }
.admin-brand { display: flex; align-items: center; gap: 1.1rem; }
.admin-brand i { font-size: 2.2rem; color: #60a5fa; }
.admin-nav-tabs { display: flex; gap: 0.6rem; margin-bottom: 2.25rem; overflow-x: auto; }
.admin-tab { background: var(--bg-card); border: 1px solid var(--border-color); color: var(--text-body); font-family: var(--font-heading); font-size: 0.92rem; font-weight: 700; padding: 0.85rem 1.35rem; border-radius: var(--radius-md); cursor: pointer; white-space: nowrap; }
.admin-tab.active { background: var(--primary); border-color: var(--primary); color: #ffffff; }
.admin-section { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 2.25rem; }
.section-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.75rem; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.admin-table th, .admin-table td { padding: 0.95rem 1.1rem; border-bottom: 1px solid var(--border-color); }
.admin-table th { background: var(--bg-secondary); color: var(--text-muted); font-size: 0.78rem; text-transform: uppercase; }
.admin-input-sm { background: var(--bg-secondary); border: 1px solid var(--border-highlight); color: #ffffff; padding: 0.4rem 0.6rem; border-radius: 4px; font-size: 0.88rem; width: 95px; }

/* Info Pages */
.info-page-container { max-width: 980px; }
.info-hero { margin-bottom: 3.25rem; }
.info-kicker { color: var(--accent-sky); font-weight: 800; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 0.6rem; }
.info-grid-2 { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3.25rem; align-items: center; }
.info-checklist { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.1rem; }
.info-checklist li { display: flex; gap: 0.85rem; font-size: 0.98rem; }
.info-media-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); overflow: hidden; }
.info-caption { padding: 0.85rem 1.1rem; font-size: 0.82rem; color: var(--text-muted); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2.75rem; }
.contact-form-card, .contact-info-card, .policy-card, .shipping-spec-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 2.25rem; }
.contact-item { display: flex; gap: 1.1rem; margin-bottom: 1.6rem; }
.contact-item i { color: #60a5fa; font-size: 1.35rem; margin-top: 0.2rem; }

/* FAQ */
.faq-accordion-wrap { display: flex; flex-direction: column; gap: 1.1rem; max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); overflow: hidden; cursor: pointer; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.35rem 1.6rem; }
.faq-question h4 { font-size: 1.1rem; }
.faq-answer { display: none; padding: 0 1.6rem 1.35rem; font-size: 0.95rem; color: var(--text-body); line-height: 1.55; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* Footer */
.site-footer { background: #03060f; border-top: 1px solid var(--border-color); padding: 4.5rem 0 2.25rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3.25rem; margin-bottom: 3.25rem; }
.footer-brand h3 { font-size: 1.35rem; color: #ffffff; margin-bottom: 0.3rem; }
.footer-tagline { font-size: 0.82rem; color: var(--accent-sky); font-weight: 800; display: block; margin-bottom: 1.1rem; }
.footer-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }
.footer-col h4 { font-size: 1rem; margin-bottom: 1.35rem; color: #ffffff; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; font-size: 0.9rem; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: #ffffff; }
.footer-disclaimer-box { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 1.35rem; margin-bottom: 2.25rem; font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.footer-bottom-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.84rem; color: var(--text-muted); border-top: 1px solid var(--border-color); padding-top: 1.75rem; }
.payment-badge-icons { display: flex; gap: 0.85rem; font-size: 1.5rem; color: var(--text-muted); }

/* Global Toast */
.global-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  color: #ffffff;
  padding: 0.95rem 1.35rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  z-index: 500;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.global-toast.show { transform: translateY(0); opacity: 1; }
.global-toast.success { border-color: var(--emerald); }
.global-toast.success i { color: var(--emerald); }
.global-toast.error i { color: var(--accent-rose); }

/* Responsive */
@media (max-width: 1024px) {
  .hero-container, .janoshik-spotlight-grid, .product-hero-grid, .checkout-page-layout, .info-grid-2, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }
  .category-cards-grid, .pillars-grid, .trust-bar-grid, .protocol-steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shop-body-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-search-wrap, .primary-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .primary-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 1.75rem;
  }
  .hero-title { font-size: 2.3rem; }
  .hero-metrics-grid { grid-template-columns: 1fr 1fr; }
  .calc-grid, .order-details-grid, .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
  .category-cards-grid, .pillars-grid, .trust-bar-grid, .testimonials-grid, .protocol-steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* Official Janoshik Test Report Document Styles */
.official-janoshik-dialog {
  max-width: 780px !important;
  background: #ffffff !important;
  color: #111827 !important;
  border-radius: 6px !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95) !important;
}

.janoshik-official-doc {
  padding: 3rem 3.25rem 2.5rem;
  background: #ffffff;
  color: #111827;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

.jano-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0.35rem;
}

.jano-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: #13703c;
  letter-spacing: -0.01em;
  line-height: 1;
}

.jano-brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.jano-brand-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: #111827;
  letter-spacing: 0.06em;
}

.jano-green-bar {
  height: 3.5px;
  background-color: #13703c;
  margin: 0.5rem 0 1.25rem;
}

.jano-meta-subbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.jano-task-pill {
  background: #f3f4f6;
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
  font-size: 0.92rem;
  display: inline-flex;
  gap: 0.85rem;
}

.jano-task-lbl {
  color: #111827;
  font-weight: 500;
}

.jano-task-val {
  color: #111827;
  font-weight: 700;
}

.jano-dates-block {
  text-align: right;
  font-size: 0.9rem;
}

.jano-date-line {
  margin-bottom: 0.25rem;
}

.jano-dt-lbl {
  color: #111827;
  font-weight: 500;
  margin-right: 0.5rem;
}

.jano-dt-val {
  color: #111827;
  font-weight: 600;
}

.jano-info-table {
  margin-bottom: 1.5rem;
}

.jano-info-row {
  display: flex;
  padding: 0.5rem 0.85rem;
  font-size: 0.92rem;
}

.jano-info-row.stripe {
  background: #f9fafb;
}

.jano-col-label {
  width: 175px;
  color: #111827;
  font-weight: 500;
  flex-shrink: 0;
}

.jano-col-value {
  flex: 1;
  color: #111827;
}

.jano-section-block {
  margin-bottom: 1.25rem;
}

.jano-sec-title {
  font-size: 0.92rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 0.35rem;
}

.jano-sec-box {
  background: #f9fafb;
  padding: 0.75rem 0.85rem;
  font-size: 0.92rem;
  color: #111827;
  min-height: 44px;
  border-radius: 2px;
}

.jano-sec-box.comments {
  min-height: 38px;
}

.jano-results-table {
  border: 1.5px solid #13703c;
  border-radius: 2px;
  overflow: hidden;
}

.jano-res-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1.5px solid #13703c;
}

.jano-res-row:last-child {
  border-bottom: none;
}

.jano-res-cell {
  padding: 0.6rem 0.85rem;
  font-size: 0.95rem;
  color: #111827;
}

.jano-res-cell.header {
  border-right: 1.5px solid #13703c;
  font-weight: 500;
}

.text-green-bold {
  color: #13703c !important;
  font-weight: 700;
}

.jano-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.25rem;
  padding-top: 0.75rem;
}

.jano-analysis-dt {
  font-size: 0.92rem;
}

.jano-analysis-val {
  font-weight: 600;
}

.jano-signature-block {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.jano-sig-lbl {
  font-size: 0.92rem;
  font-weight: 500;
}

.jano-sig-svg {
  display: inline-block;
}


/* Real Product 3D Vial Render Styles */
.vial-real-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.75rem 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vial-real-photo-wrap .vial-real-img {
  max-height: 200px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 15px rgba(37, 99, 235, 0.3));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .vial-real-photo-wrap .vial-real-img {
  transform: scale(1.08) translateY(-4px);
}

.vial-real-photo-wrap.large {
  padding: 1.5rem 0;
}

.vial-real-photo-wrap.large .vial-real-img {
  max-height: 380px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 25px rgba(37, 99, 235, 0.4));
}

/* Navigation Dropdown Menu */
.nav-item-dropdown {
  position: relative;
}

.nav-caret {
  font-size: 0.72rem;
  margin-left: 0.35rem;
  transition: transform 0.2s ease;
}

.nav-item-dropdown:hover .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 250px;
  background: #0d1633;
  border: 1px solid #1e3a8a;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9), 0 0 25px rgba(37, 99, 235, 0.3);
  list-style: none;
  padding: 0.6rem;
  display: none;
  z-index: 500;
}

.nav-item-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu li {
  margin-bottom: 2px;
}

.nav-dropdown-menu li:last-child {
  margin-bottom: 0;
}

.nav-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text-body);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.15s ease;
}

.nav-dropdown-menu li a:hover {
  background: rgba(37, 99, 235, 0.25);
  color: #ffffff;
  transform: translateX(4px);
}

/* Product Detail Options & Add-ons */
.pdp-options-section {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.pdp-options-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pdp-addons-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pdp-addon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.pdp-addon-item:hover {
  border-color: var(--primary);
}

.pdp-addon-item.selected {
  border-color: var(--emerald);
  background: rgba(16, 185, 129, 0.08);
}

.pdp-addon-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pdp-addon-left input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--emerald);
  cursor: pointer;
}

.pdp-addon-price {
  font-weight: 700;
  color: var(--emerald);
  font-size: 0.92rem;
}

/* Modal Popup Overlay */
.admin-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.admin-modal-card {
  background: #0d1633;
  border: 1px solid #1e3a8a;
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(37, 99, 235, 0.3);
}

.admin-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.admin-modal-header h3 {
  font-size: 1.35rem;
  color: #ffffff;
}

.admin-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.admin-modal-grid .full-width {
  grid-column: span 2;
}

/* ==========================================================================
   CART DRAWER & SLIDE-OUT PANEL STYLES
   ========================================================================== */

.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99990;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  background: linear-gradient(180deg, #0d1633 0%, #080e22 100%);
  border-left: 1px solid #1e3a8a;
  z-index: 99995;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(37, 99, 235, 0.25);
}

.cart-drawer.open {
  transform: translateX(0);
}

body.drawer-open {
  overflow: hidden;
}

.cart-drawer-header {
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(6, 12, 29, 0.9);
}

.cart-drawer-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-drawer-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(6, 12, 29, 0.6);
  border: 1px solid rgba(30, 58, 138, 0.4);
  border-radius: var(--radius-md);
  position: relative;
  transition: all 0.2s ease;
}

.cart-drawer-item:hover {
  border-color: #2563eb;
  background: rgba(13, 22, 51, 0.8);
}

.item-thumb-box {
  width: 60px;
  height: 60px;
  background: rgba(2, 6, 23, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.cart-item-photo {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
}

.item-vial-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.item-details {
  flex: 1;
  min-width: 0;
}

.item-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 2px;
}

.item-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-batch-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.12);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  white-space: nowrap;
}

.item-specs-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.item-pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.item-unit-price {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  background: rgba(2, 6, 23, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
}

.qty-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  width: 28px;
  height: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: background 0.15s;
}

.qty-btn:hover {
  background: rgba(37, 99, 235, 0.3);
  color: #60a5fa;
}

.qty-display {
  padding: 0 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  min-width: 22px;
  text-align: center;
}

.item-total-price {
  font-weight: 800;
  color: var(--emerald);
  font-size: 0.95rem;
}

.item-remove-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.15s;
}

.item-remove-btn:hover {
  color: #ef4444;
}

/* Empty Cart State */
.empty-cart-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  margin: auto 0;
}

.empty-cart-icon {
  width: 70px;
  height: 70px;
  background: rgba(37, 99, 235, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.empty-cart-state h3 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.empty-cart-state p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Cart Drawer Footer & Calculation */
.cart-drawer-footer {
  padding: 1.35rem 1.5rem;
  background: rgba(6, 12, 29, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.free-shipping-goal-card {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
}

.free-ship-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--text-body);
  margin-bottom: 0.5rem;
}

.free-ship-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.free-ship-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981 0%, #06b6d4 100%);
  border-radius: 999px;
  transition: width 0.3s ease;
}

.tier-discount-banner {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  font-size: 0.82rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tier-upsell-banner {
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: #93c5fd;
  font-size: 0.82rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-drawer-coupon-row {
  display: flex;
  gap: 0.5rem;
}

.drawer-coupon-input {
  flex: 1;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0 0.85rem;
  color: #ffffff;
  font-size: 0.85rem;
}

.drawer-coupon-input:focus {
  outline: none;
  border-color: var(--primary);
}

.cart-totals-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.breakdown-row.discount {
  color: #34d399;
}

.breakdown-row.total-row {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.25rem;
}

.grand-total-val {
  color: #34d399;
}

.cart-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.btn-proceed-checkout {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.btn-proceed-checkout:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.6);
  transform: translateY(-1px);
}

/* ==========================================================================
   FIGMA EXACT DESIGN: Trust & Standards / About Eagle Peptides Labs Section
   ========================================================================== */
.figma-trust-section {
  padding: 5.5rem 0 6.5rem 0;
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.08) 0%, transparent 65%);
}

.figma-kicker {
  font-size: 0.95rem;
  font-weight: 700;
  color: #38bdf8;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  display: block;
}

.figma-headline {
  font-size: 3.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.figma-headline .serif-italic {
  font-family: 'Playfair Display', 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: #38bdf8;
  padding-left: 0.15rem;
}

.figma-subheadline {
  font-size: 1.18rem;
  color: #cbd5e1;
  max-width: 820px;
  line-height: 1.6;
  margin-bottom: 3.5rem;
}

.figma-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

@media (max-width: 900px) {
  .figma-cards-grid {
    grid-template-columns: 1fr;
  }
  .figma-headline {
    font-size: 2.3rem;
  }
}

.figma-card {
  background: rgba(13, 22, 51, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(30, 58, 138, 0.45);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.figma-card:hover {
  border-color: rgba(56, 189, 248, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(14, 165, 233, 0.15);
}

.figma-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 16px rgba(14, 165, 233, 0.2);
}

.figma-card-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}

.figma-card-desc {
  font-size: 0.98rem;
  color: #94a3b8;
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   FIGMA SUB-HERO PILLARS STRIP (SCREENSHOT 2)
   ========================================================================== */
.figma-subhero-strip {
  background: #020617;
  border-bottom: 1px solid #0f172a;
  padding: 3.5rem 0 2.5rem 0;
  position: relative;
}

.figma-subhero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.figma-subhero-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.figma-subhero-icon {
  font-size: 2.2rem;
  color: #ffffff;
  opacity: 0.95;
}

.figma-subhero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: #ffffff;
  line-height: 1.35;
  text-transform: uppercase;
}

.figma-subhero-kicker-row {
  text-align: center;
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.figma-subhero-kicker-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.22em;
  color: #38bdf8;
  text-shadow: 0 0 22px rgba(56, 189, 248, 0.45);
}

/* ==========================================================================
   FIGMA FULL CATALOG / FEATURED SECTION (SCREENSHOT 4 & 5)
   ========================================================================== */
.figma-catalog-section {
  background: #ffffff;
  padding: 5rem 0 6rem 0;
}

.figma-catalog-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.75rem;
}

.figma-catalog-kicker {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0284c7;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.figma-catalog-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.btn-figma-full-shop {
  background: #0284c7;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-figma-full-shop:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.35);
}

/* Product Cards */
.figma-catalog-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.figma-catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(2, 132, 199, 0.15);
  border-color: #38bdf8;
}

.figma-cat-img-box {
  position: relative;
  background: radial-gradient(circle at 50% 45%, #ffffff 0%, #f8fafc 100%);
  height: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 1rem 1rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
  overflow: hidden;
}

.figma-cat-save-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0ea5e9;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  z-index: 2;
}

.figma-cat-img-frame {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.figma-cat-vial-img {
  max-height: 230px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.12));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.figma-catalog-card:hover .figma-cat-vial-img {
  transform: scale(1.08) translateY(-4px);
  filter: drop-shadow(0 18px 28px rgba(14, 165, 233, 0.25));
}

.figma-cat-body {
  padding: 1.25rem 1.25rem 1.5rem 1.25rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.figma-cat-kicker {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: #0284c7;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.figma-cat-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.22rem;
  color: #0f172a;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.2;
  cursor: pointer;
}

.figma-cat-strength {
  font-size: 0.88rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.figma-cat-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.figma-cat-reg-price {
  font-size: 0.92rem;
  color: #94a3b8;
  font-weight: 600;
}

.figma-cat-sale-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: #0284c7;
}

.btn-figma-full-cart {
  width: 100%;
  background: #0284c7;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.btn-figma-full-cart:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.45);
}

@media (max-width: 900px) {
  .figma-subhero-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .figma-catalog-title {
    font-size: 2.2rem;
  }
  .figma-catalog-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ==========================================================================
   FIGMA "FIND WHAT YOU'RE STUDYING" CATEGORY CHANNELS (SCREENSHOTS 3 & 4)
   ========================================================================== */
.figma-channels-section {
  background: #020617;
  padding: 6rem 0;
  position: relative;
  border-top: 1px solid #0f172a;
}

.figma-channels-header {
  margin-bottom: 4rem;
}

.figma-channels-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.figma-channels-subtitle {
  font-size: 1.15rem;
  color: #94a3b8;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.figma-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.figma-channel-card {
  background: rgba(13, 22, 51, 0.55);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(30, 58, 138, 0.45);
  border-radius: 20px;
  padding: 2.25rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.figma-channel-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.7);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 35px rgba(14, 165, 233, 0.2);
  background: rgba(13, 22, 51, 0.85);
}

.f-channel-art {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  opacity: 0.9;
  transition: transform 0.35s ease;
}

.figma-channel-card:hover .f-channel-art {
  transform: scale(1.1);
  opacity: 1;
}

.f-channel-num {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: #38bdf8;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

.f-channel-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.f-channel-desc {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.f-channel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.f-ch-pill {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
}

.f-ch-pill-amber {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.4);
  color: #fbbf24;
}

.f-channel-link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  transition: transform 0.2s ease;
}

.figma-channel-card:hover .f-channel-link {
  transform: translateX(4px);
  color: #7dd3fc;
}

/* ==========================================================================
   FIGMA VERIFIED TESTIMONIALS SECTION (SCREENSHOT 5)
   ========================================================================== */
.figma-testimonials-section {
  background: #020617;
  padding: 5.5rem 0 6.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.figma-test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.figma-test-card {
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.figma-test-stars {
  color: #f59e0b;
  font-size: 1.15rem;
  letter-spacing: 0.25rem;
  margin-bottom: 1.25rem;
}

.figma-test-quote {
  font-size: 1.05rem;
  color: #e2e8f0;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 400;
}

.figma-test-author-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.figma-test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.avatar-julia {
  background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
}

.avatar-david {
  background: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%);
}

.avatar-mike {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
}

.figma-test-author-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.figma-test-author-loc {
  font-size: 0.85rem;
  color: #94a3b8;
}

@media (max-width: 900px) {
  .figma-channels-grid {
    grid-template-columns: 1fr;
  }
  .figma-test-grid {
    grid-template-columns: 1fr;
  }
  .figma-channels-title {
    font-size: 2.5rem;
  }
}

/* ==========================================================================
   FIGMA COMMON QUESTIONS: BEFORE YOU ORDER (SCREENSHOT 1)
   ========================================================================== */
.figma-faq-section {
  background: #ffffff;
  padding: 6rem 0;
}

.figma-faq-header {
  margin-bottom: 3.5rem;
}

.figma-faq-kicker {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: #0284c7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.figma-faq-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.03em;
}

.figma-faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.figma-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  transition: all 0.2s ease;
}

.figma-faq-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.figma-faq-question {
  padding: 1.25rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  cursor: pointer;
  user-select: none;
}

.figma-faq-question i {
  color: #0ea5e9;
  font-size: 0.95rem;
  transition: transform 0.25s ease;
}

.figma-faq-item.active .figma-faq-question i {
  transform: rotate(180deg);
}

.figma-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.75rem;
  background: #f8fafc;
}

.figma-faq-item.active .figma-faq-answer {
  max-height: 200px;
  padding: 1rem 1.75rem 1.5rem 1.75rem;
  border-top: 1px solid #f1f5f9;
}

.figma-faq-answer p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.btn-figma-link {
  background: transparent;
  border: none;
  color: #0284c7;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.2s;
  margin-top: 1.5rem;
  display: inline-block;
}

.btn-figma-link:hover {
  color: #0369a1;
  text-decoration: underline;
}

/* ==========================================================================
   FIGMA RESEARCH & NEWS HUB (SCREENSHOT 2)
   ========================================================================== */
.figma-news-section {
  background: #ffffff;
  padding: 5rem 0 6rem 0;
  border-top: 1px solid #f1f5f9;
}

.figma-news-header-row {
  margin-bottom: 3.5rem;
}

.figma-news-kicker {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: #0284c7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
}

.figma-news-title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.figma-news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.figma-news-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.figma-news-card:hover {
  transform: translateY(-4px);
}

.figma-news-thumb-wrap {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  background: #0f172a;
  margin-bottom: 1.1rem;
}

.figma-news-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.figma-news-card:hover .figma-news-thumb {
  transform: scale(1.05);
}

.figma-news-tag {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: #0284c7;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: block;
}

.figma-news-headline {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.figma-news-card:hover .figma-news-headline {
  color: #0284c7;
}

.figma-news-meta {
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 500;
  margin-top: auto;
}

/* ==========================================================================
   FIGMA FOOTER (SCREENSHOT 3)
   ========================================================================== */
.figma-footer {
  background: #030816;
  border-top: 1px solid #0f172a;
  padding: 5.5rem 0 2.5rem 0;
  color: #ffffff;
}

.figma-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4.5rem;
}

.figma-footer-brand-col {
  display: flex;
  flex-direction: column;
}

.figma-footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.figma-footer-bio {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 360px;
}

.figma-footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.figma-social-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.figma-social-circle:hover {
  background: #0ea5e9;
  border-color: #0ea5e9;
  color: #ffffff;
  transform: translateY(-2px);
}

.figma-footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.figma-footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.figma-footer-nav-list a {
  color: #94a3b8;
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.figma-footer-nav-list a:hover {
  color: #38bdf8;
}

.figma-footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.figma-footer-email {
  color: #38bdf8;
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 600;
}

.figma-footer-address {
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.6;
}

.figma-footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: 0.88rem;
}

.figma-footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.figma-footer-legal-links a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.figma-footer-legal-links a:hover {
  color: #38bdf8;
}

@media (max-width: 1024px) {
  .figma-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .figma-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .figma-news-grid {
    grid-template-columns: 1fr;
  }
  .figma-footer-grid {
    grid-template-columns: 1fr;
  }
  .figma-footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   EAGLE LABS LUXURY DARK THEME AGE & RUO VERIFICATION GATE
   ========================================================================== */
.age-gate-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 99999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.age-gate-modal-overlay.active {
  display: flex;
  opacity: 1;
}

body.age-locked {
  overflow: hidden !important;
}

.age-gate-eagle-card {
  background: linear-gradient(145deg, rgba(13, 22, 51, 0.97) 0%, rgba(3, 7, 24, 0.99) 100%);
  border: 1px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.95), 0 0 60px rgba(14, 165, 233, 0.25);
  border-radius: 24px;
  max-width: 500px;
  width: 100%;
  padding: 2.75rem 2.25rem 2.25rem 2.25rem;
  text-align: center;
  position: relative;
  animation: eagleGateScaleIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes eagleGateScaleIn {
  0% { transform: scale(0.92) translateY(12px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.age-gate-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.age-gate-logo-svg {
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.5));
}

.age-gate-brand-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1;
}

.age-brand-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.age-brand-sub {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 0.22em;
}

.age-gate-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.5);
  color: #38bdf8;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.age-gate-title {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.85rem;
  letter-spacing: -0.03em;
}

.age-gate-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.age-gate-desc strong {
  color: #e2e8f0;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.btn-age-confirm {
  width: 100%;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.45);
}

.btn-age-confirm:hover {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.65);
}

.btn-age-exit {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  color: #94a3b8;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.btn-age-exit:hover {
  border-color: #ef4444;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
}

.age-gate-disclaimer {
  background: rgba(2, 6, 23, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-align: left;
}

.age-gate-disclaimer strong {
  color: #cbd5e1;
}

@media (max-width: 640px) {
  .age-gate-eagle-card {
    padding: 2.25rem 1.5rem 1.75rem 1.5rem;
  }
  .age-gate-title {
    font-size: 1.75rem;
  }
}

/* ==========================================================================
   FIGMA SHOP PAGE & PRODUCTS CATALOG SEPARATE STYLES (SCREENSHOTS 1 & 2)
   ========================================================================== */
/* Shop Product Card (Screenshot 1) */
.figma-shop-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
}

.figma-shop-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.figma-shop-img-box {
  background: radial-gradient(circle at 50% 45%, #ffffff 0%, #f8fafc 100%);
  height: 270px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  padding: 1.25rem 1rem 1rem 1rem;
  border-bottom: 1px solid #f1f5f9;
}

.figma-shop-save-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0284c7;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 0.28rem 0.65rem;
  border-radius: 6px;
  letter-spacing: 0.04em;
  z-index: 2;
}

.figma-shop-img-frame {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.figma-shop-vial-img {
  max-height: 230px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.12));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.figma-shop-card:hover .figma-shop-vial-img {
  transform: scale(1.08) translateY(-4px);
  filter: drop-shadow(0 18px 28px rgba(2, 132, 199, 0.25));
}

.figma-shop-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.figma-shop-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  cursor: pointer;
}

.figma-shop-title:hover {
  color: #0284c7;
}

.figma-shop-badges-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.badge-coa-blue {
  background: #0284c7;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.22rem 0.6rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.badge-ships-amber {
  background: #fef3c7;
  color: #b45309;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.22rem 0.6rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.figma-shop-price-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  margin-top: auto;
}

.badge-save-pill {
  background: #0284c7;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.strike-reg-price {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 0.95rem;
  font-weight: 600;
}

.sale-price-blue {
  color: #0284c7;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.35rem;
}

/* All Products Page Styles (Screenshot 2) */
.figma-products-hero-header {
  margin-bottom: 2rem;
}

.figma-products-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.figma-products-subtitle {
  font-size: 1.1rem;
  color: #64748b;
}

.figma-products-controls-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.figma-products-search-pill {
  position: relative;
  flex: 1;
  max-width: 480px;
}

.figma-products-search-pill i {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}

.figma-products-search-pill input {
  width: 100%;
  padding: 0.85rem 1.25rem 0.85rem 3rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #ffffff;
  font-size: 0.95rem;
  color: #0f172a;
  outline: none;
  transition: all 0.2s ease;
}

.figma-products-search-pill input:focus {
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.figma-products-sort-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.05em;
}

.figma-products-sort-pill select {
  padding: 0.75rem 1.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  outline: none;
}

.figma-compounds-kicker-bar {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.figma-category-pills-bar {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 2.5rem;
}

.figma-cat-pill-btn {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid transparent;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.figma-cat-pill-btn:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.figma-cat-pill-btn.active {
  background: #0f172a;
  color: #ffffff;
}

/* Dual Badges on Product Detail Card (Screenshot 2) */
.figma-bestseller-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #000000;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.7rem;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  letter-spacing: 0.04em;
  z-index: 2;
}

.figma-cat-save-badge-right {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #0284c7;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 0.28rem 0.65rem;
  border-radius: 6px;
  letter-spacing: 0.04em;
  z-index: 2;
}

/* ==========================================================================
   ACCOUNT PAGE RESEARCHER DASHBOARD STYLES
   ========================================================================== */
.account-page-container {
  max-width: 1000px;
  margin: 0 auto;
}

.account-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.account-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
}

.account-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.account-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem;
  background: rgba(5, 10, 23, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.order-card-row:hover {
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(14, 165, 233, 0.04);
}

.order-summary-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.order-summary-left strong {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 1.05rem;
}

.badge-status-processing {
  font-size: 0.72rem;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(14, 165, 233, 0.12);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  display: inline-block;
  margin-top: 0.35rem;
  width: fit-content;
}

.order-summary-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.order-summary-right strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #10b981;
}


/* ==========================================================================
   FIGMA SHOP PAGE & HORIZONTAL 4-COLUMN PRODUCT GRID (EXACT SCREENSHOT 1 MATCH)
   ========================================================================== */
.shop-page-container {
  background: #f8fafc !important;
  min-height: 100vh;
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}

.shop-page-container .container {
  max-width: 1360px;
}

/* 1. Full-Width Top Search Bar (Picture 1 Exact Match) */
.figma-shop-search-bar {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 15px 22px;
  margin-bottom: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

.figma-shop-search-bar:focus-within {
  border-color: #0284c7;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}

.figma-shop-search-bar i {
  color: #94a3b8;
  font-size: 16px;
  margin-right: 14px;
}

.figma-shop-search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: #0f172a;
  outline: none;
}

.figma-shop-search-bar input::placeholder {
  color: #94a3b8;
}

/* 2. Shop Body Grid (Sidebar + Main Content) */
.shop-body-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: start;
}

/* 3. Left Sidebar Filter Card (Picture 1 Exact Match) */
.figma-sidebar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.figma-filter-group {
  display: flex;
  flex-direction: column;
}

.figma-filter-heading {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.figma-checkbox-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  cursor: pointer;
  user-select: none;
  font-size: 13.5px;
  color: #334155;
  transition: all 0.15s ease;
}

.figma-checkbox-item:hover {
  color: #0284c7;
}

.figma-checkbox-item > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.figma-checkbox-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  border: 1.5px solid #cbd5e1;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  display: grid;
  place-content: center;
  transition: all 0.15s ease;
  background: #ffffff;
  margin: 0;
}

.figma-checkbox-item input[type="checkbox"]:checked {
  background: #0284c7;
  border-color: #0284c7;
}

.figma-checkbox-item input[type="checkbox"]:checked::before {
  content: "";
  width: 9px;
  height: 9px;
  background-color: #ffffff;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.figma-checkbox-item span {
  font-weight: 500;
  line-height: 1.3;
}

.figma-checkbox-count {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 500;
  margin-left: 8px;
}

/* 4. Products Count Header */
.figma-products-count-header {
  font-family: var(--font-body);
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 18px;
}

/* ==========================================================================
   FIGMA SHOP & CATALOG PAGE (EXACT IMAGE 1 MATCH - CATEGORIES ON TOP, NO SIDEBAR)
   ========================================================================== */
.shop-page-container,
.figma-catalog-wrapper {
  background: #f8fafc !important;
  min-height: 100vh;
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.shop-page-container .container,
.figma-catalog-wrapper .container {
  max-width: 1400px;
}

/* 1. Kicker Meta Stats Bar (Image 1 Exact Match) */
.figma-compounds-kicker-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.figma-compounds-kicker-bar .kicker-divider {
  color: #cbd5e1;
  font-weight: 400;
}

/* 2. Top Horizontal Category Pills Bar (Image 1 Exact Match) */
.figma-category-pills-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 28px;
  scrollbar-width: none;
}

.figma-category-pills-bar::-webkit-scrollbar {
  display: none;
}

.figma-cat-pill-btn {
  background: #ffffff;
  color: #334155;
  border: 1px solid #cbd5e1;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.figma-cat-pill-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #94a3b8;
}

.figma-cat-pill-btn.active {
  background: #1e5a8a;
  color: #ffffff;
  border-color: #1e5a8a;
  box-shadow: 0 4px 12px rgba(30, 90, 138, 0.25);
}

/* 3. Full-Width 4-Column Horizontal Product Grid (Image 1 Exact Match) */
.figma-catalog-grid,
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  width: 100%;
}

@media (max-width: 1280px) {
  .figma-catalog-grid,
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .figma-catalog-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .figma-catalog-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* 4. Product Card Component (Image 1 Exact Match) */
.figma-shop-card,
.figma-catalog-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
  text-decoration: none;
}

.figma-shop-card:hover,
.figma-catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

/* Top Image Container: Deep Studio Ocean Blue Gradient */
.figma-shop-img-box,
.figma-cat-img-box {
  position: relative;
  height: 310px;
  background: linear-gradient(180deg, #103459 0%, #1a4a77 50%, #2f6999 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.figma-shop-img-box::before,
.figma-cat-img-box::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 15%;
  right: 15%;
  bottom: 20%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

/* Top-Left Best Seller Badge */
.figma-bestseller-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #000000;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  z-index: 2;
}

/* Top-Right Save Badge */
.figma-shop-save-badge,
.figma-cat-save-badge-right {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #0284c7;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}

.figma-shop-img-frame,
.figma-cat-img-frame {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.figma-shop-vial-img,
.figma-cat-vial-img {
  max-width: 82%;
  max-height: 92%;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.45));
  transition: transform 0.3s ease;
  background: transparent !important;
}

.figma-shop-card:hover .figma-shop-vial-img,
.figma-catalog-card:hover .figma-cat-vial-img {
  transform: scale(1.05);
}

/* Bottom White Body */
.figma-shop-body,
.figma-cat-body {
  padding: 20px 18px 22px 18px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.figma-shop-title,
.figma-cat-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

/* Pricing Line */
.figma-shop-pricing-line,
.figma-cat-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 2px;
}

.strike-reg-price,
.figma-cat-reg-price.strike {
  color: #94a3b8;
  font-size: 15px;
  text-decoration: line-through;
  font-weight: 500;
}

.sale-price-blue,
.figma-cat-sale-price {
  color: #0284c7;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
}

/* Subcategory Line */
.figma-shop-subcat-line {
  font-size: 13.5px;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 8px;
}

/* Shop Specific Badges & Layout (Sidebar Mode) */
.figma-shop-save-badge-left {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #0284c7;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.figma-shop-badges-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.badge-coa-blue {
  background: #0284c7;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge-ships-amber {
  background: #fef3c7;
  color: #b45309;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.figma-shop-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.badge-save-pill {
  background: #0284c7;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

/* Shop Layout with Left Sidebar */
.shop-layout-container {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: start;
}

.shop-main-content .products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

@media (max-width: 1380px) {
  .shop-main-content .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .shop-layout-container {
    grid-template-columns: 1fr;
  }
  .shop-main-content .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .shop-main-content .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   BRIGHT BLUE FIGMA "ADD TO CART" BUTTON (HOME, SHOP & PRODUCTS SECTIONS)
   ========================================================================== */
.btn-figma-card-action,
.figma-cat-btn,
.btn-figma-full-cart {
  width: 100% !important;
  background: #0284c7 !important;
  color: #ffffff !important;
  border: none !important;
  font-family: var(--font-heading), 'Plus Jakarta Sans', sans-serif !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  padding: 11px 16px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  margin-top: 10px !important;
  transition: all 0.22s ease !important;
  text-align: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  box-shadow: 0 3px 10px rgba(2, 132, 199, 0.3) !important;
  outline: none !important;
  user-select: none !important;
  text-decoration: none !important;
}

.btn-figma-card-action:hover,
.figma-cat-btn:hover,
.btn-figma-full-cart:hover {
  background: #0369a1 !important;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.45) !important;
  transform: translateY(-2px) !important;
}

.btn-figma-card-action:active,
.figma-cat-btn:active,
.btn-figma-full-cart:active {
  transform: translateY(0) !important;
}

.btn-figma-card-action i,
.figma-cat-btn i,
.btn-figma-full-cart i {
  font-size: 13px !important;
  color: #ffffff !important;
}

/* ==========================================================================
   FIGMA SUBPAGE HERO BANNER (EXPANDED FULL-BLEED GRAND HERO)
   ========================================================================== */
.figma-subpage-hero-banner {
  position: relative;
  width: 100%;
  min-height: 460px;
  background-color: #021127;
  background-image: url('../assets/images/figma_subpage_banner.jpg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(56, 189, 248, 0.15);
}

.figma-subpage-hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 55%;
  background: linear-gradient(90deg, #021127 0%, rgba(2, 17, 39, 0.95) 40%, rgba(2, 17, 39, 0.4) 75%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.figma-subpage-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.figma-subpage-hero-content {
  max-width: 560px;
  padding: 3.5rem 0;
}

.figma-subpage-hero-title {
  font-family: var(--font-heading), 'Plus Jakarta Sans', sans-serif;
  font-size: 3.75rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 1.25rem 0;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
}

.figma-subpage-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--font-heading), 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.figma-subpage-breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
  opacity: 0.9;
}

.figma-subpage-breadcrumbs a:hover {
  color: #38bdf8;
  opacity: 1;
}

.figma-subpage-breadcrumbs .breadcrumb-separator {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38bdf8;
  opacity: 0.8;
}

.figma-subpage-breadcrumbs .breadcrumb-current {
  color: #38bdf8;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .figma-subpage-hero-banner {
    min-height: 380px;
    background-position: 70% center;
  }
  .figma-subpage-hero-title {
    font-size: 2.85rem;
  }
}

@media (max-width: 640px) {
  .figma-subpage-hero-banner {
    min-height: 280px;
    background-position: 80% center;
  }
  .figma-subpage-hero-banner::before {
    width: 100%;
    background: linear-gradient(90deg, #021127 0%, rgba(2, 17, 39, 0.92) 60%, rgba(2, 17, 39, 0.75) 100%);
  }
  .figma-subpage-hero-title {
    font-size: 2.25rem;
  }
}
/* ==========================================================================
   DISCORD PROMOTIONAL FLOATING WIDGET & HOMEPAGE BANNER
   ========================================================================== */

/* Floating Corner Widget */
.discord-promo-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 998;
  max-width: 440px;
  width: calc(100vw - 48px);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.97) 0%, rgba(88, 101, 242, 0.18) 100%);
  border: 1px solid rgba(88, 101, 242, 0.45);
  border-radius: 18px;
  padding: 1.35rem 1.45rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(88, 101, 242, 0.3);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.discord-promo-widget.animate-slide-in {
  animation: discordSlideIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.discord-promo-widget.animate-slide-out {
  animation: discordSlideOut 0.25s ease forwards;
}

@keyframes discordSlideIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.94);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes discordSlideOut {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
}

.discord-promo-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(88, 101, 242, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.discord-promo-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s;
  z-index: 3;
}

.discord-promo-close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.discord-promo-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.discord-tag {
  background: #5865F2;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.04em;
}

.free-gift-tag {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.discord-promo-content {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 1.15rem;
}

.discord-icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: #5865F2;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(88, 101, 242, 0.45);
}

.discord-text-block {
  flex: 1;
}

.discord-promo-title {
  font-family: var(--font-heading), 'Plus Jakarta Sans', sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.35rem 0;
  line-height: 1.35;
}

.highlight-emerald {
  color: #34d399;
  text-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

.discord-promo-desc {
  font-size: 0.84rem;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.45;
}

.discord-promo-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-discord-join {
  flex: 1;
  min-width: 150px;
  background: #5865F2;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(88, 101, 242, 0.4);
  transition: all 0.2s ease;
}

.btn-discord-join:hover {
  background: #4752c4;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88, 101, 242, 0.55);
}

.btn-discord-view-gift {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f1f5f9;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 14px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-discord-view-gift:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* Collapsed Floating Launcher Pill */
.discord-promo-launcher {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 997;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  border: 1.5px solid #5865F2;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(88, 101, 242, 0.35);
  transition: all 0.25s ease;
  position: fixed;
}

.discord-promo-launcher:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.6), 0 0 28px rgba(88, 101, 242, 0.5);
  border-color: #7289da;
}

.text-blurple {
  color: #5865F2;
  font-size: 1.1rem;
}

.launcher-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.2); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Homepage Hero Discord Banner */
.discord-community-section {
  padding: 3.5rem 0;
}

.discord-hero-banner {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(88, 101, 242, 0.22) 50%, rgba(5, 10, 23, 0.98) 100%);
  border: 1.5px solid rgba(88, 101, 242, 0.35);
  border-radius: 24px;
  padding: 3rem 3.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 45px rgba(88, 101, 242, 0.2);
  position: relative;
  overflow: hidden;
}

.discord-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.discord-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.25rem;
}

.discord-live-pill {
  background: #5865F2;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.discord-gift-pill {
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.45);
  color: #34d399;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.discord-banner-title {
  font-family: var(--font-heading), 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.discord-banner-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 680px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.discord-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-discord-join-lg {
  background: #5865F2;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.02rem;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(88, 101, 242, 0.45);
  transition: all 0.22s ease;
}

.btn-discord-join-lg:hover {
  background: #4752c4;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
}

.btn-discord-secondary-lg {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 24px;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.22s ease;
}

.btn-discord-secondary-lg:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.discord-gift-visual {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gift-vial-img {
  max-width: 170px;
  max-height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 25px rgba(16, 185, 129, 0.35));
  animation: floatVial 4s ease-in-out infinite;
}

@keyframes floatVial {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.gift-tag-floating {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #10b981;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11.5px;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.5);
}

@media (max-width: 900px) {
  .discord-hero-banner {
    padding: 2.25rem 1.75rem;
  }
  .discord-banner-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .discord-badge-row {
    justify-content: center;
  }
  .discord-banner-desc {
    margin: 0 auto 1.75rem auto;
  }
  .discord-banner-actions {
    justify-content: center;
  }
  .discord-gift-visual {
    margin: 0 auto;
  }
}

@media (max-width: 500px) {
  .discord-promo-widget {
    bottom: 14px;
    left: 14px;
    width: calc(100vw - 28px);
    padding: 1.15rem;
  }
  .discord-promo-launcher {
    bottom: 14px;
    left: 14px;
  }
}

/* ==========================================================================
   AFFILIATE & PARTNER PROGRAM STYLES
   ========================================================================== */
.affiliate-page-container,
.partner-dashboard-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Hero Pitch Banner */
.affiliate-hero-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(2, 132, 199, 0.15) 50%, rgba(5, 10, 23, 0.98) 100%);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(2, 132, 199, 0.2);
  margin-bottom: 3.5rem;
}

.affiliate-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}

.affiliate-hero-title {
  font-family: var(--font-heading), 'Plus Jakarta Sans', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.affiliate-hero-desc {
  font-size: 1.1rem;
  color: #cbd5e1;
  max-width: 780px;
  line-height: 1.65;
  margin-bottom: 2.25rem;
}

.affiliate-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
}

.aff-stat-box {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.aff-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #38bdf8;
}

.aff-stat-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Steps Grid */
.affiliate-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.aff-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}

.aff-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.4);
}

.aff-step-num {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
}

.aff-step-icon {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}

.aff-step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.aff-step-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

/* Registration Form Card */
.affiliate-form-wrapper {
  max-width: 780px;
  margin: 3.5rem auto 0;
}

.affiliate-form-card {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96) 0%, rgba(5, 10, 23, 0.98) 100%);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: var(--radius-xl);
  padding: 3rem 2.75rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(2, 132, 199, 0.2);
}

.affiliate-form-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

/* ==========================================================================
   AUTHENTICATED PARTNER DASHBOARD
   ========================================================================== */
.partner-header-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-xl);
  padding: 1.75rem 2.25rem;
  backdrop-filter: blur(16px);
  gap: 1.5rem;
  flex-wrap: wrap;
}

.partner-header-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.partner-avatar {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0284c7 0%, #10b981 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
}

.partner-name-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.3rem;
  flex-wrap: wrap;
}

.partner-name-row h2 {
  font-size: 1.5rem;
  margin: 0;
  color: #ffffff;
}

.badge-partner-tier {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: #fbbf24;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.partner-meta {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
}

.partner-header-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* KPI Cards Grid */
.partner-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.kpi-card {
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1.15rem;
  align-items: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s;
}

.kpi-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.35);
}

.kpi-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.kpi-icon-wrap.emerald { background: rgba(16, 185, 129, 0.15); color: #34d399; }
.kpi-icon-wrap.sky { background: rgba(2, 132, 199, 0.15); color: #38bdf8; }
.kpi-icon-wrap.cyan { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }
.kpi-icon-wrap.purple { background: rgba(168, 85, 247, 0.15); color: #c084fc; }

.kpi-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.kpi-val {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0.15rem 0;
}

.kpi-sub {
  font-size: 0.78rem;
  color: #94a3b8;
}

/* Tools Card & Copy Inputs */
.partner-tools-card,
.partner-activity-card,
.partner-assets-card {
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
}

.tools-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tools-card-header h3 {
  font-size: 1.35rem;
  margin: 0;
  color: #ffffff;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.tool-box {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.4rem;
}

.copy-input-group {
  display: flex;
  gap: 8px;
  margin: 0.5rem 0 0.4rem 0;
}

.copy-input-group .form-input {
  background: #0f172a;
  color: #38bdf8;
  font-family: monospace;
}

.tool-help-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* Deep Link Builder */
.deep-link-builder {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.4rem;
}

.deep-link-row {
  display: grid;
  grid-template-columns: 200px 220px 1fr auto;
  gap: 10px;
  align-items: center;
}

/* Partner Orders Table */
.partner-orders-table th {
  background: rgba(15, 23, 42, 0.8);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 16px;
}

.partner-orders-table td {
  padding: 14px 16px;
  font-size: 0.9rem;
}

.compound-tag {
  background: rgba(2, 132, 199, 0.15);
  color: #38bdf8;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* Assets Media Kit */
.assets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.asset-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.asset-preview {
  width: 70px;
  height: 70px;
  background: #0f172a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.asset-img-thumb {
  max-width: 55px;
  max-height: 55px;
  object-fit: contain;
}

.asset-desc strong {
  color: #ffffff;
  font-size: 0.92rem;
  display: block;
}

/* Customer Portal Partner Card */
.partner-portal-cta-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(2, 132, 199, 0.15) 100%) !important;
  border: 1px solid rgba(56, 189, 248, 0.3) !important;
}

.partner-cta-pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .affiliate-stats-row,
  .partner-kpi-grid,
  .affiliate-steps-grid,
  .assets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tools-grid {
    grid-template-columns: 1fr;
  }
  .deep-link-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .affiliate-hero-card {
    padding: 2.25rem 1.5rem;
  }
  .affiliate-hero-title {
    font-size: 1.9rem;
  }
  .affiliate-stats-row,
  .partner-kpi-grid,
  .affiliate-steps-grid,
  .assets-grid {
    grid-template-columns: 1fr;
  }
  .partner-header-card {
    padding: 1.5rem;
  }
  .affiliate-form-card {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   COMPREHENSIVE MOBILE OPTIMIZATION (Phones ≤ 480px)
   ========================================================================== */

/* ── Tablet adjustments (≤ 768px) ──────────────────────────── */
@media (max-width: 768px) {

  /* Smaller header on mobile */
  .header-inner {
    height: 60px;
    gap: 0.75rem;
  }

  .navbar-eagle-logo {
    height: 30px;
    max-width: 120px;
  }

  /* Reduce section paddings */
  .section, section {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Section headings */
  .section-title, h2 {
    font-size: 1.6rem !important;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  /* Hero */
  .hero-title {
    font-size: 1.9rem !important;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  /* Announcement bar */
  .announcement-bar {
    font-size: 0.72rem;
    padding: 0.4rem 0.5rem;
  }

  /* Calculator Card */
  .peptide-calculator-card {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .calc-title {
    font-size: 1.35rem !important;
  }

  .calc-subtitle {
    font-size: 0.85rem;
  }

  /* Calculator auth session bar */
  .calc-auth-session-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }

  .session-name {
    flex-wrap: wrap;
    font-size: 0.85rem;
  }

  /* Preset bar wrap */
  .calc-preset-bar {
    flex-direction: column;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .preset-buttons {
    width: 100%;
  }

  .preset-btn {
    font-size: 0.75rem;
    padding: 0.35rem 0.65rem;
  }

  /* Syringe SVG - prevent clipping */
  .syringe-svg-wrapper,
  .syringe-render-mount,
  .visual-syringe-card {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .syringe-svg-canvas {
    min-width: 420px;
  }

  /* Calculator metrics (from JS inline) */
  .calc-metrics-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.6rem !important;
  }

  .calc-metric-box {
    padding: 0.75rem !important;
  }

  .calc-metric-box .m-label {
    font-size: 0.7rem !important;
  }

  .calc-metric-box .m-val {
    font-size: 0.95rem !important;
  }

  /* Protocol steps */
  .protocol-steps-grid {
    grid-template-columns: 1fr !important;
  }

  /* Product detail page */
  .product-hero-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }

  /* Gallery stage */
  .pdp-gallery-stage {
    border-radius: 12px;
  }

  /* Detail breadcrumbs */
  .detail-breadcrumbs {
    font-size: 0.78rem;
    flex-wrap: wrap;
  }

  /* Product detail info */
  .pdp-info-title {
    font-size: 1.5rem !important;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  /* Cart drawer full-width */
  .cart-drawer {
    max-width: 100%;
  }

  /* COA library */
  .coa-library-container {
    padding: 2rem 0 3rem;
  }

  /* Janoshik official doc */
  .janoshik-official-doc {
    padding: 1.5rem 1.25rem 1.5rem;
  }

  .jano-title {
    font-size: 1.5rem;
  }

  .jano-meta-subbar {
    flex-direction: column;
    gap: 0.75rem;
  }

  .jano-dates-block {
    text-align: left;
  }

  .jano-footer-row {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  /* Admin modal */
  .admin-modal-grid {
    grid-template-columns: 1fr;
  }

  .admin-modal-grid .full-width {
    grid-column: span 1;
  }

  /* Mobile nav dropdown */
  .primary-nav.mobile-open {
    padding: 1.25rem;
    gap: 0.25rem;
  }

  .primary-nav.mobile-open li {
    width: 100%;
  }

  .primary-nav.mobile-open .nav-link {
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
  }

  .primary-nav.mobile-open .nav-link:hover,
  .primary-nav.mobile-open .nav-link.active {
    background: rgba(37, 99, 235, 0.2);
  }

  /* FAQ page */
  .faq-item-header {
    padding: 1rem;
  }

  .faq-item-body {
    padding: 0 1rem 1rem;
  }
}

/* ── Small phones (≤ 480px) ────────────────────────────────── */
@media (max-width: 480px) {

  /* Even smaller header */
  .header-inner {
    height: 54px;
    gap: 0.5rem;
    padding: 0 0.75rem;
  }

  .figma-circle-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .mobile-menu-toggle {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .navbar-eagle-logo {
    height: 26px;
    max-width: 100px;
  }

  /* Sections breathing room */
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .section, section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  /* Hero */
  .hero-title {
    font-size: 1.55rem !important;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    line-height: 1.45;
  }

  .hero-metrics-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem;
  }

  /* Announcement bar */
  .announcement-bar {
    font-size: 0.68rem;
    padding: 0.35rem 0.5rem;
    line-height: 1.35;
  }

  /* Shop page search bar */
  .figma-shop-search-bar {
    padding: 0.65rem 0.85rem;
  }

  .figma-shop-search-bar input {
    font-size: 0.85rem;
  }

  /* Shop sidebar (already stacked at 1024px) */
  .figma-sidebar-card {
    padding: 1rem;
  }

  /* Product cards on small phones: single column */
  .figma-catalog-grid,
  .products-grid,
  .shop-main-content .products-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  /* Calculator card */
  .peptide-calculator-card {
    padding: 1rem 0.85rem;
  }

  .calc-title {
    font-size: 1.15rem !important;
    line-height: 1.25;
  }

  .calc-subtitle {
    font-size: 0.8rem;
  }

  .calc-badge {
    font-size: 0.72rem;
    padding: 0.3rem 0.75rem;
  }

  /* Calculator grid stack */
  .calc-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  /* Calculator metrics 2x2 on small phones → 1 column */
  .calc-metrics-grid {
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
  }

  .calc-metric-box {
    padding: 0.65rem 0.75rem !important;
  }

  /* Draw highlight card */
  .draw-highlight-card {
    padding: 1rem !important;
  }

  .draw-units-number {
    font-size: 2.25rem !important;
  }

  .draw-sub-text {
    font-size: 0.82rem !important;
  }

  /* Visual syringe card */
  .visual-syringe-card {
    padding: 0.75rem !important;
  }

  .syringe-card-top {
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start !important;
  }

  .syringe-type-tag {
    font-size: 0.72rem !important;
  }

  /* Syringe SVG smaller viewport */
  .syringe-svg-canvas {
    min-width: 380px;
  }

  /* Preset buttons wrap even tighter */
  .preset-btn {
    font-size: 0.7rem;
    padding: 0.3rem 0.55rem;
  }

  /* Protocol steps */
  .step-card {
    padding: 1rem;
  }

  .step-content h4 {
    font-size: 0.92rem;
  }

  .step-content p {
    font-size: 0.78rem;
  }

  /* Product detail title */
  .pdp-info-title {
    font-size: 1.3rem !important;
  }

  /* Product detail options */
  .pdp-options-section {
    padding: 1rem;
  }

  .pdp-addon-item {
    padding: 0.6rem 0.75rem;
  }

  /* Category cards */
  .category-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .cat-card {
    padding: 1.5rem 1.25rem;
  }

  /* Pillars */
  .pillars-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .pillar-card {
    padding: 1.5rem 1.25rem;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .test-card {
    padding: 1.5rem;
  }

  /* Trust bar */
  .trust-bar-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem;
  }

  /* Janoshik spotlight grid */
  .janoshik-spotlight-grid {
    gap: 1.5rem !important;
  }

  /* Contact grid */
  .contact-grid {
    gap: 1.5rem;
  }

  /* Info grid */
  .info-grid-2 {
    gap: 1.5rem;
  }

  /* Results stats grid */
  .results-stats-grid {
    grid-template-columns: 1fr !important;
    gap: 0.6rem;
  }

  /* Big result number */
  .units-val {
    font-size: 2.8rem;
  }

  /* Footer */
  .site-footer {
    padding: 2rem 0 1.5rem;
  }

  .footer-eagle-logo {
    height: 45px;
    max-width: 150px;
  }

  /* Cart drawer */
  .cart-drawer-header {
    padding: 1rem 1.15rem;
  }

  .cart-drawer-items {
    padding: 1rem 1.15rem;
  }

  .cart-drawer-footer {
    padding: 1rem 1.15rem;
  }

  .cart-drawer-item {
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .item-thumb-box {
    width: 48px;
    height: 48px;
  }

  .item-name {
    font-size: 0.85rem;
  }

  /* COA library */
  .coa-hero-banner {
    margin: 0 auto 1.75rem;
  }

  .coa-hero-banner h2 {
    font-size: 1.5rem !important;
  }

  /* Global toast */
  .global-toast {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: none;
    transform: none;
    font-size: 0.85rem;
    padding: 0.85rem 1rem;
  }

  /* Official Janoshik dialog */
  .official-janoshik-dialog {
    margin: 0.5rem !important;
    max-width: calc(100vw - 1rem) !important;
  }

  .janoshik-official-doc {
    padding: 1.25rem 1rem;
  }

  .jano-title {
    font-size: 1.25rem;
  }

  .jano-brand-text {
    font-size: 1.1rem;
  }

  .jano-info-row {
    flex-direction: column;
    gap: 0.25rem;
  }

  .jano-col-label {
    width: auto;
    font-weight: 600;
  }

  .jano-res-row {
    grid-template-columns: 1fr;
  }

  .jano-res-cell.header {
    border-right: none;
    border-bottom: 1px solid #13703c;
  }

  /* Page hero banner (shop/coa etc) */
  .subpage-banner {
    padding: 2rem 0 !important;
  }

  .subpage-banner h1 {
    font-size: 1.75rem !important;
  }

  /* Figma channel cards on homepage */
  .figma-channels-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem;
  }

  /* PDP gallery nav dots/arrows */
  .pdp-gallery-nav-btn {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .pdp-gallery-dots .dot {
    width: 8px;
    height: 8px;
  }

  /* Checkout page */
  .order-details-grid {
    grid-template-columns: 1fr !important;
  }

  /* Touch-friendly: minimum tap target size */
  button, a, input[type="checkbox"], select {
    min-height: 38px;
  }

  /* Fix text overflow on small screens */
  .item-title-row {
    flex-wrap: wrap;
  }
}

/* ── Extra small phones (≤ 360px, e.g. iPhone SE) ───────── */
@media (max-width: 360px) {

  .header-inner {
    height: 50px;
  }

  .navbar-eagle-logo {
    height: 22px;
    max-width: 85px;
  }

  .hero-title {
    font-size: 1.35rem !important;
  }

  .calc-title {
    font-size: 1.05rem !important;
  }

  .peptide-calculator-card {
    padding: 0.85rem 0.65rem;
  }

  .preset-btn {
    font-size: 0.65rem;
    padding: 0.25rem 0.45rem;
  }

  .draw-units-number {
    font-size: 1.85rem !important;
  }

  .syringe-svg-canvas {
    min-width: 340px;
  }
}
