/* =================================================================
   Greenpoint Pharmacy — Stylesheet
   4026 Greenpoint Ave, Sunnyside, NY 11104 | gprxpharmacy.com
   ================================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green: #1a7a4a;
  --green-dark: #0f5c35;
  --green-light: #e8f5ee;
  --gold: #c9a84c;
  --gold-light: #f5e9c8;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --blue: #2563eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --red: #dc2626;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
}
html { scroll-behavior: smooth; }
body { background: var(--gray-50); color: var(--gray-900); font-family: 'Inter', sans-serif; font-weight: 400; overflow-x: hidden; }
.page { display: none; }
.page.active { display: block; }
button { font-family: inherit; cursor: pointer; }
a { text-decoration: none; }


/* ===== SERVICES DROPDOWN ===== */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  background: none;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
}
.nav-dropdown-toggle:hover,
.nav-dropdown:hover .nav-dropdown-toggle {
  color: var(--green);
  background: var(--green-light);
}
.nav-dropdown-toggle svg {
  transition: transform 0.2s;
  flex-shrink: 0;
}
.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  min-width: 230px;
  z-index: 300;
  overflow: hidden;
  animation: dropdownFade 0.15s ease;
}
@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.12s;
  font-family: inherit;
  border-bottom: 1px solid var(--gray-100);
}
.nav-dropdown-item:last-child {
  border-bottom: none;
}
.nav-dropdown-item:hover {
  background: var(--gray-50);
}
.nav-dropdown-item-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-dropdown-item-text {
  flex: 1;
}
.nav-dropdown-item-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1px;
}
.nav-dropdown-item-sub {
  font-size: 11px;
  color: var(--gray-500);
}
.nav-dropdown-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 4px 0;
}
.nav-dropdown-header {
  padding: 10px 16px 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--white); border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.nav-top {
  background: var(--green-dark);
  padding: 6px 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-top-text { font-size: 12px; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 20px; }
.nav-top-text span { display: flex; align-items: center; gap: 6px; }
.nav-top-links { display: flex; gap: 16px; }
.nav-top-links a { font-size: 11px; color: rgba(255,255,255,0.7); text-decoration: none; letter-spacing: 0.02em; }
.nav-top-links a:hover { color: var(--white); }
.nav-main {
  padding: 0 40px; height: 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; flex-shrink: 0; }
.nav-logo-icon { width: 52px; height: 56px; background: transparent; border-radius: 0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-logo-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--gray-900); line-height: 1.1; }
.nav-logo-sub { font-size: 10px; font-weight: 400; color: var(--gray-400); display: block; }
.nav-search {
  flex: 1; max-width: 360px;
  background: var(--gray-100); border: 1.5px solid var(--gray-200); border-radius: 8px;
  display: flex; align-items: center; gap: 8px; padding: 0 14px; height: 40px;
  transition: border-color 0.2s;
}
.nav-search:focus-within { border-color: var(--green); background: var(--white); }
.nav-search input { flex: 1; background: none; border: none; outline: none; font-size: 13px; color: var(--gray-800); }
.nav-search input::placeholder { color: var(--gray-400); }
.nav-links-main { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links-main button { font-size: 13px; font-weight: 500; color: var(--gray-600); background: none; border: none; padding: 8px 12px; border-radius: 6px; transition: all 0.15s; }
.nav-links-main button:hover { color: var(--green); background: var(--green-light); }
.nav-pill { background: var(--green) !important; color: var(--white) !important; padding: 8px 16px !important; border-radius: 8px !important; font-weight: 600 !important; }
.nav-pill:hover { background: var(--green-dark) !important; }
.nav-pill-outline { background: transparent !important; color: var(--green) !important; border: 1.5px solid var(--green) !important; padding: 7px 14px !important; border-radius: 8px !important; font-weight: 600 !important; }
.nav-pill-outline:hover { background: var(--green-light) !important; }
.cart-btn-nav { display: flex; align-items: center; gap: 6px; background: var(--gray-100) !important; color: var(--gray-700) !important; padding: 7px 14px !important; border-radius: 8px !important; border: 1.5px solid var(--gray-200) !important; }
.cart-btn-nav:hover { border-color: var(--green) !important; color: var(--green) !important; background: var(--green-light) !important; }
.cart-badge { background: var(--green); color: var(--white); width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; }
.nav-spacer { height: 108px; }

/* ===== COMMON ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; }
.badge-green { background: var(--green-light); color: var(--green-dark); }
.badge-gold { background: var(--gold-light); color: #7a5c1a; }
.badge-blue { background: #dbeafe; color: var(--blue); }
.badge-red { background: #fee2e2; color: var(--red); }
.section-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 10px; }
.section-heading { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 800; color: var(--gray-900); line-height: 1.15; margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--gray-600); line-height: 1.7; max-width: 540px; }
.btn { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; padding: 12px 24px; border-radius: 8px; border: none; cursor: pointer; transition: all 0.15s; }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(26,122,74,0.3); }
.btn-outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-outline:hover { background: var(--green-light); }
.btn-white { background: var(--white); color: var(--green-dark); }
.btn-white:hover { background: var(--gray-100); }
.btn-gold { background: var(--gold); color: var(--gray-900); }
.btn-gold:hover { background: #b8943c; }
.card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: box-shadow 0.2s, transform 0.2s; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
footer-sep { height: 0.5px; background: var(--gray-200); }

/* ===== HOME — HERO ===== */
.hero-section {
  background: linear-gradient(135deg, #0f5c35 0%, #1a7a4a 50%, #2d9e62 100%);
  padding: 72px 40px 80px;
  position: relative; overflow: hidden;
}
.hero-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hero-section::after {
  content: ''; position: absolute; bottom: -80px; left: 20%;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); color: var(--white); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px; }
.hero-h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 52px; font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.hero-h1 span { color: #7ee8a2; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 36px; max-width: 460px; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-right { display: flex; flex-direction: column; gap: 16px; }
.hero-card { background: rgba(255,255,255,0.12); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); padding: 20px 22px; display: flex; align-items: flex-start; gap: 14px; }
.hero-card-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-card-label { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 3px; }
.hero-card-val { font-size: 15px; font-weight: 600; color: var(--white); line-height: 1.4; }
.hero-trust { display: flex; align-items: center; gap: 20px; margin-top: 20px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.7); }

/* ===== QUICK ACTIONS ===== */
.quick-actions { background: var(--white); border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow-sm); }
.quick-actions-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(6, 1fr); }
.qa-item { display: flex; align-items: center; gap: 14px; padding: 20px 28px; cursor: pointer; border-right: 1px solid var(--gray-200); transition: background 0.15s; }
.qa-item:last-child { border-right: none; }
.qa-item:hover { background: var(--green-light); }
.qa-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.qa-icon-green { background: var(--green-light); }
.qa-icon-gold { background: var(--gold-light); }
.qa-icon-blue { background: #dbeafe; }
.qa-icon-purple { background: #ede9fe; }
.qa-label { font-size: 13px; font-weight: 600; color: var(--gray-900); line-height: 1.3; }
.qa-sub { font-size: 11px; color: var(--gray-500); margin-top: 2px; }

/* ===== PROMO STRIP ===== */
.promo-strip { background: var(--gold); padding: 14px 40px; display: flex; align-items: center; justify-content: center; gap: 32px; }
.promo-strip-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--gray-900); }
.promo-strip-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(0,0,0,0.25); }

/* ===== TRANSFER CTA ===== */
.transfer-cta {
  background: linear-gradient(135deg, var(--gray-900) 0%, #1f3a2a 100%);
  padding: 80px 40px;
}
.transfer-cta-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.transfer-cta h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 44px; font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 14px; }
.transfer-cta p { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 520px; }
.transfer-cta-right { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.transfer-cta-stat { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 16px 22px; text-align: center; min-width: 160px; }
.transfer-cta-stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 32px; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.transfer-cta-stat-label { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; }

/* ===== SERVICES ===== */
.services-section { padding: 80px 40px; background: var(--gray-50); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.service-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); padding: 28px; transition: all 0.2s; }
.service-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-3px); }
.service-card-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--green-light); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service-card-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.service-card-desc { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
.service-card-list { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.service-card-list-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-700); }
.no-insurance-banner { background: var(--green-dark); border-radius: var(--radius); padding: 24px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 32px; }
.no-insurance-text h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.no-insurance-text p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ===== WEIGHT LOSS ===== */
.weightloss-section { padding: 80px 40px; background: var(--white); }
.weightloss-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.weightloss-cards { display: flex; flex-direction: column; gap: 16px; }
.wl-card { border-radius: var(--radius); padding: 24px 28px; }
.wl-card-fda { background: var(--green-light); border: 1.5px solid #a7d9bc; }
.wl-card-price { background: var(--gold); border: 1.5px solid #b8943c; }
.wl-card-disclaimer { background: var(--gray-100); border: 1.5px solid var(--gray-200); }
.wl-card-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.wl-card-fda .wl-card-label { color: var(--green-dark); }
.wl-card-price .wl-card-label { color: #5c3d0a; }
.wl-card-disclaimer .wl-card-label { color: var(--gray-500); }
.wl-price-big { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 44px; font-weight: 800; color: var(--gray-900); line-height: 1; margin-bottom: 6px; }
.wl-card-fda p { font-size: 14px; color: var(--green-dark); line-height: 1.6; }
.wl-card-price p { font-size: 12px; color: rgba(0,0,0,0.6); line-height: 1.6; }
.wl-card-disclaimer p { font-size: 11px; color: var(--gray-500); line-height: 1.7; }

/* ===== ABOUT ===== */
.about-section { padding: 80px 40px; background: var(--gray-50); }
.about-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.about-stat { background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--gray-200); padding: 20px; }
.about-stat-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 40px; font-weight: 800; color: var(--green); line-height: 1; margin-bottom: 4px; }
.about-stat-label { font-size: 12px; color: var(--gray-600); font-weight: 500; }
.about-features { display: flex; flex-direction: column; gap: 14px; }
.about-feature { background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--gray-200); padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start; }
.about-feature-icon { width: 36px; height: 36px; background: var(--green-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-feature-title { font-size: 14px; font-weight: 600; color: var(--gray-900); margin-bottom: 3px; }
.about-feature-desc { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

/* ===== CONTACT ===== */
.contact-section { padding: 80px 40px; background: var(--white); }
.contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); padding: 18px 20px; display: flex; align-items: flex-start; gap: 14px; }
.contact-card-icon { width: 38px; height: 38px; background: var(--green-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); margin-bottom: 3px; }
.contact-card-val { font-size: 15px; font-weight: 600; color: var(--gray-900); line-height: 1.4; }
.refill-box { background: var(--green); border-radius: var(--radius); padding: 36px; }
.refill-box h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.refill-box p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 24px; line-height: 1.6; }
.refill-form { display: flex; flex-direction: column; gap: 12px; }
.refill-input { background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.25); border-radius: 8px; padding: 12px 16px; font-family: inherit; font-size: 14px; color: var(--white); outline: none; transition: border-color 0.2s; }
.refill-input::placeholder { color: rgba(255,255,255,0.5); }
.refill-input:focus { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.2); }
.refill-btn { background: var(--white); color: var(--green-dark); font-family: inherit; font-size: 14px; font-weight: 700; padding: 14px; border-radius: 8px; border: none; cursor: pointer; transition: all 0.15s; }
.refill-btn:hover { background: var(--gray-100); }

/* ===== FOOTER ===== */
.site-footer { background: var(--gray-900); padding: 60px 40px 32px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand {}
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon { width: 44px; height: 44px; background: transparent; border-radius: 0; display: flex; align-items: center; justify-content: center; }
.footer-logo-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--white); }
.footer-desc { font-size: 13px; color: var(--gray-400); line-height: 1.7; margin-bottom: 20px; max-width: 260px; }
.footer-contact-mini { display: flex; flex-direction: column; gap: 6px; }
.footer-contact-mini span { font-size: 13px; color: var(--gray-400); display: flex; align-items: center; gap: 8px; }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links button { font-size: 13px; color: var(--gray-400); background: none; border: none; cursor: pointer; text-align: left; padding: 0; transition: color 0.15s; }
.footer-links button:hover { color: var(--white); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: space-between; }
.footer-bottom-text { font-size: 12px; color: var(--gray-600); }
.footer-badges { display: flex; gap: 10px; }
.footer-badge { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 5px 12px; font-size: 10px; font-weight: 600; color: var(--gray-400); letter-spacing: 0.05em; text-transform: uppercase; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--green-light); border-bottom: 1px solid #b8dfc9; padding: 14px 40px; }
.trust-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--green-dark); }

/* ===== TRANSFER FORM PAGE ===== */
.form-page-hero { background: linear-gradient(135deg, #0f5c35, #1a7a4a); padding: 48px 40px 60px; }
.form-page-hero h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 40px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.form-page-hero p { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 520px; line-height: 1.6; }
.progress-nav { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 0 40px; }
.progress-nav-inner { max-width: 820px; margin: 0 auto; display: flex; align-items: center; }
.prog-step { display: flex; align-items: center; gap: 10px; padding: 16px 20px; border-bottom: 2px solid transparent; font-size: 13px; font-weight: 500; color: var(--gray-400); transition: all 0.2s; }
.prog-step.active { border-bottom-color: var(--green); color: var(--green); }
.prog-step.done { color: var(--green-dark); }
.prog-num { width: 24px; height: 24px; border-radius: 50%; background: var(--gray-200); color: var(--gray-600); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; transition: all 0.2s; }
.prog-step.active .prog-num { background: var(--green); color: var(--white); }
.prog-step.done .prog-num { background: var(--green-dark); color: var(--white); }
.prog-connector { flex: 1; height: 1px; background: var(--gray-200); }
.form-wrap { max-width: 820px; margin: 0 auto; padding: 48px 40px 100px; }
.form-section-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 26px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.form-section-sub { font-size: 14px; color: var(--gray-500); margin-bottom: 32px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field.full { grid-column: 1/-1; }
.form-field label { font-size: 12px; font-weight: 600; color: var(--gray-700); letter-spacing: 0.02em; }
.form-field input, .form-field select, .form-field textarea { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: 8px; padding: 11px 14px; font-family: inherit; font-size: 14px; color: var(--gray-900); outline: none; transition: border-color 0.2s; width: 100%; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(26,122,74,0.1); }
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--gray-400); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.field-hint { font-size: 11px; color: var(--gray-400); margin-top: 2px; }
.optional-tag { color: var(--green); font-size: 11px; font-weight: 400; font-style: italic; margin-left: 4px; }
.section-sep { display: flex; align-items: center; gap: 14px; margin: 28px 0 20px; }
.section-sep-line { flex: 1; height: 1px; background: var(--gray-200); }
.section-sep-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-400); }
.form-actions-row { display: flex; justify-content: space-between; align-items: center; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--gray-200); }
.btn-back-form { background: none; border: 1.5px solid var(--gray-300); color: var(--gray-600); font-size: 14px; font-weight: 600; padding: 11px 24px; border-radius: 8px; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.btn-back-form:hover { border-color: var(--green); color: var(--green); }
.btn-next-form { background: var(--green); color: var(--white); font-size: 14px; font-weight: 700; padding: 12px 32px; border-radius: 8px; border: none; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all 0.15s; }
.btn-next-form:hover { background: var(--green-dark); }
.btn-submit-form { background: var(--gold); color: var(--gray-900); font-size: 14px; font-weight: 700; padding: 12px 32px; border-radius: 8px; border: none; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all 0.15s; }
.btn-submit-form:hover { background: #b8943c; }
.review-box { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; }
.review-box-title { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--gray-200); }
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.review-item { display: flex; flex-direction: column; gap: 2px; }
.review-item.full { grid-column: 1/-1; }
.review-item-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); }
.review-item-val { font-size: 14px; color: var(--gray-800); }
.disclaimer-box { background: #fefce8; border: 1px solid #fde047; border-radius: 8px; padding: 14px 18px; display: flex; gap: 10px; margin-top: 20px; }
.disclaimer-box p { font-size: 12px; color: #713f12; line-height: 1.7; }
.form-step { display: none; }
.form-step.active { display: block; }

/* ===== SHOP PAGE ===== */
.shop-filter-bar { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 14px 40px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-label-txt { font-size: 12px; font-weight: 600; color: var(--gray-500); margin-right: 4px; }
.filter-chip { font-size: 12px; font-weight: 500; color: var(--gray-600); background: var(--gray-100); border: 1.5px solid var(--gray-200); padding: 6px 14px; border-radius: 20px; cursor: pointer; transition: all 0.15s; }
.filter-chip:hover, .filter-chip.active { background: var(--green); color: var(--white); border-color: var(--green); }
.shop-wrap { max-width: 1200px; margin: 0 auto; padding: 40px; }
.shop-heading { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.shop-sub { font-size: 14px; color: var(--gray-500); margin-bottom: 32px; }
.shop-products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200); overflow: hidden; transition: all 0.2s; }
.product-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-3px); }
.product-img-area { background: var(--gray-50); height: 150px; display: flex; align-items: center; justify-content: center; position: relative; border-bottom: 1px solid var(--gray-100); }
.product-chip { position: absolute; top: 10px; left: 10px; background: var(--green); color: var(--white); font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.product-body { padding: 14px 16px; }
.product-cat-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green); margin-bottom: 4px; }
.product-name { font-size: 14px; font-weight: 600; color: var(--gray-900); margin-bottom: 4px; line-height: 1.35; }
.product-desc-text { font-size: 12px; color: var(--gray-500); line-height: 1.5; margin-bottom: 12px; }
.product-footer-row { display: flex; align-items: center; justify-content: space-between; }
.product-price-text { font-size: 18px; font-weight: 700; color: var(--gray-900); }
.add-cart-btn { background: var(--green); color: var(--white); font-size: 12px; font-weight: 600; padding: 7px 14px; border-radius: 6px; border: none; cursor: pointer; transition: all 0.15s; }
.add-cart-btn:hover { background: var(--green-dark); }
.add-cart-btn.added { background: var(--gold); color: var(--gray-900); }

/* ===== CART DRAWER ===== */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 500; display: none; opacity: 0; transition: opacity 0.3s; }
.cart-overlay.open { display: block; opacity: 1; }
.cart-drawer { position: fixed; top: 0; right: -440px; width: 440px; height: 100vh; background: var(--white); z-index: 501; display: flex; flex-direction: column; transition: right 0.3s ease; box-shadow: var(--shadow-lg); }
.cart-drawer.open { right: 0; }
.cart-drawer-header { background: var(--green-dark); padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; }
.cart-drawer-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); }
.cart-close-btn { background: rgba(255,255,255,0.15); border: none; color: var(--white); width: 32px; height: 32px; border-radius: 8px; cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; }
.cart-drawer-items { flex: 1; overflow-y: auto; padding: 20px 24px; display: flex; flex-direction: column; gap: 16px; }
.cart-item-row { display: flex; gap: 14px; align-items: flex-start; padding-bottom: 16px; border-bottom: 1px solid var(--gray-100); }
.cart-item-img { width: 52px; height: 52px; background: var(--gray-100); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cart-item-name-text { font-size: 14px; font-weight: 600; color: var(--gray-900); margin-bottom: 3px; }
.cart-item-price-text { font-size: 13px; color: var(--green); font-weight: 500; }
.qty-controls { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-ctrl-btn { width: 26px; height: 26px; border-radius: 6px; border: 1.5px solid var(--gray-300); background: none; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; color: var(--gray-700); }
.qty-ctrl-btn:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.qty-val { font-size: 14px; font-weight: 600; color: var(--gray-900); min-width: 20px; text-align: center; }
.remove-btn-text { margin-left: auto; font-size: 11px; color: var(--gray-400); background: none; border: none; cursor: pointer; }
.remove-btn-text:hover { color: var(--red); }
.cart-empty-state { text-align: center; padding: 60px 20px; }
.cart-empty-title { font-size: 18px; font-weight: 600; color: var(--gray-700); margin-bottom: 8px; }
.cart-empty-sub { font-size: 13px; color: var(--gray-400); }
.cart-drawer-footer { padding: 20px 24px; border-top: 1px solid var(--gray-200); }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-total-label { font-size: 14px; color: var(--gray-600); }
.cart-total-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 24px; font-weight: 700; color: var(--gray-900); }
.cart-checkout-btn { width: 100%; background: var(--gold); color: var(--gray-900); font-size: 14px; font-weight: 700; padding: 14px; border-radius: 8px; border: none; cursor: pointer; transition: all 0.15s; }
.cart-checkout-btn:hover { background: #b8943c; }
.cart-drawer-note { font-size: 11px; color: var(--gray-400); text-align: center; margin-top: 8px; }

/* ===== CHECKOUT PAGE ===== */
.checkout-page-wrap { max-width: 1100px; margin: 0 auto; padding: 48px 40px 100px; display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.checkout-sections { display: flex; flex-direction: column; gap: 20px; }
.co-section { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 28px; }
.co-section-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.co-step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.co-section-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--gray-900); }
.co-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.co-field { display: flex; flex-direction: column; gap: 5px; }
.co-field.full { grid-column: 1/-1; }
.co-field label { font-size: 12px; font-weight: 600; color: var(--gray-700); }
.co-field input, .co-field select { background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: 8px; padding: 11px 14px; font-family: inherit; font-size: 14px; color: var(--gray-900); outline: none; transition: border-color 0.2s; width: 100%; }
.co-field input:focus, .co-field select:focus { border-color: var(--green); background: var(--white); box-shadow: 0 0 0 3px rgba(26,122,74,0.1); }
.co-field input::placeholder { color: var(--gray-400); }
.co-field select { cursor: pointer; appearance: none; }
.delivery-opt { display: flex; align-items: center; gap: 16px; padding: 14px 18px; border: 1.5px solid var(--gray-200); border-radius: 8px; cursor: pointer; transition: all 0.15s; margin-bottom: 12px; }
.delivery-opt.selected { border-color: var(--green); background: var(--green-light); }
.delivery-opt input[type=radio] { accent-color: var(--green); width: 16px; height: 16px; flex-shrink: 0; }
.delivery-opt-name { font-size: 14px; font-weight: 600; color: var(--gray-900); }
.delivery-opt-desc { font-size: 12px; color: var(--gray-500); margin-top: 1px; }
.delivery-opt-price { margin-left: auto; font-size: 14px; font-weight: 700; color: var(--green-dark); }
.pay-tabs { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.pay-tab-btn { display: flex; align-items: center; gap: 8px; padding: 9px 16px; border: 1.5px solid var(--gray-200); border-radius: 8px; cursor: pointer; font-family: inherit; font-size: 12px; font-weight: 600; color: var(--gray-600); background: var(--gray-50); transition: all 0.15s; }
.pay-tab-btn.active { border-color: var(--green); background: var(--green-light); color: var(--green-dark); }
.pay-panel { display: none; }
.pay-panel.active { display: block; }
.card-logos { display: flex; gap: 8px; margin-bottom: 18px; }
.card-logo { width: 44px; height: 28px; background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.card-logo span { font-size: 8px; font-weight: 800; }
.paypal-center { text-align: center; padding: 32px 20px; }
.paypal-wordmark { font-size: 36px; font-weight: 800; color: #003087; margin-bottom: 12px; }
.paypal-wordmark span { color: #009cde; }
.paypal-desc-text { font-size: 13px; color: var(--gray-500); line-height: 1.7; max-width: 300px; margin: 0 auto 24px; }
.paypal-pay-btn { background: #ffc439; color: #003087; font-size: 14px; font-weight: 700; padding: 14px 40px; border-radius: 8px; border: none; cursor: pointer; width: 100%; }
.digital-pay-list { display: flex; flex-direction: column; gap: 12px; padding: 16px 0; }
.digital-btn { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 16px; border-radius: 8px; border: none; cursor: pointer; font-size: 14px; font-weight: 700; width: 100%; transition: opacity 0.15s; }
.apple-btn { background: #000; color: #fff; }
.google-btn { background: var(--white); color: var(--gray-900); border: 1.5px solid var(--gray-300) !important; }
.hsa-info-box { background: #fefce8; border: 1px solid #fde047; border-radius: 8px; padding: 14px 16px; margin-bottom: 16px; font-size: 13px; color: #713f12; line-height: 1.7; }
.order-summary-box { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; position: sticky; top: 120px; }
.os-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--gray-200); }
.os-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.os-item { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.os-item-name { font-size: 13px; color: var(--gray-700); flex: 1; line-height: 1.4; }
.os-item-qty { font-size: 11px; color: var(--gray-400); }
.os-item-price { font-size: 13px; font-weight: 600; color: var(--gray-900); flex-shrink: 0; }
.os-divider { height: 1px; background: var(--gray-200); margin: 14px 0; }
.os-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.os-row-label { font-size: 13px; color: var(--gray-500); }
.os-row-val { font-size: 13px; color: var(--gray-800); }
.os-row-val.free-text { color: var(--green-dark); font-weight: 600; }
.os-total { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--gray-200); margin-top: 6px; }
.os-total-label { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.os-total-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 26px; font-weight: 800; color: var(--gray-900); }
.promo-row { display: flex; gap: 8px; margin-top: 16px; }
.promo-input { flex: 1; background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: 8px; padding: 10px 12px; font-family: inherit; font-size: 13px; color: var(--gray-900); outline: none; }
.promo-apply-btn { background: var(--gray-800); color: var(--white); font-size: 12px; font-weight: 600; padding: 10px 16px; border-radius: 8px; border: none; cursor: pointer; }
.place-order-btn-main { width: 100%; background: var(--gold); color: var(--gray-900); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 800; padding: 16px; border-radius: 8px; border: none; cursor: pointer; margin-top: 18px; transition: all 0.15s; }
.place-order-btn-main:hover { background: #b8943c; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(201,168,76,0.3); }
.secure-note { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--gray-400); justify-content: center; margin-top: 10px; }

/* ===== SUCCESS ===== */
.success-wrap { text-align: center; padding: 80px 40px; max-width: 560px; margin: 0 auto; }
.success-check { width: 80px; height: 80px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; }
.success-h { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 40px; font-weight: 800; color: var(--gray-900); margin-bottom: 14px; }
.success-p { font-size: 16px; color: var(--gray-600); line-height: 1.7; margin-bottom: 32px; }
.success-contact-bar { background: var(--green); border-radius: var(--radius); padding: 20px 28px; display: inline-flex; gap: 40px; margin-bottom: 32px; }
.success-contact-item { text-align: left; }
.success-contact-lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 3px; }
.success-contact-val { font-size: 15px; font-weight: 600; color: var(--white); }

/* ===== LEGAL PAGE ===== */
.legal-wrap { max-width: 860px; margin: 0 auto; padding: 60px 40px 100px; }
.legal-toc { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; margin-bottom: 48px; }
.legal-toc-title { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.legal-toc-links { display: flex; flex-wrap: wrap; gap: 8px; }
.legal-toc-link { font-size: 12px; color: var(--green-dark); background: var(--green-light); padding: 5px 12px; border-radius: 6px; cursor: pointer; text-decoration: none; transition: background 0.15s; }
.legal-toc-link:hover { background: #b8dfc9; }
.legal-sec { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--gray-200); }
.legal-sec:last-of-type { border-bottom: none; }
.legal-flag { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 6px; margin-bottom: 12px; }
.flag-red { background: #fee2e2; color: var(--red); }
.flag-yellow { background: #fef9c3; color: #854d0e; }
.flag-gray { background: var(--gray-100); color: var(--gray-500); }
.legal-h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 26px; font-weight: 700; color: var(--gray-900); margin-bottom: 16px; }
.legal-body p { font-size: 14px; color: var(--gray-600); line-height: 1.8; margin-bottom: 14px; }
.legal-body p:last-child { margin-bottom: 0; }
.legal-body strong { font-weight: 700; color: var(--gray-900); }
.legal-body ul { margin: 12px 0 14px 20px; display: flex; flex-direction: column; gap: 8px; }
.legal-body ul li { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
.legal-note { background: #fef9c3; border: 1px solid #fde047; border-radius: 8px; padding: 14px 18px; margin: 20px 0; }
.legal-note p { font-size: 13px; color: #713f12; line-height: 1.7; margin: 0; }
.legal-info-grid { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 8px; padding: 18px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.legal-info-item-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); margin-bottom: 3px; }
.legal-info-item-val { font-size: 14px; font-weight: 600; color: var(--gray-900); }
.legal-contact-box { background: var(--green); border-radius: var(--radius-sm); padding: 20px 24px; margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.legal-contact-lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.legal-contact-val { font-size: 15px; font-weight: 600; color: var(--white); }

/* ===== TOAST ===== */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--gray-900); color: var(--white); font-size: 13px; font-weight: 500; padding: 12px 24px; border-radius: 8px; border-left: 4px solid var(--green); z-index: 600; transition: transform 0.3s ease; white-space: nowrap; box-shadow: var(--shadow-lg); }
.toast.show { transform: translateX(-50%) translateY(0); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-up { animation: fadeUp 0.6s ease both; }

/* ===== PRINT STYLES ===== */
@media print {
  nav, .nav-spacer, .telehealth-fab, .cart-drawer, .cart-overlay,
  .trust-bar, .promo-strip, .quick-actions, .hero-section { display: none !important; }
  body { background: #fff !important; color: #000 !important; font-size: 12pt; }
  .page { display: block !important; }
  #page-home { display: block !important; }
  #page-transfer, #page-shop, #page-checkout,
  #page-legal, #page-ltc, #page-compounding { display: none !important; }
}

/* Floating Button */
.th-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.th-fab-btn {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #1a7a4a, #2d9e62);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(26,122,74,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.th-fab-btn:hover { transform: scale(1.08); box-shadow: 0 12px 36px rgba(26,122,74,0.55); }
.th-fab-pulse {
  position: absolute;
  top: -3px; right: -3px;
  width: 16px; height: 16px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: th-pulse 2s infinite;
}
@keyframes th-pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
.th-fab-label {
  background: var(--gray-900);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  animation: th-label-in 0.5s ease both;
  display: flex; align-items: center; gap: 8px;
}
@keyframes th-label-in { from { opacity:0; transform:translateX(10px); } to { opacity:1; transform:translateX(0); } }

/* Widget Panel */
.th-panel {
  position: fixed;
  bottom: 110px; right: 28px;
  width: 380px;
  max-height: 90vh;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 8px 20px rgba(0,0,0,0.08);
  z-index: 799;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  animation: th-panel-in 0.25s cubic-bezier(0.34,1.56,0.64,1) both;
}
.th-panel.open { display: flex; }
@keyframes th-panel-in {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Panel Header */
.th-header {
  background: linear-gradient(135deg, #0f5c35, #1a7a4a);
  padding: 20px 20px 18px;
  position: relative;
  flex-shrink: 0;
}
.th-header-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.th-header-logo { display: flex; align-items: center; gap: 10px; }
.th-header-icon { width: 38px; height: 38px; background: rgba(255,255,255,0.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.th-header-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; color: #fff; }
.th-header-sub { font-size: 11px; color: rgba(255,255,255,0.65); margin-top: 1px; }
.th-close-btn { width: 30px; height: 30px; background: rgba(255,255,255,0.15); border: none; border-radius: 8px; color: rgba(255,255,255,0.8); cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; }
.th-close-btn:hover { background: rgba(255,255,255,0.25); color: #fff; }
.th-online-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.15); border-radius: 20px; padding: 4px 10px; }
.th-online-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; animation: th-pulse 2s infinite; }
.th-online-text { font-size: 11px; color: rgba(255,255,255,0.85); font-weight: 500; }

/* Panel Body */
.th-body { flex: 1; overflow-y: auto; }

/* Screen system */
.th-screen { display: none; padding: 20px; }
.th-screen.active { display: block; }

/* Home screen */
.th-welcome { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.th-welcome-sub { font-size: 13px; color: var(--gray-500); margin-bottom: 20px; line-height: 1.5; }
.th-options { display: flex; flex-direction: column; gap: 10px; }
.th-option {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: 12px;
  border: 1.5px solid var(--gray-200);
  cursor: pointer; background: var(--white);
  transition: all 0.15s; text-align: left; width: 100%;
}
.th-option:hover { border-color: var(--green); background: var(--green-light); }
.th-option-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.th-option-title { font-size: 14px; font-weight: 600; color: var(--gray-900); margin-bottom: 2px; }
.th-option-sub { font-size: 12px; color: var(--gray-500); }
.th-option-arrow { margin-left: auto; color: var(--gray-400); flex-shrink: 0; }
.th-option:hover .th-option-arrow { color: var(--green); }
.th-divider { height: 1px; background: var(--gray-100); margin: 16px 0; }
.th-hours-box { background: var(--gray-50); border-radius: 10px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; }
.th-hours-text { font-size: 12px; color: var(--gray-600); line-height: 1.5; }
.th-hours-text strong { color: var(--gray-900); font-weight: 600; }

/* Chat screen */
.th-chat-messages { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; min-height: 200px; }
.th-msg { display: flex; gap: 10px; align-items: flex-end; }
.th-msg.user { flex-direction: row-reverse; }
.th-msg-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 12px; color: #fff; font-weight: 700; }
.th-msg-avatar.user-av { background: var(--gray-300); }
.th-msg-bubble { max-width: 240px; padding: 10px 14px; border-radius: 14px; font-size: 13px; line-height: 1.6; }
.th-msg-bubble.bot { background: var(--gray-100); color: var(--gray-800); border-bottom-left-radius: 4px; }
.th-msg-bubble.user { background: var(--green); color: #fff; border-bottom-right-radius: 4px; }
.th-msg-time { font-size: 10px; color: var(--gray-400); margin-top: 3px; }
.th-typing { display: flex; gap: 4px; align-items: center; padding: 10px 14px; background: var(--gray-100); border-radius: 14px; width: fit-content; }
.th-typing span { width: 6px; height: 6px; background: var(--gray-400); border-radius: 50%; animation: th-typing 1.4s infinite; }
.th-typing span:nth-child(2) { animation-delay: 0.2s; }
.th-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes th-typing { 0%,80%,100% { transform:translateY(0); opacity:0.4; } 40% { transform:translateY(-6px); opacity:1; } }
.th-quick-replies { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.th-quick-reply { background: var(--white); border: 1.5px solid var(--green); color: var(--green); font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: 20px; cursor: pointer; transition: all 0.15s; }
.th-quick-reply:hover { background: var(--green); color: #fff; }
.th-chat-input-row { display: flex; gap: 8px; }
.th-chat-input { flex: 1; background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: 10px; padding: 10px 14px; font-family: 'Inter', sans-serif; font-size: 13px; color: var(--gray-900); outline: none; transition: border-color 0.2s; }
.th-chat-input:focus { border-color: var(--green); background: #fff; }
.th-send-btn { width: 40px; height: 40px; background: var(--green); border: none; border-radius: 10px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s; flex-shrink: 0; }
.th-send-btn:hover { background: var(--green-dark); }

/* Schedule screen */
.th-schedule-form { display: flex; flex-direction: column; gap: 14px; }
.th-field { display: flex; flex-direction: column; gap: 4px; }
.th-field label { font-size: 12px; font-weight: 600; color: var(--gray-700); }
.th-field input, .th-field select, .th-field textarea { background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: 8px; padding: 10px 12px; font-family: 'Inter', sans-serif; font-size: 13px; color: var(--gray-900); outline: none; transition: border-color 0.2s; width: 100%; }
.th-field input:focus, .th-field select:focus, .th-field textarea:focus { border-color: var(--green); background: #fff; }
.th-field textarea { resize: vertical; min-height: 80px; }
.th-field select { cursor: pointer; appearance: none; }
.th-slots { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 4px; }
.th-slot { padding: 9px; border: 1.5px solid var(--gray-200); border-radius: 8px; text-align: center; cursor: pointer; font-size: 13px; font-weight: 500; color: var(--gray-700); transition: all 0.15s; }
.th-slot:hover, .th-slot.selected { background: var(--green); color: #fff; border-color: var(--green); }
.th-slot.unavailable { background: var(--gray-100); color: var(--gray-400); cursor: not-allowed; text-decoration: line-through; }
.th-submit-btn { background: var(--green); color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; padding: 13px; border-radius: 10px; border: none; cursor: pointer; width: 100%; transition: background 0.15s; }
.th-submit-btn:hover { background: var(--green-dark); }
.th-back-btn { display: flex; align-items: center; gap: 6px; background: none; border: none; cursor: pointer; font-size: 13px; color: var(--gray-500); padding: 0; margin-bottom: 16px; }
.th-back-btn:hover { color: var(--green); }
.th-screen-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.th-screen-sub { font-size: 13px; color: var(--gray-500); margin-bottom: 18px; line-height: 1.5; }

/* Success screen */
.th-success { text-align: center; padding: 10px 0; }
.th-success-icon { width: 64px; height: 64px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.th-success-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.th-success-text { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin-bottom: 20px; }
.th-success-info { background: var(--gray-50); border-radius: 10px; padding: 14px; margin-bottom: 16px; }
.th-success-info-row { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid var(--gray-200); }
.th-success-info-row:last-child { border-bottom: none; }
.th-success-info-label { font-size: 12px; color: var(--gray-500); }
.th-success-info-val { font-size: 12px; font-weight: 600; color: var(--gray-900); }
.th-home-btn { background: var(--green); color: #fff; font-size: 13px; font-weight: 600; padding: 11px 24px; border-radius: 8px; border: none; cursor: pointer; transition: background 0.15s; }
.th-home-btn:hover { background: var(--green-dark); }

/* Video screen */
.th-video-box { background: linear-gradient(135deg, #0f5c35, #1a7a4a); border-radius: 14px; padding: 24px 20px; text-align: center; margin-bottom: 16px; }
.th-video-icon { width: 64px; height: 64px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.th-video-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.th-video-sub { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 18px; }
.th-video-btn { background: #fff; color: var(--green-dark); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; padding: 12px 28px; border-radius: 8px; border: none; cursor: pointer; transition: all 0.15s; }
.th-video-btn:hover { background: var(--gray-100); }
.th-disclaimer-mini { font-size: 11px; color: var(--gray-400); line-height: 1.6; text-align: center; padding: 0 4px; }

/* ============================================================
   RESPONSIVE / MOBILE (added)
   ============================================================ */
.nav-burger { display: none; background: none; border: 1.5px solid var(--gray-200); border-radius: 8px; padding: 8px 10px; cursor: pointer; align-items: center; justify-content: center; }
.nav-burger svg { display: block; }
.mobile-menu { display: none; flex-direction: column; background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 8px 16px 14px; gap: 2px; box-shadow: var(--shadow-lg); }
.mobile-menu.open { display: flex; }
.mobile-menu button { text-align: left; background: none; border: none; font-family: inherit; font-size: 15px; font-weight: 600; color: var(--gray-800); padding: 12px 10px; border-radius: 8px; cursor: pointer; }
.mobile-menu button:active, .mobile-menu button:hover { background: var(--green-light); color: var(--green); }
.mobile-menu .mm-primary { background: var(--green); color: var(--white); text-align: center; margin-top: 6px; }

@media (max-width: 1024px) {
  .nav-search { display: none; }
  .hero-inner, .weightloss-inner, .about-inner, .contact-inner, .transfer-cta-inner { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-products-grid { grid-template-columns: repeat(3, 1fr); }
  .quick-actions-inner { grid-template-columns: repeat(3, 1fr); }
  .checkout-page-wrap { grid-template-columns: 1fr; padding: 32px 20px 80px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 760px) {
  html { -webkit-text-size-adjust: 100%; }
  .nav-links-main { display: none !important; }
  .nav-burger { display: flex; }
  .nav-main { padding: 10px 14px; gap: 10px; }
  .nav-logo svg { width: 132px; height: 38px; }
  .nav-top { padding: 6px 14px; }
  .nav-top-text span:nth-child(3) { display: none; }
  .nav-top-links { display: none; }
  .container { padding: 0 18px; }
  .section-heading { font-size: 26px; }
  .hero-inner h1 { font-size: 38px !important; line-height: 1.1; }
  .quick-actions-inner { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .form-grid-2, .co-grid-2, .review-grid, .about-stats, .legal-info-grid, .th-slots { grid-template-columns: 1fr; }
  .shop-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer { padding: 40px 18px 24px; }
  .progress-nav { padding: 0 10px; overflow-x: auto; }
  .cart-drawer { width: 100vw; right: -100vw; }
  .th-panel { width: calc(100vw - 20px); right: 10px; bottom: 96px; max-height: 78vh; }
  .toast { white-space: normal; max-width: calc(100vw - 40px); text-align: center; }
  /* Collapse any inline two-column grids (forms on compounding/LTC/telehealth pages) */
  [style*="grid-template-columns:1fr 1fr"], [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
  /* Soften large inline paddings on section wrappers */
  [style*="padding:28px 40px"] { padding: 24px 18px !important; }
  [style*="padding:10px 40px"] { padding: 10px 16px !important; }
}

@media (max-width: 430px) {
  .shop-products-grid { grid-template-columns: 1fr; }
  .quick-actions-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-inner h1 { font-size: 32px !important; }
}
