/* ─────────────────────────────────────────
   Trutide — Frontend Styles v2
   ───────────────────────────────────────── */

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

:root {
  --bg:      #ffffff;
  --bg2:     #f7f7f8;
  --bg3:     #f0f0f2;
  --border:  rgba(0,0,0,0.07);
  --border2: rgba(0,0,0,0.12);
  --text:    #1a1a1a;
  --muted:   #999;
  --muted2:  #666;
  --pink:    #e8407a;
  --pink-dk: #c4305e;
  --black:   #000000;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(12px);
}

.trutide-logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-decoration: none;
}
.trutide-logo span { color: var(--pink); }

.nav-basket-btn {
  background: var(--pink);
  border: none;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  text-decoration: none;
}
.nav-basket-btn:hover { opacity: 0.85; }

/* ── TICKER ── */
.trutide-ticker {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 0.4rem 0;
  overflow: hidden;
}
.trutide-ticker-inner {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.trutide-ticker-item {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted2);
  flex-shrink: 0;
}
.trutide-ticker-item .hi { color: var(--pink); }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── HERO ── */
.trutide-hero {
  padding: 6rem 2.5rem 5rem;
  max-width: 900px;
  margin: 0 auto;
}

.trutide-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.6rem;
  color: var(--text);
}

.hero-pure  { color: #1a1a1a; }
.hero-pink  { color: var(--pink); }
.hero-sub-line {
  display: block;
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  color: var(--muted);
  font-weight: 800;
}
.pink  { color: var(--pink); }
.dim   { color: var(--muted); }

.trutide-hero-sub {
  font-size: 0.95rem;
  color: var(--muted2);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.trutide-hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat-val {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}

.hero-stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.3rem;
  letter-spacing: 0.04em;
}

.trutide-hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn-primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  background: var(--pink) !important;
  color: #fff !important;
  border: none !important;
  padding: 0.7rem 1.6rem !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  transition: opacity 0.2s !important;
  font-family: 'Inter', sans-serif !important;
  text-decoration: none !important;
  display: inline-block !important;
}
.btn-primary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover { opacity: 0.85 !important; color: #fff !important; }

/* ── DISCLAIMER ── */
.disclaimer-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.7rem 2.5rem;
  text-align: center;
}
.disclaimer-bar p { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.04em; }
.disclaimer-bar strong { color: var(--muted2); }

/* ── SECTIONS ── */
.trutide-section {
  padding: 4rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.catalogue-view-all {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.catalogue-view-all:hover { color: #fff; }

/* ── CATALOGUE SECTION ── */
.catalogue-section {
  background: #000;
  padding: 4rem 2.5rem;
}
.catalogue-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── PRODUCT GRID ── */
.trutide-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
}

.trutide-product-card {
  background: #111;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background 0.2s;
}
.trutide-product-card:hover { background: #1a1a1a; }

.product-img-area {
  background: #0a0a0a;
  padding: 2.5rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

/* Product images if uploaded */
.product-img-area img {
  max-height: 160px;
  width: auto;
  object-fit: contain;
}

/* ── VIAL ── */
.vial-wrap { position: relative; width: 56px; }
.vial-cap  { width: 56px; height: 18px; background: var(--pink); border-radius: 5px 5px 0 0; }
.vial-neck { width: 38px; height: 8px; background: #ccc; margin: 0 auto; }
.vial-body {
  width: 56px; height: 90px;
  background: #fff; border: 1px solid #e0e0e0; border-top: none;
  border-radius: 0 0 8px 8px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.vial-label {
  width: 44px; height: 58px;
  background: #f8f8f8; border: 0.5px solid #ddd; border-radius: 2px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 2px; padding: 4px;
}
.vial-logo { font-size: 5.5px; font-weight: 800; color: #111; letter-spacing: -0.02em; }
.vial-logo span { color: var(--pink); }
.vial-peptide { font-size: 5px; font-weight: 700; color: var(--pink); letter-spacing: 0.08em; text-align: center; margin-top: 1px; }
.vial-mg { font-size: 4px; color: #999; letter-spacing: 0.06em; }
.vial-shine {
  position: absolute; top: 0; left: 5px; width: 6px; height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent 60%);
  border-radius: 3px;
}
.vial-shadow {
  width: 40px; height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%; filter: blur(3px);
  margin-top: 6px;
}

.product-info-area {
  padding: 1.2rem 1.4rem 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.product-info-area h3 { font-size: 0.95rem; font-weight: 700; color: #f0f0f0; margin-bottom: 0.2rem; }
.product-info-area .purity { font-size: 0.7rem; color: #555; margin-bottom: 0.9rem; }
.product-info-row { display: flex; flex-direction: column; gap: 0.6rem; }
.product-price-new { font-size: 1.1rem; font-weight: 700; color: var(--pink); }
.product-btn {
  background: var(--pink); color: #fff; border: none;
  padding: 0.6rem; border-radius: 6px;
  font-size: 0.78rem; font-weight: 600; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: opacity 0.2s; width: 100%; text-align: center;
}
.product-btn:hover { opacity: 0.85; }

/* ── WHY SECTION ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.why-card { background: var(--bg); transition: background 0.2s; }
.why-card:hover { background: var(--bg2); }

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

/* ── FAQ ── */
.faq-list { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; background: var(--bg2); border: none;
  color: var(--text); font-family: 'Inter', sans-serif;
  font-size: 0.85rem; font-weight: 500; text-align: left;
  padding: 1.1rem 1.4rem;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; transition: background 0.2s;
}
.faq-q:hover { background: var(--bg3); }
.faq-chevron { color: var(--muted); transition: transform 0.25s; }
.faq-a {
  background: var(--bg2); padding: 0 1.4rem;
  font-size: 0.8rem; color: var(--muted2); line-height: 1.75;
  max-height: 0; overflow: hidden; transition: max-height 0.3s, padding 0.3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.4rem 1.2rem; }

/* ── WOOCOMMERCE ── */
.woocommerce .woocommerce-ordering select { font-family: 'Inter', sans-serif; border: 1px solid var(--border2); border-radius: 6px; padding: 0.4rem 0.8rem; font-size: 0.82rem; background: var(--bg2); }
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: var(--pink) !important; font-weight: 700; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--pink); border-bottom-color: var(--pink); }
.woocommerce-notices-wrapper { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem; }
.research-notice { font-size: 0.72rem; color: var(--muted2); background: var(--bg2); border: 1px solid var(--border2); border-radius: 6px; padding: 0.6rem 0.9rem; margin-bottom: 1rem; }

/* ── FOOTER ── */
.footer-disclaimer-bar {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.2rem 2.5rem;
}
.footer-disclaimer-bar p { font-size: 0.68rem; color: rgba(255,255,255,0.35); line-height: 1.75; max-width: 1100px; margin: 0 auto; }
.site-footer { background: #000; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { padding: 1.5rem 2.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.72rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.45); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .site-nav { padding: 1rem 1.5rem; }
  .trutide-hero { padding: 3rem 1.5rem 2.5rem; }
  .trutide-product-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .trutide-hero-stats { gap: 1.5rem; }
  .catalogue-section,
  .trutide-section { padding: 3rem 1.5rem; }
  .disclaimer-bar { padding: 0.7rem 1.5rem; }
}

/* ── WOOCOMMERCE SHOP LOOP ── */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1px !important;
  background: rgba(0,0,0,0.06) !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

.woocommerce ul.products li.product {
  background: #fff !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  transition: background 0.2s !important;
}

.woocommerce ul.products li.product:hover { background: var(--bg2) !important; }

.trutide-loop-thumb { width: 100%; }

.trutide-loop-thumb img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #0a0a0a;
  display: block;
}

.vial-fallback-link {
  display: block;
  text-decoration: none;
  background: #0a0a0a;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: var(--text) !important;
  padding: 1.2rem 1.4rem 0.2rem !important;
}

.woocommerce ul.products li.product .price {
  padding: 0 1.4rem 0.8rem !important;
  display: block !important;
}

.woocommerce ul.products li.product .button {
  margin: 0 1.4rem 1.4rem !important;
  width: calc(100% - 2.8rem) !important;
  text-align: center !important;
}

@media (max-width: 600px) {
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
}

/* ── SINGLE PRODUCT PAGE ── */
.single-product-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2.5rem 5rem;
}

.single-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Image side */
.single-product-image {
  background: #0a0a0a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  position: sticky;
  top: 100px;
}

.single-product-image img {
  max-height: 380px;
  width: auto;
  object-fit: contain;
  padding: 2rem;
}

/* Large vial */
.single-vial-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2rem;
}

.single-vial { position: relative; width: 110px; }
.single-vial-cap  { width: 110px; height: 34px; background: var(--pink); border-radius: 8px 8px 0 0; }
.single-vial-neck { width: 74px; height: 14px; background: #ccc; margin: 0 auto; }
.single-vial-body {
  width: 110px; height: 170px;
  background: #fff; border: 1px solid #e0e0e0; border-top: none;
  border-radius: 0 0 14px 14px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.single-vial-label {
  width: 86px; height: 110px;
  background: #f8f8f8; border: 0.5px solid #ddd; border-radius: 3px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 4px; padding: 8px;
}
.single-vial-logo  { font-size: 10px; font-weight: 800; color: #111; letter-spacing: -0.02em; }
.single-vial-logo span { color: var(--pink); }
.single-vial-peptide { font-size: 9px; font-weight: 700; color: var(--pink); letter-spacing: 0.08em; text-align: center; }
.single-vial-mg    { font-size: 7px; color: #999; letter-spacing: 0.06em; text-align: center; }
.single-vial-shine {
  position: absolute; top: 0; left: 10px; width: 12px; height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent 60%);
  border-radius: 6px;
}
.single-vial-shadow {
  width: 80px; height: 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%; filter: blur(5px);
  margin-top: 10px;
}

/* Details side */
.single-breadcrumb {
  font-size: 0.72rem; color: var(--muted); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.single-breadcrumb a { color: var(--muted); text-decoration: none; }
.single-breadcrumb a:hover { color: var(--pink); }

.single-product-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 0.8rem; line-height: 1.1;
}

.single-product-price {
  font-size: 1.8rem; font-weight: 700;
  color: var(--pink); margin-bottom: 1.2rem;
}

.single-spec-badges {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.spec-badge {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em;
  background: var(--bg2); border: 1px solid var(--border2);
  color: var(--muted2); padding: 0.3rem 0.7rem; border-radius: 50px;
}

.single-stock-status { margin-bottom: 1rem; font-size: 0.8rem; }
.stock-in  { color: #22c55e; font-weight: 600; }
.stock-out { color: #ef4444; font-weight: 600; }

.single-research-notice {
  font-size: 0.75rem; color: var(--muted2);
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 6px; padding: 0.7rem 1rem;
  margin-bottom: 1.4rem;
}

/* Add to cart overrides */
.single-add-to-cart { margin-bottom: 1.8rem; }

.single-add-to-cart .quantity {
  display: inline-flex; align-items: center;
  margin-right: 0.8rem;
}

.single-add-to-cart .qty {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  width: 60px !important;
  padding: 0.65rem 0.8rem !important;
  border: 1px solid var(--border2) !important;
  border-radius: 6px !important;
  text-align: center !important;
  background: var(--bg2) !important;
  color: var(--text) !important;
}

.single-add-to-cart .single_add_to_cart_button {
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  background: var(--pink) !important;
  color: #fff !important;
  border: none !important;
  padding: 0.72rem 2rem !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  font-family: 'Inter', sans-serif !important;
  transition: opacity 0.2s !important;
}
.single-add-to-cart .single_add_to_cart_button:hover { opacity: 0.85 !important; }

/* Change "Add to cart" text to "Add to Basket" */
.single_add_to_cart_button::after {
  content: none !important;
}

.single-description {
  border-top: 1px solid var(--border);
  padding-top: 1.4rem;
  margin-bottom: 1.4rem;
}
.single-desc-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 0.7rem;
}
.single-desc-body {
  font-size: 0.85rem; color: var(--muted2); line-height: 1.75;
}

.single-coa-note {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; color: var(--muted2);
  border-top: 1px solid var(--border); padding-top: 1.2rem;
}
.single-coa-note a { color: var(--pink); text-decoration: none; }
.single-coa-note a:hover { text-decoration: underline; }

/* Hide default WooCommerce meta (SKU, category) */
.woocommerce div.product .product_meta { display: none; }

@media (max-width: 768px) {
  .single-product-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .single-product-image { position: static; min-height: 280px; }
  .single-product-wrap { padding: 2rem 1.5rem 4rem; }
}

/* ── SINGLE PRODUCT FIXES ── */

/* Force two column on tablet+ */
@media (min-width: 600px) {
  .single-product-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
  }
}

/* Hide duplicate WooCommerce stock text and default research notice */
.woocommerce div.product .stock,
.woocommerce div.product form.cart .woocommerce-variation-availability,
.single-add-to-cart .research-notice {
  display: none !important;
}

/* Bigger vial on product page */
.single-product-image {
  min-height: 360px !important;
}

.single-vial { width: 140px !important; }
.single-vial-cap  { width: 140px !important; height: 44px !important; }
.single-vial-neck { width: 94px !important; height: 18px !important; }
.single-vial-body { width: 140px !important; height: 210px !important; }
.single-vial-label { width: 116px !important; height: 148px !important; }
.single-vial-logo  { font-size: 13px !important; }
.single-vial-peptide { font-size: 6px !important; letter-spacing: 0.02em !important; word-break: break-all !important; line-height: 1.3 !important; overflow: hidden !important; max-width: 100% !important; text-align: center !important; }
.single-vial-mg    { font-size: 9px !important; }
.single-vial-shadow { width: 100px !important; }

/* ── CART PAGE ── */
.woocommerce-cart h1,
.woocommerce-cart .woocommerce-cart-form h2,
.woocommerce-checkout h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  color: var(--text) !important;
  margin-bottom: 2rem !important;
}

/* Cart table */
.woocommerce-cart .woocommerce-cart-form {
  max-width: 1100px;
  margin: 0 auto;
}

.woocommerce table.shop_table {
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  font-family: 'Inter', sans-serif !important;
  width: 100% !important;
}

.woocommerce table.shop_table th {
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--muted) !important;
  background: var(--bg2) !important;
  border-bottom: 1px solid var(--border) !important;
  padding: 0.9rem 1.2rem !important;
}

.woocommerce table.shop_table td {
  border-bottom: 1px solid var(--border) !important;
  padding: 1.2rem !important;
  vertical-align: middle !important;
  font-size: 0.85rem !important;
  color: var(--text) !important;
}

.woocommerce table.shop_table tr:last-child td {
  border-bottom: none !important;
}

/* Cart product thumbnail — show vial fallback */
.woocommerce table.shop_table .product-thumbnail img {
  width: 64px !important;
  height: 64px !important;
  object-fit: contain !important;
  border-radius: 6px !important;
  background: #0a0a0a !important;
}

.cart-vial-thumb {
  width: 64px;
  height: 64px;
  background: #0a0a0a;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-vial-mini { position: relative; width: 22px; }
.cart-vial-mini .cv-cap  { width: 22px; height: 7px; background: var(--pink); border-radius: 2px 2px 0 0; }
.cart-vial-mini .cv-neck { width: 15px; height: 4px; background: #ccc; margin: 0 auto; }
.cart-vial-mini .cv-body {
  width: 22px; height: 34px;
  background: #fff; border: 0.5px solid #ddd; border-top: none;
  border-radius: 0 0 3px 3px;
  display: flex; align-items: center; justify-content: center;
}
.cart-vial-mini .cv-label {
  width: 17px; height: 22px;
  background: #f8f8f8; border-radius: 1px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1px;
}
.cart-vial-mini .cv-logo { font-size: 2.5px; font-weight: 800; color: #111; }
.cart-vial-mini .cv-logo span { color: var(--pink); }
.cart-vial-mini .cv-name { font-size: 2px; font-weight: 700; color: var(--pink); }

/* Product name in cart */
.woocommerce table.shop_table .product-name a {
  font-weight: 600 !important;
  color: var(--text) !important;
  text-decoration: none !important;
  font-size: 0.88rem !important;
}
.woocommerce table.shop_table .product-name a:hover { color: var(--pink) !important; }

/* Quantity in cart */
.woocommerce table.shop_table .quantity input.qty {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  width: 60px !important;
  padding: 0.5rem !important;
  border: 1px solid var(--border2) !important;
  border-radius: 6px !important;
  text-align: center !important;
  background: var(--bg2) !important;
}

/* Remove button */
.woocommerce table.shop_table a.remove {
  color: var(--muted) !important;
  font-size: 1.2rem !important;
  transition: color 0.2s !important;
}
.woocommerce table.shop_table a.remove:hover { color: var(--pink) !important; }

/* Update cart button */
.woocommerce .cart .button[name="update_cart"] {
  background: var(--bg2) !important;
  color: var(--muted2) !important;
  border: 1px solid var(--border2) !important;
  font-size: 0.78rem !important;
  padding: 0.6rem 1.2rem !important;
}

/* Cart totals box */
.woocommerce .cart-collaterals {
  max-width: 1100px;
  margin: 0 auto;
}

.woocommerce .cart_totals {
  max-width: 420px;
  margin-left: auto;
}

.woocommerce .cart_totals h2 {
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--muted) !important;
  margin-bottom: 1rem !important;
}

.woocommerce .cart_totals table {
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  width: 100% !important;
  margin-bottom: 1.2rem !important;
}

.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td {
  padding: 0.9rem 1.2rem !important;
  font-size: 0.85rem !important;
  border-bottom: 1px solid var(--border) !important;
  font-family: 'Inter', sans-serif !important;
}

.woocommerce .cart_totals table tr:last-child th,
.woocommerce .cart_totals table tr:last-child td {
  border-bottom: none !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
}

.woocommerce .cart_totals table tr:last-child td {
  color: var(--pink) !important;
}

/* Proceed to checkout button */
.woocommerce .wc-proceed-to-checkout a.checkout-button {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  background: var(--pink) !important;
  color: #fff !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  padding: 0.9rem !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  transition: opacity 0.2s !important;
  font-family: 'Inter', sans-serif !important;
}
.woocommerce .wc-proceed-to-checkout a.checkout-button:hover { opacity: 0.85 !important; }

/* Coupon */
.woocommerce .coupon input.input-text {
  font-family: 'Inter', sans-serif !important;
  border: 1px solid var(--border2) !important;
  border-radius: 6px !important;
  padding: 0.6rem 0.9rem !important;
  font-size: 0.82rem !important;
  background: var(--bg2) !important;
}

/* ── WOOCOMMERCE BLOCK CART ── */

/* Page title */
.woocommerce-cart h1.wp-block-post-title,
.entry-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  color: var(--text) !important;
  margin-bottom: 1.5rem !important;
  padding: 2rem 2.5rem 0 !important;
}

/* Block cart wrapper */
.wp-block-woocommerce-cart {
  padding: 1rem 2.5rem 4rem !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  font-family: 'Inter', sans-serif !important;
}

/* Product name link */
.wc-block-cart-item__product-name a,
.wc-block-components-product-name {
  font-weight: 600 !important;
  color: var(--text) !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
}
.wc-block-cart-item__product-name a:hover { color: var(--pink) !important; }

/* Product price */
.wc-block-cart-item__total,
.wc-block-components-product-price,
.wc-block-cart-item__prices {
  color: var(--text) !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
}

/* Quantity stepper */
.wc-block-components-quantity-selector {
  border: 1px solid var(--border2) !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  background: var(--bg2) !important;
}
.wc-block-components-quantity-selector__value {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
}
.wc-block-components-quantity-selector__button {
  color: var(--muted2) !important;
  background: var(--bg2) !important;
}
.wc-block-components-quantity-selector__button:hover {
  color: var(--pink) !important;
  background: var(--bg3) !important;
}

/* Remove button */
.wc-block-cart-item__remove-link {
  color: var(--muted) !important;
  font-size: 0.75rem !important;
}
.wc-block-cart-item__remove-link:hover { color: var(--pink) !important; }

/* Order summary / totals */
.wc-block-cart__submit-container,
.wc-block-components-totals-wrapper {
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  padding: 1.2rem !important;
  background: var(--bg2) !important;
}

.wc-block-components-totals-item {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.85rem !important;
  padding: 0.7rem 0 !important;
  border-bottom: 1px solid var(--border) !important;
}
.wc-block-components-totals-item:last-child { border-bottom: none !important; }

.wc-block-components-totals-item__label { color: var(--muted2) !important; }

.wc-block-components-totals-item__value,
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-weight: 700 !important;
  color: var(--pink) !important;
}

.wc-block-components-totals-footer-item {
  font-size: 1rem !important;
  font-weight: 700 !important;
}

/* Proceed to checkout button */
.wc-block-cart__submit-button,
.wp-block-woocommerce-proceed-to-checkout-block a,
.wc-block-components-checkout-place-order-button {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  background: var(--pink) !important;
  color: #fff !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  padding: 0.9rem !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  transition: opacity 0.2s !important;
  font-family: 'Inter', sans-serif !important;
  margin-top: 1rem !important;
}
.wc-block-cart__submit-button:hover,
.wp-block-woocommerce-proceed-to-checkout-block a:hover { opacity: 0.85 !important; color: #fff !important; }

/* Coupon input */
.wc-block-components-totals-coupon__input input {
  font-family: 'Inter', sans-serif !important;
  border: 1px solid var(--border2) !important;
  border-radius: 6px !important;
  padding: 0.6rem 0.9rem !important;
  font-size: 0.82rem !important;
  background: var(--bg) !important;
}

/* Cart item row */
.wc-block-cart-items__row {
  border-bottom: 1px solid var(--border) !important;
  padding: 1.2rem 0 !important;
}

/* Broken image — hide default placeholder */
.wc-block-cart-item__image img[src*="placeholder"] {
  opacity: 0 !important;
}

.wc-block-cart-item__image {
  background: #0a0a0a !important;
  border-radius: 6px !important;
  min-width: 64px !important;
  min-height: 64px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* ── SHOP PAGE FIXES ── */

/* Fix grey background on shop page body */
.woocommerce-page body,
body.woocommerce-page,
body.post-type-archive-product {
  background: #fff !important;
}

/* Shop page wrapper */
.woocommerce-shop .trutide-section,
.woo-wrapper {
  background: #fff !important;
}

/* Shop title */
h1.woocommerce-products-header__title,
.woocommerce-products-header h1,
.page-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  color: var(--text) !important;
  margin-bottom: 1.5rem !important;
  font-family: 'Inter', sans-serif !important;
}

/* Results count + sorting bar */
.woocommerce-result-count {
  font-size: 0.78rem !important;
  color: var(--muted) !important;
  font-family: 'Inter', sans-serif !important;
}

.woocommerce-ordering select {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.78rem !important;
  border: 1px solid var(--border2) !important;
  border-radius: 6px !important;
  padding: 0.45rem 0.9rem !important;
  background: var(--bg2) !important;
  color: var(--text) !important;
  cursor: pointer !important;
}

/* Fix the grey gap — force product grid to full width */
.woocommerce ul.products {
  width: 100% !important;
}

/* On mobile — single column, no grey gap */
@media (max-width: 640px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
  }
  /* Ensure odd product doesn't leave grey column */
  .woocommerce ul.products li.product:only-child,
  .woocommerce ul.products li.product:last-child:nth-child(odd) {
    grid-column: 1 / -1 !important;
  }
}

/* Remove grey background from shop page main */
.woocommerce-page main,
.woocommerce-page .site-main {
  background: #fff !important;
}

/* ── SHOP PAGE GRID FIX ── */

/* Override the grid background colour causing grey gap */
.woocommerce ul.products {
  background: #fff !important;
  gap: 0 !important;
}

/* Each product card takes full row on mobile */
@media (max-width: 768px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
    border: none !important;
  }
  .woocommerce ul.products li.product {
    border: 1px solid var(--border) !important;
    border-radius: 10px !important;
    margin-bottom: 1rem !important;
    overflow: hidden !important;
  }
}

/* Desktop — 2 columns with white gap */
@media (min-width: 769px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
    background: transparent !important;
    border: none !important;
  }
  .woocommerce ul.products li.product {
    border: 1px solid var(--border) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
  }
}

/* Remove ticker on shop — keep page clean */
.woocommerce-page .trutide-ticker {
  display: none;
}

/* Shop page padding */
.woocommerce-page .trutide-section {
  padding-top: 2rem !important;
}

/* ── SHOP GREY GAP NUCLEAR FIX ── */
body.woocommerce-page,
body.woocommerce-page #page,
body.woocommerce-page #content,
body.woocommerce-page main,
body.woocommerce-page .site-main,
body.post-type-archive-product,
body.post-type-archive-product #page,
body.post-type-archive-product main {
  background-color: #ffffff !important;
}

/* Force the ul.products to not use grid background trick */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: flex !important;
  flex-direction: column !important;
  background: transparent !important;
  border: none !important;
  gap: 1rem !important;
  padding: 0 !important;
  margin: 0 !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  background: #fff !important;
}

@media (min-width: 769px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    flex-direction: unset !important;
  }
}

/* ── CHECKOUT BLOCK PAGE ── */
.woocommerce-checkout h1,
.wp-block-woocommerce-checkout h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  color: var(--text) !important;
  font-family: 'Inter', sans-serif !important;
  padding: 2rem 2.5rem 0 !important;
}

.wp-block-woocommerce-checkout {
  padding: 1rem 2.5rem 5rem !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  font-family: 'Inter', sans-serif !important;
}

/* Section headings */
.wc-block-components-checkout-step__title,
.wc-block-checkout__contact-fields > h2,
.wc-block-checkout__billing-fields > h2,
.wc-block-checkout__payment-method > h2,
.wc-block-components-title {
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: var(--text) !important;
  font-family: 'Inter', sans-serif !important;
  letter-spacing: -0.01em !important;
  margin-bottom: 0.8rem !important;
}

/* All input fields */
.wc-block-components-text-input input,
.wc-block-components-select select,
.wc-block-components-textarea textarea,
.wc-block-components-country-input input,
.wc-block-components-address-form input {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.85rem !important;
  border: 1px solid var(--border2) !important;
  border-radius: 6px !important;
  padding: 0.75rem 0.9rem !important;
  background: var(--bg2) !important;
  color: var(--text) !important;
  transition: border-color 0.2s !important;
}
.wc-block-components-text-input input:focus,
.wc-block-components-select select:focus {
  border-color: var(--pink) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(232,64,122,0.1) !important;
}

/* Labels */
.wc-block-components-text-input label,
.wc-block-components-select label {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: var(--muted2) !important;
  font-family: 'Inter', sans-serif !important;
}

/* Checkbox */
.wc-block-components-checkbox .wc-block-components-checkbox__input:checked {
  background: var(--pink) !important;
  border-color: var(--pink) !important;
}

/* Order summary */
.wc-block-components-order-summary__title {
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: var(--text) !important;
  font-family: 'Inter', sans-serif !important;
}

.wc-block-components-order-summary-item__quantity {
  background: var(--pink) !important;
  color: #fff !important;
  font-family: 'Inter', sans-serif !important;
}

.wc-block-components-order-summary-item__name {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  font-family: 'Inter', sans-serif !important;
}

.wc-block-components-order-summary-item__individual-prices {
  font-size: 0.78rem !important;
  color: var(--muted2) !important;
}

/* Totals */
.wc-block-components-totals-item {
  font-family: 'Inter', sans-serif !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  font-weight: 700 !important;
  font-size: 0.95rem !important;
}

/* Payment section */
.wc-block-components-payment-methods {
  border: 1px solid var(--border) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
}

.wc-block-components-payment-method-label {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.85rem !important;
}

/* No payment methods notice */
.wc-block-checkout__no-payment-methods {
  font-size: 0.82rem !important;
  color: var(--muted2) !important;
  background: var(--bg2) !important;
  border: 1px solid var(--border) !important;
  border-radius: 6px !important;
  padding: 0.8rem 1rem !important;
}

/* Place order button */
.wc-block-components-checkout-place-order-button {
  background: var(--pink) !important;
  color: #fff !important;
  border: none !important;
  padding: 1rem 2rem !important;
  border-radius: 6px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: opacity 0.2s !important;
}
.wc-block-components-checkout-place-order-button:hover { opacity: 0.85 !important; }

/* Return to cart link */
.wc-block-components-checkout-return-to-cart-button {
  font-size: 0.78rem !important;
  color: var(--muted2) !important;
  font-family: 'Inter', sans-serif !important;
}
.wc-block-components-checkout-return-to-cart-button:hover { color: var(--pink) !important; }

/* T&C text */
.wc-block-checkout__terms {
  font-size: 0.75rem !important;
  color: var(--muted) !important;
  font-family: 'Inter', sans-serif !important;
}
.wc-block-checkout__terms a { color: var(--pink) !important; }

/* Hide broken product thumbnails in order summary */
.wc-block-components-order-summary-item__image img[src*="placeholder"] {
  opacity: 0 !important;
}
.wc-block-components-order-summary-item__image {
  background: #0a0a0a !important;
  border-radius: 4px !important;
}

/* ── FREE SHIPPING NOTICE ── */
.trutide-shipping-notice {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.trutide-shipping-notice.eligible {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #16a34a;
}
.trutide-shipping-notice.not-eligible {
  background: rgba(232,64,122,0.08);
  border: 1px solid rgba(232,64,122,0.2);
  color: var(--muted2);
}
.trutide-shipping-notice .notice-bar {
  height: 4px;
  border-radius: 4px;
  background: rgba(0,0,0,0.08);
  flex: 1;
  overflow: hidden;
}
.trutide-shipping-notice .notice-bar-fill {
  height: 100%;
  border-radius: 4px;
  background: var(--pink);
  transition: width 0.5s ease;
}

/* ── AGE GATE ── */
#trutide-age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  backdrop-filter: blur(8px);
}

#trutide-age-gate.hidden {
  display: none;
}

.age-gate-box {
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
}

.age-gate-logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.8rem;
}
.age-gate-logo span { color: #e8407a; }

.age-gate-box h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.age-gate-box p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.age-gate-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.age-gate-yes {
  background: #e8407a;
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: opacity 0.2s;
  flex: 1;
}
.age-gate-yes:hover { opacity: 0.85; }

.age-gate-no {
  background: transparent;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s;
  flex: 1;
}
.age-gate-no:hover { color: rgba(255,255,255,0.7); }

.age-gate-denied {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 1.5rem;
  line-height: 1.65;
  display: none;
}

.age-gate-notice {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
  margin-top: 1.8rem;
  line-height: 1.6;
}
