/* ============================================
   AUSSIE PEPTIDE LAB - MAIN STYLES
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  --primary:       #6a3de8;
  --primary-light: #7c52ef;
  --primary-dark:  #5228d4;
  --accent-green:  #2ecc71;
  --accent-orange: #f39c12;
  --accent-pink:   #e91e8c;
  --accent-blue:   #2196f3;
  --dark-bg:       #0d1b2a;
  --dark-bg2:      #111c2d;
  --dark-navy:     #0b1523;
  --text-dark:     #1a1a2e;
  --text-body:     #444;
  --text-muted:    #777;
  --text-light:    #f0f0f0;
  --white:         #ffffff;
  --light-bg:      #f8f9ff;
  --light-gray:    #f4f5f8;
  --border:        #e2e5ee;
  --star-gold:     #f5c518;
  --font-main:     'Inter', -apple-system, 'Segoe UI', sans-serif;
  --font-head:     'Plus Jakarta Sans', 'Inter', sans-serif;
  --radius-sm:     6px;
  --radius-md:     10px;
  --radius-lg:     18px;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:     0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.18);
  --transition:    0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.container-fluid {
  max-width: 100%;
  padding-left: 60px;
  padding-right: 60px;
}
.container {
  max-width: 1300px !important;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background-color: #0d1222;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 12px 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tb-left, .tb-mid, .tb-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tb-left img {
  border-radius: 2px;
}
.tb-mid {
  color: #fff;
}
.tb-mid span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.tb-mid i {
  font-size: 12px;
}
.tb-divider {
  color: rgba(255,255,255,0.3);
  margin: 0 4px;
}
.tb-right a {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.tb-right a:hover {
  color: #93c5fd;
}

/* ============================================
   MAIN HEADER (NEW)
   ============================================ */
.header-main {
  background: var(--white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.brand-logo-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
}
.brand-icon {
  background: linear-gradient(135deg, #5b21b6, #7c52ef);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(91, 33, 182, 0.25);
}
.brand-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-text-main {
  font-size: 24px;
  font-weight: 900;
  color: #0b1523;
  line-height: 1;
  letter-spacing: 0.5px;
}
.brand-text-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #7c52ef;
  margin-top: 3px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav .nav-link {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: #0b1523;
  position: relative;
  padding: 8px 0;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav .nav-link i {
  font-size: 10px;
}
.main-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #5b21b6;
  transition: width 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}
.main-nav .nav-link:hover::after, .main-nav .nav-active::after {
  width: 100%;
}
.main-nav .nav-active {
  color: #5b21b6;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-actions button {
  font-size: 18px;
  color: #0b1523;
  position: relative;
  transition: color var(--transition);
}
.header-actions button:hover {
  color: #5b21b6;
}
.cart-btn {
  display: flex;
  align-items: center; position: relative;
}
.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #5b21b6;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.navbar-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #0b1523;
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  background: url('../images/pept_banner.png') center/cover no-repeat;
  color: var(--white);
  position: relative;
  min-height: 85vh;
  padding: 0;
  overflow: hidden;
}
.hero-inner {
  display: flex;
  align-items: center;
  min-height: 85vh;
  width: 100%;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.hero-left {
  max-width: 600px;
  flex: 0 0 auto;
}
.hero-eyebrow-badge {
  display: inline-block;
  background: #5b21b6;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}
.gradient-text {
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hf-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hf-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
}
.hf-text {
  display: flex;
  flex-direction: column;
}
.hf-text strong {
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2;
}
.hf-text span {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.btn-hero-primary {
  background: #5b21b6;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--transition);
}
.btn-hero-primary:hover {
  background: #4c1d95;
  color: #fff;
}
.btn-hero-secondary {
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 13px 26px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
  background: transparent;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* Hero Right Custom & Glassmorphism */
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 85vh;
  width: 100%;
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.hero-left {
  max-width: 65%;
  flex: 0 0 auto;
}

/* New custom classes for SEO friendly & compact banner */
.hero-eyebrow-badge-custom {
  background: #5b21b6;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  color: #fff;
  font-size: 11px;
  padding: 6px 14px;
  margin-bottom: 24px;
}
.gradient-text-purple {
  color: #7c52ef;
}
.hero-sub-custom {
  font-size: 16px;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* Features Container */
.hero-features-glass {
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.05);
  max-width: max-content;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  flex-wrap: wrap;
}
.hf-item-glass {
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid rgba(255,255,255,0.15);
  padding-right: 15px;
}
.hf-item-glass.no-border {
  border-right: none;
  padding-right: 0;
}
.hf-icon-glass {
  font-size: 22px;
  color: #fff;
  display: flex;
  align-items: center;
}
.hf-item-glass:first-child .hf-icon-glass {
  color: #a78bfa;
}
.hf-text-glass {
  display: flex;
  flex-direction: column;
}
.hf-text-glass strong {
  font-size: 12px;
  margin-bottom: 2px;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}
.hf-text-glass span {
  font-size: 10px;
  opacity: 0.8;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
}

/* Custom Buttons */
.hero-btns-custom {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.btn-hero-primary-custom {
  background: #6a3de8;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}
.btn-hero-primary-custom, .btn-hero-primary-custom:visited { color: #fff; }
.btn-hero-primary-custom:hover { background: #5228d4; color: #fff; }

.btn-hero-secondary-custom {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  transition: all 0.3s ease;
}
.btn-hero-secondary-custom:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* Hero Right Sidebar */
.hero-right-glass {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-left: auto;
  max-width: 40%;
  width: 290px;
  z-index: 10;
}
.hero-info-box-glass {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(11, 21, 35, 0.45);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  width: 100%;
}
.ib-icon-glass {
  color: #fff;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  flex-shrink: 0;
}
.ib-text-glass {
  display: flex;
  flex-direction: column;
  color: #fff;
}
.ib-text-glass strong {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.ib-text-glass span {
  font-size: 11px;
  color: rgba(255,255,255,0.8);
}

.hero-img-wrap { display: none; }

/* 25+ Stat Badge */
.hero-stat-badge {
  position: absolute;
  bottom: 80px;
  left: 62%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #0b1523;
  border-radius: 20px;
  padding: 18px 24px;
  display: flex;

  gap: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
  z-index: 10;
  min-width: max-content;
}
.hero-stat-badge .stat-icon {
  width: 50px;
  height: 50px;
  background: #6848A8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  flex-shrink: 0;
}
.hero-stat-badge .stat-content {
  display: flex;
  flex-direction: column;
}
.hero-stat-badge .stat-num {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  color: #6848A8;
  letter-spacing: -1px;
}
.hero-stat-badge .stat-label {
  font-size: 12px;
  margin-top: 4px;
  line-height: 1.4;
  color: #4b5563;
  font-weight: 600;
}

/* ============================================
   AUSTRALIA SHIPPING BADGE
   ============================================ */
.australia-shipping-badge {
  position: absolute;
  bottom: 110px;
  right: 5%;
  width: 140px;
  height: 140px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 1px solid #7c52ef;
  z-index: 10;
  animation: pulse-badge 3s infinite alternate;
}
.australia-shipping-badge .badge-svg {
  width: 90%;
  height: 90%;
}
.australia-shipping-badge .badge-text {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
}
@keyframes pulse-badge {
  0% { transform: scale(1); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
  100% { transform: scale(1.03); box-shadow: 0 15px 40px rgba(124, 82, 239, 0.2); }
}

@media (max-width: 991px) {
  .australia-shipping-badge {
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
  }
  .australia-shipping-badge .badge-text {
    font-size: 12px;
  }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section { padding: 50px 0; }
.section-sm { padding: 50px 0; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.section-header { text-align: center; margin-bottom: 48px; }

/* ============================================
   FEATURES PILL
   ============================================ */
.features-pill-wrapper {
  margin-top: -60px; /* Pull it up over the hero section */
  position: relative;
  z-index: 10;
  margin-bottom: 50px;
}
.features-pill {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
}
.fp-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.fp-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #5b21b6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5b21b6;
  font-size: 20px;
}
.fp-text {
  display: flex;
  flex-direction: column;
}
.fp-text strong {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: #0b1523;
  margin-bottom: 2px;
}
.fp-text span {
  font-size: 12.5px;
  color: #64748b;
}
.fp-divider {
  width: 1px;
  height: 40px;
  background-color: #e2e8f0;
}

/* ============================================
   EXPLORE RANGE
   ============================================ */
.explore-range {
  background: #f8fafc; /* placeholder for wavy bg if needed */
  padding-top: 20px;
}
.explore-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: #5b21b6;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.product-card {
  background: var(--white);
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: left;
  transition: all var(--transition);
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.product-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #5b21b6;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}
.product-badge i { font-size: 9px; }
.product-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
}
.product-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}
.product-dose {
  font-size: 14px;
  font-weight: 700;
  color: #5b21b6;
  margin-bottom: 16px;
}
.product-props {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
  padding: 0;
}
.product-props li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #475569;
  margin-bottom: 8px;
  line-height: 1.4;
}
.product-props li i { color: #5b21b6; font-size: 14px; flex-shrink: 0; }
.btn-view-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #5b21b6;
  border: 1px solid #5b21b6;
  border-radius: 30px;
  padding: 10px 20px;
  transition: all var(--transition);
  background: #fff;
  width: 100%;
}
.btn-view-details:hover { background: #f5f3ff; }

/* ============================================
   BESPOKE BANNER
   ============================================ */
.bespoke-banner {
  background: #f3f0ff;
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.bespoke-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.bespoke-icon {
  width: 64px;
  height: 64px;
  background: #5b21b6;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}
.bespoke-text h4 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.bespoke-text p {
  font-size: 14px;
  color: #475569;
  margin: 0;
}
.btn-contact {
  background: #5b21b6;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all var(--transition);
}
.btn-contact:hover { background: #4c1d95; color: #fff; }

/* ============================================
   RESEARCH TAGLINE
   ============================================ */
.research-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 36px 0 0;
  margin-bottom: 12px;
}
.research-tagline::before,
.research-tagline::after {
  content: '';
  height: 1px;
  background-color: #cbd5e1;
  width: 60px;
}
.tagline-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: #0b1523;
  text-transform: uppercase;
  margin: 0;
}

/* ============================================
   PEPTIDE SOLUTIONS
   ============================================ */
.section-header {
  padding-top: 50px;
}
.peptide-solutions {
  background: var(--white);
  padding: 50px 0 50px 0;
}

.peptide-solutions .section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #0b1523;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.peptide-solutions .section-subtitle {
  font-size: 16px;
  color: #64748b;
  font-weight: 400;
  margin-bottom: 48px;
}

.peptide-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.peptide-card {
  position: relative;
  background: #fafbfc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 44px 16px 36px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: all var(--transition);
  height: 100%;
}
.peptide-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 5px;
  background-color: var(--card-color);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.peptide-card:hover {
  background: #ffffff;
  border-color: var(--card-color);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transform: translateY(-4px);
  z-index: 2;
}

.pc-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--card-color);
  margin-bottom: 12px;
  line-height: 1.35;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.2px;
}

.pc-divider {
  width: 24px;
  height: 2.5px;
  background-color: var(--card-color);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.pc-desc {
  font-family: var(--font-main);
  font-size: 12.5px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: url('../images/about_bnr.webp') center/cover no-repeat;
  color: #334155;
  padding: 50px 0 0 0;
  position: relative;
  overflow: hidden;
}
.about-inner {
  /* Layout handled by Bootstrap grid row/columns */
}
.about-eyebrow-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.about-eyebrow {
  font-family: var(--font-main);
  font-size: 13.5px;
  font-weight: 700;
  color: #0c8b82;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.05em;
}
.about-eyebrow-line {
  width: 32px;
  height: 2px;
  background-color: #0c8b82;
}
.about-section .section-title {
  color: #0b1523;
  text-align: left;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
}
.about-title-line {
  width: 60px;
  height: 2.5px;
  background-color: #0c8b82;
  margin-bottom: 36px;
}
.about-body {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-body strong {
  color: #0b1523;
  font-weight: 700;
}

.about-right {
  position: relative;
  min-height: 320px;
}
.about-badge {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    padding: 20px 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 375px;
    position: absolute;
      right: 74px;
    bottom: -85px;
}
.badge-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.badge-content {
  display: flex;
  flex-direction: column;
}
.badge-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: #0b1523;
  line-height: 1.3;
  margin-bottom: 4px;
}
.badge-subtitle {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: #0c8b82;
  margin-bottom: 16px;
}
.badge-line {
  height: 1px;
  background-color: #e2e8f0;
  margin-bottom: 16px;
  width: 100%;
}
.badge-desc {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  font-weight: 500;
}

/* --- About Section Trust Banner --- */
.about-trust-banner {
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  padding: 25px 0;
  margin-top: 60px;
}
.trust-banner-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px 24px;
  border-right: 1px solid #cbd5e1;
}
.trust-banner-item:last-child {
  border-right: none;
}
.trust-icon-circle {
  width: 54px;
  height: 54px;
  background-color: #f0fdfa; /* light teal circle */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0c8b82; /* teal matching theme */
  font-size: 20px;
  flex-shrink: 0;
}
.trust-text {
  display: flex;
  flex-direction: column;
}
.trust-text strong {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: #0b1523;
  line-height: 1.3;
}
.trust-text span {
  font-size: 13px;
  color: #64748b;
  margin-top: 2px;
}

/* ============================================
   HOW IT WORKS V2
   ============================================ */
.how-it-works-v2 {
  background: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}
.hiw-header {
  margin-bottom: 60px;
}
.hiw-eyebrow {
  color: #6a3de8;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.hiw-dot {
  width: 6px;
  height: 6px;
  background: #6a3de8;
  border-radius: 50%;
}
.hiw-title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  color: #0b1523;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hiw-subtitle {
  font-size: 16px;
  color: #475569;
}
.hiw-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  max-width: 1200px;
  margin: 0 auto 0;
}
/* Horizontal dotted line */
.hiw-timeline::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  border-top: 2px dotted #cbd5e1;
  z-index: 1;
}
.hiw-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 10px;
}
.hiw-icon-box {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  border: 3px solid var(--step-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--step-color);
  position: relative;
  margin-bottom: 40px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}
/* Vertical dotted line */
.hiw-icon-box::after {
  content: '';
  position: absolute;
  bottom: -43px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  border-left: 2px dotted #cbd5e1;
  z-index: -1;
}
.hiw-arrow {
  width: 32px;
  height: 32px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 14px;
  position: relative;
  z-index: 2;
  margin-top: 44px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  flex-shrink: 0;
}
.hiw-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 40px 20px 24px;
  text-align: center;
  box-shadow: 0 10px 30px -5px rgba(0,0,0,0.04);
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: all 0.3s ease;
}
.hiw-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px -5px rgba(0,0,0,0.08);
  border-color: var(--step-color);
}
.hiw-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--step-color);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 4px 24px;
  border-radius: 20px;
  letter-spacing: 1px;
}
.hiw-card-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}
.hiw-card-line {
  width: 24px;
  height: 3px;
  background: var(--step-color);
  margin: 0 auto 16px;
  border-radius: 3px;
}
.hiw-card-desc {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}
.hiw-trust-banner {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.hiw-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hiw-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.hiw-trust-text {
  display: flex;
  flex-direction: column;
}
.hiw-trust-text strong {
  font-size: 13.5px;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 2px;
}
.hiw-trust-text span {
  font-size: 12.5px;
  color: #64748b;
}

@media (max-width: 991px) {
  .hiw-timeline {
    flex-direction: column;
    align-items: center;
  }
  .hiw-timeline::before {
    display: none;
  }
  .hiw-arrow {
    transform: rotate(90deg);
    margin: 16px 0;
  }
  .hiw-step {
    width: 100%;
    max-width: 400px;
    margin-bottom: 16px;
  }
  .hiw-icon-box {
    margin-bottom: 30px;
  }
  .hiw-icon-box::after {
    height: 30px;
    bottom: -33px;
  }
}
@media (max-width: 768px) {
  .hiw-trust-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section {
  background: #ffffff;
  padding: 50px 0;
}
.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

/* Excellent badge */
.excellent-badge {
  display: inline-flex;
  align-items: center;
  background-color: #e6f4f1;
  color: #0c8b82;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(12, 139, 130, 0.15);
  margin-bottom: 16px;
}
.excellent-badge svg {
  fill: #0c8b82;
}

.reviews-header .section-title {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 700;
  color: #0b1523;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.shop-products-grid.cart-related-grid {
    grid-template-columns: repeat(4, 1fr);
    /* gap: 22px; */
}
/* Rating Summary */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.rating-stars {
  color: #0c8b82; /* Teal green stars */
  font-size: 18px;
  display: flex;
  gap: 3px;
}
.rating-text {
  font-family: var(--font-main);
  font-size: 15px;
  color: #4b5563;
}
.rating-text strong {
  color: #0b1523;
  font-weight: 700;
}

/* Carousel Outer Wrapper */
.reviews-carousel {
  position: relative;
  margin: 40px auto 0;
  max-width: 100%;
}

/* Track container */
.reviews-track-container {
  overflow: hidden;
  width: 100%;
  padding: 10px 0; /* padding to avoid cutting off card shadows */
}

/* Track list */
.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Individual Card */
.review-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  min-width: 270px;
  flex: 0 0 calc(25% - 15px); /* 4 cards visible on desktop */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

/* Card Header */
.rc-header {
  padding: 24px 24px 12px;
}
.rc-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #e6f4f1; /* Light teal bg */
  color: #0c8b82; /* Teal color */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.rc-name-stars {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rc-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: #0b1523;
  margin-bottom: 2px;
  line-height: 1.2;
}
.rc-stars {
  color: #0c8b82; /* Teal stars */
  font-size: 11px;
  display: flex;
  gap: 2px;
}

/* Verified Row */
.rc-verified-row {
  padding: 0 24px 12px;
}
.rc-verified {
  font-family: var(--font-main);
  font-size: 12px;
  color: #0c8b82;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rc-verified i {
  font-size: 14px;
  color: #0c8b82;
}

/* Thin Divider */
.rc-divider {
  height: 1px;
  background-color: #f1f5f9;
  margin: 0 24px 16px;
}

/* Card Body Text */
.rc-text {
  font-family: var(--font-main);
  font-size: 13.5px;
  color: #334155;
  line-height: 1.6;
  padding: 0 24px;
  margin-bottom: 24px;
  flex: 1; /* Pushes footer to bottom */
}

/* Card Footer Date Area */
.rc-footer {
  background-color: #f8fafc;
  border-top: 1px solid #f1f5f9;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rc-footer i {
  color: #94a3b8;
  font-size: 13px;
}
.rc-date {
  font-family: var(--font-main);
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

/* Navigation Overlay Buttons */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  color: #0c8b82;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 10;
}
.carousel-nav-btn:hover {
  background: #f8fafc;
  border-color: #0c8b82;
  box-shadow: 0 6px 16px rgba(12, 139, 130, 0.15);
}
.carousel-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  box-shadow: none;
  border-color: #e2e8f0;
}
.prev-btn {
  left: -22px; /* Hang halfway off the edge */
}
.next-btn {
  right: -22px; /* Hang halfway off the edge */
}

/* Pagination Dots */
.carousel-dots-container {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cbd5e1;
  cursor: pointer;
  transition: all var(--transition);
}
.carousel-dot.active {
  background-color: #0c8b82;
}

/* ============================================
   QUALITY COMMITMENT
   ============================================ */
.quality-section {
  background: #f5f7fe;
  padding: 80px 0 70px;
  text-align: center;
  margin-bottom: 50px;
}
.quality-header { margin-bottom: 52px; }
.quality-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.quality-section .section-title { font-size: clamp(22px, 2.8vw, 36px); line-height: 1.3; }
.quality-highlight { color: var(--primary); }
.quality-title-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #a78bfa);
  border-radius: 2px;
  margin: 18px auto 22px;
}
.quality-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Pillars Grid */
.quality-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 44px;
}
.quality-pillar {
  background: var(--white);
  border: 2px solid rgba(79,70,229,0.28);
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(79,70,229,0.06);
}
.quality-pillar:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 28px rgba(79,70,229,0.14);
  transform: translateY(-4px);
}

/* Top area of each pillar card */
.qp-top {
  padding: 30px 26px 22px;
  flex: 1;
}
.qp-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #eef2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.qp-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.qp-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Bottom area of each pillar card */
.qp-bottom {
  background: #f5f7fe;
  border-top: 2px solid rgba(79,70,229,0.15);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
}
.qp-bottom-inner {
     border: 1.5px solid rgb(79, 70, 229);
    border-radius: 12px;
    padding: 14px 20px;
    /* background: var(--white); */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45%;
}

/* Purity card — HPLC chart svg */
.hplc-chart-svg {
  width: 100%;
  max-width: 240px;
  display: block;
}

/* Heavy metals card */
.heavy-metals-box {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  border: 1.5px solid rgb(79, 70, 229);
  border-radius: 12px;
  padding: 10px 16px;

  width: 50%;
}
.heavy-metals-box span {
  background: #eef2ff;
  border: 1.5px solid rgba(79,70,229,0.3);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 800;
  color: #4f46e5;
  letter-spacing: 0.04em;
}

/* Endotoxins card */
.endotoxins-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;

 
  padding: 14px 20px;

}
.endotoxins-icon-wrap svg {
  width: 44px;
  height: 44px;
}

/* Verify Button */
.quality-btn-wrap { text-align: center; margin-top: 8px; }
.btn-verify-batch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #5b21b6;
  color: #fff;
  padding: 14px 36px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(79,70,229,0.38);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-verify-batch:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(79,70,229,0.5);
  color: #fff;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: #0b1523; /* Or var(--dark-navy) */
  color: rgba(255,255,255,0.7);
  padding: 0;
}

/* ── FOOTER TOP: Navigation Grid ── */
.footer-top {
  background: transparent;
  padding: 48px 0 0px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.footer-col-header {
  display: flex;
  align-items: center;
  gap: 10px;

  padding-bottom: 20px;

}
.footer-col-icon {
width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(26, 140, 186, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-col-icon svg {
  stroke: #0c8b82;
}
.footer-col-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 0;
  width: max-content;
}
.footer-links li {
  
}
.footer-links li:last-child {
  border-bottom: none;
}
.footer-links a {
  font-size: 13.5px;
  color: #fff;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 5px 0;
  width: 100%;
}
.footer-links a:hover {
  color: #1a8cba;
  padding-left: 4px;
}
.flink-arrow {
  font-size: 16px;
  color: #0c8b82;
  font-weight: 400;
  transition: color var(--transition), transform var(--transition);
}
.footer-links a:hover .flink-arrow {
  color: #1a8cba;
  transform: translateX(2px);
}

/* Newsletter Column */
.footer-nl-sub {
  font-size: 13.5px;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer-nl-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-nl-form input {
  width: 100%;
  background: #001832;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13.5px;
  color: #fff;
  outline: none;
  font-family: var(--font-main);
  transition: border-color var(--transition);
}
.footer-nl-form input::placeholder {
  color: rgba(255,255,255,0.3);
}
.footer-nl-form input:focus {
  border-color: #1a8cba;
}
.btn-signup {
  background: #5b21b6;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  align-self: flex-start;
}
.btn-signup:hover {
  background: #5b21b6;
  transform: translateY(-1px);
}
.privacy-note {
  font-size: 11.5px;
  color: #fff;
  display: flex;
  align-items: center;
}

/* ── FOOTER MID: Brand / Contact / Crypto ── */
.footer-mid {
  background: transparent;
  padding: 10px 0 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cu-hero-inner.product-page-bre {
    padding: 15px 0;
    min-height: auto;
}
.footer-mid-grid {
  display: grid;
  grid-template-columns: 1.4fr auto 1fr 1fr;
  gap: 0 40px;
  align-items: start;
}
.footer-mid-brand {
  padding-right: 20px;
}
.footer-mid-brand .brand-logo .logo-text .name {
  color: #fff;
}
.footer-mid-brand .brand-logo .logo-text .name span {
  color: #1a8cba;
}
.footer-mid-brand .brand-logo .logo-text .tagline {
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em;
}
.footer-brand-desc {
  font-size: 13px;
  color: #fff;
  margin-top: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.footer-address {
  font-size: 13px;
  color: #fff;
  line-height: 1.75;
}
.footer-mid-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  align-self: stretch;
}

/* Contact Column */
.footer-mid-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 10px 0;
}
.fmc-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.fmc-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(26,140,186,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fmc-icon svg {
  stroke: #0c8b82;
}
.fmc-row span {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}

/* We Accept / Crypto */
.footer-mid-crypto {
  padding: 10px 0;
}
.crypto-icons {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.crypto-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.crypto-circle {

  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.crypto-circle:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.crypto-label {
  font-size: 12px;
  color: #fff;
  font-weight: 500;
}

/* ── FOOTER BOTTOM BAR ── */
.footer-bottom {
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.fbb-copy {
  font-size: 12.5px;
  color: #fff;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 4px;
}
.fbb-badges {
  display: flex;
  align-items: center;
  gap: 28px;
}
.fbb-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}
.fbb-badge svg {
  flex-shrink: 0;
}
.fbb-backtop {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0c8b82;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-main);
}
.fbb-backtop:hover {
  background: #0a7a72;
  transform: translateY(-1px);
}

/* Legacy footer classes for backwards compatibility */
.footer-bottom-left { font-size: 12.5px; color: rgba(255,255,255,0.45); }
.footer-bottom-right { display: flex; align-items: center; gap: 8px; }
.pay-badge {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-right: 4px;
}
.pay-icons {
  display: flex;
  gap: 6px;
}
.pay-icon {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.mobile-menu.open { display: block; }
.mobile-menu .nav-link {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.mobile-menu .nav-link:last-child { border-bottom: none; }
.mobile-menu-btns {
  padding: 16px 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.text-center { text-align: center; }
.d-none { display: none; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   CONTACT US PAGE
   ============================================ */

/* --- Hero --- */
.cu-hero {
  background: linear-gradient(120deg, rgba(11,21,35,0.90) 55%, rgba(11,21,35,0.75) 100%), url('../images/peptides_banner.png') center/cover no-repeat;
  padding: 0;
  overflow: hidden;
}
.cu-hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 360px;
  padding: 60px 0;
}
.cu-hero-left {
  flex: 0 0 50%;
  max-width: 50%;
}
.cu-hero-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.cu-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.cu-hero-divider {
  width: 50px;
  height: 3px;
  background: var(--primary-light);
  border-radius: 2px;
  margin-bottom: 18px;
}
.cu-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
}
.cu-breadcrumb a {
  color: #fff;
}
.cu-breadcrumb a:hover { color: var(--primary-light); }
.cu-breadcrumb-sep { color: rgba(255,255,255,0.4); }
.cu-breadcrumb-current { color: var(--primary-light); }

.cu-hero-right {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  justify-content: center;
}
.cu-hero-img {
  max-width: 320px;
  border-radius: var(--radius-lg);
}

/* --- Form + Info Section --- */
.cu-form-section {
  padding: 64px 0;
  background: var(--white);
}
.cu-form-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.cu-form-card,
.cu-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.cu-card-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cu-card-title {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.cu-card-divider {
  width: 44px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* Form */
.cu-contact-form { display: flex; flex-direction: column; gap: 18px; }
.cu-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.cu-form-group { display: flex; flex-direction: column; gap: 6px; }
.cu-form-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dark);
}
.cu-form-label span { color: #e53e3e; }
.cu-input,
.cu-textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.cu-input::placeholder,
.cu-textarea::placeholder { color: var(--text-muted); }
.cu-input:focus,
.cu-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(106,61,232,0.12);
}
.cu-textarea { resize: vertical; min-height: 140px; }

.cu-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-body);
}
.cu-checkbox input { position: absolute; opacity: 0; width: 18px; height: 18px; cursor: pointer; }
.cu-checkbox-box {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  transition: all var(--transition);
}
.cu-checkbox input:checked + .cu-checkbox-box {
  background: var(--primary);
  border-color: var(--primary);
}
.cu-checkbox input:checked + .cu-checkbox-box::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.cu-checkbox-text a { color: var(--primary); font-weight: 600; }
.cu-checkbox-text a:hover { text-decoration: underline; }

.cu-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  margin-top: 4px;
  transition: background var(--transition), transform var(--transition);
}
.cu-btn-submit:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* Info card */
.cu-info-intro {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 26px;
}
.cu-info-list { display: flex; flex-direction: column; gap: 22px; }
.cu-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cu-info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.cu-info-text { display: flex; flex-direction: column; gap: 2px; }
.cu-info-text strong {
  font-family: var(--font-head);
  font-size: 14.5px;
  color: var(--text-dark);
  font-weight: 700;
}
.cu-info-text span { font-size: 13.5px; color: var(--text-body); }
.cu-info-muted { color: var(--text-muted) !important; font-size: 12.5px !important; }

/* --- Map --- */
.cu-map-section { padding: 0 0 64px; background: var(--white); }
.cu-map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.cu-map-frame {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}
.cu-map-card {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-md);
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cu-map-card strong {
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--text-dark);
}
.cu-map-card span { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }
.cu-map-card a {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 6px;
}
.cu-map-card a:hover { text-decoration: underline; }

/* --- Trust Features --- */
.cu-trust-section { padding: 0 0 64px; background: var(--white); }
.cu-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
}
.cu-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 0 12px;
}
.cu-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  box-shadow: var(--shadow-sm);
}
.cu-trust-item strong {
  font-family: var(--font-head);
  font-size: 14.5px;
  color: var(--text-dark);
  font-weight: 700;
}
.cu-trust-item span { font-size: 12.5px; color: var(--text-muted); line-height: 1.5; }

/* --- FAQ --- */
.cu-faq-section { padding: 0 0 80px; background: var(--white); }
.cu-faq-header { text-align: center; margin-bottom: 40px; }
.cu-faq-divider {
  width: 56px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 14px auto 0;
}
.cu-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cu-faq-item {
  position: relative;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 48px 18px 20px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  width: 100%;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.cu-faq-item:hover { border-color: var(--primary); }
.cu-faq-item i {
  position: absolute;
  right: 18px;
  top: 19px;
  font-size: 13px;
  color: var(--primary);
  transition: transform var(--transition);
}
.cu-faq-item.cu-faq-open i { transform: rotate(180deg); }
.cu-faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  font-weight: 400;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7;
  transition: max-height var(--transition), margin-top var(--transition);
}
.cu-faq-item.cu-faq-open .cu-faq-answer {
  max-height: 200px;
  margin-top: 12px;
}

/* Nav active state */
.cu-nav-active { color: var(--primary) !important; font-weight: 700; }

/* ============================================
   PRODUCT DETAIL PAGE (.pdp-)
   ============================================ */

/* Breadcrumb */
.pdp-breadcrumb-bar {
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  margin-top: 0;
}
.pdp-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
}
.pdp-breadcrumb a {
  color: var(--text-body);
  transition: color var(--transition);
}
.pdp-breadcrumb a:hover { color: var(--primary); }
.pdp-bc-sep {
  color: var(--text-muted);
  font-size: 10px;
}
.pdp-bc-current { color: var(--primary); font-weight: 600; }

/* Nav active */
.pdp-nav-active { color: var(--primary) !important; font-weight: 700; }

/* ── MAIN PRODUCT SECTION ── */
.pdp-main-section { padding: 48px 0 40px; }
.pdp-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

/* Gallery */
.pdp-gallery { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 24px; }
.pdp-img-main-wrap {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(155deg, var(--light-bg) 0%, #f1f0ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition);
  cursor: zoom-in;
}
.pdp-img-main-wrap:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}
.pdp-img-main-wrap:hover .pdp-img-main { transform: scale(1.05); }
.pdp-img-main {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  padding: 24px;
  transition: transform 0.4s ease;
}
.pdp-zoom-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-body);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  z-index: 2;
  cursor: pointer;
}
.pdp-zoom-btn:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: scale(1.08);
}
.pdp-badge-corner {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pdp-thumbnails {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pdp-thumb-track {
  display: flex;
  gap: 8px;
  flex: 1;
  overflow: hidden;
}
.pdp-thumb {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--light-bg);
  padding: 6px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pdp-thumb:hover { border-color: var(--primary-light); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.pdp-thumb-active { border-color: var(--primary) !important; box-shadow: 0 4px 14px rgba(106,61,232,0.25); }
.pdp-thumb-nav {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-body);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}
.pdp-thumb-nav:hover { border-color: var(--primary); color: #fff; background: var(--primary); box-shadow: var(--shadow-sm); }

/* Lightbox */
.pdp-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13,17,30,0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 40px;
  animation: pdpFadeIn 0.2s ease;
}
.pdp-lightbox.pdp-lightbox-open { display: flex; }
@keyframes pdpFadeIn { from { opacity: 0; } to { opacity: 1; } }
.pdp-lightbox-inner { position: relative; max-width: 640px; width: 100%; text-align: center; }
.pdp-lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.pdp-lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.pdp-lightbox-close:hover { background: var(--primary); color: #fff; transform: rotate(90deg); }
.pdp-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.pdp-lightbox-nav:hover { background: var(--primary); color: #fff; }
.pdp-lightbox-prev { left: -20px; }
.pdp-lightbox-next { right: -20px; }
.pdp-lightbox-caption { color: rgba(255,255,255,0.7); font-size: 13px; margin-top: 16px; letter-spacing: 0.02em; }

/* Product Info */
.pdp-info { display: flex; flex-direction: column; gap: 14px; }
.pdp-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.pdp-title-row .pdp-product-title { margin: 0; }
.pdp-title-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-top: 4px; }
.pdp-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-body);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}
.pdp-icon-btn:hover { border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.pdp-icon-btn.pdp-wish-active { background: #fdecef; border-color: #e91e8c; color: #e91e8c; }
.pdp-category-badge {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}
.pdp-product-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin: 0;
}
.pdp-sku-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.pdp-sku-row span { display: inline-flex; align-items: center; gap: 6px; }
.pdp-sku-row strong { color: var(--text-dark); font-weight: 700; }
.pdp-sku-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-muted); }
.pdp-rating-row { display: flex; align-items: center; gap: 8px; }
.pdp-stars { display: flex; gap: 2px; color: #f59e0b; font-size: 15px; }
.pdp-stars-sm { font-size: 13px; }
.pdp-rating-num { font-weight: 700; font-size: 14px; color: var(--text-dark); }
.pdp-review-count { font-size: 13px; color: var(--text-muted); text-decoration: underline; }
.pdp-review-count:hover { color: var(--primary); }

.pdp-price {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}
.pdp-badges-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.pdp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pdp-badge:hover { box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.pdp-badge-stock { color: #15803d; background: #dcfce7; }
.pdp-badge-stock i { font-size: 9px; }
.pdp-badge-batch { color: #1e40af; background: #dbeafe; }

.pdp-description { font-size: 14.5px; color: var(--text-body); line-height: 1.75; margin: 0; }

.pdp-option-group { display: flex; flex-direction: column; gap: 10px; }
.pdp-option-label { font-size: 13.5px; font-weight: 700; color: var(--text-dark); margin: 0; }
.pdp-strength-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.pdp-strength-btn {
  padding: 8px 20px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-body);
  background: var(--white);
  transition: all var(--transition);
}
.pdp-strength-btn:hover { border-color: var(--primary); color: var(--primary); }
.pdp-strength-active { border-color: var(--primary) !important; background: var(--primary) !important; color: #fff !important; }

.pdp-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  width: fit-content;
  overflow: hidden;
}
.pdp-qty-btn {
  width: 40px;
  height: 40px;
  background: var(--light-bg);
  border: none;
  color: var(--text-dark);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.pdp-qty-btn:hover { background: var(--border); }
.pdp-qty-input {
  width: 52px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  font-size: 14.5px;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  height: 40px;
  -moz-appearance: textfield;
}
.pdp-qty-input::-webkit-inner-spin-button,
.pdp-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.pdp-cta-stack { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.pdp-btn-cart {
  width: 100%;
  padding: 15px 24px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-main);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background var(--transition), transform var(--transition);
}
.pdp-btn-cart:hover { background: var(--primary-dark); transform: translateY(-2px); }
.pdp-btn-buy {
  width: 100%;
  padding: 14px 24px;
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-main);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition);
}
.pdp-btn-buy:hover { background: var(--primary); color: #fff; }

/* Delivery info strip */
.pdp-delivery-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-top: 2px;
}
.pdp-delivery-row { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--text-body); }
.pdp-delivery-row i { width: 16px; text-align: center; color: var(--primary); font-size: 13px; }
.pdp-delivery-row strong { color: var(--text-dark); font-weight: 700; }

/* Payment icons row */
.pdp-payment-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.pdp-payment-label { font-size: 11.5px; color: var(--text-muted); margin-right: 2px; }
.pdp-payment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 9px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  transition: all var(--transition);
}
.pdp-payment-icon:hover { border-color: var(--primary-light); color: var(--primary); box-shadow: var(--shadow-sm); }

/* ── TRUST BAR ── */
.pdp-trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  background: var(--white);
}
.pdp-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pdp-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px;
  margin: -10px;
  border-radius: var(--radius-md);
  transition: box-shadow var(--transition), transform var(--transition), background var(--transition);
}
.pdp-trust-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
  background: var(--white);
}
.pdp-trust-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--primary);
  transition: all var(--transition);
}
.pdp-trust-item:hover .pdp-trust-icon { background: var(--primary); color: #fff; border-color: var(--primary); }
.pdp-trust-text { display: flex; flex-direction: column; gap: 3px; }
.pdp-trust-text strong { font-size: 13.5px; color: var(--text-dark); font-weight: 700; }
.pdp-trust-text span { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ── TABS ── */
.pdp-tabs-section { padding: 48px 0 20px; }
.pdp-tab-nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.pdp-tab-nav::-webkit-scrollbar { display: none; }
.pdp-tab-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-main);
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  border-radius: 8px 8px 0 0;
  margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  background: transparent;
}
.pdp-tab-btn:hover { color: var(--primary); background: var(--light-bg); }
.pdp-tab-active { color: var(--primary) !important; border-bottom-color: var(--primary) !important; background: #f0eeff !important; }

.pdp-tab-panels { padding-top: 40px; }
.pdp-tab-panel { display: none; }
.pdp-tab-panel-active { display: block; }

/* Description layout */
.pdp-desc-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 40px;
}
.pdp-section-heading {
  font-family: var(--font-head);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.pdp-body-text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 14px;
}
.pdp-checklist { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; padding-left: 0;}
.pdp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
}
.pdp-checklist li i { color: var(--primary); margin-top: 3px; font-size: 12px; }
.pdp-research-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f0eeff;
  border: 1px solid #d6ccf5;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-top: 6px;
}
.pdp-rn-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
}
.pdp-research-notice strong { font-size: 13.5px; font-weight: 700; color: var(--primary); display: block; margin-bottom: 4px; }
.pdp-research-notice p { font-size: 12.5px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* Research apps */
.pdp-apps-grid {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.pdp-app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 72px;
}
.pdp-app-icon {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  transition: all var(--transition);
}
.pdp-app-item:hover .pdp-app-icon { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 6px 16px rgba(106,61,232,0.3); transform: translateY(-3px); }
.pdp-app-item span { font-size: 11.5px; color: var(--text-muted); text-align: center; font-weight: 600; line-height: 1.3; }

/* Spec table */
.pdp-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.pdp-spec-table-full { max-width: 640px; }
.pdp-spec-key {
  padding: 10px 14px;
  font-weight: 700;
  color: var(--text-dark);
  background: var(--light-bg);
  border: 1px solid var(--border);
  white-space: nowrap;
  width: 22%;
}
.pdp-spec-val {
  padding: 10px 14px;
  color: var(--text-body);
  border: 1px solid var(--border);
}

/* COA block */
.pdp-coa-block {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.pdp-coa-block:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.pdp-coa-left { flex-shrink: 0; }
.pdp-coa-label { font-size: 13.5px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.pdp-coa-batch { font-size: 13px; color: var(--text-muted); }
.pdp-coa-batch strong { color: var(--text-dark); }
.pdp-coa-metrics { display: flex; gap: 36px; flex: 1; justify-content: center; flex-wrap: wrap; }
.pdp-coa-metric { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.pdp-coa-val { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--primary); }
.pdp-coa-sub { font-size: 12.5px; font-weight: 700; color: var(--text-dark); }
.pdp-coa-method { font-size: 11px; color: var(--text-muted); }
.pdp-coa-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  transition: all var(--transition);
  flex-shrink: 0;
}
.pdp-coa-download:hover { border-color: var(--primary); color: var(--primary); background: #f0eeff; }

/* Tab inner content */
.pdp-tab-content-inner { max-width: 900px; }

/* Reviews */
.pdp-reviews-summary { margin-bottom: 28px; }
.pdp-review-score { display: flex; align-items: center; gap: 14px; }
.pdp-review-big { font-family: var(--font-head); font-size: 44px; font-weight: 800; color: var(--text-dark); }
.pdp-review-total { font-size: 13px; color: var(--text-muted); }
.pdp-reviews-list { display: flex; flex-direction: column; gap: 16px; }
.pdp-review-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.pdp-review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--primary-light);
  background: var(--white);
}
.pdp-review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.pdp-review-name { font-weight: 700; font-size: 14px; color: var(--text-dark); }
.pdp-review-date { font-size: 12px; color: var(--text-muted); margin-left: auto; }
.pdp-review-text { font-size: 14px; color: var(--text-body); line-height: 1.7; margin: 0; }

/* Product FAQ */
.pdp-faq-list { display: flex; flex-direction: column; gap: 10px; }
.pdp-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.pdp-faq-item:hover { box-shadow: var(--shadow-sm); border-color: var(--primary-light); }
.pdp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-main);
  color: var(--text-dark);
  text-align: left;
  background: var(--white);
  transition: background var(--transition);
}
.pdp-faq-q:hover { background: var(--light-bg); }
.pdp-faq-q i { font-size: 12px; color: var(--primary); flex-shrink: 0; transition: transform var(--transition); }
.pdp-faq-open .pdp-faq-q i { transform: rotate(180deg); }
.pdp-faq-open .pdp-faq-q { background: var(--light-bg); color: var(--primary); }
.pdp-faq-a {
  padding: 14px 20px 18px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  background: var(--white);
}

/* ── RELATED PRODUCTS ── */
.pdp-related-section { padding: 48px 0; background: var(--white); }
.pdp-related-wrapper { position: relative; display: flex; align-items: center; gap: 12px; }
.pdp-related-track {
  display: flex;
  gap: 18px;
  overflow: hidden;
  flex: 1;
  scroll-behavior: smooth;
}
.pdp-rel-nav {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-body);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.pdp-rel-nav:hover { border-color: var(--primary); color: var(--primary); }
.pdp-related-card {
  flex: 0 0 calc(25% - 14px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.pdp-related-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: var(--primary-light); }
.pdp-rc-img-wrap {
  background: var(--light-bg);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  overflow: hidden;
}
.pdp-rc-img-wrap img { max-height: 120px; object-fit: contain; transition: transform 0.4s ease; }
.pdp-related-card:hover .pdp-rc-img-wrap img { transform: scale(1.08); }
.pdp-rc-body { padding: 16px; display: flex; flex-direction: column; gap: 5px; text-align: left; }
.pdp-rc-name { font-size: 14.5px; font-weight: 700; color: var(--text-dark); }
.pdp-rc-dose { font-size: 12px; color: var(--text-muted); }
.pdp-rc-price { font-size: 16px; font-weight: 800; color: var(--primary); font-family: var(--font-head); }
.pdp-rc-btn {
  margin-top: 6px;
  width: 100%;
  padding: 9px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all var(--transition);
  cursor: pointer;
}
.pdp-rc-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 0 6px 16px rgba(106,61,232,0.28); }

/* ── NEWSLETTER SECTION ── */
.pdp-newsletter-section {
  background: var(--dark-navy);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.pdp-newsletter-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(106,61,232,0.15);
  pointer-events: none;
  display: none;
}
span.pdp-cu-badge {
    color: #c7c0c0;
        padding-top: 7px;
    display: inline-block;
}
.pdp-nl-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.pdp-nl-text { flex: 1; min-width: 260px; }
.pdp-nl-title {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
}
.pdp-nl-sub { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.65; margin: 0; }
.pdp-nl-form-wrap { flex: 1; min-width: 280px; }
.pdp-nl-form {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.pdp-nl-input {
  flex: 1;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 14px;
  font-family: var(--font-main);
  outline: none;
  transition: border-color var(--transition);
}
.pdp-nl-input::placeholder { color: rgba(255,255,255,0.45); }
.pdp-nl-input:focus { border-color: var(--primary-light); }
.pdp-nl-btn {
  padding: 13px 24px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-main);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background var(--transition);
}
.pdp-nl-btn:hover { background: var(--primary-dark); }
.pdp-nl-note { font-size: 12px; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 6px; margin: 0; }

/* ============================================
   TRUST & TRANSPARENCY (E-E-A-T) SECTION
   ============================================ */
.eeat-section { background: #f5f7fe; padding: 70px 0 60px; }
.eeat-header { text-align: center; margin-bottom: 44px; }

.eeat-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.eeat-pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.eeat-pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.eeat-pillar-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #eef2ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.eeat-pillar-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
  display: block;
}
.eeat-pillar-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.eeat-pillar-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* Reviewer / Author byline card */
.reviewer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.reviewer-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #f0fdfa;
  color: #0c8b82;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.reviewer-info { flex: 1; min-width: 220px; }
.reviewer-name {
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.reviewer-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin: 0; }
.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #0c8b82;
  background: #f0fdfa;
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

/* YMYL research-use disclaimer */
.site-disclaimer-box {
  display: flex;
  gap: 14px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--radius-md);
  padding: 18px 22px;
}
.site-disclaimer-box i { font-size: 20px; color: #c2410c; margin-top: 2px; flex-shrink: 0; }
.site-disclaimer-box strong { display: block; color: #9a3412; font-size: 14.5px; margin-bottom: 4px; }
.site-disclaimer-box p { font-size: 13.5px; color: #7c2d12; line-height: 1.7; margin: 0; }

/* ============================================
   HOMEPAGE FAQ SECTION (reuses cu-faq-* pattern)
   ============================================ */
.hp-faq-section { background: var(--white); padding: 70px 0; }

/* ============================================
   BLOG / RESOURCES SECTION
   ============================================ */
.blog-section { background: #f8fafc; padding: 70px 0; }
.blog-header { text-align: center; margin-bottom: 44px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.blog-card {
  background: var(--white);
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }

.blog-card-media {
  height: 220px;
  background: var(--card-color, var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog-card-media i { font-size: 34px; color: rgba(255,255,255,0.92); }
.blog-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.92);
  color: var(--card-color, var(--primary));
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.blog-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-card-excerpt {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-bottom: 14px;
}
.blog-card-meta span { display: flex; align-items: center; gap: 5px; }
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--card-color, var(--primary));
}
.blog-card-link i { font-size: 11px; transition: transform var(--transition); }
.blog-card-link:hover i { transform: translateX(4px); }
.blog-card-link:hover { color: var(--card-color, var(--primary)); }

.blog-btn-wrap { text-align: center; }
.btn-view-all-articles {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-view-all-articles:hover { background: var(--primary); color: #fff; }

/* ============================================
   BATCH-WISE COA & LAB VERIFICATION
   ============================================ */
.coa-section { background: var(--white); padding: 70px 0; }
.coa-header { text-align: center; margin-bottom: 44px; }

.coa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* Left: batch card */
.coa-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.coa-batch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  flex-wrap: wrap;
}
.coa-batch-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}
.coa-batch-number { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--text-dark); letter-spacing: 0.02em; }
.coa-verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0fdfa;
  color: #0c8b82;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.coa-verified-pill i { font-size: 7px; }

.coa-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.coa-stat { background: var(--white); padding: 18px 20px; }
.coa-stat-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.coa-stat-value { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--text-dark); line-height: 1; }
.coa-stat-value span { font-size: 14px; font-weight: 700; color: #0c8b82; }
.coa-stat-sub { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

.coa-checklist { display: flex; flex-direction: column; gap: 10px; }
.coa-check-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
}
.coa-check-row i.fa-chart-simple,
.coa-check-row .coa-check-icon { color: #0c8b82; width: 16px; text-align: center; }
.coa-check-label { display: flex; align-items: center; gap: 10px; }
.coa-pass-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0c8b82;
  border: 1px solid #99e6d9;
  background: #f0fdfa;
  padding: 4px 12px;
  border-radius: 6px;
}

.coa-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.coa-download-btn:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }

/* Right: feature rows + callout */
.coa-features { display: flex; flex-direction: column; gap: 16px; }
.coa-feature-row {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.coa-feature-row:hover { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }
.coa-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eef2ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.coa-feature-title { font-family: var(--font-head); font-size: 14.5px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.coa-feature-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

.coa-callout {
  display: flex;
  gap: 14px;
  background: #f0fdfa;
  border: 1px solid #99e6d9;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-top: auto;
}
.coa-callout-icon { color: #0c8b82; font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.coa-callout p { font-size: 13px; color: #0f5750; line-height: 1.7; margin: 0; }
.coa-callout strong { color: #0c8b82; }

/* Hide Australia Shipping Badge */
.australia-shipping-badge.fade-up.visible {
  display: none !important;
}

/* ======================================================
   QUALITY ASSURANCE SECTION
====================================================== */
.quality-assurance-section {
    background-color: #f1f5f9;
}
.qa-section {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px 40px 20px;
    margin: 0 auto;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.qa-subtitle {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.qa-subtitle::after {
    content: '';
    height: 2px;
    width: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    display: block;
}

.qa-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.qa-title span {
    color: var(--primary);
}

.qa-text {
    color: #475569;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.qa-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
    height: 500px;
}

.qa-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.qa-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 110px;
    height: 110px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    text-align: center;
    padding: 10px;
}

.qa-badge::before {
    content: '';
    position: absolute;
    top: 5px; right: 5px; bottom: 5px; left: 5px;
    border: 1.5px dashed var(--primary);
    border-radius: 50%;
}

.qa-badge-text-top, .qa-badge-text-bottom {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.qa-badge-text-top {
    margin-bottom: 2px;
}
.qa-badge-text-bottom {
    margin-top: 2px;
}

.qa-badge i {
    font-size: 2rem;
    color: var(--primary);
    position: relative;
    z-index: 2;
}

.qa-section .feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.qa-section .feature-card:hover {
    box-shadow: 0 12px 30px -10px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: #cbd5e1;
}

.feature-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.icon-blue { background: #eff6ff; color: #2563eb; }
.icon-purple { background: #faf5ff; color: #9333ea; }
.icon-cyan { background: #ecfeff; color: #0891b2; }
.icon-indigo { background: #eef2ff; color: #4f46e5; }

.qa-section .feature-content h3,
.qa-section .feature-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    margin-top: 4px;
}

.qa-section .feature-content p {
    font-size: 0.85rem;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

.qa-footer-bar {
    background: #ffffff;
    border-radius: 100px;
    padding: 16px 24px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.qa-footer-bar .footer-features {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
}

.qa-footer-bar .footer-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    padding: 10px 18px;
    border-radius: 12px;
}

.qa-footer-bar .footer-feature-item .icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #eff6ff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.qa-footer-bar .footer-feature-item span {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.qa-footer-bar .footer-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    white-space: nowrap;
}

.qa-footer-bar .btn-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.qa-footer-bar .btn-gradient:hover {
    opacity: 0.9;
    color: white;
    transform: translateY(-2px);
}

.qa-footer-bar .btn-outline {
    background: white;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.qa-footer-bar .btn-outline:hover {
    background: #eff6ff;
    color: var(--primary);
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .qa-footer-bar {
        border-radius: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 991px) {
    .qa-section {
        padding: 40px 24px;
    }
    .qa-image-container {
        min-height: 300px;
        margin-top: 30px;
    }
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.wcu-section {
  background: #ffffff;
  padding: 50px 0;
  overflow: hidden;
}
.wcu-header {
  margin-bottom: 48px;
}
.wcu-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #0c8b82;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.wcu-line {
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, #0c8b82, #6a3de8);
  border-radius: 2px;
}
.wcu-dot {
  width: 7px;
  height: 7px;
  background: #0c8b82;
  border-radius: 50%;
}
.wcu-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #0b1523;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.wcu-title span {
  color: #6a3de8;
}
.wcu-subtitle {
  font-size: 16px;
  color: #475569;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Grid */
.wcu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* Card */
.wcu-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 1.5px solid #e8ecf2;
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: all 0.3s ease;
}
.wcu-card:hover {
  border-color: var(--wcu-color);
  box-shadow: 0 12px 36px -8px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

/* Card Icon */
.wcu-card-icon {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 18px;
  background: var(--wcu-bg);
  border: 2px solid var(--wcu-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--wcu-color);
  position: relative;
  transition: all 0.3s ease;
}
.wcu-card:hover .wcu-card-icon {
  background: var(--wcu-color);
  color: #fff;
}

/* Card Content */
.wcu-card-content {
  flex: 1;
  min-width: 0;
}
.wcu-card-num {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--wcu-color);
  display: block;
  margin-bottom: 4px;
}
.wcu-card-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: #0b1523;
  margin-bottom: 8px;
  line-height: 1.3;
}
.wcu-card-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Card Dot */
.wcu-card-dot {
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--wcu-color);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1.5px var(--wcu-color);
  z-index: 2;
}

/* Trust Bar */
.wcu-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #f8fafc;
  border: 1px solid #e8ecf2;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
}
.wcu-trust-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 32px 20px;
  border-right: 1px solid #e8ecf2;
  transition: background 0.3s ease;
}
.wcu-trust-item:last-child {
  border-right: none;
}
.wcu-trust-item:hover {
  background: #f1f5f9;
}
.wcu-trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--trust-bg);
  color: var(--trust-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 6px;
  border: 2px solid var(--trust-color);
  transition: all 0.3s ease;
}
.wcu-trust-item:hover .wcu-trust-icon {
  background: var(--trust-color);
  color: #fff;
}
.wcu-trust-item strong {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: #0b1523;
  line-height: 1.3;
}
.wcu-trust-item p {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* WCU Responsive */
@media (max-width: 991px) {
  .wcu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wcu-trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .wcu-trust-item:nth-child(2) {
    border-right: none;
  }
  .wcu-trust-item:nth-child(1),
  .wcu-trust-item:nth-child(2) {
    border-bottom: 1px solid #e8ecf2;
  }
}
@media (max-width: 576px) {
  .wcu-grid {
    grid-template-columns: 1fr;
  }
  .wcu-trust-bar {
    grid-template-columns: 1fr;
  }
  .wcu-trust-item {
    border-right: none;
    border-bottom: 1px solid #e8ecf2;
  }
  .wcu-trust-item:last-child {
    border-bottom: none;
  }
  .wcu-card-dot {
    display: none;
  }
}

/* ======================================================
   SECTION PADDINGS (50px Top/Bottom Gap)
====================================================== */
.hp-faq-section,
.blog-section,
.eeat-section,
.coa-section,
.how-it-works-v2,
.quality-section,
.wcu-section {
  padding: 50px 0 !important;
}
.coa-section {
  padding-top: 0 !important;
}


/* ======================================================
   GLOBAL SECTION EYEBROW
====================================================== */
.global-eyebrow-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.global-eyebrow-container.justify-center {
    justify-content: center;
}
.global-eyebrow-container.justify-start {
    justify-content: flex-start;
}
.gb-txt {
    color: #5c27db;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.gb-l { height: 2px; width: 30px; }
.gb-l.l-out { background: linear-gradient(90deg, transparent, #5c27db); }
.gb-l.l-in { background: #5c27db; width: 10px; }
.gb-l.r-in { background: #5c27db; width: 10px; }
.gb-l.r-out { background: linear-gradient(90deg, #5c27db, transparent); }
.gb-d { width: 4px; height: 4px; border-radius: 50%; background: #5c27db; }

/* ======================================================
   EXPLORE RANGE — section top padding
====================================================== */
.explore-range {
  padding-top: 50px;
}

/* ======================================================
   FOOTER BRAND LOGO (white + purple theme)
====================================================== */
.footer-brand-logo {
  display: inline-flex;
  text-decoration: none;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-brand-icon {
  background: linear-gradient(135deg, #5b21b6, #7c52ef);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(91,33,182,0.35);
  flex-shrink: 0;
}
.footer-brand-text-main {
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.5px;
  display: block;
}
.footer-brand-text-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #5b21b6;
  margin-top: 3px;
  display: block;
}

/* ======================================================
   HOW IT WORKS — step colour classes
====================================================== */
.hiw-step-blue  { --step-color: #0056b3; }
.hiw-step-pink  { --step-color: #e83e8c; }
.hiw-step-purple{ --step-color: #6f42c1; }
.hiw-step-green { --step-color: #198754; }

/* ======================================================
   PRODUCT BADGE — orange variant
====================================================== */
.product-badge-orange {
  background: var(--accent-orange, #f97316);
  color: #fff;
}

/* ======================================================
   BLOG CARDS — per-card colour classes
====================================================== */
.blog-card-purple { --card-color: #6a3de8; }
.blog-card-teal   { --card-color: #0f766e; }
.blog-card-blue   { --card-color: #1d4ed8; }

.blog-card-media-1 { background: url('../images/pept_blog1.png') center/cover; }
.blog-card-media-2 { background: url('../images/pept_blog2.png') center/cover; }
.blog-card-media-3 { background: url('../images/pept_blog3.png') center/cover; }

.blog-media-overlay {
  background: rgba(0,0,0,0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.blog-card-tag-rel {
  position: relative;
  z-index: 2;
}

/* ======================================================
   MISC UTILITIES
====================================================== */
.section-subtitle-centered { margin: 0 auto; }
.chevron-icon-sm { font-size: 0.8rem; }
.footer-col-title-white {
  color: #fff;
  letter-spacing: 0.08em;
  font-size: 12px;
  margin-bottom: 16px;
}
      .shop-by-category {
          padding: 80px 0 40px;
          background: #f8fafc;
          font-family: 'Inter', sans-serif;
      }
      .sbc-header {
          text-align: center;
          margin-bottom: 40px;
      }
      .sbc-title {
          font-size: 42px;
          font-weight: 700;
          color: #0f172a;
          margin-bottom: 15px;
          letter-spacing: -0.5px;
      }
      .sbc-title span {
          color: #2563eb;
      }
      .sbc-subtitle {
          color: #475569;
          font-size: 1.1rem;
          max-width: 650px;
          margin: 0 auto;
          line-height: 1.6;
      }
      .sbc-filters {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 12px;
          margin-bottom: 50px;
      }
      .sbc-pill {
          background: #ffffff;
          border: 1px solid #e2e8f0;
          border-radius: 30px;
          padding: 10px 20px;
          font-size: 0.95rem;
          font-weight: 600;
          color: #475569;
          text-decoration: none;
          display: flex;
          align-items: center;
          gap: 8px;
          transition: all 0.3s ease;
          box-shadow: 0 2px 5px rgba(0,0,0,0.02);
      }
      .sbc-pill i {
          font-size: 1.1rem;
      }
      .sbc-pill:hover {
          border-color: #cbd5e1;
          color: #0f172a;
          transform: translateY(-2px);
      }
      .sbc-pill.active {
          background: #2563eb;
          color: #ffffff;
          border-color: #2563eb;
          box-shadow: 0 4px 10px rgba(37,99,235,0.2);
      }
      .sbc-pill.active:hover {
          transform: none;
      }
      .sbc-card {
          background: #ffffff;
          border-radius: 16px;
          padding: 35px 25px;
          text-align: center;
          box-shadow: 0 10px 25px rgba(0,0,0,0.03);
          transition: all 0.3s ease;
          height: 100%;
          display: flex;
          flex-direction: column;
          align-items: center;
          border: 1px solid #f1f5f9;
      }
      .sbc-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 15px 35px rgba(0,0,0,0.06);
          border-color: #e2e8f0;
      }
      .sbc-icon-wrap {
          position: relative;
          width: 90px;
          height: 90px;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 25px;
          border-radius: 50%;
      }
      .sbc-icon-wrap svg {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
      }
      .sbc-icon-wrap i {
          font-size: 2.2rem;
          position: relative;
          z-index: 2;
      }
      .sbc-card h3,
.sbc-card h4 {
          font-size: 20px;
          font-weight: 700;
          color: #0f172a;
          margin-bottom: 12px;
      }
      .sbc-line {
          width: 30px;
          height: 3px;
          border-radius: 2px;
          margin: 0 auto 15px auto;
      }
      .sbc-card p {
          font-size: 0.9rem;
          color: #64748b;
          line-height: 1.6;
          margin-bottom: 20px;
          flex-grow: 1;
      }
      .sbc-explore {
          font-size: 0.95rem;
          font-weight: 700;
          text-decoration: none;
          display: inline-flex;
          align-items: center;
          gap: 6px;
          transition: all 0.2s ease;
      }
      .sbc-explore:hover {
          opacity: 0.8;
      }
      .sbc-icon-wrap.c-purple { background: rgba(139, 92, 246, 0.08); }
      .c-purple { color: #8b5cf6; }
      .c-purple-bg { background: #8b5cf6; }
      .sbc-icon-wrap.c-blue { background: rgba(59, 130, 246, 0.08); }
      .c-blue { color: #3b82f6; }
      .c-blue-bg { background: #3b82f6; }
      .sbc-icon-wrap.c-green { background: rgba(16, 185, 129, 0.08); }
      .c-green { color: #10b981; }
      .c-green-bg { background: #10b981; }
      .sbc-icon-wrap.c-orange { background: rgba(245, 158, 11, 0.08); }
      .c-orange { color: #f59e0b; }
      .c-orange-bg { background: #f59e0b; }
      .sbc-icon-wrap.c-teal { background: rgba(6, 182, 212, 0.08); }
      .c-teal { color: #06b6d4; }
      .c-teal-bg { background: #06b6d4; }
      .sbc-icon-wrap.c-pink { background: rgba(236, 72, 153, 0.08); }
      .c-pink { color: #ec4899; }
      .c-pink-bg { background: #ec4899; }
      .sbc-icon-wrap.c-red { background: rgba(239, 68, 68, 0.08); }
      .c-red { color: #ef4444; }
      .c-red-bg { background: #ef4444; }
      .sbc-icon-wrap.c-indigo { background: rgba(99, 102, 241, 0.08); }
      .c-indigo { color: #6366f1; }
      .c-indigo-bg { background: #6366f1; }
      @media (max-width: 768px) {
          .sbc-title { font-size: 2.2rem; }
      }
      
      
      
            .why-choose-new {
          padding: 50px 0;
          background: #ffffff;
          font-family: 'Inter', sans-serif;
      }
      .wcu-header-new {
          text-align: center;
          margin-bottom: 60px;
      }

      .wcu-ttl-new {
          font-size: 42px;
          font-weight: 700;
          color: #0f172a;
          line-height: 1.2;
          margin-bottom: 20px;
          letter-spacing: -1px;
      }
      .wcu-ttl-new span {
          color: #5c27db;
          position: relative;
          display: inline-block;
      }
      .wcu-ttl-new span::after {
          content: '';
          position: absolute;
          left: 20%;
          bottom: -5px; 
          width: 60%;
          height: 4px;
          background: #5c27db;
          border-radius: 2px;
      }
      .wcu-txt-new {
          color: #475569;
          font-size: 18px;
          max-width: 600px;
          margin: 0 auto;
          line-height: 1.6;
      }

      .wcu-card-new {
          background: #ffffff;
          border: 1px solid #f1f5f9;
          border-radius: 16px;
          padding: 30px;
          height: 100%;
          display: flex;
          gap: 15px;
          box-shadow: 0 4px 20px rgba(0,0,0,0.06);
          transition: all 0.3s ease;
      }
      .wcu-card-new:hover {
          box-shadow: 0 10px 30px rgba(0,0,0,0.08);
          transform: translateY(-5px);
          border-color: #e2e8f0;
      }

      .wcu-ico-new {
          width: 85px;
          height: 85px;
          position: relative;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-shrink: 0;
          margin-top: 5px;
          margin-right: 5px;
      }
      .shape-s {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
      }
      .wcu-ico-new i {
          font-size: 1.8rem;
          position: absolute;
          left: 36%;
          top: 50%;
          transform: translate(-50%, -50%);
          z-index: 2;
      }
      .wcu-cnt-new {
          flex-grow: 1;
          display: flex;
          flex-direction: column;
          justify-content: flex-start;
      }
      .wcu-num-new {
          font-size: 1.1rem;
          font-weight: 700;
          margin-bottom: 2px;
      }
      .wcu-card-new h3,
.wcu-card-new h4 {
          font-size: 20px;
          font-weight: 700;
          color: #0f172a;
          margin: 0 0 12px 0;
      }
      .wcu-lin-wrap {
          position: relative;
          height: 2px;
          background: #f1f5f9;
          margin-bottom: 15px;
          width: 100%;
          border-radius: 2px;
      }
      .wcu-lin-new {
          position: absolute;
          left: 0;
          top: 0;
          height: 100%;
          width: 100%;
          border-radius: 2px;
      }
      .wcu-lin-new::after {
          content: '';
          position: absolute;
          right: 0;
          top: 50%;
          transform: translateY(-50%);
          width: 6px;
          height: 6px;
          border-radius: 50%;
      }
      .wcu-card-new p {
          font-size: 0.95rem;
          color: #475569;
          margin: 0;
          line-height: 1.6;
      }

      .c-1 .wcu-num-new { color: #2563eb; }
      .c-1 .ico-grad { background: linear-gradient(135deg, #2563eb, #93c5fd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
      .c-1 .wcu-lin-new { background: linear-gradient(90deg, transparent 40%, #2563eb); }
      .c-1 .wcu-lin-new::after { background: #2563eb; }

      .c-2 .wcu-num-new { color: #9333ea; }
      .c-2 .ico-grad { background: linear-gradient(135deg, #9333ea, #d8b4fe); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
      .c-2 .wcu-lin-new { background: linear-gradient(90deg, transparent 40%, #9333ea); }
      .c-2 .wcu-lin-new::after { background: #9333ea; }

      .c-3 .wcu-num-new { color: #0891b2; }
      .c-3 .ico-grad { background: linear-gradient(135deg, #0891b2, #67e8f9); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
      .c-3 .wcu-lin-new { background: linear-gradient(90deg, transparent 40%, #0891b2); }
      .c-3 .wcu-lin-new::after { background: #0891b2; }

      .c-4 .wcu-num-new { color: #e11d48; }
      .c-4 .ico-grad { background: linear-gradient(135deg, #e11d48, #fda4af); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
      .c-4 .wcu-lin-new { background: linear-gradient(90deg, transparent 40%, #e11d48); }
      .c-4 .wcu-lin-new::after { background: #e11d48; }

      .c-5 .wcu-num-new { color: #0d9488; }
      .c-5 .ico-grad { background: linear-gradient(135deg, #0d9488, #5eead4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
      .c-5 .wcu-lin-new { background: linear-gradient(90deg, transparent 40%, #0d9488); }
      .c-5 .wcu-lin-new::after { background: #0d9488; }

      .c-6 .wcu-num-new { color: #7c3aed; }
      .c-6 .ico-grad { background: linear-gradient(135deg, #7c3aed, #c4b5fd); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
      .c-6 .wcu-lin-new { background: linear-gradient(90deg, transparent 40%, #7c3aed); }
      .c-6 .wcu-lin-new::after { background: #7c3aed; }

      .wcu-ftr-new {
          background: #f8fafc;
          border-radius: 16px;
          padding: 40px 20px;
          margin-top: 50px;
      }
      .ftr-feat {
          text-align: center;
          padding: 0 15px;
          position: relative;
          display: flex;
          flex-direction: column;
          align-items: center;
      }
      .ftr-feat::after {
          content: '';
          position: absolute;
          right: 0;
          top: 15%;
          height: 70%;
          width: 1px;
          background: #e2e8f0;
      }
      .col-lg-3:last-child .ftr-feat::after {
          display: none;
      }
      .ftr-ico {
          width: 60px;
          height: 60px;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.6rem;
          margin-bottom: 20px;
          color: #ffffff;
          box-shadow: 0 8px 15px rgba(0,0,0,0.06);
      }
      .bg-d-blue { background-color: #0f172a; }
      .bg-prpl { background-color: #7c3aed; }
      .bg-blu { background-color: #2563eb; }
      .bg-tl { background-color: #0d9488; }

      .ftr-feat h4,
.ftr-feat h5 {
          font-size: 1.05rem;
          font-weight: 700;
          color: #0f172a;
          margin-bottom: 12px;
      }
      .ftr-feat p {
          font-size: 0.9rem;
          color: #475569;
          margin: 0;
          line-height: 1.6;
      }
      @media (max-width: 991px) {
          .ftr-feat::after { display: none; }
          .ftr-feat { margin-bottom: 40px; }
          .ftr-feat:last-child { margin-bottom: 0; }
      }
      @media (max-width: 768px) {
          .wcu-ttl-new { font-size: 2.5rem; }
      }
      
      
      /*--------------------------------------------------*/
      
      .quality-cta{
    overflow:hidden;
}

.cta-box{

    background:#fff;
    border:1px solid #dbe4ff;
    border-radius:35px;
    padding:40px;
    position:relative;
    overflow:hidden;
    box-shadow:0 15px 45px rgba(29,78,216,.08);

}

.cta-box:before{

    content:'';
    position:absolute;
    right:-180px;
    top:-180px;
    width:500px;
    height:500px;
    background:radial-gradient(circle,#4f7dff18 0%,transparent 70%);
    border-radius:50%;

}

.cta-badge {
    display: inline-block;
    background: #eef2ff;
    color: #4f46e5;
    padding: 6px 22px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
}

.cta-title{

    font-size:48px;
    font-weight:700;
    color:#1f2937;
    line-height:1.2;

}

.cta-title span{

    background:linear-gradient(90deg,#2563eb,#7c3aed);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

}

.cta-text{

    color:#6b7280;
    font-size:17px;
    max-width:620px;
    margin-top:18px;
    line-height:1.8;

}

.feature-card{

    background:#fff;
    border-radius:22px;
    padding:28px 20px;
    text-align:center;
    border:1px solid #edf0f8;
    box-shadow:0 12px 30px rgba(0,0,0,.04);
    height:100%;
    transition:.3s;

}


.feature-card:hover{

    transform:translateY(-6px);
    box-shadow:0 20px 35px rgba(37,99,235,.12);

}

.feature-card .icon {
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 50%;
    background: #eef2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4f46e5;
    font-size: 28px;
    margin-bottom: 10px;
}

.feature-card h6 {
    font-size: 16px;
    line-height: normal;
    font-weight: 600;
    color: #111827;
}

.cta-btns {
    display: flex;
    gap: 22px;
    justify-content: center;
    height: 100%;
    margin: 36px 0 0;
}

.cta-main-btn{

    background:linear-gradient(90deg,#2563eb,#6d4aff);
    border:none;
    border-radius:60px;
    padding:12px 35px;
    font-size:16px;
    font-weight:600;
    box-shadow:0 20px 40px rgba(37,99,235,.25);

}

.cta-main-btn:hover{

    background:linear-gradient(90deg,#1d4ed8,#5b21b6);

}

.cta-outline-btn{

    border:2px solid #6d4aff;
    color:#6d4aff;
    border-radius:60px;
    padding:12px 35px;
    font-size:16px;
    font-weight:600;

}

.cta-outline-btn:hover{

    background:#6d4aff;
    color:#fff;

}

.bottom-strip {
    margin-top: 30px;
    background: linear-gradient(90deg, #1e40af, #4338ca);
    border-radius: 20px;
    padding: 15px 15px;
    color: #fff;
}

.strip-item{

    display:flex;
    align-items:center;
    gap:15px;
    font-size:17px;
    font-weight:500;

}

.strip-item i{

    width:45px;
    height:45px;
    background:rgba(255,255,255,.15);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;

}

@media(max-width:991px){

.cta-box{

padding:35px;

}

.cta-title{

font-size:36px;

}

.cta-btns{

margin-top:40px;

}

.bottom-strip{

text-align:center;

}

.strip-item{

justify-content:center;
margin:10px 0;

}

}

@media(max-width:576px){

.cta-title{

font-size:30px;

}

.feature-card{

padding:25px 15px;

}

.cta-main-btn,
.cta-outline-btn{

font-size:17px;
padding:16px 20px;

}

}
      
   
/* =========================================================================
   NEW FOOTER — distinct deep-purple identity (not the VP navy/teal footer)
   ========================================================================= */
.pa-footer { font-family: var(--font-main); color: #cdd3e0; background: #0a0f1e; }

/* COA trust ribbon */
.pa-foot-trust { background: linear-gradient(90deg, #6a3de8 0%, #5228d4 50%, #3b1a8f 100%); }
.pa-foot-trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0; flex-wrap: wrap; }
.pa-foot-trust-items { display: flex; flex-wrap: wrap; gap: 10px 26px; }
.pa-foot-trust-item { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700; color: #fff; }
.pa-foot-trust-item i { color: #d9ccff; font-size: 14px; }
.pa-foot-trust-cta { display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); border-radius: 999px; color: #fff; font-size: 13px; font-weight: 800; text-decoration: none; transition: all .2s; white-space: nowrap; }
.pa-foot-trust-cta:hover { background: #fff; color: #5228d4; }

/* Brand + newsletter band */
.pa-foot-band { background: radial-gradient(900px 400px at 100% 0%, rgba(106,61,232,.22), transparent 60%), #0c1226; border-bottom: 1px solid rgba(255,255,255,.06); }
.pa-foot-band-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center; padding: 46px 0; }
.pa-foot-logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 16px; }
.pa-foot-logo-mark { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #7c52ef, #5228d4); border-radius: 12px; color: #fff; font-size: 20px; box-shadow: 0 8px 22px rgba(106,61,232,.4); }
.pa-foot-logo-txt strong { display: block; font-family: var(--font-head); font-weight: 800; font-size: 20px; color: #fff; letter-spacing: .06em; line-height: 1; }
.pa-foot-logo-txt small { display: block; font-size: 11px; font-weight: 700; letter-spacing: .34em; color: #9a86e6; margin-top: 3px; }
.pa-foot-tagline { font-size: 14px; line-height: 1.75; color: #9aa4bd; max-width: 400px; margin: 0 0 20px; }
.pa-foot-social { display: flex; gap: 10px; }
.pa-foot-social a { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; color: #cdd3e0; font-size: 15px; transition: all .2s; text-decoration: none; }
.pa-foot-social a:hover { background: var(--primary, #6a3de8); border-color: var(--primary, #6a3de8); color: #fff; transform: translateY(-2px); }

.pa-foot-nl { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 28px 30px; }
.pa-foot-nl-title { font-family: var(--font-head); font-weight: 800; font-size: 19px; color: #fff; margin: 0 0 7px; }
.pa-foot-nl-sub { font-size: 13.5px; color: #9aa4bd; margin: 0 0 16px; line-height: 1.6; }
.pa-foot-nl-form { display: flex; gap: 10px; flex-wrap: wrap; }
.pa-foot-nl-field { flex: 1; min-width: 200px; position: relative; display: flex; align-items: center; }
.pa-foot-nl-field i { position: absolute; left: 15px; color: #7c85a0; font-size: 14px; }
.pa-foot-nl-field input { width: 100%; height: 48px; padding: 0 16px 0 40px; background: #0a0f1e; border: 1.5px solid rgba(255,255,255,.12); border-radius: 11px; color: #fff; font-size: 14px; font-family: var(--font-main); }
.pa-foot-nl-field input::placeholder { color: #6b7490; }
.pa-foot-nl-field input:focus { outline: none; border-color: var(--primary, #6a3de8); box-shadow: 0 0 0 4px rgba(106,61,232,.18); }
.pa-foot-nl-btn { display: inline-flex; align-items: center; gap: 8px; height: 48px; padding: 0 22px; background: var(--primary, #6a3de8); color: #fff; border: none; border-radius: 11px; font-size: 14px; font-weight: 800; font-family: var(--font-main); transition: all .2s; }
.pa-foot-nl-btn:hover { background: #7c52ef; transform: translateY(-1px); }
.pa-foot-nl-note { display: flex; align-items: center; gap: 7px; font-size: 12px; color: #7c85a0; margin: 12px 0 0; }
.pa-foot-nl-note i { color: #0c8b82; }

/* Link columns */
.pa-foot-cols { padding: 46px 0; }
.pa-foot-cols-grid { display: grid; grid-template-columns: repeat(4, 1fr) 1.3fr; gap: 32px; }
.pa-foot-col-title { font-family: var(--font-head); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin: 0 0 16px; position: relative; padding-bottom: 12px; }
.pa-foot-col-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 26px; height: 2px; background: var(--primary, #6a3de8); border-radius: 2px; }
.pa-foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.pa-foot-col ul li a { font-size: 13.5px; color: #9aa4bd; text-decoration: none; transition: color .18s, padding .18s; }
.pa-foot-col ul li a:hover { color: #fff; padding-left: 5px; }

.pa-foot-contact { gap: 14px !important; }
.pa-foot-contact li { display: flex; align-items: flex-start; gap: 11px; font-size: 13.5px; color: #9aa4bd; }
.pa-foot-contact li i { color: var(--primary-light, #7c52ef); font-size: 14px; margin-top: 3px; width: 16px; }
.pa-foot-contact li a { color: #cdd3e0; text-decoration: none; }
.pa-foot-contact li a:hover { color: #fff; }
.pa-foot-pay { margin-top: 20px; }
.pa-foot-pay-lbl { display: block; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #6b7490; margin-bottom: 9px; }
.pa-foot-pay-icons { display: flex; gap: 8px; }
.pa-foot-pay-chip { width: 42px; height: 30px; display: flex; align-items: center; justify-content: center; background: #fff; border-radius: 7px; font-size: 17px; }

/* Compliance notice */
.pa-foot-compliance { background: rgba(0,0,0,.25); border-top: 1px solid rgba(255,255,255,.06); }
.pa-foot-compliance p { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; line-height: 1.7; color: #8791a8; margin: 0; padding: 18px 0; }
.pa-foot-compliance i { color: #ea9d4a; margin-top: 2px; }
.pa-foot-compliance strong { color: #cdd3e0; }

/* Bottom bar */
.pa-foot-bottom { background: #070b16; }
.pa-foot-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 0; flex-wrap: wrap; }
.pa-foot-copy { font-size: 12.5px; color: #7c85a0; }
.pa-foot-bottom-badges { display: flex; gap: 20px; }
.pa-foot-bottom-badges span { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: #9aa4bd; }
.pa-foot-bottom-badges i { color: #0c8b82; font-size: 12px; }
.pa-foot-top { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: #cdd3e0; font-size: 12.5px; font-weight: 700; transition: all .2s; }
.pa-foot-top:hover { background: var(--primary, #6a3de8); border-color: var(--primary, #6a3de8); color: #fff; }

/* Responsive */
@media (max-width: 1050px) {
  .pa-foot-cols-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .pa-foot-col-contact { grid-column: span 3; }
  .pa-foot-contact { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 860px) {
  .pa-foot-band-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 640px) {
  .pa-foot-cols-grid { grid-template-columns: 1fr 1fr; }
  .pa-foot-col-contact { grid-column: span 2; }
  .pa-foot-trust-cta { width: 100%; justify-content: center; }
  .pa-foot-bottom-inner { flex-direction: column; text-align: center; }
}
