/* =============================================================
   Trusted Peptides — Design System v2
   Bold, vibrant, medical-tech aesthetic
   ============================================================= */

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

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Core palette */
  --ps-navy:         #050e1f;
  --ps-navy-2:       #0d1f3c;
  --ps-navy-3:       #162d52;
  --ps-blue:         #1d4ed8;
  --ps-blue-light:   #3b82f6;
  --ps-cyan:         #06b6d4;
  --ps-cyan-light:   #22d3ee;
  --ps-teal:         #0891b2;
  --ps-teal-hover:   #0e7490;
  --ps-violet:       #7c3aed;
  --ps-violet-light: #a78bfa;
  --ps-emerald:      #059669;
  --ps-emerald-light:#34d399;
  --ps-amber:        #d97706;
  --ps-rose:         #e11d48;

  /* Neutrals */
  --ps-white:        #ffffff;
  --ps-off-white:    #f8fafc;
  --ps-gray-50:      #f9fafb;
  --ps-gray-100:     #f1f5f9;
  --ps-gray-200:     #e2e8f0;
  --ps-gray-300:     #cbd5e1;
  --ps-gray-400:     #94a3b8;
  --ps-gray-500:     #64748b;
  --ps-gray-600:     #475569;
  --ps-gray-700:     #334155;
  --ps-gray-800:     #1e293b;
  --ps-gray-900:     #0f172a;

  /* Gradients */
  --grad-hero:       linear-gradient(135deg, #050e1f 0%, #0d1f3c 40%, #0c2a4a 70%, #0a1628 100%);
  --grad-blue:       linear-gradient(135deg, #1d4ed8 0%, #06b6d4 100%);
  --grad-teal:       linear-gradient(135deg, #0891b2 0%, #059669 100%);
  --grad-violet:     linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
  --grad-warm:       linear-gradient(135deg, #d97706 0%, #e11d48 100%);
  --grad-card:       linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);

  /* Typography */
  --ps-font:         'Space Grotesk', 'Inter', -apple-system, sans-serif;
  --ps-font-body:    'Inter', -apple-system, sans-serif;

  /* Radii */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(0,0,0,0.06);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.1);
  --shadow-lg:  0 20px 48px rgba(0,0,0,0.14);
  --shadow-xl:  0 32px 64px rgba(0,0,0,0.2);
  --shadow-glow-cyan:   0 0 40px rgba(6,182,212,0.25);
  --shadow-glow-blue:   0 0 40px rgba(59,130,246,0.3);
  --shadow-glow-violet: 0 0 40px rgba(124,58,237,0.25);

  /* Timing */
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:  0.15s;
  --t-base:  0.25s;
  --t-slow:  0.4s;

  /* Layout */
  --max-w:      1320px;
  --header-h:   72px;
}

/* ─── Keyframe Animations ────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

@keyframes pulse-ring {
  0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(6,182,212,0.4); }
  70%  { transform: scale(1);    box-shadow: 0 0 0 16px rgba(6,182,212,0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(6,182,212,0); }
}

@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

@keyframes blob {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50%       { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

@keyframes counter-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes border-dance {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ─── Global Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ps-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ps-gray-800);
  background: var(--ps-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--ps-blue); text-decoration: none; transition: color var(--t-base) var(--ease); }
a:hover { color: var(--ps-cyan); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ps-font);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ps-gray-900);
}

/* ─── Scroll Reveal (JS adds .revealed class) ───────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Container ──────────────────────────────────────────────── */
.ps-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) { .ps-container { padding: 0 48px; } }

/* ─── Gradient Text ──────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--ps-cyan-light) 0%, var(--ps-blue-light) 50%, var(--ps-violet-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-warm {
  background: linear-gradient(135deg, #fbbf24 0%, #f97316 50%, #e11d48 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.ps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px;
  font-family: var(--ps-font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.ps-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t-fast);
}
.ps-btn:hover::after { background: rgba(255,255,255,0.08); }

.ps-btn--primary {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(29,78,216,0.4);
}
.ps-btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(29,78,216,0.5);
}

.ps-btn--cyan {
  background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(6,182,212,0.35);
}
.ps-btn--cyan:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(6,182,212,0.5);
}

.ps-btn--violet {
  background: var(--grad-violet);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
}
.ps-btn--violet:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-violet);
}

.ps-btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.ps-btn--outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

.ps-btn--glass {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.ps-btn--glass:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

.ps-btn--dark {
  background: var(--ps-gray-900);
  color: #fff;
  border-color: var(--ps-gray-700);
}
.ps-btn--dark:hover {
  background: var(--ps-gray-800);
  color: #fff;
  border-color: var(--ps-cyan);
  box-shadow: 0 0 20px rgba(6,182,212,0.2);
}

.ps-btn--lg {
  padding: 14px 36px;
  font-size: 1.0625rem;
  border-radius: var(--r-lg);
}

.ps-btn--sm { padding: 7px 18px; font-size: 0.875rem; }
.ps-btn--full { width: 100%; }

/* Animated gradient border button */
.ps-btn--glow {
  background: var(--ps-navy-2);
  color: var(--ps-cyan-light);
  border: none;
  position: relative;
}
.ps-btn--glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--ps-cyan), var(--ps-blue-light), var(--ps-violet-light), var(--ps-cyan));
  background-size: 300% 300%;
  border-radius: calc(var(--r-md) + 2px);
  z-index: -1;
  animation: border-dance 3s ease infinite;
}

/* ─── Age Gate ───────────────────────────────────────────────── */
.ps-age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 14, 31, 0.96);
  backdrop-filter: blur(20px);
  padding: 20px;
}

.ps-age-gate__inner {
  background: linear-gradient(145deg, #0d1f3c, #162d52);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: var(--r-xl);
  padding: 52px 44px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl), var(--shadow-glow-cyan);
  animation: slide-up 0.5s var(--ease-spring);
}

.ps-age-gate__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(6,182,212,0.2), rgba(29,78,216,0.2));
  border: 1px solid rgba(6,182,212,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--ps-cyan-light);
  animation: pulse-ring 2.5s infinite;
}

.ps-age-gate__title {
  font-family: var(--ps-font);
  font-size: 1.625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.ps-age-gate__body {
  color: rgba(255,255,255,0.65);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 12px;
}

.ps-age-gate__body strong { color: rgba(255,255,255,0.9); }

.ps-age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0 16px;
}

.ps-age-gate__legal {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ─── Announcement Bar ───────────────────────────────────────── */
.ps-announcement {
  background: linear-gradient(90deg, var(--ps-navy-2) 0%, #0c2a4a 50%, var(--ps-navy-2) 100%);
  background-size: 200% 100%;
  animation: gradient-shift 6s ease infinite;
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(6,182,212,0.2);
}

.ps-announcement .ps-ann-highlight {
  color: var(--ps-cyan-light);
  font-weight: 700;
}

.ps-announcement a {
  color: var(--ps-cyan-light);
  text-decoration: underline;
  text-decoration-color: rgba(34,211,238,0.4);
}

/* ─── Site Header ────────────────────────────────────────────── */
.ps-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(5, 14, 31, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--t-base) var(--ease);
}

.ps-header.scrolled {
  background: rgba(5, 14, 31, 0.96);
  border-bottom-color: rgba(6,182,212,0.15);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.ps-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) { .ps-header__inner { padding: 0 48px; } }

/* Logo */
.ps-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.ps-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--ps-cyan) 0%, var(--ps-blue) 100%);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(6,182,212,0.4);
  transition: transform var(--t-base) var(--ease-spring);
}
.ps-header__logo:hover .ps-logo-icon {
  transform: rotate(-5deg) scale(1.1);
}

.ps-logo-name {
  font-family: var(--ps-font);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.ps-logo-name span { color: var(--ps-cyan-light); }

.ps-logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-top: 1px;
}

/* Nav */
.ps-header__nav { display: none; }
@media (min-width: 768px) {
  .ps-header__nav {
    display: flex;
    align-items: center;
    gap: 2px;
  }
}

.ps-header__nav a {
  display: block;
  padding: 7px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-radius: var(--r-sm);
  transition: all var(--t-fast) var(--ease);
  position: relative;
}
.ps-header__nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--ps-cyan);
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width var(--t-base) var(--ease);
}
.ps-header__nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.ps-header__nav a:hover::after { width: calc(100% - 28px); }

/* Actions */
.ps-header__actions { display: flex; align-items: center; gap: 8px; }

.ps-cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(6,182,212,0.1);
  color: var(--ps-cyan-light) !important;
  border: 1px solid rgba(6,182,212,0.3);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-base) var(--ease);
  text-decoration: none;
}
.ps-cart-btn:hover {
  background: rgba(6,182,212,0.2);
  border-color: var(--ps-cyan);
  box-shadow: 0 0 20px rgba(6,182,212,0.2);
}

.ps-cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: linear-gradient(135deg, var(--ps-cyan) 0%, var(--ps-blue) 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: var(--r-full);
  line-height: 1;
}
.ps-cart-count[data-count="0"] { display: none; }

.ps-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  cursor: pointer;
  color: rgba(255,255,255,0.8);
  transition: all var(--t-fast);
}
.ps-hamburger:hover { background: rgba(255,255,255,0.1); }
@media (min-width: 768px) { .ps-hamburger { display: none; } }

/* Mobile Nav */
.ps-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5,14,31,0.8);
  backdrop-filter: blur(8px);
}
.ps-mobile-nav.open { display: block; }

.ps-mobile-nav__drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(180deg, #0d1f3c 0%, #050e1f 100%);
  border-left: 1px solid rgba(6,182,212,0.15);
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
}
.ps-mobile-nav.open .ps-mobile-nav__drawer { transform: translateX(0); }

.ps-mobile-nav__close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 32px;
}
.ps-mobile-nav__links a {
  display: block;
  padding: 13px 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--t-fast);
}
.ps-mobile-nav__links a:hover { color: var(--ps-cyan-light); }

/* ─── HERO ───────────────────────────────────────────────────── */
.ps-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 40px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-hero);
  padding: 80px 0;
}

/* Animated mesh background */
.ps-hero__mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ps-hero__blob {
  position: absolute;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(80px);
  animation: blob 8s ease-in-out infinite;
  opacity: 0.5;
}
.ps-hero__blob--1 {
  width: 600px; height: 600px;
  background: rgba(29,78,216,0.3);
  top: -150px; right: -100px;
  animation-delay: 0s;
}
.ps-hero__blob--2 {
  width: 500px; height: 500px;
  background: rgba(6,182,212,0.2);
  bottom: -100px; left: -80px;
  animation-delay: 3s;
}
.ps-hero__blob--3 {
  width: 400px; height: 400px;
  background: rgba(124,58,237,0.15);
  top: 30%; right: 30%;
  animation-delay: 6s;
}

/* Grid overlay */
.ps-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6,182,212,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,182,212,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Radial fade over grid */
.ps-hero__grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(5,14,31,0.7) 100%);
}

.ps-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
@media (min-width: 1024px) { .ps-hero__content { padding: 0 48px; } }

.ps-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(6,182,212,0.12);
  border: 1px solid rgba(6,182,212,0.3);
  border-radius: var(--r-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ps-cyan-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  animation: slide-up 0.6s var(--ease) both;
}

.ps-hero__eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--ps-cyan);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

.ps-hero__title {
  font-family: var(--ps-font);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: slide-up 0.6s var(--ease) 0.1s both;
}

.ps-hero__subtitle {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255,255,255,0.6);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: slide-up 0.6s var(--ease) 0.2s both;
}

.ps-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 72px;
  animation: slide-up 0.6s var(--ease) 0.3s both;
}

/* Stats row */
.ps-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  animation: slide-up 0.6s var(--ease) 0.4s both;
}

.ps-hero__stat {
  text-align: center;
  padding: 20px 32px;
  position: relative;
}
.ps-hero__stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.ps-hero__stat-value {
  font-family: var(--ps-font);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #fff 0%, var(--ps-cyan-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ps-hero__stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Scroll indicator */
.ps-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  animation: float 2s ease-in-out infinite;
}

/* ─── Trust Strip ────────────────────────────────────────────── */
.ps-trust-strip {
  background: linear-gradient(90deg, #060f23 0%, #0a1f3d 50%, #060f23 100%);
  border-top: 1px solid rgba(6,182,212,0.15);
  border-bottom: 1px solid rgba(6,182,212,0.15);
  padding: 18px 0;
  overflow: hidden;
}

.ps-trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.ps-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  border-right: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
}
.ps-trust-item:last-child { border-right: none; }
.ps-trust-item svg { color: var(--ps-cyan); flex-shrink: 0; }

/* ─── Section ────────────────────────────────────────────────── */
.ps-section { padding: 80px 0; }
@media (min-width: 1024px) { .ps-section { padding: 100px 0; } }

.ps-section--dark {
  background: linear-gradient(180deg, #060f23 0%, #0a1528 100%);
  color: #fff;
}
.ps-section--alt  { background: #f8fafc; }
.ps-section--tinted { background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%); }

.ps-section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ps-cyan);
  margin-bottom: 12px;
}
.ps-section--dark .ps-section__eyebrow { color: var(--ps-cyan-light); }

.ps-section__title {
  font-family: var(--ps-font);
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  font-weight: 800;
  color: var(--ps-gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.ps-section--dark .ps-section__title { color: #fff; }

.ps-section__subtitle {
  font-size: 1.0625rem;
  color: var(--ps-gray-500);
  max-width: 600px;
  line-height: 1.7;
}
.ps-section--dark .ps-section__subtitle { color: rgba(255,255,255,0.55); }

.ps-section__header { margin-bottom: 56px; }
.ps-section__header--center { text-align: center; }
.ps-section__header--center .ps-section__subtitle { margin: 0 auto; }

/* ─── Colorful Product Cards ─────────────────────────────────── */
/* Product grid */
.woocommerce ul.products,
.woocommerce-page ul.products {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
/* Remove WooCommerce clearfix pseudo-elements — they become grid items and shift cards */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
  display: none !important;
}
@media (min-width: 580px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1200px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products { grid-template-columns: repeat(3, 1fr); }
}

/* Card base */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: 100% !important;
  float: none !important;
  background: var(--ps-white);
  border: 1px solid var(--ps-gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-base) var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.woocommerce ul.products li.product::before,
.woocommerce-page ul.products li.product::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  border-color: rgba(6,182,212,0.3);
  box-shadow: var(--shadow-md), 0 0 30px rgba(6,182,212,0.08);
  transform: translateY(-4px);
}

.woocommerce ul.products li.product:hover::before,
.woocommerce-page ul.products li.product:hover::before {
  transform: scaleX(1);
}

/* Product image area */
.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: linear-gradient(145deg, #f0f9ff, #e0f2fe);
  padding: 20px;
  transition: transform 0.4s var(--ease);
}
/* Homepage catalog — self-contained grid (no .woocommerce body class on front page) */
ul.ps-home-catalog {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { ul.ps-home-catalog { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { ul.ps-home-catalog { grid-template-columns: repeat(2, 1fr); } }
ul.ps-home-catalog li.product {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
ul.ps-home-catalog li.product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: linear-gradient(145deg, #f0f9ff, #e0f2fe);
  padding: 12px;
  display: block;
}
.woocommerce ul.products li.product:hover img,
.woocommerce-page ul.products li.product:hover img {
  transform: scale(1.06);
}

.ps-product-card__image-wrap {
  position: relative;
  overflow: hidden;
}

/* Shimmer on hover */
.ps-product-card__image-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-15deg);
  transition: none;
}
.woocommerce ul.products li.product:hover .ps-product-card__image-wrap::after {
  animation: shimmer 0.6s ease forwards;
}

.ps-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: linear-gradient(135deg, var(--ps-cyan) 0%, var(--ps-blue) 100%);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 10px;
  border-radius: var(--r-full);
  box-shadow: 0 2px 8px rgba(6,182,212,0.4);
}

/* Card body */
.ps-product-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ps-product-card__category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ps-cyan);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--ps-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ps-gray-900) !important;
  margin: 0 0 8px !important;
  line-height: 1.3;
}

.ps-product-card__desc {
  font-size: 0.8125rem;
  color: var(--ps-gray-500);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}

.ps-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--ps-gray-100);
  gap: 10px;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  font-family: var(--ps-font);
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: var(--ps-navy-2) !important;
  margin: 0 !important;
}

/* Add to cart in loop */
.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8px 16px !important;
  background: linear-gradient(135deg, var(--ps-navy-2) 0%, var(--ps-navy-3) 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--r-sm) !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all var(--t-base) var(--ease) !important;
  white-space: nowrap;
  text-decoration: none !important;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce-page ul.products li.product .button:hover {
  background: linear-gradient(135deg, var(--ps-cyan) 0%, var(--ps-blue) 100%) !important;
  color: #fff !important;
  transform: none !important;
  box-shadow: 0 4px 16px rgba(6,182,212,0.4) !important;
}

/* ─── Category Pill Filter ───────────────────────────────────── */
.ps-category-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ps-category-filter::-webkit-scrollbar { display: none; }

.ps-category-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--t-base) var(--ease);
  text-decoration: none;
  flex-shrink: 0;
}
.ps-category-pill:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.ps-category-pill.active,
.ps-category-pill--active {
  background: #0891b2;
  border-color: #0891b2;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(8,145,178,0.4);
}

.ps-category-pill__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: rgba(255,255,255,0.15);
  border-radius: 99px;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
}
.ps-category-pill.active .ps-category-pill__count,
.ps-category-pill--active .ps-category-pill__count {
  background: rgba(255,255,255,0.25);
}

/* ─── Shop Archive Page ──────────────────────────────────────── */
.ps-shop-header-bar {
  background: linear-gradient(135deg, var(--ps-navy-2) 0%, #0c2a4a 100%);
  padding: 40px 0 32px;
}

.ps-shop-title {
  font-family: var(--ps-font);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.ps-shop-count {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

/* ─── Single Product ─────────────────────────────────────────── */
.woocommerce div.product div.images img,
.woocommerce-page div.product div.images img {
  border-radius: var(--r-lg);
  border: 1px solid var(--ps-gray-200);
}

.woocommerce div.product .product_title,
.woocommerce-page div.product .product_title {
  font-family: var(--ps-font) !important;
  font-size: clamp(1.625rem, 3vw, 2.25rem) !important;
  font-weight: 800 !important;
  color: var(--ps-gray-900) !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 12px !important;
  line-height: 1.15 !important;
}

.woocommerce div.product .price,
.woocommerce-page div.product .price {
  font-family: var(--ps-font);
  font-size: 2.25rem !important;
  font-weight: 900 !important;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  display: block;
}

.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce-page div.product .woocommerce-product-details__short-description {
  font-size: 1rem;
  color: var(--ps-gray-600);
  line-height: 1.75;
  margin-bottom: 28px;
}

.ps-research-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(6,182,212,0.08), rgba(29,78,216,0.08));
  border: 1px solid rgba(6,182,212,0.25);
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: #0369a1;
  margin-bottom: 24px;
}

.woocommerce div.product form.cart .button,
.woocommerce-page div.product form.cart .button {
  background: linear-gradient(135deg, var(--ps-cyan) 0%, var(--ps-blue) 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--r-md) !important;
  font-family: var(--ps-font) !important;
  font-size: 1.0625rem !important;
  font-weight: 700 !important;
  padding: 15px 36px !important;
  width: 100% !important;
  box-shadow: 0 6px 24px rgba(6,182,212,0.35) !important;
  transition: all var(--t-base) var(--ease) !important;
  cursor: pointer !important;
}
.woocommerce div.product form.cart .button:hover,
.woocommerce-page div.product form.cart .button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 32px rgba(6,182,212,0.5) !important;
}

/* ─── Colorful Category Cards ────────────────────────────────── */
.ps-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) { .ps-cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .ps-cat-grid { grid-template-columns: repeat(5, 1fr); } }

.ps-cat-card {
  position: relative;
  padding: 28px 20px;
  border-radius: var(--r-lg);
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  transition: all var(--t-base) var(--ease-spring));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
}
.ps-cat-card:hover { transform: translateY(-4px) scale(1.02); }

.ps-cat-card--blue   { background: linear-gradient(145deg, #dbeafe, #bfdbfe); border-color: #93c5fd; }
.ps-cat-card--cyan   { background: linear-gradient(145deg, #cffafe, #a5f3fc); border-color: #67e8f9; }
.ps-cat-card--violet { background: linear-gradient(145deg, #ede9fe, #ddd6fe); border-color: #c4b5fd; }
.ps-cat-card--emerald{ background: linear-gradient(145deg, #d1fae5, #a7f3d0); border-color: #6ee7b7; }
.ps-cat-card--amber  { background: linear-gradient(145deg, #fef3c7, #fde68a); border-color: #fcd34d; }

.ps-cat-card:hover.ps-cat-card--blue   { box-shadow: 0 12px 32px rgba(59,130,246,0.3); }
.ps-cat-card:hover.ps-cat-card--cyan   { box-shadow: 0 12px 32px rgba(6,182,212,0.3); }
.ps-cat-card:hover.ps-cat-card--violet { box-shadow: 0 12px 32px rgba(124,58,237,0.3); }
.ps-cat-card:hover.ps-cat-card--emerald{ box-shadow: 0 12px 32px rgba(5,150,105,0.3); }
.ps-cat-card:hover.ps-cat-card--amber  { box-shadow: 0 12px 32px rgba(217,119,6,0.3); }

.ps-cat-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.ps-cat-card--blue   .ps-cat-card__icon { background: rgba(29,78,216,0.12);  color: var(--ps-blue); }
.ps-cat-card--cyan   .ps-cat-card__icon { background: rgba(6,182,212,0.15);  color: var(--ps-teal); }
.ps-cat-card--violet .ps-cat-card__icon { background: rgba(124,58,237,0.12); color: var(--ps-violet); }
.ps-cat-card--emerald .ps-cat-card__icon{ background: rgba(5,150,105,0.12);  color: var(--ps-emerald); }
.ps-cat-card--amber  .ps-cat-card__icon { background: rgba(217,119,6,0.12);  color: var(--ps-amber); }

.ps-cat-card__name {
  font-family: var(--ps-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ps-gray-900);
  line-height: 1.3;
}
.ps-cat-card__count { font-size: 0.75rem; color: var(--ps-gray-500); font-weight: 500; }

/* ─── Feature Cards ──────────────────────────────────────────── */
.ps-features { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .ps-features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ps-features { grid-template-columns: repeat(3, 1fr); } }

.ps-feature-card {
  padding: 32px 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--ps-gray-200);
  background: var(--ps-white);
  transition: all var(--t-base) var(--ease));
  position: relative;
  overflow: hidden;
}
.ps-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--card-accent, var(--grad-blue));
}
.ps-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.ps-feature-card--blue   { --card-accent: var(--grad-blue); }
.ps-feature-card--teal   { --card-accent: var(--grad-teal); }
.ps-feature-card--violet { --card-accent: var(--grad-violet); }
.ps-feature-card--warm   { --card-accent: var(--grad-warm); }
.ps-feature-card--emerald{ --card-accent: linear-gradient(135deg, #059669 0%, #06b6d4 100%); }
.ps-feature-card--gold   { --card-accent: linear-gradient(135deg, #d97706 0%, #f59e0b 100%); }

.ps-feature-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.ps-feature-card--blue   .ps-feature-card__icon { background: #dbeafe; color: var(--ps-blue); }
.ps-feature-card--teal   .ps-feature-card__icon { background: #cffafe; color: var(--ps-teal); }
.ps-feature-card--violet .ps-feature-card__icon { background: #ede9fe; color: var(--ps-violet); }
.ps-feature-card--warm   .ps-feature-card__icon { background: #fef3c7; color: var(--ps-amber); }
.ps-feature-card--emerald .ps-feature-card__icon{ background: #d1fae5; color: var(--ps-emerald); }
.ps-feature-card--gold   .ps-feature-card__icon { background: #fffbeb; color: var(--ps-amber); }

.ps-feature-card__title {
  font-family: var(--ps-font);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ps-gray-900);
  margin-bottom: 10px;
}
.ps-feature-card__text {
  font-size: 0.9125rem;
  color: var(--ps-gray-500);
  line-height: 1.7;
}

/* ─── Compound Highlight (big bold product showcases) ────────── */
.ps-highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .ps-highlight-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .ps-highlight-grid { grid-template-columns: repeat(3, 1fr); } }

.ps-highlight-card {
  border-radius: var(--r-xl);
  padding: 32px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: all var(--t-base) var(--ease-spring));
  color: #fff;
}
.ps-highlight-card:hover {
  transform: translateY(-5px) scale(1.01);
  color: #fff;
}

.ps-highlight-card--blue   { background: linear-gradient(145deg, #1d4ed8 0%, #0891b2 100%); }
.ps-highlight-card--violet { background: linear-gradient(145deg, #7c3aed 0%, #3b82f6 100%); }
.ps-highlight-card--emerald{ background: linear-gradient(145deg, #059669 0%, #0891b2 100%); }
.ps-highlight-card--rose   { background: linear-gradient(145deg, #e11d48 0%, #7c3aed 100%); }
.ps-highlight-card--amber  { background: linear-gradient(145deg, #d97706 0%, #e11d48 100%); }
.ps-highlight-card--dark   { background: linear-gradient(145deg, #0d1f3c 0%, #1d4ed8 100%); }

.ps-highlight-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 220px; height: 220px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.ps-highlight-card::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 160px; height: 160px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  pointer-events: none;
}

.ps-highlight-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.65);
  position: relative;
  z-index: 1;
}
.ps-highlight-card__name {
  font-family: var(--ps-font);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}
.ps-highlight-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.ps-highlight-card__price {
  font-family: var(--ps-font);
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  position: relative;
  z-index: 1;
}
.ps-highlight-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px;
  border-radius: var(--r-full);
  position: relative;
  z-index: 1;
  transition: all var(--t-fast);
  align-self: flex-start;
  margin-top: auto;
}
.ps-highlight-card:hover .ps-highlight-card__cta {
  background: rgba(255,255,255,0.25);
}

/* ─── Stat Counter Row ───────────────────────────────────────── */
.ps-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ps-gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--ps-gray-200);
}
@media (min-width: 768px) { .ps-stats-row { grid-template-columns: repeat(4, 1fr); } }

.ps-stat-box {
  background: var(--ps-white);
  padding: 32px 24px;
  text-align: center;
}
.ps-stat-box__value {
  font-family: var(--ps-font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.ps-stat-box__label {
  font-size: 0.875rem;
  color: var(--ps-gray-500);
  font-weight: 500;
}

/* ─── Newsletter / CTA Banner ────────────────────────────────── */
.ps-cta-section {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, #0d1f3c 0%, #1d4ed8 50%, #0891b2 100%);
  background-size: 200% 200%;
  animation: gradient-shift 8s ease infinite;
  padding: 64px 48px;
  text-align: center;
}
@media (max-width: 640px) { .ps-cta-section { padding: 40px 24px; } }

.ps-cta-section::before {
  content: '';
  position: absolute;
  top: -40%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.ps-cta-section__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.ps-cta-section__title {
  font-family: var(--ps-font);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}
.ps-cta-section__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.ps-cta-section .ps-btn { position: relative; z-index: 1; }

/* ─── Site Footer ────────────────────────────────────────────── */
.ps-footer {
  background: #030b17;
  color: var(--ps-gray-400);
  padding: 72px 0 0;
  border-top: 1px solid rgba(6,182,212,0.1);
}

.ps-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 640px) { .ps-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .ps-footer__grid {
    grid-template-columns: 300px 1fr 1fr 1fr;
    padding: 0 48px;
  }
}

.ps-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}
.ps-footer__logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--ps-cyan) 0%, var(--ps-blue) 100%);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.ps-footer__logo-text {
  font-family: var(--ps-font);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
}
.ps-footer__logo-text span { color: var(--ps-cyan-light); }

.ps-footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  margin-bottom: 24px;
}

.ps-footer__social {
  display: flex;
  gap: 8px;
}
.ps-social-btn {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-sm);
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: all var(--t-base) var(--ease));
}
.ps-social-btn:hover {
  background: linear-gradient(135deg, var(--ps-cyan) 0%, var(--ps-blue) 100%);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.ps-footer__col-title {
  font-family: var(--ps-font);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
}

.ps-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ps-footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--t-fast);
}
.ps-footer__links a:hover { color: var(--ps-cyan-light); }

.ps-footer__bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 24px 48px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1024px) { .ps-footer__bottom { padding: 24px; } }

.ps-footer__bottom-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.ps-footer__copyright {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.25);
}
.ps-footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  max-width: 580px;
  line-height: 1.55;
}

/* ─── Breadcrumb ─────────────────────────────────────────────── */
.ps-breadcrumb {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
}
.ps-breadcrumb a { color: rgba(255,255,255,0.45); }
.ps-breadcrumb a:hover { color: var(--ps-cyan-light); }
.ps-breadcrumb .sep { margin: 0 8px; opacity: 0.4; }

/* ─── WooCommerce notices ────────────────────────────────────── */
.woocommerce-message,
.woocommerce-info {
  border-radius: var(--r-md) !important;
  border-top: none !important;
  border-left: 4px solid var(--ps-cyan) !important;
  background: #f0f9ff !important;
  font-family: var(--ps-font-body) !important;
}
.woocommerce-error {
  border-radius: var(--r-md) !important;
  border-top: none !important;
  border-left: 4px solid var(--ps-rose) !important;
  font-family: var(--ps-font-body) !important;
}

/* Cart & checkout buttons */
.woocommerce .wc-proceed-to-checkout .button,
.woocommerce-page .wc-proceed-to-checkout .button,
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  background: linear-gradient(135deg, var(--ps-cyan) 0%, var(--ps-blue) 100%) !important;
  color: #fff !important;
  border-radius: var(--r-md) !important;
  font-family: var(--ps-font) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  padding: 15px 36px !important;
  border: none !important;
  box-shadow: 0 6px 24px rgba(6,182,212,0.35) !important;
}

/* Product tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li a {
  font-family: var(--ps-font-body) !important;
  font-weight: 600 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--ps-navy-2) !important;
}

/* Pagination */
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  border-radius: var(--r-sm) !important;
  font-family: var(--ps-font) !important;
  font-weight: 600 !important;
}
.woocommerce-pagination ul li span.current {
  background: linear-gradient(135deg, var(--ps-cyan) 0%, var(--ps-blue) 100%) !important;
  border-color: transparent !important;
}

/* ─── Research Tabs ──────────────────────────────────────────── */
.ps-research-tabs {
  background: var(--ps-white);
  border: 1px solid var(--ps-gray-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.ps-tab-nav {
  display: flex;
  border-bottom: 1px solid var(--ps-gray-200);
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--ps-gray-50);
}
.ps-tab-nav::-webkit-scrollbar { display: none; }
.ps-tab-btn {
  flex-shrink: 0;
  padding: 16px 24px;
  font-family: var(--ps-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ps-gray-500);
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
}
.ps-tab-btn::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 3px;
  background: var(--grad-blue);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform var(--t-base) var(--ease);
}
.ps-tab-btn:hover { color: var(--ps-gray-900); background: var(--ps-gray-100); }
.ps-tab-btn.active { color: var(--ps-navy-2); background: var(--ps-white); }
.ps-tab-btn.active::after { transform: scaleX(1); }

.ps-tab-panel { padding: 40px; }
@media (max-width: 640px) { .ps-tab-panel { padding: 24px 20px; } }

@media (min-width: 768px) {
  .ps-single-col { grid-template-columns: 1fr 1fr !important; align-items: start !important; }
}
@media (min-width: 1100px) {
  .ps-single-col { grid-template-columns: 46% 1fr !important; align-items: start !important; }
}

/* ─── Utilities ──────────────────────────────────────────────── */
.ps-text-center { text-align: center; }
.ps-mt-auto { margin-top: auto; }

/* ─── Responsive tweaks ──────────────────────────────────────── */
@media (max-width: 640px) {
  .ps-hero { min-height: auto; padding: 64px 0 80px; }
  .ps-hero__stat { padding: 16px 20px; }
  .ps-age-gate__inner { padding: 36px 24px; }
}

@media print {
  .ps-header, .ps-footer, .ps-age-gate, .ps-trust-strip { display: none !important; }
}

/* ─── Single product gallery ─────────────────────────────────── */

/* Override WC's float/width on div.images so gallery fills our container */
.ps-single-gallery .woocommerce-product-gallery,
.ps-single-gallery div.images {
  width: 100% !important;
  float: none !important;
  opacity: 1 !important;
  transition: none !important;
}
.ps-single-gallery .woocommerce-product-gallery__wrapper {
  width: 100% !important;
  position: relative !important;
}
/* Hide all slides, show only the active one (.ps-slide-active) */
.ps-single-gallery .woocommerce-product-gallery__image {
  display: none !important;
  width: 100% !important;
}
.ps-single-gallery .woocommerce-product-gallery__image.ps-slide-active,
.ps-single-gallery .woocommerce-product-gallery__image:first-child {
  display: block !important;
}
/* When JS has initialized (.ps-gallery-ready), only show ps-slide-active */
.ps-gallery-ready .woocommerce-product-gallery__image:first-child {
  display: none !important;
}
.ps-gallery-ready .woocommerce-product-gallery__image.ps-slide-active {
  display: block !important;
}
.ps-single-gallery .woocommerce-product-gallery__image a {
  display: block !important;
  width: 100% !important;
}
/* Square crop */
.ps-single-gallery .woocommerce-product-gallery__image img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  object-position: center top !important;
}
/* Thumbnails row */
.ps-single-gallery ol.flex-control-thumbs {
  display: flex !important;
  gap: 8px !important;
  padding: 8px 0 0 !important;
  margin: 0 !important;
  list-style: none !important;
}
.ps-single-gallery ol.flex-control-thumbs li { margin: 0 !important; }
.ps-single-gallery ol.flex-control-thumbs img {
  width: 56px !important;
  height: 56px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  opacity: 0.6 !important;
  border: 2px solid transparent !important;
  cursor: pointer !important;
  transition: opacity 0.15s, border-color 0.15s !important;
}
.ps-single-gallery ol.flex-control-thumbs img.flex-active {
  opacity: 1 !important;
  border-color: var(--ps-cyan) !important;
}

/* Hide WC's "Related products" title — our section has its own heading */
.ps-section .related.products > h2,
.ps-section .upsells.products > h2 {
  display: none !important;
}
.woocommerce div.product form.cart table.variations { margin-bottom: 16px !important; }
.woocommerce div.product form.cart table.variations label {
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  color: #334155 !important;
}
.woocommerce div.product form.cart .variations_button {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}
.woocommerce div.product form.cart .qty {
  width: 60px !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: var(--r-md) !important;
  padding: 8px 12px !important;
  font-size: 0.875rem !important;
}

/* ─── Homepage Bulk Promo Section ───────────────────────────────────────── */
.ps-bulk-promo {
  background: linear-gradient(135deg, #050e1f 0%, #0d1f3c 50%, #0a2540 100%);
  border-top: 1px solid rgba(6,182,212,0.15);
  border-bottom: 1px solid rgba(6,182,212,0.15);
  padding: 72px 0;
}
.ps-bulk-promo__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.ps-bulk-promo__header {
  text-align: center;
}
.ps-bulk-promo__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin: 8px 0 12px;
  line-height: 1.15;
}
.ps-bulk-promo__subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}
.ps-bulk-promo__tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 780px;
}
.ps-bulk-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  transition: transform 0.2s, border-color 0.2s;
}
.ps-bulk-tier:hover {
  transform: translateY(-4px);
  border-color: rgba(6,182,212,0.4);
}
.ps-bulk-tier--best {
  background: linear-gradient(145deg, rgba(8,145,178,0.18), rgba(6,182,212,0.08));
  border-color: rgba(6,182,212,0.5);
  box-shadow: 0 0 40px rgba(6,182,212,0.12);
}
.ps-bulk-tier__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #0891b2, #06b6d4);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.ps-bulk-tier__qty {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}
.ps-bulk-tier__pct {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  margin-bottom: 4px;
}
.ps-bulk-tier--best .ps-bulk-tier__pct { color: #22d3ee; }
.ps-bulk-tier__pct span {
  font-size: 1.75rem;
  font-weight: 700;
  vertical-align: super;
}
.ps-bulk-tier__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.ps-bulk-tier__desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.4;
}
.ps-bulk-promo__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.ps-bulk-promo__fine {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
  text-align: center;
}
@media (max-width: 600px) {
  .ps-bulk-promo__tiers { grid-template-columns: 1fr; max-width: 320px; }
  .ps-bulk-tier__pct { font-size: 2.75rem; }
}

/* ─── Announcement Bar — rotating messages ──────────────────────────────── */
.ps-ann-msg { display: none; }
.ps-ann-msg--active { display: inline; }

/* ─── PDP Bulk Discount Tier Table ──────────────────────────────────────── */
.ps-pdp-promo {
  margin-top: 20px;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 1px solid #86efac;
  border-radius: 14px;
  padding: 16px 18px;
}
.ps-pdp-promo__heading {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #15803d;
  margin-bottom: 12px;
}
.ps-pdp-promo__tiers {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ps-pdp-promo__tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  background: #fff;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
}
.ps-pdp-promo__qty {
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
}
.ps-pdp-promo__pct {
  font-size: 0.875rem;
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  padding: 2px 10px;
  border-radius: 999px;
}
.ps-pdp-promo__note {
  margin: 10px 0 0;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.5;
}

/* ─── Cart Promo Notice ──────────────────────────────────────────────────── */
.ps-cart-promo-notice {
  margin-bottom: 24px;
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid #86efac;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
}
.ps-cart-promo-notice--nudge {
  border-color: #93c5fd;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
}
.ps-cart-promo-notice__tiers {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.ps-cart-promo-tier {
  flex: 1;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  opacity: 0.55;
  transition: opacity 0.2s, border-color 0.2s;
}
.ps-cart-promo-tier--reached { opacity: 0.8; }
.ps-cart-promo-tier--active {
  opacity: 1;
  border-color: #4ade80;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}
.ps-cart-promo-tier__badge {
  font-size: 1.125rem;
  font-weight: 800;
  color: #16a34a;
  line-height: 1;
}
.ps-cart-promo-tier--nudge .ps-cart-promo-tier__badge { color: #2563eb; }
.ps-cart-promo-tier__label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
  text-align: center;
}
.ps-cart-promo-notice__msg {
  font-size: 0.9rem;
  color: #334155;
  margin: 0;
  line-height: 1.55;
}
.ps-cart-promo-notice__msg strong { color: #16a34a; }
.ps-cart-promo-notice--nudge .ps-cart-promo-notice__msg strong { color: #2563eb; }

/* ─── Custom Select Dropdowns ────────────────────────────────────────────── */
select,
.woocommerce select,
.woocommerce-page select,
.woocommerce div.product form.cart .variations select,
.woocommerce-ordering select {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-color: #fff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%230891b2' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 16px !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 10px !important;
  color: #0f172a !important;
  font-family: inherit !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  padding: 10px 44px 10px 14px !important;
  line-height: 1.5 !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06) !important;
}

select:hover,
.woocommerce select:hover,
.woocommerce-page select:hover,
.woocommerce div.product form.cart .variations select:hover,
.woocommerce-ordering select:hover {
  border-color: #0891b2 !important;
}

select:focus,
.woocommerce select:focus,
.woocommerce-page select:focus,
.woocommerce div.product form.cart .variations select:focus,
.woocommerce-ordering select:focus {
  outline: none !important;
  border-color: #0891b2 !important;
  box-shadow: 0 0 0 3px rgba(8,145,178,0.15) !important;
}

/* Sort dropdown on shop — keep it inline/auto width */
.woocommerce-ordering select {
  width: auto !important;
  min-width: 200px !important;
}

.ps-header__nav li { list-style: none; padding: 0; margin: 0; }
