/* ============================================
   VERIFIED PEPTIDES - MAIN STYLES
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
  --primary:       #1a8cba;
  --primary-light: #3aa8d4;
  --primary-dark:  #0e5f7e;
  --accent-green:  #2ecc71;
  --accent-orange: #f39c12;
  --accent-pink:   #0c8b82;
  --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', sans-serif;
  --font-head:     'Poppins', 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 {
  max-width: 100%;
  padding-left: 60px;
  padding-right: 60px;
}
.container-fluid {
  max-width: 100%;
  padding-left: 60px;
  padding-right: 60px;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  font-size: 16px;
  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; }

/* ============================================
   HEADER (NEW STICKY FLOATING)
   ============================================ */
.header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}
.header-pill {
  background: var(--white);
  border-radius: 50px;
  padding: 10px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 25px rgba(0,0,0,0.12);
  width: 100%;
}
.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.header-top-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.btn-coin-dark {
  background: #072E5A;
  color: #fff;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  padding: 11px 26px;
  transition: opacity var(--transition), transform var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.btn-coin-dark:hover { opacity: 0.9; transform: translateY(-1px); color: #fff;}
.btn-explore-border {
  border: 1px solid #072E5A;
  color: #072E5A;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 26px;
  transition: all var(--transition);
  background: transparent;
}
.btn-explore-border:hover {
  background: #f3f4f6;
  color: #111827;
}
.flag-dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #072E5A;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  cursor: pointer;
  transition: background var(--transition);
}
.flag-dropdown:hover { background: #e5e7eb; }
.flag-dropdown img { border-radius: 2px; }
/* Removed redundant nav styling */
.header-bottom-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-right: 4px;
}
.main-nav-new {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav-new .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #072E5A;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
.main-nav-new .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #1a8cba;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 2px;
}
.main-nav-new a{
  color: #072E5A;
  font-weight: 600;
}
.main-nav-new .nav-link:hover { 
  color: #1a8cba; 
}
.main-nav-new .nav-link:hover::after {
  width: 100%;
}
.social-links-new {
  display: flex;
  align-items: center;
  gap: 14px;
}
.social-links-new a {
  color: #072E5A;
  font-size: 14.5px;
  transition: color var(--transition);
}
.social-links-new a:hover { color: #1a8cba; }

.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  pointer-events: auto;
}
.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/bnr_img.png') center/cover no-repeat;
  color: var(--white);
  position: relative;
  min-height: 64vh;
  padding: 0;
  overflow: hidden;
}
.hero-inner {
  display: flex;
  align-items: center;
  min-height: 64vh;
  width: 100%;
  padding: 54px 0;
  position: relative;
  z-index: 1;
}
.hero-left {
  max-width: 48%;
  flex: 0 0 48%;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #7dd3c8;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #4ecdc4;
  border-radius: 2px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: #fff;
}
.hero-headline span { color: #7dd3c8; }
.hero-lead {
  font-size: 18.5px;
  font-weight: 600;
  color: #eaf6f4;
  max-width: 500px;
  margin-bottom: 14px;
  line-height: 1.45;
}
.hero-sub {
  font-size: 16.5px;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.Research-Peptides-btn {
    text-align: center;
    margin-bottom: 50px;
}

   .quality-strip {
            background-color: #0c8b82;
            color: white;
        }
        .quality-strip h4 {
            color: #fff;
        }
section.bg-trust {
    background: #0c8b82;
    padding: 26px 0;
}
section.bg-trust .hero-trust-badges {
    gap: 0px;
}

section.bg-trust .trust-badge {
    flex: 1;
    border-left: 1px solid #fff;
    border-radius: 0;
}
section.bg-trust .trust-badge {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 0;
    border-radius: 8px;
    padding: 9px 13px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.trust-badge i { color: #7dd3c8; font-size: 26px; flex-shrink: 0; margin-bottom: 4px; }
.trust-badge strong { display: block; font-size: 15px; font-weight: 700; color: #fff; line-height: 1.35; margin-bottom: 3px; }
.trust-badge span { font-size: 12.5px; color: rgba(255,255,255,0.82); line-height: 1.45; }
.icon-box-lg {
    width: 60px;
    height: 60px;
        background-color: #e6f4f1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0c8b82 ;
    margin-bottom: 1rem;
}
  .eyebrow {
    color: #0c8b82 ;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}
section.Scientific-Field-sec a {
    color: #0c8b82 !important;
}
section.Scientific-Field-sec h5 {
    font-size: 20px;
    font-weight: 600;
}
section.Scientific-Field-sec {
    padding: 50px 0;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  background: #ffffff;
  color: #0b1523;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.btn-hero-primary i {
  color: #1a8cba;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.btn-hero-secondary {
  border: 2px solid rgba(255,255,255,0.35);
  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);
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.05);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.6); }
 .timeline-container {
            position: relative;
            padding-left: 3rem;
            border-left: 2px solid #0c8b82 ;
            margin-left: 1rem;
        }
        .timeline-step {
            position: relative;
            margin-bottom: 3rem;
        }
        .timeline-step::before {
            content: '';
            position: absolute;
            left: -3.4rem;
            top: 0;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: #0c8b82 ;
            border: 3px solid white;
            box-shadow: 0 0 0 2px #0c8b82 ;
        }
        .timeline-step h5 {
    color: #0c8b82 ;
    font-weight: 600;
}
        .step-num {
          font-size: 2rem; */
    font-weight: 700;
     color: rgba(15, 44, 89, 0.1); 
    position: absolute;
        top: -12px;
    right: 12px;
    z-index: 999;
 
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    color:#02356D;
        }
        .step-content {
            position: relative;
            z-index: 1;
        }
   .research_matterial {
    background-color: #01366C;
    color: #Fff;
    background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/about_bnr_new.jpg');
    /* background-color: red; */
    position: relative;
}
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #061a30;
    opacity: .7;
    top: 0;
}
        .how-img-wrap.handling_img  img{
                height: 470px;
    object-fit: cover;
        }
/* Hero Right (unused spacer - hidden) */
.hero-right { display: none; }
.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: #0c8b82;
  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: #0c8b82;
  letter-spacing: -1px;
}
.hero-stat-badge .stat-label {
  font-size: 12px;
  margin-top: 4px;
  line-height: 1.4;
  color: #4b5563;
  font-weight: 600;
}

/* ============================================
   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: 16.5px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 20px;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 48px; }

/* ============================================
   BESTSELLERS
   ============================================ */
.bestsellers { background: var(--white); }

.product-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 13px;
  color: var(--text-body);
  max-width: 280px;
  border-right: 1px solid #e2e8f0;
  padding-right: 30px;
}
.feat-item.border-0 {
  border-right: none;
  padding-right: 0;
}
.feat-icon {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
}
.feat-icon i {
  color: transparent;
  -webkit-text-stroke: 2px #0c8b82;
}
.feat-item strong { font-weight: 700; color: #0f172a; display: block; font-size: 14px; margin-bottom: 4px; }
.feat-item span { font-size: 12px; color: #475569; line-height: 1.4; display: block; }

.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: #0c8b82;
  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: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.product-dose {
  font-size: 14px;
  font-weight: 700;
  color: #0c8b82;
  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: #0c8b82; 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: #0c8b82;
  border: 1px solid #0c8b82;
  border-radius: 30px;
  padding: 10px 20px;
  transition: all var(--transition);
  background: #fff;
  width: 100%;
}
.btn-view-details:hover { background: #eefaf7; }

/* ============================================
   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: #0c8b82;
  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: #0c8b82;
  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);
  justify-content:center;
}
.btn-contact:hover { background: #0f3b34; color: #fff; }

/* ============================================
   RESEARCH TAGLINE
   ============================================ */
.research-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 36px 0 0;
  margin-bottom: 12px !important;
}
.research-tagline::before,
.research-tagline::after {
  content: '';
  height: 1px;
  background-color: #cbd5e1;
  width: 60px;
}
.tagline-label {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #0c8b82;
  text-transform: uppercase;
  margin: 0;
}
a.btn.btn-outline-primary {
    border: 1px solid #0c8b82;
    text-align: center;
    color: #0c8b82;
    background: #fff;
    align-items: center;
    line-height: 46px;
    padding: 0 28px;
    border-radius: 30px;
    font-size: 14px;
}
a.btn.btn-outline-primary:hover{
    background-color: #0c8b82;
    color:#FFF;
        transition: all var(--transition);
}


/* ============================================
   PEPTIDE SOLUTIONS
   ============================================ */
.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.png') center/cover no-repeat;
  color: #334155;
  padding: 64px 0 64px 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: 11.5px;
  font-weight: 700;
  color: #0c8b82;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.2em;
}
.about-eyebrow-line {
  width: 32px;
  height: 2px;
  background-color: #0c8b82;
}
.about-section .section-title {
  color: #0b1523;
  text-align: left;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.4px;
}
.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: info-categories panel (replaces badge)
   ============================================ */
.about-right { position: relative; min-height: 0; }
.about-panel {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(6px);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15,23,42,0.10);
  padding: 26px;
}
.about-panel__intro { font-size: 14.5px; color: #475569; line-height: 1.6; margin: 0 0 18px; }
.about-panel__row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px; margin-bottom: 12px;
  background: #fff; border: 1px solid #eef2f7; border-radius: 14px;
  text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.about-panel__row:hover { border-color: #7dd3c8; box-shadow: 0 10px 24px rgba(12,139,130,0.12); transform: translateY(-2px); }
.about-panel__icon {
  flex: 0 0 46px; width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px; background: #e6f4f1; color: #0c8b82; font-size: 20px;
}
.about-panel__text { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.about-panel__title { font-weight: 700; color: #0b1523; font-size: 15px; line-height: 1.3; }
.about-panel__desc { font-size: 13px; color: #475569; line-height: 1.5; margin-top: 3px; }
.about-panel__arrow { color: #94a3b8; font-size: 15px; transition: transform .2s, color .2s; }
.about-panel__row:hover .about-panel__arrow { color: #0c8b82; transform: translateX(3px); }
.about-panel__foot {
  display: flex; align-items: center; gap: 10px;
  margin-top: 4px; padding-top: 16px; border-top: 1px solid #eef2f7;
  font-size: 13px; font-weight: 600; color: #0f3b34;
}

/* ============================================
   Quality Verification: narrative + 2x2 grid
   ============================================ */
.vp-qv-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.05fr); gap: 48px; align-items: start; }
.vp-qv-intro { position: sticky; top: 110px; }
.vp-qv-intro .section-title { text-align: left; margin-bottom: 18px; }
.vp-qv-intro p { color: #475569; line-height: 1.7; margin-bottom: 14px; }
.vp-qv-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.vp-qv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.vp-analytical-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.vp-qv-card {
  background: #fff; border: 1px solid #e8edf3; border-radius: 16px; padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.vp-qv-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15,23,42,0.10); border-color: #cfe6f0; }
.vp-qv-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px;
  background: #e6f4f1; color: #0c8b82; font-size: 22px; margin-bottom: 14px;
}
.vp-qv-card h5, .vp-qv-card h6 { font-weight: 800; color: #0b1523; margin: 0 0 8px; }
.vp-qv-card h5 { font-size: 17px; }
.vp-qv-card h6 { font-size: 15.5px; }
.vp-qv-card p { font-size: 13.5px; color: #64748b; line-height: 1.6; margin: 0 0 8px; }
.vp-qv-card p:last-child { margin-bottom: 0; }
.vp-qv-card a { color: #1a8cba; font-weight: 600; text-decoration: none; }
.vp-qv-card a:hover { text-decoration: underline; }
.vp-analytical-note { text-align: center; max-width: 820px; margin: 26px auto 22px; font-size: 15px; color: #5b6b7a; line-height: 1.7; }

/* ============================================
   Announcement bar
   ============================================ */
.vp-announce { background: linear-gradient(135deg, #0f3b34 0%, #0c8b82 55%, #1a8cba 100%); color: #fff; }
.vp-announce__inner { max-width: 1280px; margin: 0 auto; padding: 9px 24px; display: flex; align-items: center; justify-content: center; gap: 18px; position: relative; }
.vp-announce__text { font-size: 13px; font-weight: 600; }
.vp-announce__text i { margin-right: 6px; opacity: .9; }
.vp-announce__link { font-size: 12.5px; font-weight: 700; color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.5); padding-bottom: 1px; display: inline-flex; align-items: center; gap: 6px; }
.vp-announce__link:hover { color: #fff; border-bottom-color: #fff; }
.vp-announce__link i { font-size: 10px; transition: transform .2s; }
.vp-announce__link:hover i { transform: translateX(3px); }
.vp-announce__close { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); background: none; border: none; color: rgba(255,255,255,.8); font-size: 20px; line-height: 1; cursor: pointer; padding: 0 4px; }
.vp-announce__close:hover { color: #fff; }

/* ============================================
   FAQ component (global — matches product/article FAQ)
   ============================================ */
.vp-faq { max-width: 1140px; margin: 0 auto; }
.vp-faq__item { background: #fff; border: 1px solid #e8edf3; border-radius: 14px; margin-bottom: 12px; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.vp-faq__item.open { border-color: #cfe6f0; box-shadow: 0 10px 26px rgba(15,23,42,0.06); }
.vp-faq__q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 18px 22px; font-size: 16px; font-weight: 700; color: #0f172a; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.vp-faq__q:hover { color: #1a8cba; }
.vp-faq__q i { color: #1a8cba; transition: transform .25s; flex: 0 0 auto; }
.vp-faq__item.open .vp-faq__q i { transform: rotate(180deg); }
.vp-faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.vp-faq__a-inner { padding: 0 22px 20px; color: #475569; font-size: 15px; line-height: 1.7; }
.vp-faq__a-inner a { color: #1a8cba; font-weight: 600; }

/* ============================================
   Readability pass — darker, larger muted text
   ============================================ */
.section-subtitle { color: #52616b; }
/* Research Areas cards */
.Scientific-Field-sec .card h5 { color: #0f172a; font-weight: 800; }
.Scientific-Field-sec .card p { color: #475569 !important; font-size: 14.5px; line-height: 1.65; }
/* About left column readability */
.about-left .about-body { font-size: 17px; font-weight: 600; color: #0f3b34; line-height: 1.55; margin-bottom: 22px; }
.about-left p.text-muted { color: #334155 !important; font-size: 16px; line-height: 1.75; }

/* ============================================
   Quality Process — compact 2-column step grid
   ============================================ */
.vp-process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1000px; margin: 0 auto; }
.vp-process-step { display: flex; gap: 18px; background: #fff; border: 1px solid #e8edf3; border-radius: 16px; padding: 22px 24px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.vp-process-step:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(15,23,42,.08); border-color: #cfe6f0; }
.vp-process-num { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 15px; font-weight: 800; color: #fff; background: linear-gradient(135deg, #0f3b34, #0c8b82); }
.vp-process-body h5 { font-size: 16.5px; font-weight: 800; color: #0f172a; margin: 0 0 6px; }
.vp-process-body p { font-size: 13.5px; color: #64748b; line-height: 1.6; margin: 0; }

/* --- Responsive for the above --- */
@media (max-width: 768px) { .vp-process-grid { grid-template-columns: 1fr; } }
@media (max-width: 992px) {
  .vp-qv-layout { grid-template-columns: 1fr; gap: 32px; }
  .vp-qv-intro { position: static; }
}
@media (max-width: 768px) {
  .vp-analytical-grid { grid-template-columns: 1fr; }
  .about-panel { padding: 20px; }
}
@media (max-width: 560px) {
  .vp-qv-grid { grid-template-columns: 1fr; }
  .vp-announce__inner { flex-direction: column; gap: 6px; padding: 8px 40px; }
  .vp-announce__close { top: 8px; transform: none; right: 12px; }
}

/* --- 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
   ============================================ */
.how-it-works { background: #ffffff; padding: 50px 0; }
.how-eyebrow {
  text-align: center;
  font-family: var(--font-main);
  font-size: 11px;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: #1a8cba;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.how-it-works .section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  color: #0b1523;
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.how-it-works .section-subtitle {
  font-family: var(--font-main);
  font-size: 16px;
  color: #4b5563;
  font-weight: 400;
  margin-bottom: 48px;
  text-align: center;
}

/* Divider with Molecule Icon */
.how-title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 16px auto 20px;
  max-width: 260px;
}
.divider-line {
  flex: 1;
  height: 2px;
  background-color: #0c8b82;
}
.divider-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #001998;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Layout */
.how-inner {
  display: flex;
  align-items: center; /* Center align items vertically to prevent height stretching */
  gap: 0;
}

/* Left Card Styling */
.how-left-card {
  background: transparent; /* Removed background box to show only the image */
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: auto;
  justify-content: center;
  align-items: center;
  border: none;
  box-shadow: none;
  position: relative; /* Enabled relative positioning for absolute children */
  width: 100%;
  max-width: 440px; /* Match the exact visual width of the reference card and keep badges inside */
  margin: 0 auto; /* Center the card inside the column */
}
.how-img-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0; /* Removed margin since badges overlay the bottom of the image */
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.how-img-wrap img {
  width: 100%; /* Force image to fill container width exactly */
  max-width: 100%;
  height: auto;
  display: block; /* Removed max-height and object-fit to guarantee image matches container width */
  border-radius: 20px;
}
.how-left-badges {
  position: absolute; /* Overlay badges on top of the image */
  bottom: 28px; /* Position at the bottom of the container, over the marble stand */
  left: 16px; /* Position relative to container borders */
  right: 16px;
  display: flex;
  width: auto;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0; /* No gaps to allow borders to divide evenly */
  border-top: none; /* Removed separator line for clean overlay design */
  padding: 0 8px; /* Left and right padding for the badge area */
  z-index: 5;
}
.how-badge-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(11, 21, 35, 0.15); /* Soft vertical separator line */
  padding: 0 8px; /* Side padding to prevent text from touching the separator */
}
.how-badge-item:last-child {
  border-right: none; /* Remove right border from the last badge item */
}
.badge-icon-small {
  font-size: 24px;
  color: #1a8cba;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
}
.badge-icon-small svg {
  color: #1a8cba;
  stroke-width: 2px;
}
.badge-text-small {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  color: #0b1523;
  line-height: 1.4;
}

/* Vertical Timeline (Right Column) */
.how-steps {
  position: relative;
  padding-left: 80px; /* Space for the timeline vertical line and circles */
  display: flex;
  flex-direction: column;
  gap: 16px; /* Reduced gap to make it more compact and shorter */
  height: auto;
}
.how-steps::before {
  content: '';
  position: absolute;
  left: 30px; /* Aligned with circles */
  top: 40px;  /* Starts at the first step's circle center */
  bottom: 40px; /* Ends at the last step's circle center */
  width: 2px;
  border-left: 2px dashed #cbd5e1; /* Dash pattern vertical timeline line */
}

/* Individual Step Cards */
.how-step {
  display: flex;
  align-items: center;
  gap: 20px; /* Closer gap between icon and text */
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-right: 4px solid var(--step-color); /* Colored right vertical highlight */
  border-radius: var(--radius-md);
  padding: 16px 24px; /* Reduced vertical and horizontal padding */
  transition: all var(--transition);
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}
.how-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Timeline Dotted Connector & Circle Node */
.how-step::before {
  content: '';
  position: absolute;
  left: -50px; /* Connector line */
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 1px;
  border-top: 2px dotted #cbd5e1;
  z-index: 1;
}
.how-step::after {
  content: '';
  position: absolute;
  left: -59px; /* Centered on the vertical line (-50px connector + -9px radius center) */
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 3px solid #0b1523; /* Dark Navy border */
  /* Radial gradient for the inner dark navy dot */
  background-image: radial-gradient(circle, #0b1523 25%, #ffffff 30%);
  z-index: 2;
}

.step-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--step-bg);
  color: var(--step-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.step-icon-wrap svg {
  stroke: var(--step-color);
}
.step-content {
  flex: 1;
}
.step-num-text {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--step-color);
  display: block;
  line-height: 1.2;
  margin-bottom: 4px;
}
.step-title-text {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #0b1523;
  margin-bottom: 8px;
  line-height: 1.3;
}
.step-desc-text {
  font-family: var(--font-main);
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section {
  background: #ffffff;
  margin: 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;
}
.library.btn-lg{
        background: #02A0C4 !important;
    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);
    justify-content: center;
    border: 1px solid #02A0C4;
}
.library.btn-lg:hover{
    color: #02A0C4;
    background:#fff !important;
}
.reviews-header .section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #0b1523;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

/* 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), #7dd3c8);
  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: #1a8cba;
  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: #0c8b82;
  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: #0b1523;
  color: rgba(255,255,255,0.7);
  padding: 0;
}

/* ── FOOTER TOP: Navigation Grid ── */
.footer-top {
  background: #001832;
  padding: 48px 0 40px;
  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: #0c8b82;
  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: #0c8b82;
  transform: translateY(-1px);
}
.privacy-note {
  font-size: 11.5px;
  color: #fff;
  display: flex;
  align-items: center;
}

/* ── FOOTER MID: Brand / Contact / Crypto ── */
.footer-mid {
 background: #001832;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.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 {
  width: 56px;
  height: 56px;
  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: #031225;
  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 {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0c8b82;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(12,139,130,0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
  font-family: var(--font-main);
}
.fbb-backtop.is-visible { opacity: 1; visibility: visible; transform: none; }
.fbb-backtop:hover {
  background: #0a7a72;
  transform: translateY(-2px);
}

/* 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, var(--dark-navy) 60%, var(--dark-bg) 100%);
  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: #0c8b82; color: #0c8b82; }
.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;
}
.COMPLIANCE-STATEMENT{
    background: #f8fafc;
    border-top: 1px solid #eef2f7;
    padding: 20px 0;
    margin: 0;
    text-align: center;
}
.COMPLIANCE-STATEMENT p{
    font-size: 11.5px;
    line-height: 1.65;
    color: #94a3b8;
    margin: 0 auto 5px;
    max-width: 900px;
}
.COMPLIANCE-STATEMENT p:last-child{ margin-bottom: 0; }
.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; }


.Quality-Verification p a {
    color: #06a0c3;
    font-weight: 600;
}

/* ============================================
   Contact page — doc-content sections
   ============================================ */
.cu-form-intro { font-size: 14.5px; color: #475569; line-height: 1.65; margin: 0 0 22px; }
.vp-contact-scope .cu-scope-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.cu-scope-card { background: #fff; border: 1px solid #e8edf3; border-radius: 18px; padding: 26px 28px; }
.cu-scope-card.is-yes { border-top: 3px solid #0c8b82; }
.cu-scope-card.is-no { border-top: 3px solid #e2a03f; }
.cu-scope-card h3 { font-size: 16px; font-weight: 800; color: #0f172a; margin: 0 0 16px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.35; }
.cu-scope-card.is-yes h3 i { color: #0c8b82; }
.cu-scope-card.is-no h3 i { color: #b45309; }
.cu-scope-card ul { list-style: none; margin: 0; padding: 0; }
.cu-scope-card li { position: relative; padding-left: 26px; margin: 11px 0; font-size: 14.5px; color: #475569; line-height: 1.6; }
.cu-scope-card.is-yes li::before { content: "\2713"; color: #0c8b82; font-weight: 800; position: absolute; left: 0; top: 1px; }
.cu-scope-card.is-no li::before { content: "\2715"; color: #cf6a45; font-weight: 700; position: absolute; left: 2px; top: 2px; font-size: 12px; }
.cu-scope-note { margin: 16px 0 0; padding-top: 14px; border-top: 1px solid #eef2f7; font-size: 13px; color: #94a3b8; font-style: italic; }

.vp-contact-rt .cu-rt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cu-rt-card { background: #fff; border: 1px solid #e8edf3; border-radius: 16px; padding: 26px 24px; text-align: center; }
.cu-rt-icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; background: #e6f4f1; color: #0c8b82; font-size: 21px; margin-bottom: 14px; }
.cu-rt-card strong { display: block; font-size: 15.5px; color: #0f172a; margin-bottom: 6px; }
.cu-rt-card span { font-size: 13.5px; color: #64748b; line-height: 1.5; }
.cu-rt-hours { text-align: center; margin: 26px 0 0; font-size: 14.5px; color: #475569; font-weight: 600; }

.cu-compliance { display: flex; gap: 20px; align-items: flex-start; max-width: 940px; margin: 0 auto; background: #f8fafc; border: 1px solid #e8edf3; border-left: 4px solid #0c8b82; border-radius: 16px; padding: 26px 30px; }
.cu-compliance-icon { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 12px; background: #e6f4f1; color: #0c8b82; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.cu-compliance-body h3 { font-size: 16px; font-weight: 800; color: #0f172a; margin: 0 0 10px; }
.cu-compliance-body p { font-size: 14px; color: #475569; line-height: 1.65; margin: 0 0 10px; }
.cu-compliance-ruo { font-weight: 700; color: #0f3b34 !important; margin-bottom: 0 !important; }

@media (max-width: 768px) {
  .vp-contact-scope .cu-scope-grid, .vp-contact-rt .cu-rt-grid { grid-template-columns: 1fr; }
  .cu-compliance { flex-direction: column; gap: 14px; }
}

/* ---- Catalogue (shop) info prose ---- */
.vp-catalog-info { border-top: 1px solid #eef2f7; }
.vp-catalog-prose { max-width: 900px; margin: 0 auto; }

section.main-cat-content {
    padding: 10px 0 50px;
}
