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

:root {
  --vp-bg:     #050A14;
  --vp-bg2:    #0A1628;
  --vp-card:   #0D1F38;
  --vp-teal:   #00B4CC;
  --vp-teal2:  #00C8DF;
  --vp-glow:   rgba(0,180,204,0.14);
  --vp-border: rgba(0,180,204,0.12);
  --vp-white:  #ffffff;
  --vp-off:    #E8EDF5;
  --vp-muted:  #8BA3BF;
  --vp-r:      12px;
  --vp-r2:     20px;
  --vp-font:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --vp-ease:   0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── HARD RESET — beats block themes ── */
body.vp-body,
body.vp-body::before,
body.vp-body::after { margin:0 !important; padding:0 !important; }
body.vp-body {
  background: var(--vp-bg) !important;
  color: var(--vp-white) !important;
  font-family: var(--vp-font) !important;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.vp-body * { box-sizing: border-box !important; }
body.vp-body a { text-decoration: none; color: inherit; }
body.vp-body img { max-width: 100%; display: block; }
body.vp-body h1,body.vp-body h2,body.vp-body h3,
body.vp-body h4,body.vp-body h5 { margin:0;padding:0;font-weight:800;line-height:1.15; }
body.vp-body p { margin:0;padding:0; }
body.vp-body ul,body.vp-body ol { list-style:none;margin:0;padding:0; }

/* Hide theme chrome */
body.vp-body .site-header,
body.vp-body .site-footer,
body.vp-body #masthead,
body.vp-body #colophon,
body.vp-body .wp-site-blocks > header,
body.vp-body .wp-site-blocks > footer,
body.vp-body .entry-header,
body.vp-body .entry-title,
body.vp-body .page-header { display:none !important; }

/* Admin bar offset */
body.admin-bar .vp-bar    { top:32px; }
body.admin-bar .vp-header { top:calc(32px + 36px); }
@media screen and (max-width:782px){
  body.admin-bar .vp-bar    { top:46px; }
  body.admin-bar .vp-header { top:calc(46px + 36px); }
}

/* ── LAYOUT ── */
.vp-wrap { max-width:1200px; margin:0 auto; padding:0 24px; }

/* ── BUTTONS ── */
.vp-btn {
  display:inline-flex; align-items:center; gap:6px;
  padding:13px 26px; border-radius:var(--vp-r);
  font-size:15px; font-weight:700; cursor:pointer;
  border:none; transition:all var(--vp-ease); white-space:nowrap;
  text-decoration:none !important;
}
.vp-btn-primary { background:var(--vp-teal); color:#000 !important; }
.vp-btn-primary:hover { background:var(--vp-teal2); transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,180,204,0.35); }
.vp-btn-ghost { background:rgba(255,255,255,0.07); color:var(--vp-white) !important; border:1px solid rgba(255,255,255,0.15); }
.vp-btn-ghost:hover { background:rgba(255,255,255,0.12); }
.vp-btn-outline { background:transparent; color:var(--vp-teal) !important; border:1.5px solid var(--vp-teal); }
.vp-btn-outline:hover { background:var(--vp-glow); }
.vp-btn-white { background:#fff; color:#050A14 !important; }
.vp-btn-white:hover { background:var(--vp-off); }

/* ── ANNOUNCE BAR ── */
.vp-bar {
  position:fixed; top:0; left:0; right:0; z-index:10001;
  height:36px; background:var(--vp-teal);
  overflow:hidden; display:flex; align-items:center;
}
.vp-bar-track {
  display:flex; white-space:nowrap;
  animation:vp-tick 30s linear infinite;
}
.vp-bar-track span { font-size:13px; font-weight:700; color:#000; letter-spacing:.03em; flex-shrink:0; }
@keyframes vp-tick { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── HEADER ── */
.vp-header {
  position:fixed; top:36px; left:0; right:0; z-index:10000;
  padding:14px 0;
  transition:background var(--vp-ease),backdrop-filter var(--vp-ease),box-shadow var(--vp-ease);
}
.vp-header.stuck {
  background:rgba(5,10,20,0.96) !important;
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  box-shadow:0 1px 0 var(--vp-border);
}
.vp-header-inner { display:flex; align-items:center; justify-content:space-between; gap:20px; }
.vp-logo-link { flex-shrink:0; }
.vp-logo { height:44px; width:auto; }
.vp-nav { display:flex; gap:28px; align-items:center; }
.vp-nav a { font-size:15px; font-weight:500; color:rgba(255,255,255,.8); transition:color var(--vp-ease); position:relative; }
.vp-nav a::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:2px; background:var(--vp-teal); transform:scaleX(0); transition:transform var(--vp-ease); border-radius:2px; }
.vp-nav a:hover { color:#fff; }
.vp-nav a:hover::after { transform:scaleX(1); }
.vp-header-right { display:flex; align-items:center; gap:16px; }
.vp-cart-link { position:relative; display:flex; align-items:center; color:rgba(255,255,255,.8); transition:color var(--vp-ease); }
.vp-cart-link:hover { color:var(--vp-teal); }
.vp-cart-count {
  position:absolute; top:-7px; right:-9px;
  background:var(--vp-teal); color:#000;
  font-size:10px; font-weight:800;
  width:17px; height:17px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.vp-ham { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:5px; }
.vp-ham span { display:block; width:24px; height:2px; background:#fff; border-radius:2px; transition:var(--vp-ease); }
.vp-mob-nav {
  display:none; flex-direction:column;
  background:rgba(5,10,20,.99); border-top:1px solid var(--vp-border);
  padding:8px 24px 20px;
}
.vp-mob-nav a { display:block; padding:13px 0; font-size:16px; font-weight:500; color:var(--vp-off); border-bottom:1px solid var(--vp-border); }
.vp-mob-nav a:last-child { border-bottom:none; }
.vp-mob-nav.open { display:flex; }

/* ── HERO ── */
.vp-hero {
  position:relative; min-height:100vh;
  display:flex; align-items:center;
  padding:130px 0 80px; overflow:hidden;
}
.vp-hero-bg {
  position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse 70% 60% at 65% 45%, rgba(0,180,204,.13) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 90%, rgba(0,100,180,.07) 0%, transparent 60%),
    var(--vp-bg);
}
.vp-hero-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:60px; align-items:center; position:relative; z-index:2;
}
.vp-hero-text { display:flex; flex-direction:column; }
.vp-badge {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(0,180,204,.1); border:1px solid rgba(0,180,204,.3);
  color:var(--vp-teal); padding:6px 16px; border-radius:100px;
  font-size:13px; font-weight:700; letter-spacing:.04em;
  margin-bottom:22px; width:fit-content;
}
.vp-hero-text h1 {
  font-size:clamp(38px,5.5vw,68px); font-weight:900;
  letter-spacing:-.025em; line-height:1.08;
  margin-bottom:18px; color:var(--vp-white);
}
.vp-grad {
  background:linear-gradient(135deg,var(--vp-teal) 0%,#0088FF 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.vp-hero-sub { font-size:17px; color:var(--vp-muted); line-height:1.7; margin-bottom:34px; max-width:480px; }
.vp-hero-btns { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:30px; }
.vp-chips { display:flex; gap:10px; flex-wrap:wrap; }
.vp-chip { font-size:12px; font-weight:600; color:var(--vp-muted); background:rgba(255,255,255,.04); border:1px solid var(--vp-border); padding:5px 13px; border-radius:100px; }
.vp-hero-vials { display:flex; flex-direction:column; gap:16px; align-items:center; }
.vp-vial { border-radius:14px; filter:drop-shadow(0 20px 40px rgba(0,180,204,.22)); width:100%; max-width:280px; }
.vp-v1 { animation:vp-bob 6s ease-in-out infinite; }
.vp-v2 { animation:vp-bob 6s ease-in-out infinite 2s; max-width:240px; opacity:.9; }
.vp-v3 { animation:vp-bob 6s ease-in-out infinite 4s; max-width:200px; opacity:.75; }
@keyframes vp-bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

/* ── SECTION HEADERS ── */
.vp-sec-head { text-align:center; margin-bottom:52px; }
.vp-tag {
  display:inline-block; background:rgba(0,180,204,.1); border:1px solid rgba(0,180,204,.25);
  color:var(--vp-teal); font-size:11px; font-weight:800; letter-spacing:.12em;
  text-transform:uppercase; padding:5px 14px; border-radius:100px; margin-bottom:14px;
}
.vp-sec-head h2 { font-size:clamp(26px,3.5vw,40px); letter-spacing:-.02em; margin-bottom:12px; color:var(--vp-white); }
.vp-sec-head p { font-size:16px; color:var(--vp-muted); max-width:540px; margin:0 auto; line-height:1.65; }
.vp-sec-cta { text-align:center; margin-top:44px; }

/* ── TRUST BAR ── */
.vp-trust { background:var(--vp-bg2); border-top:1px solid var(--vp-border); border-bottom:1px solid var(--vp-border); padding:56px 0; }
.vp-trust-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.vp-ti { display:flex; gap:16px; align-items:flex-start; }
.vp-ti-icon { width:50px; height:50px; background:var(--vp-glow); border:1px solid rgba(0,180,204,.2); border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:22px; flex-shrink:0; }
.vp-ti h3 { font-size:14px; font-weight:700; margin-bottom:5px; color:var(--vp-white); }
.vp-ti p  { font-size:13px; color:var(--vp-muted); line-height:1.55; }

/* ── PRODUCTS ── */
.vp-products { padding:88px 0; }
.vp-pgrid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.vp-pc {
  background:var(--vp-card); border:1px solid var(--vp-border);
  border-radius:var(--vp-r2); overflow:hidden;
  transition:transform var(--vp-ease),box-shadow var(--vp-ease),border-color var(--vp-ease);
}
.vp-pc:hover { transform:translateY(-6px); box-shadow:0 0 40px rgba(0,180,204,.18); border-color:rgba(0,180,204,.28); }
.vp-pc-img-wrap {
  position:relative; aspect-ratio:1/1;
  background:linear-gradient(135deg,#0A1628,#0D1F38);
  overflow:hidden; display:flex; align-items:center; justify-content:center;
}
.vp-pc-img-wrap img { width:100%; height:100%; object-fit:contain; padding:12px; transition:transform .35s ease; }
.vp-pc:hover .vp-pc-img-wrap img { transform:scale(1.06); }
.vp-pc-noimg { font-size:52px; }
.vp-pc-hover {
  position:absolute; inset:0; background:rgba(0,180,204,.88);
  display:flex; align-items:center; justify-content:center;
  font-size:14px; font-weight:800; color:#000;
  opacity:0; transition:opacity var(--vp-ease);
}
.vp-pc:hover .vp-pc-hover { opacity:1; }
.vp-pc-body { padding:18px; }
.vp-pc-cat { display:inline-block; font-size:10px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--vp-teal); margin-bottom:7px; }
.vp-pc-name { display:block; font-size:15px; font-weight:700; color:var(--vp-white); margin-bottom:14px; line-height:1.35; transition:color var(--vp-ease); }
.vp-pc-name:hover { color:var(--vp-teal); }
.vp-pc-foot { display:flex; align-items:center; justify-content:space-between; gap:10px; }
.vp-pc-price { font-size:17px; font-weight:800; color:var(--vp-white); }
.vp-pc-price ins { text-decoration:none; }
.vp-atc {
  display:inline-block; background:var(--vp-teal); color:#000 !important;
  font-size:12px; font-weight:800; padding:7px 14px; border-radius:8px;
  border:none; cursor:pointer; transition:all var(--vp-ease); white-space:nowrap;
  text-decoration:none !important;
}
.vp-atc:hover { background:var(--vp-teal2); transform:translateY(-1px); }

/* ── QUALITY ── */
.vp-quality { background:var(--vp-bg2); padding:88px 0; border-top:1px solid var(--vp-border); border-bottom:1px solid var(--vp-border); }
.vp-quality-grid { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:start; }
.vp-q-left .vp-tag { display:inline-block; margin-bottom:14px; }
.vp-q-left h2 { font-size:clamp(24px,3vw,36px); letter-spacing:-.02em; color:var(--vp-white); margin-bottom:28px; margin-top:14px; }
.vp-feat { display:flex; gap:16px; align-items:flex-start; margin-bottom:22px; }
.vp-feat-dot { width:8px; height:8px; background:var(--vp-teal); border-radius:50%; flex-shrink:0; margin-top:7px; }
.vp-feat h4 { font-size:14px; font-weight:700; color:var(--vp-white); margin-bottom:5px; }
.vp-feat p  { font-size:13px; color:var(--vp-muted); line-height:1.6; }
.vp-stats { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.vp-stat { background:var(--vp-card); border:1px solid var(--vp-border); border-radius:var(--vp-r); padding:26px 20px; text-align:center; }
.vp-stat-n { font-size:38px; font-weight:900; color:var(--vp-teal); letter-spacing:-.03em; line-height:1; margin-bottom:7px; }
.vp-stat-l { font-size:11px; color:var(--vp-muted); font-weight:700; letter-spacing:.06em; text-transform:uppercase; }
.vp-hplc { grid-column:span 2; background:var(--vp-card); border:1px solid rgba(0,180,204,.22); border-radius:var(--vp-r); padding:22px; }
.vp-hplc-tag { display:inline-flex; align-items:center; gap:5px; background:rgba(0,180,204,.1); color:var(--vp-teal); font-size:12px; font-weight:800; padding:4px 12px; border-radius:100px; margin-bottom:10px; }
.vp-hplc h4 { font-size:17px; font-weight:800; color:var(--vp-white); margin-bottom:7px; }
.vp-hplc p  { font-size:13px; color:var(--vp-muted); line-height:1.6; margin-bottom:12px; }
.vp-coa { font-size:13px; color:var(--vp-teal); font-weight:700; }

/* ── SHOWCASE ── */
.vp-showcase { padding:88px 0; }
.vp-sc-grid { display:grid; grid-template-columns:1fr 1fr 1fr; gap:14px; }
.vp-sc { position:relative; border-radius:var(--vp-r2); overflow:hidden; aspect-ratio:3/4; cursor:pointer; background:var(--vp-card); }
.vp-sc-tall { grid-row:span 2; aspect-ratio:auto; }
.vp-sc img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; transition:transform .4s ease; }
.vp-sc:hover img { transform:scale(1.06); }
.vp-sc-over {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.35) 55%, transparent 100%);
  display:flex; flex-direction:column; justify-content:flex-end; padding:26px;
}
.vp-sc-cat { font-size:10px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--vp-teal); margin-bottom:7px; display:block; }
.vp-sc-over h3 { font-size:20px; font-weight:800; color:var(--vp-white); margin-bottom:5px; }
.vp-sc-over p  { font-size:14px; color:rgba(255,255,255,.7); margin-bottom:14px; }

/* ── DISCLAIMER ── */
.vp-disc { background:var(--vp-bg2); border-top:1px solid var(--vp-border); padding:28px 0; }
.vp-disc p { font-size:12px; color:rgba(139,163,191,.65); line-height:1.7; }
.vp-disc strong { color:var(--vp-muted); }

/* ── CONTACT ── */
.vp-contact { padding:88px 0; border-top:1px solid var(--vp-border); }
.vp-contact-grid { display:grid; grid-template-columns:1fr 1.5fr; gap:72px; align-items:start; }
.vp-ct-left .vp-tag { display:inline-block; margin-bottom:14px; }
.vp-ct-left h2 { font-size:clamp(24px,3vw,36px); color:var(--vp-white); margin-bottom:14px; letter-spacing:-.02em; }
.vp-ct-left > p { font-size:15px; color:var(--vp-muted); line-height:1.7; margin-bottom:22px; }
.vp-ct-email { display:inline-flex; align-items:center; gap:8px; color:var(--vp-teal) !important; font-weight:700; font-size:15px; transition:opacity var(--vp-ease); }
.vp-ct-email:hover { opacity:.75; }
.vp-form { display:flex; flex-direction:column; gap:14px; }
.vp-frow { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.vp-fg { display:flex; flex-direction:column; gap:5px; }
.vp-fg label { font-size:12px; font-weight:700; color:var(--vp-off); letter-spacing:.03em; }
.vp-fg input, .vp-fg textarea {
  background:var(--vp-card) !important; border:1px solid var(--vp-border) !important;
  border-radius:var(--vp-r) !important; padding:11px 15px !important;
  color:var(--vp-white) !important; font-size:14px !important; font-family:var(--vp-font) !important;
  outline:none !important; box-shadow:none !important; resize:vertical;
  transition:border-color var(--vp-ease);
}
.vp-fg input::placeholder, .vp-fg textarea::placeholder { color:var(--vp-muted) !important; }
.vp-fg input:focus, .vp-fg textarea:focus { border-color:var(--vp-teal) !important; }

/* ── NEWSLETTER ── */
.vp-nl { background:var(--vp-bg2); border-top:1px solid var(--vp-border); border-bottom:1px solid var(--vp-border); padding:60px 0; }
.vp-nl-inner { display:flex; align-items:center; justify-content:space-between; gap:36px; }
.vp-nl-inner h2 { font-size:26px; font-weight:800; color:var(--vp-white); margin-bottom:7px; }
.vp-nl-inner p  { font-size:15px; color:var(--vp-muted); }
.vp-nl-form { display:flex; gap:10px; flex-shrink:0; }
.vp-nl-form input {
  background:var(--vp-card) !important; border:1px solid var(--vp-border) !important;
  border-radius:var(--vp-r) !important; padding:12px 18px !important;
  color:var(--vp-white) !important; font-size:14px !important; font-family:var(--vp-font) !important;
  outline:none !important; width:270px; transition:border-color var(--vp-ease);
}
.vp-nl-form input:focus { border-color:var(--vp-teal) !important; }
.vp-nl-form input::placeholder { color:var(--vp-muted) !important; }

/* ── FOOTER ── */
.vp-footer { background:#030810; }
.vp-footer-stripe { background:var(--vp-teal); padding:10px 0; }
.vp-stripe-inner { display:flex; justify-content:center; gap:48px; flex-wrap:wrap; }
.vp-stripe-inner span { font-size:13px; font-weight:800; color:#000; }
.vp-footer-cols { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; padding:56px 0 44px; border-bottom:1px solid var(--vp-border); }
.vp-fc-brand p { font-size:14px; color:var(--vp-muted); line-height:1.65; }
.vp-fc h5 { font-size:12px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:var(--vp-white); margin-bottom:18px; }
.vp-fc a { display:block; font-size:14px; color:var(--vp-muted); margin-bottom:11px; transition:color var(--vp-ease); }
.vp-fc a:hover { color:var(--vp-teal); }
.vp-footer-bottom { padding:22px 0; text-align:center; }
.vp-footer-bottom p { font-size:13px; color:var(--vp-muted); }

/* ── RESPONSIVE ── */
@media (max-width:1024px){
  .vp-hero-grid { grid-template-columns:1fr; }
  .vp-hero-vials { display:none; }
  .vp-pgrid { grid-template-columns:repeat(3,1fr); }
  .vp-quality-grid { grid-template-columns:1fr; gap:48px; }
  .vp-trust-grid { grid-template-columns:repeat(2,1fr); }
  .vp-footer-cols { grid-template-columns:1fr 1fr; }
  .vp-sc-grid { grid-template-columns:1fr 1fr; }
  .vp-sc-tall { grid-row:span 1; }
}
@media (max-width:768px){
  .vp-nav { display:none; }
  .vp-ham { display:flex; }
  .vp-pgrid { grid-template-columns:repeat(2,1fr); }
  .vp-trust-grid { grid-template-columns:1fr; }
  .vp-contact-grid { grid-template-columns:1fr; gap:44px; }
  .vp-nl-inner { flex-direction:column; text-align:center; }
  .vp-nl-form { flex-direction:column; width:100%; }
  .vp-nl-form input { width:100%; }
  .vp-sc-grid { grid-template-columns:1fr; }
  .vp-footer-cols { grid-template-columns:1fr; }
  .vp-stripe-inner { gap:20px; }
  .vp-frow { grid-template-columns:1fr; }
  .vp-stats { grid-template-columns:1fr 1fr; }
  .vp-hplc { grid-column:span 2; }
  .vp-hero-btns { flex-direction:column; }
}
@media (max-width:480px){
  .vp-pgrid { grid-template-columns:1fr; }
  .vp-stats { grid-template-columns:1fr; }
  .vp-hplc { grid-column:span 1; }
  .vp-wrap { padding:0 16px; }
}
