/*
Theme Name: PeptideLabs
Theme URI: https://peptidelabs.in
Author: PeptideLabs India
Description: Custom WooCommerce theme for PeptideLabs India — Nike-inspired design system
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
WC requires at least: 8.0
WC tested up to: 9.0
License: Proprietary
Text Domain: peptidelabs
*/

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #111111;
  --white:      #FFFFFF;
  --grey-50:    #FAFAFA;
  --grey-100:   #F5F5F5;
  --grey-200:   #E5E5E5;
  --grey-300:   #CACACB;
  --grey-500:   #707072;
  --grey-700:   #39393B;
  --grey-800:   #28282A;
  --grey-900:   #1F1F21;
  --red:        #D30005;
  --green:      #007D48;
  --green-inv:  #1EAA52;
  --blue:       #1151FF;
  --orange:     #D33918;
  --text:       #111111;
  --muted:      #707072;
  --border:     #CACACB;
  --surface:    #F5F5F5;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', Helvetica, Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  font-weight: 500;
  margin: 0;
}
h1,h2,h3,h4,h5 { font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--grey-100); }
::-webkit-scrollbar-thumb { background: var(--grey-300); }

/* ── PROMO BANNER ── */
.pl-promo-banner {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 9px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 101;
  overflow: hidden;
}
.pl-promo-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.pl-promo-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pl-promo-item::after { content: '·'; opacity: 0.4; }

/* ── NAV ── */
.pl-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 60px;
}
.pl-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.pl-nav-logo-mark {
  width: 30px; height: 30px;
  background: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.pl-nav-logo-text {
  font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pl-nav-links {
  display: flex;
  gap: 28px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.pl-nav-link {
  color: var(--black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.pl-nav-link:hover,
.pl-nav-link.current-menu-item { color: var(--grey-500); font-weight: 700; }
.pl-nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.pl-cart-btn {
  background: var(--black);
  border: none;
  color: var(--white);
  padding: 9px 22px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  font-family: 'Barlow', Helvetica, Arial, sans-serif;
  text-decoration: none;
}
.pl-cart-btn:hover { background: var(--grey-500); color: var(--white); }
.pl-cart-count {
  background: var(--white);
  color: var(--black);
  border-radius: 10px;
  padding: 1px 6px;
  font-size: 11px;
  font-weight: 700;
}

/* ── BUTTONS ── */
.pl-btn-primary {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Barlow', Helvetica, Arial, sans-serif;
  transition: background 0.2s;
  display: inline-block;
  text-decoration: none;
}
.pl-btn-primary:hover { background: var(--grey-500); color: var(--white); }
.pl-btn-ghost {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--border);
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Barlow', Helvetica, Arial, sans-serif;
  transition: all 0.2s;
  display: inline-block;
  text-decoration: none;
}
.pl-btn-ghost:hover { border-color: var(--black); color: var(--black); }
.pl-btn-wa {
  background: #25D366;
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Barlow', Helvetica, Arial, sans-serif;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.pl-btn-wa:hover { opacity: 0.9; color: var(--white); }

/* ── HERO ── */
.pl-hero {
  background: var(--black);
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  padding: 100px 48px 72px;
  position: relative;
  overflow: hidden;
  gap: 48px;
}
.pl-hero-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif;
  font-size: clamp(180px, 22vw, 340px);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  letter-spacing: -4px;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.pl-hero-content { position: relative; z-index: 2; }
.pl-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pl-hero-kicker-dot {
  width: 5px; height: 5px;
  background: var(--green-inv);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
.pl-hero h1 {
  font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif;
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.90;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.pl-hero h1 em { font-style: normal; color: var(--grey-500); }
.pl-hero-sub {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 400;
}
.pl-hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.pl-hero-actions .pl-btn-primary { background: var(--white); color: var(--black); }
.pl-hero-actions .pl-btn-primary:hover { background: var(--grey-200); color: var(--black); }
.pl-hero-actions .pl-btn-ghost { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.25); }
.pl-hero-actions .pl-btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }
.pl-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.pl-stat-num {
  font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.pl-stat-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; font-weight: 400; letter-spacing: 0.5px; }

/* ── HERO TOP SELLERS ── */
.pl-hero-sellers { position: relative; z-index: 2; }
.pl-sellers-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pl-sellers-label::before { content: ''; display: block; width: 20px; height: 1px; background: rgba(255,255,255,0.2); }
.pl-seller-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  margin-bottom: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.pl-seller-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--seller-accent, #1d7fe8);
  opacity: 0;
  transition: opacity 0.2s;
}
.pl-seller-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.pl-seller-card:hover::before { opacity: 1; }
.pl-seller-rank {
  font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: rgba(255,255,255,0.1);
  min-width: 26px;
  line-height: 1;
}
.pl-seller-img { width: 36px; height: 48px; object-fit: contain; flex-shrink: 0; }
.pl-seller-info { flex: 1; min-width: 0; }
.pl-seller-name {
  font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 1px;
}
.pl-seller-desc { font-size: 11px; color: rgba(255,255,255,0.4); font-weight: 400; }
.pl-seller-price {
  font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  text-align: right;
  flex-shrink: 0;
}

/* ── TRUST BAR ── */
.pl-trust-bar {
  background: var(--grey-100);
  border-bottom: 1px solid var(--grey-200);
  overflow: hidden;
  padding: 0;
}

/* ── CATEGORY STRIP ── */
.pl-category-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}
.pl-cat-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  border-right: 1px solid var(--grey-200);
  display: block;
  text-decoration: none;
}
.pl-cat-card:last-child { border-right: none; }
.pl-cat-card-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s ease;
}
.pl-cat-card:hover .pl-cat-card-bg { transform: scale(1.03); }
.pl-cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.pl-cat-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
}
.pl-cat-card-name {
  font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.pl-cat-card-cta {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pl-cat-vials {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
}
.pl-cat-vial { width: 50px; height: 120px; object-fit: contain; }

/* ── SECTION HEADERS ── */
.pl-section { padding: 80px 48px; max-width: 1440px; margin: 0 auto; }
.pl-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.pl-section-title {
  font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 0.95;
  letter-spacing: -0.5px;
}
.pl-section-sub { color: var(--muted); font-size: 14px; line-height: 1.7; max-width: 500px; font-weight: 400; }

/* ── PRODUCTS PAGE ── */
.pl-products-hero {
  background: var(--black);
  padding: 48px 48px 40px;
}
.pl-products-hero-inner {
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.pl-search-wrap { position: relative; }
.pl-search-input {
  padding: 10px 18px 10px 42px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  font-size: 13px;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  font-family: 'Barlow', Helvetica, Arial, sans-serif;
  outline: none;
  transition: border-color 0.2s;
  width: 260px;
}
.pl-search-input:focus { border-color: rgba(255,255,255,0.4); }
.pl-search-input::placeholder { color: rgba(255,255,255,0.4); }
.pl-search-icon { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.4); font-size: 14px; }
.pl-filter-row {
  padding: 16px 48px;
  max-width: 1440px; margin: 0 auto;
  display: flex; gap: 6px; flex-wrap: wrap;
  border-bottom: 1px solid var(--grey-200);
}
.pl-filter-tab {
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--border);
  color: var(--muted);
  background: var(--white);
  font-family: 'Barlow', Helvetica, Arial, sans-serif;
  transition: all 0.15s;
  text-decoration: none;
  display: inline-block;
}
.pl-filter-tab:hover,
.pl-filter-tab.active { background: var(--black); border-color: var(--black); color: var(--white); font-weight: 600; }

/* ── PRODUCT CARD (WooCommerce) ── */
.woocommerce ul.products { margin: 0 !important; padding: 0 !important; }
.pl-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: var(--grey-200);
  border-top: 1px solid var(--grey-200);
  max-width: 1440px;
  margin: 0 auto;
}
.pl-product-card {
  background: var(--white);
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
}
.pl-product-card:hover { background: var(--grey-50); }
.pl-product-img-area {
  background: var(--grey-100);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.pl-product-img-area img {
  width: 85%; height: 85%;
  object-fit: contain;
  object-position: center;
}
.pl-product-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--black);
  color: var(--white);
  font-size: 10px; font-weight: 700;
  padding: 3px 10px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 1;
}
.pl-product-tag.hot { background: var(--red); }
.pl-product-tag.new-tag { background: var(--blue); }
.pl-product-tag.blend { background: var(--grey-500); }
.pl-product-tag.premium { background: var(--orange); }
.pl-onsale { display: none !important; } /* hide WooCommerce default sale badge */
.pl-product-info { padding: 16px 16px 20px; flex: 1; display: flex; flex-direction: column; }
.pl-product-name {
  font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif;
  font-size: 18px; font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.pl-product-desc {
  font-size: 12px; color: var(--muted);
  line-height: 1.6; margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 400;
  flex: 1;
}
.pl-product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.pl-product-price {
  font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif;
  font-size: 22px; font-weight: 800; color: var(--text);
}
.pl-add-btn {
  background: var(--black); color: var(--white);
  border: none; width: 36px; height: 36px;
  border-radius: 50%; font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  text-decoration: none;
  font-family: 'Barlow', Helvetica, Arial, sans-serif;
}
.pl-add-btn:hover { background: var(--grey-500); color: var(--white); }

/* ── SINGLE PRODUCT (PDP) ── */
.pl-pdp-wrap { padding-top: 0; }
.pl-pdp-breadcrumb {
  padding: 14px 48px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted); font-weight: 500;
  border-bottom: 1px solid var(--grey-200);
  background: var(--white);
}
.pl-pdp-breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.pl-pdp-breadcrumb a:hover { color: var(--black); }
.pl-pdp-breadcrumb-sep { color: var(--grey-300); }
.pl-pdp-body {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 48px 80px;
}
.pl-pdp-left { padding-right: 48px; border-right: 1px solid var(--grey-200); }
.pl-pdp-vial-box {
  background: var(--grey-100);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
  margin-bottom: 16px;
  position: relative;
}
.pl-pdp-vial-box img { width: 80%; max-height: 280px; object-fit: contain; }
.pl-pdp-spec-row {
  display: flex; flex-wrap: wrap;
  border: 1px solid var(--grey-200);
  margin-bottom: 12px;
}
.pl-pdp-spec {
  padding: 10px 14px;
  border-right: 1px solid var(--grey-200);
  flex: 1; min-width: 90px;
}
.pl-pdp-spec:last-child { border-right: none; }
.pl-pdp-spec-label { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.pl-pdp-spec-val { font-size: 13px; font-weight: 600; color: var(--text); }
.pl-pdp-right { padding-left: 48px; }
.pl-pdp-cat-badge { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; display: block; }
.pl-pdp-name {
  font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.5px; line-height: 0.95;
  color: var(--text); margin-bottom: 12px;
}
.pl-pdp-desc { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 24px; font-weight: 400; }
.pl-pdp-section-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.pl-pdp-price {
  font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif;
  font-size: 44px; font-weight: 900; letter-spacing: -1px; line-height: 1;
  color: var(--text);
}
.pl-pdp-add-btn {
  width: 100%; background: var(--black); color: var(--white);
  border: none; padding: 16px;
  font-size: 16px; font-weight: 700; cursor: pointer;
  font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif;
  letter-spacing: 1px; text-transform: uppercase;
  transition: background 0.2s; margin-bottom: 10px;
  border-radius: 4px;
}
.pl-pdp-add-btn:hover { background: var(--grey-500); }
/* ── WOOCOMMERCE BUTTON OVERRIDES (fix stretching) ── */
.woocommerce .single_add_to_cart_button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button {
  width: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.woocommerce .single_add_to_cart_button {
  width: 100% !important;
}
.woocommerce form.cart {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}
.woocommerce form.cart .qty {
  width: 70px !important;
  padding: 10px 14px !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-family: 'Barlow', Helvetica, Arial, sans-serif !important;
  text-align: center !important;
}
.pl-btn-wa {
  display: inline-flex !important;
  width: 100% !important;
  justify-content: center !important;
}
.pl-research-notice {
  background: #FFFBEB; border: 1px solid #FDE68A;
  padding: 11px 14px; font-size: 12px; color: #92400E;
  line-height: 1.6; font-weight: 400; margin-bottom: 24px;
}

/* ── COA BLOCK ── */
.pl-coa { border: 1.5px solid var(--border); margin-top: 24px; overflow: hidden; }
.pl-coa-header {
  background: var(--grey-100);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border);
}
.pl-coa-title { font-size: 14px; font-weight: 700; color: var(--text); }
.pl-coa-body { padding: 16px 18px; }
.pl-coa-text { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; font-weight: 400; }
.pl-coa-text strong { color: var(--text); font-weight: 600; }
.pl-coa-howto { background: var(--grey-50); border: 1px solid var(--grey-200); padding: 12px 14px; margin-bottom: 14px; }
.pl-coa-howto-title { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); margin-bottom: 8px; }
.pl-coa-bullet { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); margin-bottom: 5px; }
.pl-coa-bullet::before { content: ''; width: 6px; height: 6px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }
.pl-coa-btns { display: flex; gap: 8px; }
.pl-coa-wa {
  flex: 1; padding: 11px 14px;
  background: #25D366; color: var(--white);
  border: none; border-radius: 4px;
  font-family: 'Barlow', Helvetica, Arial, sans-serif;
  font-size: 13px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: opacity 0.2s; text-decoration: none;
}
.pl-coa-wa:hover { opacity: 0.9; color: var(--white); }
.pl-coa-email {
  flex: 1; padding: 11px 14px;
  background: var(--white); color: var(--text);
  border: 1.5px solid var(--border); border-radius: 4px;
  font-family: 'Barlow', Helvetica, Arial, sans-serif;
  font-size: 13px; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: border-color 0.2s; text-decoration: none;
}
.pl-coa-email:hover { border-color: var(--black); color: var(--text); }
.pl-coa-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 10px; line-height: 1.5; font-style: italic; }

/* ── WHY SECTION ── */
.pl-why-bg { background: var(--black); }
.pl-why-inner { padding: 80px 48px; max-width: 1440px; margin: 0 auto; }
.pl-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 52px; background: var(--grey-800); }
.pl-why-card { background: var(--grey-900); padding: 40px 32px; transition: background 0.2s; }
.pl-why-card:hover { background: var(--grey-800); }
.pl-why-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 20px; }
.pl-why-title { font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif; font-size: 20px; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 10px; }
.pl-why-text { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; font-weight: 400; }

/* ── ABOUT SECTION ── */
.pl-about { display: grid; grid-template-columns: 1fr 1fr; background: var(--grey-100); }
.pl-about-left { padding: 80px 48px; display: flex; flex-direction: column; justify-content: center; }
.pl-about-right { background: var(--black); display: flex; align-items: center; justify-content: center; padding: 80px 48px; }
.pl-about-title { font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif; font-size: clamp(36px, 4vw, 52px); font-weight: 900; text-transform: uppercase; color: var(--text); line-height: 0.95; letter-spacing: -0.5px; margin-bottom: 20px; }
.pl-about-body { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 28px; font-weight: 400; max-width: 440px; }
.pl-about-check { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); margin-bottom: 10px; font-weight: 500; }
.pl-about-check::before { content: '✓'; color: var(--black); font-size: 14px; flex-shrink: 0; margin-top: 1px; font-weight: 700; }
.pl-about-vials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pl-about-vial { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.pl-about-vial img { width: 52px; height: 76px; object-fit: contain; }
.pl-about-vial-name { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; text-align: center; }

/* ── FAQ ── */
.pl-faq { background: var(--white); padding: 80px 48px; }
.pl-faq-inner { max-width: 1440px; margin: 0 auto; }
.pl-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 48px; border: 1.5px solid var(--border); }
.pl-faq-item { border-right: 1.5px solid var(--border); border-bottom: 1.5px solid var(--border); overflow: hidden; }
.pl-faq-item:nth-child(even) { border-right: none; }
.pl-faq-q { padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; font-size: 14px; color: var(--text); transition: background 0.2s; user-select: none; }
.pl-faq-q:hover { background: var(--grey-100); }
.pl-faq-icon { color: var(--black); font-size: 20px; transition: transform 0.3s; flex-shrink: 0; margin-left: 12px; line-height: 1; }
.pl-faq-item.open .pl-faq-icon { transform: rotate(45deg); }
.pl-faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 400; }
.pl-faq-item.open .pl-faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ── CART ── */
.woocommerce-cart .woocommerce { max-width: 1200px; margin: 0 auto; padding: 48px; }
.woocommerce table.shop_table { border: 1px solid var(--grey-200) !important; border-radius: 0 !important; }
.woocommerce table.shop_table th { background: var(--grey-100) !important; font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif !important; font-size: 12px !important; font-weight: 800 !important; letter-spacing: 2px !important; text-transform: uppercase !important; color: var(--muted) !important; }
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--black) !important;
  color: var(--white) !important;
  border-radius: 30px !important;
  font-family: 'Barlow', Helvetica, Arial, sans-serif !important;
  font-weight: 600 !important;
  border: none !important;
  transition: background 0.2s !important;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover { background: var(--grey-500) !important; color: var(--white) !important; }
.woocommerce .cart-collaterals .cart_totals { border: 1px solid var(--grey-200) !important; padding: 24px !important; }

/* ── CHECKOUT ── */
.woocommerce-checkout { max-width: 1100px; margin: 0 auto; padding: 48px; }
.woocommerce-checkout h3 { font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif !important; font-size: 22px !important; font-weight: 900 !important; text-transform: uppercase !important; letter-spacing: 0.3px !important; margin-bottom: 20px !important; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border: 1.5px solid var(--border) !important;
  border-radius: 8px !important;
  font-family: 'Barlow', Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  padding: 11px 14px !important;
  outline: none !important;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus { border-color: var(--black) !important; }
.woocommerce form .form-row label { font-size: 11px !important; font-weight: 600 !important; letter-spacing: 0.5px !important; text-transform: uppercase !important; color: var(--muted) !important; }

/* ── MY ACCOUNT ── */
.woocommerce-account .woocommerce { max-width: 1100px; margin: 0 auto; padding: 48px; }
.woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.woocommerce-MyAccount-navigation a { display: block; padding: 10px 16px; border: 1.5px solid var(--border); color: var(--text); text-decoration: none; font-weight: 500; font-size: 14px; transition: all 0.2s; }
.woocommerce-MyAccount-navigation a:hover,
.woocommerce-MyAccount-navigation .is-active a { background: var(--black); border-color: var(--black); color: var(--white); }

/* ── TESTING RESULTS ── */
.pl-testing-hero { background: var(--black); padding: 52px 48px 44px; }
.pl-testing-content { max-width: 1440px; margin: 0 auto; padding: 40px 48px 80px; }
.pl-results-table { width: 100%; border-collapse: collapse; background: var(--white); }
.pl-results-table th { background: var(--grey-100); padding: 12px 16px; text-align: left; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); border-bottom: 2px solid var(--border); }
.pl-results-table td { padding: 14px 16px; font-size: 13px; border-bottom: 1px solid var(--grey-100); vertical-align: middle; }
.pl-results-table tr:hover td { background: var(--grey-50); }
.pl-pass-badge { background: rgba(0,125,72,0.1); color: var(--green); padding: 3px 10px; font-size: 11px; font-weight: 700; }
.pl-method-tag { background: rgba(17,81,255,0.08); color: var(--blue); padding: 3px 8px; font-size: 11px; font-weight: 600; }
.pl-coa-req-btn { background: transparent; border: 1.5px solid var(--border); color: var(--text); padding: 6px 14px; font-size: 12px; font-weight: 600; cursor: pointer; border-radius: 30px; font-family: 'Barlow', Helvetica, Arial, sans-serif; transition: all 0.15s; white-space: nowrap; }
.pl-coa-req-btn:hover { border-color: var(--black); }

/* ── CALCULATOR ── */
.pl-calc-hero { background: var(--black); padding: 52px 48px 44px; }
.pl-calc-content { max-width: 900px; margin: 0 auto; padding: 52px 48px 80px; }
.pl-sel-btn { padding: 10px 6px; border: 1.5px solid var(--border); border-radius: 30px; background: var(--white); color: var(--text); font-family: 'Barlow', Helvetica, Arial, sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.15s; text-align: center; }
.pl-sel-btn:hover, .pl-sel-btn.active { border-color: var(--black); background: var(--black); color: var(--white); }

/* ── FOOTER ── */
.pl-footer { background: var(--black); padding: 64px 48px 32px; }
.pl-footer-inner { max-width: 1440px; margin: 0 auto; }
.pl-footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.pl-footer-brand-text { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; margin-top: 14px; max-width: 280px; font-weight: 400; }
.pl-footer-heading { font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif; font-size: 13px; font-weight: 800; color: var(--white); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1.5px; }
.pl-footer-links { display: flex; flex-direction: column; gap: 10px; }
.pl-footer-link { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; font-weight: 400; }
.pl-footer-link:hover { color: rgba(255,255,255,0.8); }
.pl-footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.pl-footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); font-weight: 400; }
.pl-footer-disclaimer { font-size: 11px; color: rgba(255,255,255,0.2); max-width: 520px; line-height: 1.6; text-align: right; font-weight: 400; cursor: pointer; }
.pl-footer-disclaimer:hover { color: rgba(255,255,255,0.35); }

/* ── WHATSAPP FLOAT ── */
.pl-wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 500; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.pl-wa-fab { width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 20px rgba(37,211,102,0.45); border: none; transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; }
.pl-wa-fab:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.pl-wa-tooltip { background: var(--black); color: var(--white); padding: 7px 14px; border-radius: 8px; font-size: 12px; font-weight: 500; white-space: nowrap; display: none; }
.pl-wa-float:hover .pl-wa-tooltip { display: block; }

/* ── AGE GATE ── */
.pl-age-gate { position: fixed; inset: 0; z-index: 9999; background: var(--black); display: flex; align-items: center; justify-content: center; padding: 20px; }
.pl-age-box { background: var(--grey-900); border: 1px solid rgba(255,255,255,0.06); padding: 56px 48px; max-width: 480px; width: 100%; text-align: center; }
.pl-age-box h2 { font-family: 'Barlow Condensed', Helvetica, Arial, sans-serif; font-size: 36px; font-weight: 900; color: var(--white); text-transform: uppercase; margin-bottom: 12px; letter-spacing: -0.5px; }
.pl-age-box p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 36px; font-weight: 400; }
.pl-age-actions { display: flex; gap: 12px; margin-bottom: 20px; }
.pl-age-yes { flex: 1; padding: 15px; background: var(--white); color: var(--black); border: none; border-radius: 30px; font-family: 'Barlow', Helvetica, Arial, sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.pl-age-yes:hover { background: var(--grey-200); }
.pl-age-no { flex: 1; padding: 15px; background: transparent; color: rgba(255,255,255,0.45); border: 1.5px solid rgba(255,255,255,0.15); border-radius: 30px; font-family: 'Barlow', Helvetica, Arial, sans-serif; font-size: 14px; cursor: pointer; }
.pl-age-note { font-size: 11px; color: rgba(255,255,255,0.2); line-height: 1.6; font-weight: 400; }

/* ── TOAST ── */
.pl-toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--black); color: var(--white); padding: 12px 24px; border-radius: 30px; font-size: 14px; font-weight: 500; z-index: 999; transition: transform 0.3s; display: flex; align-items: center; gap: 10px; pointer-events: none; }
.pl-toast.show { transform: translateX(-50%) translateY(0); }
.pl-toast-dot { width: 7px; height: 7px; background: var(--green-inv); border-radius: 50%; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .pl-nav { padding: 0 20px; }
  .pl-nav-links { display: none; }
  .pl-hero { grid-template-columns: 1fr; padding: 90px 20px 52px; gap: 32px; }
  .pl-hero h1 { font-size: 72px; }
  .pl-hero-sellers { padding-top: 0; }
  .pl-category-strip { grid-template-columns: 1fr 1fr; }
  .pl-products-hero { padding: 36px 20px 28px; }
  .pl-filter-row { padding: 14px 20px; }
  .pl-pdp-body { grid-template-columns: 1fr; padding: 24px 20px 60px; }
  .pl-pdp-left { padding-right: 0; border-right: none; border-bottom: 1px solid var(--grey-200); padding-bottom: 28px; }
  .pl-pdp-right { padding-left: 0; }
  .pl-why-grid { grid-template-columns: 1fr; }
  .pl-about { grid-template-columns: 1fr; }
  .pl-about-right { display: none; }
  .pl-faq { padding: 60px 20px; }
  .pl-faq-grid { grid-template-columns: 1fr; }
  .pl-footer { padding: 52px 20px 28px; }
  .pl-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pl-section { padding: 52px 20px; }
  .pl-why-inner { padding: 52px 20px; }
  .pl-testing-hero, .pl-calc-hero { padding: 52px 20px 40px; }
  .pl-testing-content, .pl-calc-content { padding: 32px 20px 60px; }
}
