/* === GLUCOVITA — DESIGN TOKENS === */
:root {
  --green-deep:    #1B4332;
  --green-mid:     #2D6A4F;
  --green-light:   #52B788;
  --green-pale:    #D8F3DC;
  --green-tint:    #EAF6EE;
  --navy:          #1A3C5E;
  --navy-light:    #2C5F8A;
  --white:         #FFFFFF;
  --off-white:     #F8FAFB;
  --gray-light:    #F0F4F3;
  --gray-mid:      #8A9BA8;
  --text-dark:     #1C2B22;
  --text-body:     #3D4F48;
  --text-muted:    #6B7C75;
  --shadow-sm:     0 2px 8px rgba(27,67,50,0.08);
  --shadow-md:     0 6px 24px rgba(27,67,50,0.12);
  --shadow-lg:     0 16px 48px rgba(27,67,50,0.16);
  --radius:        14px;
  --radius-sm:     8px;
  --radius-pill:   100px;
}

/* === BASE === */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

/* === NAVBAR === */
.gv-navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27,67,50,0.08);
  padding: 14px 0;
  z-index: 1030;
}

.gv-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-deep) !important;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.gv-brand span { color: var(--green-light); }
.brand-icon {
  background: var(--green-deep);
  color: var(--white);
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.gv-navbar .nav-link {
  color: var(--text-body) !important;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 6px 14px !important;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.gv-navbar .nav-link:hover {
  color: var(--green-mid) !important;
  background: var(--green-tint);
}

/* === BUTTONS === */
.gv-btn-primary {
  background: var(--green-mid);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.925rem;
  letter-spacing: 0.1px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(45,106,79,0.28);
}
.gv-btn-primary:hover {
  background: var(--green-deep);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(45,106,79,0.38);
  transform: translateY(-1px);
}

.gv-btn-ghost {
  background: transparent;
  color: var(--green-deep);
  border: 2px solid var(--green-mid);
  border-radius: var(--radius-pill);
  padding: 10px 26px;
  font-weight: 600;
  font-size: 0.925rem;
  transition: background 0.2s, color 0.2s;
}
.gv-btn-ghost:hover {
  background: var(--green-mid);
  color: var(--white);
}

.gv-btn-outline {
  background: transparent;
  color: var(--green-mid);
  border: 2px solid var(--green-mid);
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.925rem;
  transition: background 0.2s, color 0.2s;
}
.gv-btn-outline:hover {
  background: var(--green-mid);
  color: var(--white);
}

.gv-btn-white {
  background: var(--white);
  color: var(--green-deep);
  border: none;
  border-radius: var(--radius-pill);
  padding: 14px 36px;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.gv-btn-white:hover {
  background: var(--green-tint);
  color: var(--green-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.16);
}

/* === SECTION UTILITIES === */
.gv-section {
  padding: 90px 0;
  background: var(--white);
}
.gv-section-alt {
  background: var(--off-white);
}

.section-header { margin-bottom: 16px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-mid);
  background: var(--green-tint);
  border: 1px solid var(--green-pale);
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* === HERO === */
.gv-hero {
  background: var(--green-tint);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.gv-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(82,183,136,0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-mid);
  background: var(--white);
  border: 1px solid var(--green-pale);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}

.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.4;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-headline em {
  font-style: normal;
  color: var(--green-mid);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--white);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--green-pale);
  box-shadow: var(--shadow-sm);
}
.trust-badge i { color: var(--green-mid); }

/* === PRODUCT BOTTLE VISUAL === */
.hero-product-wrap {
  position: relative;
  display: inline-block;
  padding: 40px;
}

.bottle-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.bottle-shape {
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 20px 40px rgba(27,67,50,0.22));
}

.bottle-cap {
  width: 44px;
  height: 22px;
  background: var(--green-deep);
  border-radius: 8px 8px 0 0;
  margin-bottom: -2px;
  position: relative;
  z-index: 2;
}
.bottle-top {
  width: 60px;
  height: 18px;
  background: var(--green-mid);
  border-radius: 4px 4px 0 0;
  position: relative;
  z-index: 1;
}
.bottle-body {
  width: 140px;
  height: 240px;
  background: var(--white);
  border-radius: 22px;
  border: 2px solid rgba(27,67,50,0.12);
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.8), 2px 0 6px rgba(27,67,50,0.06);
}
.bottle-body::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 30%;
  height: 100%;
  background: rgba(255,255,255,0.45);
  border-radius: 22px 0 0 22px;
}

.bottle-label {
  background: var(--green-tint);
  border: 1.5px solid var(--green-pale);
  margin: 24px 10px;
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  height: calc(100% - 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.label-logo {
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: -0.3px;
}
.label-tagline {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  text-align: center;
}
.label-count {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 6px;
  background: var(--white);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--green-pale);
}
.label-icons {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.label-icons span {
  width: 22px;
  height: 22px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--green-mid);
  border: 1px solid var(--green-pale);
}

/* Glucometer badge */
.glucometer-badge {
  position: absolute;
  top: 10px;
  right: -10px;
  background: var(--white);
  border: 1.5px solid var(--green-pale);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  z-index: 5;
  min-width: 150px;
}
.gluco-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.gluco-reading {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green-mid);
  line-height: 1;
  letter-spacing: -2px;
}
.gluco-reading span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0;
}
.gluco-status {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-mid);
  background: var(--green-tint);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-top: 6px;
  display: inline-block;
}
.gluco-status i { margin-right: 3px; }

/* Floating pills */
.floating-pill {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  z-index: 4;
}
.floating-pill i { color: var(--green-mid); margin-right: 5px; }
.pill-1 { bottom: 95px; left: 80px; }
.pill-2 { top: 120px; right: 92px; }

/* === PROOF BAR === */
.proof-bar {
  background: var(--green-deep);
  padding: 24px 0;
}
.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 36px;
  text-align: center;
}
.proof-item strong {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.6;
}
.proof-item span {
  font-size: 0.90rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.proof-item span i { color: #FFD700; font-size: 0.7rem; }
.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.18);
}

/* === BENEFITS === */
.benefit-card {
  background: var(--white);
  border: 1px solid rgba(27,67,50,0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.25s;
}
.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.benefit-icon-wrap {
  width: 54px;
  height: 54px;
  background: color-mix(in srgb, var(--icon-color) 12%, white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--icon-color);
  margin-bottom: 18px;
}
.benefit-card h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* === INGREDIENTS === */
.ingredient-card {
  background: var(--white);
  border: 1px solid rgba(27,67,50,0.08);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.25s;
}
.ingredient-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.ing-circle {
  width: 62px;
  height: 62px;
  background: var(--green-tint);
  border: 2px solid var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--green-mid);
  margin: 0 auto 16px;
}
.ingredient-card h6 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.ing-dose {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-mid);
  background: var(--green-tint);
  padding: 2px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 12px;
}
.ing-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* === HOW IT WORKS === */
.hiw-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.hiw-step {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  background: var(--white);
  border: 1px solid rgba(27,67,50,0.09);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.hiw-step-num {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--green-pale);
  line-height: 1;
  position: absolute;
  top: 14px;
  left: 18px;
  letter-spacing: -2px;
}
.hiw-step-icon {
  width: 70px;
  height: 70px;
  background: var(--green-tint);
  border: 2px solid var(--green-pale);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--green-mid);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.hiw-step h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.hiw-step p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.hiw-connector {
  width: 48px;
  height: 2px;
  background: var(--green-pale);
  align-self: center;
  flex-shrink: 0;
  margin-top: -20px;
}

/* === TESTIMONIALS === */
.review-card {
  background: var(--white);
  border: 1px solid rgba(27,67,50,0.09);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.25s;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-card-featured {
  border-color: var(--green-mid);
  background: var(--green-tint);
}
.review-stars { color: #F59E0B; font-size: 0.9rem; letter-spacing: 1px; }
.review-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
  margin: 0;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 42px;
  height: 42px;
  background: var(--green-mid);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}
.reviewer strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
}
.reviewer small {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.review-verified {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-mid);
  border-top: 1px solid var(--green-pale);
  padding-top: 12px;
}
.review-verified i { margin-right: 4px; }

/* === TRUST SECTION === */
.gv-trust-section {
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.trust-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.trust-icon-lg {
  width: 48px;
  height: 48px;
  background: var(--green-tint);
  border: 1.5px solid var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green-mid);
  flex-shrink: 0;
}
.trust-item strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
}
.trust-item p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.cert-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cert-badge {
  background: var(--off-white);
  border: 1.5px solid rgba(27,67,50,0.1);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.cert-badge:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--green-pale);
}
.cert-badge i {
  font-size: 1.8rem;
  color: var(--green-mid);
  display: block;
  margin-bottom: 10px;
}
.cert-badge span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === PRICING === */
.pricing-card {
  background: var(--white);
  border: 1.5px solid rgba(27,67,50,0.1);
  border-radius: 18px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
  margin-top: 25px;
}
.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.pricing-card-featured {
  border-color: var(--green-mid);
  background: var(--green-tint);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.pricing-popular-badge,
.pricing-best-value-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.pricing-popular-badge {
  background: var(--green-mid);
  color: var(--white);
}
.pricing-best-value-badge {
  background: var(--navy);
  color: var(--white);
}
.pricing-header .pricing-bottles {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
}
.pricing-header .pricing-supply {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.pricing-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}
.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-mid);
  margin-top: 6px;
}
.price-amount {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -2px;
}
.price-per {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  align-self: flex-end;
  margin-bottom: 8px;
}
.pricing-savings {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-mid);
  background: var(--white);
  border: 1px solid var(--green-pale);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  display: inline-block;
  text-align: center;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 0.875rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li i {
  color: var(--green-mid);
  font-size: 1rem;
  flex-shrink: 0;
}

.guarantee-strip {
  background: var(--green-tint);
  border: 1.5px solid var(--green-pale);
  border-radius: var(--radius);
  padding: 18px 32px;
  font-size: 0.9rem;
  color: var(--text-body);
}
.guarantee-strip i { color: var(--green-mid); font-size: 1.2rem; vertical-align: -2px; margin-right: 8px; }

/* === FAQ === */
.gv-accordion .accordion-item {
  border: 1px solid rgba(27,67,50,0.1);
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}
.gv-accordion .accordion-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  padding: 18px 24px;
  box-shadow: none;
  border-radius: var(--radius) !important;
}
.gv-accordion .accordion-button:not(.collapsed) {
  color: var(--green-mid);
  background: var(--green-tint);
}
.gv-accordion .accordion-button::after {
  filter: none;
}
.gv-accordion .accordion-button:not(.collapsed)::after {
  filter: invert(44%) sepia(55%) saturate(478%) hue-rotate(103deg) brightness(90%) contrast(95%);
}
.gv-accordion .accordion-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 0 24px 20px;
}

/* === FINAL CTA === */
.gv-cta-final {
  background: var(--green-deep);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.gv-cta-final::before {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(82,183,136,0.16) 0%, transparent 65%);
  border-radius: 50%;
}
.cta-final-inner {
  position: relative;
  z-index: 1;
}
.cta-final-inner .section-eyebrow.light {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
}
.gv-cta-final h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.gv-cta-final p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}
.cta-guarantee {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.cta-guarantee i { color: rgba(255,255,255,0.8); }

/* === FOOTER === */
.gv-footer {
  background: var(--text-dark);
  padding: 64px 0 0;
}
.footer-brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-brand .brand-icon {
  background: var(--green-mid);
}
.footer-brand span { color: var(--green-light); }
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}
.footer-socials a:hover {
  background: var(--green-mid);
  color: var(--white);
}
.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li,
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--green-light); }
.footer-links i { margin-right: 6px; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-divider {
  border-color: rgba(255,255,255,0.08);
  margin: 48px 0 28px;
}
.footer-bottom { padding-bottom: 36px; }
.footer-legal {
  font-size: 1rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  margin-bottom: 18px;
}
.footer-legal strong { color: rgba(255,255,255,0.5); }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-copy a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-copy a:hover { color: var(--green-light); }

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .gv-hero { padding: 60px 0 70px; }
  .hiw-connector { display: none; }
  .hiw-timeline { flex-direction: column; align-items: center; gap: 20px; }
  .hiw-step { max-width: 100%; }
  .proof-divider { display: none; }
  .proof-bar-inner { gap: 8px; }
  .proof-item { padding: 8px 20px; }
  .glucometer-badge { right: 0; top: 0; }
  .pricing-card-featured { transform: none; }
}

@media (max-width: 767px) {
  .gv-section { padding: 60px 0; }
  .hero-headline { font-size: 1.9rem; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; text-align: center; }
  .cert-badges-grid { grid-template-columns: repeat(2, 1fr); }
  .floating-pill { display: none; }
  .hero-product-wrap { padding: 20px; }
  .glucometer-badge { position: static; margin: 0 auto 20px; display: inline-block; }
}

@media (max-width: 480px) {
  .hero-trust-row { gap: 8px; }
  .trust-badge { font-size: 0.72rem; padding: 5px 10px; }
  .section-title { font-size: 1.5rem; }
  .gv-cta-final h2 { font-size: 1.6rem; }
}

.main-logo{
    width: 100%;
}
.benefit-card-img img {
    transition: box-shadow 0.25s, transform 0.25s;
    border-radius: 14px;
}
.benefit-card-img img:hover{
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.pricing-header {
    text-align: center;
}
.product-img {
    background: #eaf6ee;
    border-radius: 15px;
}


.site-breadcrumb {
    background: var(--green-tint);
    padding: 20px 0px;
    text-align: center;
}

.site-breadcrumb .breadcrumb-title {
    font-size: 40px;
    color: #333333;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
}
.site-breadcrumb .breadcrumb-menu {
    position: relative;
    z-index: 1;
}
.site-breadcrumb .breadcrumb-menu li:first-child {
    margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
    display: none;
}

.site-breadcrumb .breadcrumb-menu li {
    position: relative;
    display: inline-block;
    margin-left: 25px;
    color: #333333;
    font-weight: 400;
    text-transform: capitalize;
}
.site-breadcrumb .breadcrumb-menu li a{
    color: #333333;
    text-decoration: none;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.site-breadcrumb .breadcrumb-menu li::before {
    position: absolute;
    content: '//';
    right: -21px;
    top: 1px;
    text-align: center;
    font-size: 16px;
    color: #333333;
}
.site-breadcrumb .breadcrumb-menu li.active {
    color: #03928c;
}
.site-breadcrumb .breadcrumb-menu li a:hover {
    color: #03928c;
}
.featured-products {
    padding: 100px 0px;
}
.page-titel h3 {
    font-weight: 600;
    font-size: 44px;
    line-height: 60px;
    position: relative;
    margin-bottom: 10px;
}

.shop-details{
    padding: 100px 0px;
}

.pro-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.shop-details .main_img img {
    background-color: #f4f4f4;
    border-radius: 20px;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
input.qty {
    padding-left: 57px;
    border-radius: 5px;
    height: 46px;
}
.coupon-code-panel, .quantity {
    position: relative;
    width: 117px;
    height: 46px;
}
.quantity button {
    border: 0;
    background-color: transparent;
    padding: 0;
    margin: -9px 0 0;
    font-size: 22px;
    line-height: 18px;
    position: absolute;
    left: 15px;
    top: 55%;
    color: var(--dark-gray);
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}
.quantity button.qty-plus {
    right: 15px;
    left: auto;
    margin-top: -9px;
}


.table {

  width: 100%;

  max-width: 100%;

  margin-bottom: 1rem;

  background-color: transparent;

}



.table th,

.table td {

  padding: 0.75rem;

  vertical-align: top;

  border-top: 1px solid #dee2e6;

}



.table thead th {
vertical-align: bottom;
  border-bottom: 0px solid #dee2e6;
  text-align: center;
  padding: 0.15rem 1.35rem;
  background-color: #eaf6ee;
  font-weight: 600;

}



.table tbody + tbody {

  border-top: 2px solid #dee2e6;

}



.table .table {

  background-color: #fff;

}



.table-sm th,

.table-sm td {

  padding: 0.3rem;

}



.table-bordered {

  border: 1px solid #dee2e6;

}



.table-bordered th,

.table-bordered td {

  border: 1px solid #dee2e6;

}



.table-bordered thead th,

.table-bordered thead td {

  border-bottom-width: 2px;

}



.table-striped tbody tr:nth-of-type(odd) {

  background-color: rgba(0, 0, 0, 0.05);

}



.table-hover tbody tr:hover {

  background-color: rgba(0, 0, 0, 0.075);

}



.table-primary,

.table-primary > th,

.table-primary > td {

  background-color: #b8daff;

}



.table-hover .table-primary:hover {

  background-color: #9fcdff;

}



.table-hover .table-primary:hover > td,

.table-hover .table-primary:hover > th {

  background-color: #9fcdff;

}



.table-secondary,

.table-secondary > th,

.table-secondary > td {

  background-color: #d6d8db;

}



.table-hover .table-secondary:hover {

  background-color: #c8cbcf;

}



.table-hover .table-secondary:hover > td,

.table-hover .table-secondary:hover > th {

  background-color: #c8cbcf;

}



.table-success,

.table-success > th,

.table-success > td {

  background-color: #c3e6cb;

}



.table-hover .table-success:hover {

  background-color: #b1dfbb;

}



.table-hover .table-success:hover > td,

.table-hover .table-success:hover > th {

  background-color: #b1dfbb;

}



.table-info,

.table-info > th,

.table-info > td {

  background-color: #bee5eb;

}



.table-hover .table-info:hover {

  background-color: #abdde5;

}



.table-hover .table-info:hover > td,

.table-hover .table-info:hover > th {

  background-color: #abdde5;

}



.table-warning,

.table-warning > th,

.table-warning > td {

  background-color: #ffeeba;

}



.table-hover .table-warning:hover {

  background-color: #ffe8a1;

}



.table-hover .table-warning:hover > td,

.table-hover .table-warning:hover > th {

  background-color: #ffe8a1;

}



.table-danger,

.table-danger > th,

.table-danger > td {

  background-color: #f5c6cb;

}



.table-hover .table-danger:hover {

  background-color: #f1b0b7;

}



.table-hover .table-danger:hover > td,

.table-hover .table-danger:hover > th {

  background-color: #f1b0b7;

}



.table-light,

.table-light > th,

.table-light > td {

  background-color: #fdfdfe;

}



.table-hover .table-light:hover {

  background-color: #ececf6;

}



.table-hover .table-light:hover > td,

.table-hover .table-light:hover > th {

  background-color: #ececf6;

}



.table-dark,

.table-dark > th,

.table-dark > td {

  background-color: #c6c8ca;

}



.table-hover .table-dark:hover {

  background-color: #b9bbbe;

}



.table-hover .table-dark:hover > td,

.table-hover .table-dark:hover > th {

  background-color: #b9bbbe;

}



.table-active,

.table-active > th,

.table-active > td {

  background-color: rgba(0, 0, 0, 0.075);

}



.table-hover .table-active:hover {

  background-color: rgba(0, 0, 0, 0.075);

}



.table-hover .table-active:hover > td,

.table-hover .table-active:hover > th {

  background-color: rgba(0, 0, 0, 0.075);

}



.table .thead-dark th {

  color: #fff;

  background-color: #212529;

  border-color: #32383e;

}



.table .thead-light th {

  color: #495057;

  background-color: #e9ecef;

  border-color: #dee2e6;

}



.table-dark {

  color: #fff;

  background-color: #212529;

}



.table-dark th,

.table-dark td,

.table-dark thead th {

  border-color: #32383e;

}



.table-dark.table-bordered {

  border: 0;

}



.table-dark.table-striped tbody tr:nth-of-type(odd) {

  background-color: rgba(255, 255, 255, 0.05);

}



.table-dark.table-hover tbody tr:hover {

  background-color: rgba(255, 255, 255, 0.075);

}



@media (max-width: 575.98px) {

  .table-responsive-sm {

    display: block;

    width: 100%;

    overflow-x: auto;

    -webkit-overflow-scrolling: touch;

    -ms-overflow-style: -ms-autohiding-scrollbar;

  }

  .table-responsive-sm > .table-bordered {

    border: 0;

  }

}



@media (max-width: 767.98px) {

  .table-responsive-md {

    display: block;

    width: 100%;

    overflow-x: auto;

    -webkit-overflow-scrolling: touch;

    -ms-overflow-style: -ms-autohiding-scrollbar;

  }

  .table-responsive-md > .table-bordered {

    border: 0;

  }

}



@media (max-width: 991.98px) {

  .table-responsive-lg {

    display: block;

    width: 100%;

    overflow-x: auto;

    -webkit-overflow-scrolling: touch;

    -ms-overflow-style: -ms-autohiding-scrollbar;

  }

  .table-responsive-lg > .table-bordered {

    border: 0;

  }

}



@media (max-width: 1199.98px) {

  .table-responsive-xl {

    display: block;

    width: 100%;

    overflow-x: auto;

    -webkit-overflow-scrolling: touch;

    -ms-overflow-style: -ms-autohiding-scrollbar;

  }

  .table-responsive-xl > .table-bordered {

    border: 0;

  }

}



.table-responsive {

  display: block;

  width: 100%;

  overflow-x: auto;

  -webkit-overflow-scrolling: touch;

  -ms-overflow-style: -ms-autohiding-scrollbar;

}



.table-responsive > .table-bordered {

  border: 0;

}

table .thumb_img {
    width: 100px;
    border-radius: 5px;
    box-shadow: 0 0 3px #d9d6d6;
    padding: 6px;
}
.prd_nm {
    margin-left: 20px;
}
td.border-0.align-middle {
    text-align: center;
}
.cart-sec{
    padding: 100px 0px;
}
.order-summary {
    background: #eaf6ee;
    padding: 20px;
    border-radius: 14px;
}

.chck-frm{
    padding: 100px 0px;
}
p.chk-head {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: bold;
    color: #0a0f1f;
}
.form-group {
    position: relative;
    margin-bottom: 20px;
    line-height: 22px !important;
}
.form-group label {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 18px !important;
}
input[type="number"], input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="url"], input[type="search"], select, textarea, .form-control {
    position: relative;
    display: block;
    height: 51px;
    width: 100%;
    color: #686a6f;
    padding: 14px 14px;
    background-color: #ffffff;
    border: 1px solid #bfcfc4;
    border-radius: 5px;
    transition: all 300ms ease;
    font-family: var(--thm-b-font);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    appearance: none;
}
input[type="number"]:focus, input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="search"]:focus, select:focus, textarea:focus, .form-control:focus {
    box-shadow: none;
    outline: none;
    border-color: #03928c;
}
.chck-pay {
    border-radius: 15px;
    padding: 20px;
    background: #eaf6ee;
}

.contact-us{
    padding: 100px 0px;
}
.wrapper{
    padding: 100px 0px;
}
.thanks-page{
    padding: 100px 0px;
}
.prd_nm a {
    text-decoration: none;
}

#cookiePopup {
    position: fixed !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%);
    width: 100% !important;
    background: #658b7c;
    padding: 15px !important;
    z-index: 999999;
    gap: 20px;
    align-items: center !important;
    justify-content: center !important;
    text-align: center;
    display: none;
    border-radius: 0px !important;

}



    #cookiePopup h4 {

        font-size: 25px;

        color: #fff;

        margin-bottom: 15px;

    }



    #cookiePopup p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 0;
    line-height: 1.5;
    max-width: 700px;
    font-weight: 500;
}



    #cookiePopup p a {

        color: #fff;

        text-decoration: underline;

    }



    .cookieBtns {

        display: inline-flex;

        gap: 10px;

    }



    .cookieBtns button {

        font-size: 15px;

        margin: 10px 0;

        color: #fff;

        padding: 10px 20px;

        border-radius: 5px;

        background: #27c0cb;

        cursor: pointer;

        transition: all 0.5s ease;

        border: 2px solid #fff;

    }



    .cookieBtns button:last-child {

        background-color: #fff;

        color: #27c0cb;

    }



div#cookiePopup button {
    height: 46px !important;
    padding: 0 24px;
}

div#cookiePopup button#acceptCookie{
    background-color: var(--theme-color) !important;
}
