/* ================================================================
   BE STILL VITALITY — Main Stylesheet
   Brand: Navy #0d1f3c  |  Gold #c9a02a
   Font: Montserrat (headings), Open Sans (body)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;600;700&display=swap');

/* ─── CSS Variables ─── */
:root {
  --navy:         #0d1f3c;
  --navy-light:   #1a3060;
  --navy-medium:  #162850;
  --navy-deep:    #071428;
  --gold:         #c9a02a;
  --gold-light:   #e8c547;
  --gold-dim:     #a8841f;
  --white:        #ffffff;
  --off-white:    #f7f9fc;
  --light-bg:     #eef1f7;
  --border:       #d0d9ea;
  --text-dark:    #0d1f3c;
  --text-body:    #3a4a6b;
  --text-muted:   #8896b0;
  --success:      #1a9c4a;
  --warning:      #e67e22;
  --danger:       #c0392b;
  --in-stock:     #1a9c4a;
  --low-stock:    #e67e22;
  --pre-order:    #7c5abf;
  --shadow-sm:    0 2px 8px rgba(13,31,60,0.08);
  --shadow-md:    0 4px 20px rgba(13,31,60,0.12);
  --shadow-lg:    0 8px 40px rgba(13,31,60,0.18);
  --radius:       10px;
  --radius-lg:    16px;
  --transition:   all 0.25s ease;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-body);
  background: var(--off-white);
  min-height: 100vh;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat', sans-serif; color: var(--text-dark); line-height: 1.25; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Age Gate & Disclaimer Overlay ─── */
#age-gate-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
#age-gate-overlay.hidden { display: none; }

.gate-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 560px; width: 100%;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 0.4s ease;
}
.gate-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.gate-logo span { color: var(--gold); }
.gate-tagline { font-size: 0.8rem; letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 2rem; }
.gate-divider { width: 60px; height: 3px; background: var(--gold); margin: 0 auto 2rem; }
.gate-modal h2 { font-size: 1.4rem; color: var(--navy); margin-bottom: 1rem; }
.gate-modal p { color: var(--text-body); line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.95rem; }
.gate-modal .disclaimer-box {
  background: #fff3cd; border: 1px solid #ffc107;
  border-radius: 8px; padding: 1rem; margin-bottom: 1.5rem;
  font-size: 0.85rem; color: #664d03; text-align: left;
  line-height: 1.6;
}
.gate-modal .disclaimer-box strong { display: block; margin-bottom: 0.4rem; font-size: 0.9rem; }
.gate-btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-gate-yes {
  background: var(--navy); color: var(--white);
  padding: 0.75rem 2rem; border-radius: 8px;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.95rem; transition: var(--transition);
}
.btn-gate-yes:hover { background: var(--navy-light); transform: translateY(-1px); }
.btn-gate-no {
  background: var(--light-bg); color: var(--text-muted);
  padding: 0.75rem 2rem; border-radius: 8px;
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.95rem; transition: var(--transition);
}
.btn-gate-no:hover { background: var(--border); }
.gate-legal { font-size: 0.75rem; color: var(--text-muted); margin-top: 1.5rem; line-height: 1.5; }

/* ─── Navbar ─── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
  padding: 0 2rem;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.nav-brand {
  display: flex; flex-direction: column;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
}
.nav-brand-name {
  font-size: 1.15rem; font-weight: 800;
  letter-spacing: 0.08em; color: var(--white);
  line-height: 1.1;
}
.nav-brand-name span { color: var(--gold); }
.nav-brand-tag {
  font-size: 0.58rem; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5); text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  flex: 1; justify-content: center;
}
.nav-links a {
  color: rgba(255,255,255,0.78); font-size: 0.85rem;
  font-weight: 600; letter-spacing: 0.04em;
  padding: 0.5rem 0.9rem; border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold); background: rgba(255,255,255,0.07);
}
.nav-right { display: flex; align-items: center; gap: 0.75rem; }

.research-badge {
  background: rgba(201,160,42,0.15);
  border: 1px solid rgba(201,160,42,0.4);
  color: var(--gold-light);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.65rem; border-radius: 20px;
}

.cart-btn {
  position: relative;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: var(--transition);
}
.cart-btn:hover { background: rgba(255,255,255,0.18); }
.cart-badge {
  position: absolute; top: -5px; right: -5px;
  background: var(--gold); color: var(--navy);
  width: 20px; height: 20px; border-radius: 50%;
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
}
.cart-badge.hidden { display: none; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}

/* ─── Mobile Nav ─── */
.mobile-nav {
  display: none; position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 999;
  flex-direction: column; padding: 2rem;
  gap: 0.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.85); font-size: 1.1rem;
  font-weight: 600; padding: 0.85rem 1rem; border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav a:hover { color: var(--gold); }

/* ─── Cart Drawer ─── */
.cart-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(7,20,40,0.6); backdrop-filter: blur(3px);
  display: none;
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; right: -420px; top: 0; bottom: 0;
  width: 420px; max-width: 95vw;
  background: var(--white); z-index: 2001;
  display: flex; flex-direction: column;
  box-shadow: -4px 0 40px rgba(0,0,0,0.2);
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
}
.cart-drawer.open { right: 0; }
.cart-header {
  background: var(--navy); color: var(--white);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.cart-header h3 {
  font-size: 1rem; font-weight: 700; color: var(--white);
  letter-spacing: 0.05em;
}
.cart-close {
  color: rgba(255,255,255,0.7); font-size: 1.3rem;
  padding: 4px 8px; border-radius: 4px; transition: var(--transition);
}
.cart-close:hover { color: var(--white); background: rgba(255,255,255,0.12); }
.cart-body { flex: 1; overflow-y: auto; padding: 1.25rem; }
.cart-empty {
  text-align: center; padding: 3rem 1rem;
  color: var(--text-muted);
}
.cart-empty i { font-size: 3rem; margin-bottom: 1rem; color: var(--border); }
.cart-empty p { font-size: 0.95rem; }
.cart-item {
  display: flex; gap: 0.85rem; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 56px; height: 72px; border-radius: 8px;
  background: var(--navy); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.5rem;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 700; font-size: 0.88rem; color: var(--navy); margin-bottom: 0.15rem; }
.cart-item-size { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.cart-qty-row { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.35rem; }
.qty-btn {
  width: 26px; height: 26px; border-radius: 6px;
  background: var(--light-bg); border: 1px solid var(--border);
  font-size: 0.95rem; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.qty-btn:hover { background: var(--navy); color: var(--white); }
.qty-display { font-size: 0.9rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-price { font-weight: 700; font-size: 0.9rem; color: var(--gold-dim); white-space: nowrap; }
.cart-item-remove { color: var(--text-muted); font-size: 0.85rem; padding: 4px; transition: var(--transition); }
.cart-item-remove:hover { color: var(--danger); }
.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 2px solid var(--border);
  background: var(--off-white);
}
.cart-subtotal {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 0.5rem;
}
.cart-subtotal .label { font-weight: 600; color: var(--text-dark); }
.cart-subtotal .amount { font-size: 1.3rem; font-weight: 800; color: var(--navy); font-family: 'Montserrat', sans-serif; }
.cart-note { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.5; }
.btn-checkout {
  display: block; width: 100%;
  background: var(--gold); color: var(--navy);
  padding: 0.9rem; border-radius: 8px;
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 0.95rem; letter-spacing: 0.04em;
  text-align: center; transition: var(--transition);
}
.btn-checkout:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,160,42,0.35); }
.btn-shop-more {
  display: block; width: 100%; margin-top: 0.65rem;
  border: 1.5px solid var(--border); color: var(--text-muted);
  padding: 0.75rem; border-radius: 8px;
  font-size: 0.85rem; font-weight: 600; text-align: center;
  transition: var(--transition);
}
.btn-shop-more:hover { border-color: var(--navy); color: var(--navy); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.7rem 1.5rem; border-radius: 8px;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.9rem; transition: var(--transition); cursor: pointer;
}
.btn-primary {
  background: var(--navy); color: var(--white);
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-gold {
  background: var(--gold); color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,160,42,0.4); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; }
.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ─── Hero Section ─── */
.hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-light) 100%);
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a02a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: rgba(201,160,42,0.15); border: 1px solid rgba(201,160,42,0.4);
  color: var(--gold-light); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 20px; margin-bottom: 1.75rem;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900;
  color: var(--white); letter-spacing: 0.06em; line-height: 1.1;
  margin-bottom: 0.5rem; text-transform: uppercase;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: 0.85rem; letter-spacing: 0.18em; color: rgba(255,255,255,0.5);
  text-transform: uppercase; margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
}
.hero-divider {
  width: 70px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 1.75rem; border-radius: 2px;
}
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.72);
  max-width: 580px; margin: 0 auto 2.5rem; line-height: 1.75;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2.5rem; justify-content: center;
  margin-top: 3.5rem; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.9rem; color: var(--gold); line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; }

/* ─── Trust / Badge Bar ─── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 2rem;
}
.trust-items {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; font-weight: 700;
  color: var(--text-dark); font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em;
}
.trust-item i { color: var(--gold); font-size: 1.1rem; }

/* ─── Section Styles ─── */
.section { padding: 4rem 2rem; }
.section-sm { padding: 2.5rem 2rem; }
.section-dark { background: var(--navy); }
.section-light { background: var(--light-bg); }
.section-white { background: var(--white); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem;
}
.section-header h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 0.75rem; }
.section-header p { color: var(--text-muted); max-width: 540px; margin: 0 auto; line-height: 1.7; }
.section-header.light h2 { color: var(--white); }
.section-header.light .eyebrow { color: var(--gold-light); }
.section-header.light p { color: rgba(255,255,255,0.6); }

/* ─── Product Cards ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
  border: 1.5px solid transparent;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,160,42,0.2);
}
.product-card-img {
  height: 170px; display: flex; align-items: center;
  justify-content: center; position: relative;
  overflow: hidden;
}
.vial-graphic {
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
}
.vial-cap {
  width: 20px; height: 10px; border-radius: 3px 3px 0 0;
}
.vial-neck {
  width: 14px; height: 10px;
}
.vial-body {
  width: 42px; height: 80px; border-radius: 4px;
  position: relative; display: flex; flex-direction: column;
  overflow: hidden;
}
.vial-body-top { flex: 1; }
.vial-liquid { height: 45px; opacity: 0.85; }
.vial-label-line {
  position: absolute; top: 20px; left: 4px; right: 4px;
  height: 28px; background: rgba(255,255,255,0.18);
  border-radius: 2px;
}
.vial-shine {
  position: absolute; top: 4px; left: 5px;
  width: 6px; bottom: 4px; border-radius: 3px;
  background: rgba(255,255,255,0.2);
}

.product-status-badge {
  position: absolute; top: 12px; right: 12px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.28rem 0.65rem;
  border-radius: 20px;
}
.badge-in-stock { background: #d4f7e7; color: #0d6b38; }
.badge-low-stock { background: #ffecd5; color: #9a4700; }
.badge-pre-order { background: #ede9f7; color: #4a2f8a; }
.badge-por { background: #e8f4fd; color: #0a568a; }

.product-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-category {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem;
}
.product-name { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 0.2rem; }
.product-size { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.65rem; }
.product-desc {
  font-size: 0.8rem; color: var(--text-body); line-height: 1.6;
  margin-bottom: 1rem; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.product-price {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 1.1rem; color: var(--navy);
}
.product-price .per { font-size: 0.7rem; color: var(--text-muted); font-weight: 400; }
.product-price.por-price { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.btn-add-cart {
  background: var(--navy); color: var(--white);
  padding: 0.55rem 1rem; border-radius: 7px;
  font-size: 0.8rem; font-weight: 700; transition: var(--transition);
  display: flex; align-items: center; gap: 0.4rem;
  font-family: 'Montserrat', sans-serif;
}
.btn-add-cart:hover { background: var(--gold); color: var(--navy); }
.btn-add-cart.added { background: var(--success); }
.btn-por {
  background: var(--light-bg); color: var(--navy);
  padding: 0.55rem 1rem; border-radius: 7px;
  font-size: 0.8rem; font-weight: 700; transition: var(--transition);
  border: 1.5px solid var(--border);
  font-family: 'Montserrat', sans-serif;
}
.btn-por:hover { border-color: var(--gold); color: var(--gold-dim); }

/* ─── Shop Filters ─── */
.shop-header {
  background: var(--navy-deep); padding: 3rem 2rem 2rem;
  text-align: center;
}
.shop-header h1 { color: var(--white); font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.shop-header p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }

.shop-controls {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 1.25rem 2rem; position: sticky; top: 70px; z-index: 100;
  box-shadow: var(--shadow-sm);
}
.shop-controls-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.filter-tabs { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.filter-tab {
  padding: 0.45rem 1rem; border-radius: 20px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em;
  background: var(--light-bg); color: var(--text-muted);
  border: 1.5px solid transparent; transition: var(--transition);
  font-family: 'Montserrat', sans-serif;
}
.filter-tab:hover { color: var(--navy); border-color: var(--border); }
.filter-tab.active { background: var(--navy); color: var(--white); }
.search-wrap {
  position: relative; flex: 1; min-width: 200px; max-width: 340px;
  margin-left: auto;
}
.search-wrap i {
  position: absolute; left: 0.85rem; top: 50%;
  transform: translateY(-50%); color: var(--text-muted); font-size: 0.9rem;
}
.search-input {
  width: 100%; padding: 0.55rem 1rem 0.55rem 2.5rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 0.85rem; color: var(--text-dark);
  background: var(--off-white); transition: var(--transition);
  font-family: 'Open Sans', sans-serif;
}
.search-input:focus {
  outline: none; border-color: var(--navy);
  background: var(--white); box-shadow: 0 0 0 3px rgba(13,31,60,0.08);
}
.shop-count {
  font-size: 0.8rem; color: var(--text-muted); white-space: nowrap;
  font-weight: 600;
}

.section-divider {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
}
.section-divider h3 {
  font-size: 1.1rem; font-weight: 800; white-space: nowrap;
  color: var(--navy);
}
.section-divider::after {
  content: ''; flex: 1; height: 1.5px; background: var(--border);
}
.section-divider .badge-pill {
  background: var(--light-bg); border: 1px solid var(--border);
  font-size: 0.72rem; font-weight: 700; color: var(--text-muted);
  padding: 0.2rem 0.65rem; border-radius: 20px;
}

/* ─── How to Order ─── */
.order-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; max-width: 960px; margin: 0 auto;
}
.order-step { text-align: center; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; box-shadow: 0 4px 16px rgba(201,160,42,0.4);
}
.order-step h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.order-step p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ─── Quality Section ─── */
.quality-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.quality-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.75rem 1.5rem; box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}
.quality-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.quality-card i { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }
.quality-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.quality-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ─── Pricing Info Banner ─── */
.pricing-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem; color: var(--white);
  display: flex; align-items: flex-start; gap: 2rem;
  flex-wrap: wrap;
}
.pricing-banner-icon { font-size: 2.5rem; color: var(--gold); flex-shrink: 0; }
.pricing-banner h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.pricing-banner ul { list-style: disc; padding-left: 1.25rem; }
.pricing-banner ul li { font-size: 0.88rem; color: rgba(255,255,255,0.75); margin-bottom: 0.35rem; line-height: 1.55; }
.pricing-banner ul li strong { color: var(--gold-light); }

/* ─── Checkout Page ─── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem; align-items: start;
}
.checkout-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.checkout-card-header {
  background: var(--navy); color: var(--white);
  padding: 1.25rem 1.75rem; display: flex; align-items: center; gap: 0.75rem;
}
.checkout-card-header h3 { font-size: 1rem; font-weight: 700; color: var(--white); }
.checkout-card-header .step-bubble {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  font-weight: 900; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; flex-shrink: 0;
}
.checkout-card-body { padding: 1.75rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-size: 0.8rem; font-weight: 700;
  color: var(--text-dark); margin-bottom: 0.4rem;
  letter-spacing: 0.03em; font-family: 'Montserrat', sans-serif;
}
.form-label .required { color: var(--danger); }
.form-control {
  width: 100%; padding: 0.65rem 1rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 0.9rem; color: var(--text-dark);
  background: var(--off-white); transition: var(--transition);
  font-family: 'Open Sans', sans-serif;
}
.form-control:focus {
  outline: none; border-color: var(--navy);
  background: var(--white); box-shadow: 0 0 0 3px rgba(13,31,60,0.08);
}
.form-control.error { border-color: var(--danger); }

.payment-options, .shipping-options {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
}
.payment-option {
  position: relative; cursor: pointer;
}
.payment-option input[type="radio"] { position: absolute; opacity: 0; }
.payment-label {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.85rem 1rem; border: 2px solid var(--border);
  border-radius: 10px; cursor: pointer; transition: var(--transition);
  background: var(--off-white);
}
.payment-option input:checked + .payment-label {
  border-color: var(--navy); background: rgba(13,31,60,0.04);
}
.payment-label i { font-size: 1.2rem; color: var(--text-muted); }
.payment-option input:checked + .payment-label i { color: var(--gold); }
.payment-label span { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); font-family: 'Montserrat', sans-serif; }
.payment-label .preferred-tag {
  font-size: 0.62rem; color: var(--in-stock); font-weight: 700;
  background: #d4f7e7; padding: 0.15rem 0.4rem; border-radius: 4px;
  margin-left: auto;
}

.order-summary-table { width: 100%; border-collapse: collapse; }
.order-summary-table th {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted);
  padding: 0 0.5rem 0.75rem; text-align: left;
}
.order-summary-table td {
  padding: 0.75rem 0.5rem; border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.order-summary-table td.product-col { font-weight: 700; color: var(--navy); }
.order-summary-table td.qty-col { color: var(--text-muted); text-align: center; }
.order-summary-table td.price-col { font-weight: 700; color: var(--navy); text-align: right; }
.order-totals { margin-top: 1rem; }
.total-row {
  display: flex; justify-content: space-between;
  align-items: center; padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.total-row:last-child { border: none; }
.total-row .label { font-size: 0.85rem; color: var(--text-muted); }
.total-row .value { font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.total-row.grand { padding-top: 0.75rem; }
.total-row.grand .label { font-size: 1rem; font-weight: 700; color: var(--navy); }
.total-row.grand .value { font-size: 1.3rem; font-weight: 900; color: var(--navy); font-family: 'Montserrat', sans-serif; }

.submit-options { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.btn-submit-email {
  display: flex; align-items: center; justify-content: center; gap: 0.65rem;
  background: var(--navy); color: var(--white);
  padding: 1rem 1.5rem; border-radius: 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 0.95rem; transition: var(--transition);
}
.btn-submit-email:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-submit-form {
  display: flex; align-items: center; justify-content: center; gap: 0.65rem;
  background: var(--gold); color: var(--navy);
  padding: 1rem 1.5rem; border-radius: 10px;
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 0.95rem; transition: var(--transition);
}
.btn-submit-form:hover { background: var(--gold-light); transform: translateY(-1px); }
.submit-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; line-height: 1.5; }

/* ─── About / FAQ ─── */
.mission-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.mission-text h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 1rem; }
.mission-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.mission-img {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg); height: 340px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: var(--gold);
}
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem;
  color: var(--navy); gap: 1rem; background: none; cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold-dim); }
.faq-question i { font-size: 0.8rem; color: var(--gold); flex-shrink: 0; transition: var(--transition); }
.faq-question.open i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-answer.open { max-height: 300px; padding-bottom: 1.25rem; }
.faq-answer p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* ─── Contact Page ─── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 3rem; align-items: start;
}
.contact-info-card {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 2.5rem; color: var(--white);
}
.contact-info-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 1.75rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail i { color: var(--gold); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.contact-detail .detail-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.contact-detail .detail-value { font-size: 0.92rem; color: rgba(255,255,255,0.87); }
.contact-detail .detail-value a { color: var(--gold-light); }
.contact-detail .detail-value a:hover { color: var(--white); }

.contact-form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow-sm);
}
.contact-form-card h3 { font-size: 1.2rem; margin-bottom: 1.75rem; }

/* ─── Footer ─── */
.footer {
  background: var(--navy-deep); color: rgba(255,255,255,0.6);
  padding: 3.5rem 2rem 2rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem; margin-bottom: 2.5rem;
}
.footer-brand-name {
  font-family: 'Montserrat', sans-serif; font-size: 1.1rem;
  font-weight: 800; color: var(--white); letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}
.footer-brand-name span { color: var(--gold); }
.footer-brand-tag { font-size: 0.68rem; letter-spacing: 0.14em; color: rgba(255,255,255,0.35); text-transform: uppercase; }
.footer-divider { width: 40px; height: 2px; background: var(--gold); margin: 1rem 0; }
.footer-desc { font-size: 0.82rem; line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  font-family: 'Montserrat', sans-serif; font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.83rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { font-size: 0.83rem; margin-bottom: 0.6rem; }
.footer-contact-item a { color: var(--gold-light); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.footer-legal { font-size: 0.75rem; line-height: 1.7; max-width: 700px; }
.footer-legal strong { color: rgba(255,255,255,0.6); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); white-space: nowrap; }

/* ─── Toast ─── */
.toast-container {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  z-index: 5000; display: flex; flex-direction: column; gap: 0.6rem;
}
.toast {
  background: var(--navy); color: var(--white);
  padding: 0.85rem 1.25rem; border-radius: 10px;
  font-size: 0.88rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.65rem;
  box-shadow: var(--shadow-lg); animation: slideIn 0.3s ease;
  max-width: 320px;
}
.toast i { color: var(--gold); }
.toast.success i { color: var(--success); }
.toast.error i { color: var(--danger); }

/* ─── Animations ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.fade-in { animation: fadeInUp 0.5s ease both; }

/* ─── Disclaimer Bar ─── */
.disclaimer-bar {
  background: #fff3cd; border-bottom: 2px solid #ffc107;
  padding: 0.6rem 2rem; text-align: center;
  font-size: 0.78rem; color: #664d03; font-weight: 600;
  letter-spacing: 0.02em;
}
.disclaimer-bar i { margin-right: 0.4rem; }

/* ─── Product Modal ─── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(7,20,40,0.7); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.open { display: flex; }
.product-modal {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 640px; width: 100%; max-height: 90vh;
  overflow-y: auto; animation: fadeInUp 0.3s ease;
}
.product-modal-header {
  background: var(--navy); padding: 1.5rem 1.75rem;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0;
}
.product-modal-header h3 { color: var(--white); font-size: 1.1rem; }
.modal-close { color: rgba(255,255,255,0.7); font-size: 1.2rem; padding: 4px; }
.modal-close:hover { color: var(--white); }
.product-modal-body { padding: 2rem; }
.modal-product-img {
  height: 180px; border-radius: var(--radius); margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--gold);
}
.modal-info-row {
  display: flex; gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap;
}
.modal-info-chip {
  background: var(--light-bg); border-radius: 20px;
  padding: 0.35rem 0.85rem; font-size: 0.8rem; font-weight: 700;
  color: var(--navy); font-family: 'Montserrat', sans-serif;
}
.modal-desc { font-size: 0.9rem; color: var(--text-body); line-height: 1.75; margin-bottom: 1.25rem; }
.modal-research {
  background: var(--light-bg); border-left: 3px solid var(--gold);
  padding: 1rem; border-radius: 0 8px 8px 0; margin-bottom: 1.5rem;
}
.modal-research .label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-dim); margin-bottom: 0.3rem; }
.modal-research .value { font-size: 0.85rem; color: var(--text-dark); }
.modal-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.25rem; border-top: 1px solid var(--border); gap: 1rem;
}
.modal-price { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--navy); }
.modal-qty-selector { display: flex; align-items: center; gap: 0.75rem; }
.modal-qty-btn {
  width: 32px; height: 32px; border-radius: 8px;
  border: 1.5px solid var(--border); background: var(--light-bg);
  font-size: 1rem; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.modal-qty-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.modal-qty-val { font-weight: 700; font-size: 1rem; min-width: 28px; text-align: center; }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .research-badge { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 4rem 1.5rem 3rem; }
  .section { padding: 3rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .payment-options { grid-template-columns: 1fr; }
  .mission-block { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .cart-drawer { width: 100%; max-width: 100%; }
  .hero-stats { gap: 1.5rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .gate-btn-group { flex-direction: column; }
}

/* ─── Utility ─── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted-custom { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.hidden { display: none !important; }
.no-scroll { overflow: hidden; }
