/*
Theme Name: Peptides & Sarms Pure Custom Theme
Theme URI: https://leadliq.com/
Description: Peptides and Sarms custom theme
Author: Leadliq.com
Version: 1.5
*/

/* ===========================
   PEPTIDES & SARMS — CSS
   =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-dark: #FFFFFF;
  --bg-surface: #F9FAFA;
  --bg-card: #F2F4F5;
  --accent-green: #58B483;
  --accent-green-dim: #4ca376;
  --accent-orange: #F2A444;
  --accent-blue: #7DC6D9;
  --accent-purple: #7DC6D9;
  --accent-yellow: #F2A444;
  --text-primary: #11729C;
  --text-muted: #0B3060;
  --text-dim: rgba(17, 114, 156, 0.7);
  --glass: rgba(17, 114, 156, 0.04);
  --glass-border: rgba(17, 114, 156, 0.08);
  --glass-hover: rgba(17, 114, 156, 0.07);
  --green-glow: rgba(88, 180, 131,0.15);
  --orange-glow: rgba(242, 164, 68, 0.15);
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

em {
  font-style: normal;
  color: var(--accent-green);
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-green-dim);
  border-radius: 3px;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 100px 0;
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dim));
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 114, 156, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(88, 180, 131,0.35);
	background:linear-gradient(135deg, #F2A444, #F2A444e0)
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary.btn-large {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--glass-hover);
  border-color: rgba(17, 114, 156, 0.15);
  transform: translateY(-2px);
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 1000;
  background: radial-gradient(circle, rgba(88, 180, 131,0.18) 0%, transparent 70%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 40px rgba(17, 114, 156, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-logo strong {
  color: var(--accent-green);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-cta-nav {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-green-dim));
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-cta-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(88, 180, 131, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 24px;
  right: 24px;
  z-index: 999;
  background: rgba(88, 180, 131,0.07);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu a {
  display: block;
  padding: 14px 12px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--glass-border);
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--text-primary);
}

/* ===========================
   HERO — Two-column layout
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('assets/hero_bg.png');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(255, 255, 255,0.92) 0%,
    rgba(255, 255, 255,0.75) 50%,
    rgba(255, 255, 255,0.35) 100%
  ), linear-gradient(
    to bottom,
    rgba(255, 255, 255,0.4) 0%,
    rgba(255, 255, 255,0) 40%,
    rgba(255, 255, 255,0.9) 100%
  );
}

.hero-glow-left {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(88, 180, 131, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite alternate;
  z-index: 1;
}

.hero-glow-right {
  position: absolute;
  top: 30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242, 164, 68, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 5s ease-in-out infinite alternate-reverse;
  z-index: 1;
}

@keyframes pulse-glow {
  from {
    transform: scale(1);
    opacity: 0.6;
  }

  to {
    transform: scale(1.2);
    opacity: 1;
  }
}

.hex-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(circle at 1px 1px, rgba(88, 180, 131,0.06) 1px, transparent 0);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* TWO-COLUMN HERO LAYOUT */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 1200px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 164, 68, 0.12);
  border: 1px solid rgba(242, 164, 68, 0.25);
  color: var(--accent-orange);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 24px;
  text-align: left;
}

.hero-line-1 {
  display: block;
  color: var(--text-primary);
}

.hero-line-2 {
  display: block;
  color: var(--text-primary);
}

.hero-line-2 em {
  color: var(--accent-green);
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
  text-align: left;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

/* Trust micro row */
.hero-trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(88, 180, 131, 0.07);
  border: 1px solid rgba(88, 180, 131, 0.18);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 50px;
}

/* HERO PRODUCT COLUMN */
.hero-product {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
}

.hero-product-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 180, 131, 0.22) 0%, rgba(242, 164, 68, 0.08) 50%, transparent 70%);
  filter: blur(40px);
  animation: pulse-glow 3s ease-in-out infinite alternate;
}

.hero-product-ring {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border: 1px solid rgba(88, 180, 131, 0.12);
  animation: spin-slow 20s linear infinite;
}

.hero-product-ring::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-green);
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-product-img {
  position: relative;
  z-index: 1;
  height: 400px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(88, 180, 131,0.25)) drop-shadow(0 0 30px rgba(242, 164, 68,0.15));
  animation: float-hero 4s ease-in-out infinite;
}

@keyframes float-hero {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* Floating info cards */
.hero-float-card {
  position: absolute;
  z-index: 2;
  background: rgba(242, 244, 245, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(17, 114, 156, 0.1);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(17, 114, 156, 0.2);
  white-space: nowrap;
}

.hero-float-top {
  top: 10%;
  right: 0;
  color: var(--accent-orange);
  animation: float 3s ease-in-out infinite;
}

.hero-float-bottom {
  bottom: 14%;
  left: 0;
  color: var(--text-muted);
  animation: float 3.5s ease-in-out infinite 0.7s;
}

.float-label {
  font-size: 12px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-green), transparent);
  animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.5);
    opacity: 0.5;
  }
}

/* ===========================
   MARQUEE TICKER
   =========================== */
.marquee-strip {
  background: var(--accent-green);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  position: relative;
  z-index: 10;
}

.marquee-track {
  display: inline-flex;
  gap: 28px;
  animation: marquee 28s linear infinite;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: #11729C;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.marquee-dot {
  color: rgba(17, 114, 156, 0.5);
  font-size: 10px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ===========================
   STATS BAR
   =========================== */
.stats-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 36px 24px;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 900;
  color: var(--accent-green);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--glass-border);
}

/* ===========================
   CATEGORIES
   =========================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.category-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* Background image set per-card below */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Per-card background images */
.category-card:nth-child(1) {
  background-image: url('assets/cat_muscle.png');
}

.category-card:nth-child(2) {
  background-image: url('assets/cat_fatloss.png');
}

.category-card:nth-child(3) {
  background-image: url('assets/cat_hormone.png');
}

.category-card:nth-child(4) {
  background-image: url('assets/cat_peptides.png');
}

.category-card:nth-child(5) {
  background-image: url('assets/cat_pct.png');
}

.category-card:nth-child(6) {
  background-image: url('assets/cat_bundles.png');
}

/* Dark overlay for readability */
.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(255, 255, 255,0.9) 0%,
    rgba(255, 255, 255,0.55) 50%,
    rgba(255, 255, 255,0.25) 100%
  );
  transition: opacity 0.35s;
  z-index: 0;
}

.category-card:hover::before {
  background: linear-gradient(to top,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0.45) 50%,
      rgba(17, 114, 156, 0.15) 100%);
}

.category-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 70px rgba(17, 114, 156, 0.25);
}

/* Ensure content sits above the overlay */
.category-icon,
.category-card h3,
.category-card p,
.category-arrow {
  position: relative;
  z-index: 1;
}

.category-icon {
  width: 52px;
  height: 52px;
  background: rgba(17, 114, 156, 0.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(17, 114, 156, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.3s;
}

.category-card:hover .category-icon {
  background: color-mix(in srgb, var(--accent) 20%, rgba(17, 114, 156, 0.25));
}

.category-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.category-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(17, 114, 156, 0.3);
}

.category-card p {
  color: #0B3060;
  font-size: 13px;
  text-shadow: 0 1px 4px rgba(17, 114, 156, 0.25);
}

.category-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 18px;
  color: rgba(17, 114, 156, 0.6);
  transition: all 0.3s ease;
  z-index: 1;
}

.category-card:hover .category-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

/* ===========================
   PRODUCTS
   =========================== */
.products-section {
  background: var(--bg-surface);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.35s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card.featured {
  border-color: rgba(242, 164, 68, 0.3);
  box-shadow: 0 0 30px rgba(242, 164, 68, 0.08);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(17, 114, 156, 0.2);
  border-color: rgba(17, 114, 156, 0.15);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: linear-gradient(135deg, var(--accent-orange), #C0392B);
  color: #11729C;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #F9FAFA;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-img-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 60px;
  background: radial-gradient(ellipse, var(--glow), transparent 70%);
  filter: blur(12px);
}

.product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-desc {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}

.product-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.product-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.btn-product {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--accent-green);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-product:hover {
  background: var(--accent-green);
  color: #fff;
  border-color: var(--accent-green);
}

.products-cta-wrap {
  text-align: center;
}

/* ===========================
   WHY US
   =========================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.35s ease;
}

.why-card:hover {
  border-color: rgba(17, 114, 156, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(17, 114, 156, 0.15);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-icon--green { background: rgba(88, 180, 131,0.12); }

.why-icon--green svg {
  stroke: var(--accent-green);
}

.why-icon--orange {
  background: rgba(242, 164, 68, 0.12);
}

.why-icon--orange svg {
  stroke: var(--accent-orange);
}

.why-icon--blue {
  background: rgba(125, 198, 217, 0.12);
}

.why-icon--blue svg {
  stroke: var(--accent-blue);
}

.why-icon--purple {
  background: rgba(125, 198, 217, 0.12);
}

.why-icon--purple svg {
  stroke: var(--accent-purple);
}

.why-icon svg {
  width: 28px;
  height: 28px;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ===========================
   LAB TESTING
   =========================== */
.lab-section {
  position: relative;
  overflow: hidden;
}

.lab-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(88, 180, 131, 0.04) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}

.lab-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.lab-content .section-title {
  text-align: left;
}

.lab-content .section-eyebrow {
  text-align: left;
  display: block;
}

.lab-content>p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.lab-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.lab-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}

.lab-features svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.lab-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lab-cert-card {
  background: var(--bg-card);
  border: 1px solid rgba(88, 180, 131, 0.2);
  border-radius: 20px;
  padding: 32px;
  width: 320px;
  box-shadow: 0 0 60px rgba(88, 180, 131,0.1);
}

.cert-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
}

.cert-header span {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.cert-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.cert-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.cert-row span:first-child {
  color: var(--text-muted);
}

.cert-pass {
  color: var(--accent-green);
  font-weight: 700;
  background: rgba(88, 180, 131, 0.1);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 13px;
}

.cert-stamp {
  text-align: center;
  color: var(--accent-green);
  font-size: 13px;
  font-weight: 700;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.lab-floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(17, 114, 156, 0.15);
  animation: float 3s ease-in-out infinite;
}

.lab-fb-1 {
  top: 10%;
  right: -10px;
  animation-delay: 0s;
}

.lab-fb-2 {
  bottom: 15%;
  left: -10px;
  animation-delay: 1.5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ===========================
   REVIEWS
   =========================== */
.reviews-section {
  background: var(--bg-surface);
}

.reviews-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.reviews-aggregate .stars {
  display: flex;
  gap: 4px;
}

.reviews-aggregate svg {
  width: 22px;
  height: 22px;
}

.reviews-score {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
}

.reviews-score span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}

.reviews-carousel-wrap {
  position: relative;
  overflow: hidden;
}

.reviews-carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card {
  flex: 0 0 calc(33.33% - 14px);
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
}

.review-stars {
  color: var(--accent-yellow);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent-green-dim), var(--accent-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #11729C;
  flex-shrink: 0;
}

.reviewer div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviewer strong {
  font-size: 14px;
  font-weight: 700;
}

.reviewer span {
  font-size: 12px;
  color: var(--text-muted);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--accent-green);
  border-color: var(--accent-green);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--glass-border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: var(--accent-green);
  transform: scale(1.3);
}

/* ===========================
   NEWSLETTER
   =========================== */
.newsletter-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.newsletter-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(88, 180, 131,0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(242, 164, 68,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.newsletter-content {
  position: relative;
  z-index: 1;
}

.newsletter-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  margin: 12px 0 16px;
}

.newsletter-content>p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 14px 22px;
  color: var(--text-primary);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input:focus {
  border-color: var(--accent-green);
}

.newsletter-form input::placeholder {
  color: var(--text-dim);
}

/* ===========================
   SPOTLIGHT SECTION
   =========================== */
.spotlight-section {
  background: var(--bg-surface);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.spotlight-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(88, 180, 131,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.spotlight-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.spotlight-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
  overflow: visible;
  /* Ensure content isn't clipped and doesn't clip children incorrectly */
}

.spotlight-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 198, 217,0.2) 0%, rgba(88, 180, 131,0.08) 50%, transparent 70%);
  filter: blur(50px);
}

.spotlight-img {
  position: relative;
  z-index: 5;
  height: 90%;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(88, 180, 131, 0.3)) drop-shadow(0 0 20px rgba(88, 180, 131, 0.15));
  animation: float-hero 5s ease-in-out infinite;
  pointer-events: none;
  /* Let events pass through to badges if needed */
}

.spotlight-badge-pill {
  position: absolute;
  bottom: 30px;
  left: 20px;
  z-index: 20;
  /* Higher than image */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 244, 245, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(88, 180, 131,0.18);
  border-radius: 50px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-green);
  box-shadow: 0 8px 30px rgba(17, 114, 156, 0.25);
}

.spotlight-content .section-title {
  text-align: left;
}

.spotlight-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
  padding: 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

.spotlight-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.spotlight-stat strong {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-green);
  display: block;
}

.spotlight-stat span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-items a,
.footer-contact-items span {
  color: var(--text-muted);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-items a:hover {
  color: var(--accent-green);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent-green);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.payment-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.payment-icons span {
  background: rgba(17, 114, 156, 0.07);
  border: 1px solid var(--glass-border);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.shopify-secure { color: var(--accent-green) !important; border-color: rgba(88, 180, 131,0.3) !important; background: rgba(88, 180, 131,0.06) !important; }

.footer-copy {
  color: var(--text-dim);
  font-size: 13px;
  text-align: center;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text {
    align-items: center;
  }

  .hero-subtitle {
    text-align: center;
    margin: 0 auto 36px;
  }

  .hero-trust-row {
    justify-content: center;
  }

  .hero-title {
    text-align: center;
  }

  .hero-product {
    height: 380px;
  }

  .hero-product-img {
    height: 300px;
  }

  .hero-product-ring {
    width: 340px;
    height: 340px;
  }

  .hero-float-top {
    top: 5%;
    right: 40px;
  }

  .hero-float-bottom {
    bottom: 5%;
    left: 40px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lab-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .lab-content .section-title,
  .lab-content .section-eyebrow {
    text-align: center;
  }

  .lab-visual {
    justify-content: center;
  }

  .spotlight-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .spotlight-image {
    height: 320px;
  }

  .spotlight-img {
    height: 280px;
  }

  .spotlight-content .section-title {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 72px 0;
  }

  .navbar {
    width: calc(100% - 32px);
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-container {
    gap: 32px;
  }

  .stat-divider {
    display: none;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    flex: 0 0 calc(100% - 0px);
  }

  .newsletter-card {
    padding: 40px 24px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .spotlight-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-product {
    display: none;
  }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* GSAP SAFETY NET: if JS fails or GSAP is slow, ensure elements are visible */
.category-card,
.product-card,
.why-card,
.review-card,
.stat-item,
.section-header,
#lab-content,
#lab-visual,
#newsletter-card,
.footer-grid>*,
.hero-line-1,
.hero-line-2,
.hero-badge,
.hero-subtitle,
.hero-actions {
  will-change: transform, opacity;
}
