﻿/*
Theme Name:   Etched Research Child
Theme URI:    https://etchedresearch.com
Description:  Etched Research child theme for Astra
Author:       Etched Research
Template:     astra
Version:      3.0.0
*/

/* ═══════════════════════════════════════════════════════════════
   DESIGN TOKENS — Single source of truth for all colors/values
   ═══════════════════════════════════════════════════════════════ */
:root {
  /* Brand primaries — Ink Black + Etched Gold */
  --blue-dark:    #0F0E0C;
  --blue:         #2C2A25;
  --blue-mid:     #C9A84C;
  --blue-accent:  #C9A84C;
  --blue-light:   #F7F4EC;
  --blue-pale:    #F0EDE8;

  /* Brand gold — Etched Gold */
  --gold:         #C9A84C;
  --gold-light:   #E0C87A;
  --gold-pale:    #F7F4EC;
  --gold-dark:    #A07B20;

  /* Neutrals */
  --white:        #FFFFFF;
  --off-white:    #F7F4EC;
  --text:         #0F0E0C;
  --text-2:       #2C2A25;
  --text-muted:   #7A7068;
  --border:       #DDD9D0;
  --border-blue:  #D0CCC3;

  /* Semantic */
  --green:        #059669;
  --green-pale:   #ECFDF5;
  --green-border: #6EE7B7;

  /* Shadows */
  --shadow-sm:    0 1px 4px rgba(15,14,12,0.07);
  --shadow-md:    0 4px 16px rgba(15,14,12,0.10);
  --shadow-lg:    0 8px 32px rgba(15,14,12,0.14);

  /* Layout */
  --nav-height:   68px;
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    14px;
  --radius-xl:    20px;
}


/* ═══════════════════════════════════════════════════════════════
   BASE RESET & TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 80px 0; }

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 8px;
}
.label--light { color: rgba(255,255,255,0.7); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.section-header h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  margin: 10px 0 14px;
  letter-spacing: -0.5px;
  color: var(--text);
}
.section-header p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

.section-cta-row {
  text-align: center;
  margin-top: 36px;
}


/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  letter-spacing: 0.2px;
  text-decoration: none !important;
}

.btn-primary {
  background: var(--blue) !important;
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(27,79,138,0.25);
}
.btn-primary:hover {
  background: var(--blue-dark) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27,79,138,0.35);
}

.btn-outline {
  background: transparent !important;
  color: var(--blue) !important;
  border: 1.5px solid var(--border-blue) !important;
}
.btn-outline:hover {
  background: var(--blue-pale) !important;
  border-color: var(--blue) !important;
  color: var(--blue) !important;
}

.btn-white {
  background: #fff !important;
  color: var(--blue-dark) !important;
  font-weight: 700;
}
.btn-white:hover {
  background: var(--off-white) !important;
  transform: translateY(-1px);
}

.btn-ghost-white {
  background: transparent !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,0.35) !important;
  white-space: nowrap;
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.6) !important;
}

/* Astra global button overrides */
.ast-btn,
.button,
input[type="submit"],
.woocommerce .button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background: var(--blue) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-md) !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.ast-btn:hover,
.button:hover,
input[type="submit"]:hover,
.woocommerce .button:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-1px) !important;
}


/* ═══════════════════════════════════════════════════════════════
   ASTRA HEADER OVERRIDES (non-homepage pages)
   ═══════════════════════════════════════════════════════════════ */
.site-header,
#masthead {
  background: var(--white) !important;
  border-bottom: 1px solid var(--border) !important;
  box-shadow: 0 1px 8px rgba(15,31,46,0.06) !important;
}

.site-header .site-title a,
.ast-site-name-title,
#masthead .site-title a {
  color: var(--text) !important;
}

.main-navigation a,
.ast-nav-menu > li > a,
#site-navigation a {
  color: var(--text-2) !important;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}
.main-navigation a:hover,
.ast-nav-menu > li > a:hover {
  color: var(--blue) !important;
}

.ast-nav-menu > li.current-menu-item > a {
  color: var(--gold) !important;
}

/* Logo size on non-homepage Astra header */
.site-logo img,
.custom-logo,
img.custom-logo,
.ast-site-identity img,
.astra-logo-img {
  max-height: 110px !important;
  width: auto !important;
  height: auto !important;
}
.ast-site-identity { line-height: 1 !important; }


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — Announcement Bar
   ═══════════════════════════════════════════════════════════════ */
.ann-bar {
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 9px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.ann-bar a {
  color: #fff;
  text-decoration: underline;
  opacity: 0.9;
}
.ann-bar strong { font-weight: 700; }


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — Navigation
   ═══════════════════════════════════════════════════════════════ */
.aps-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(15,31,46,0.06);
  transition: box-shadow 0.2s;
}
.aps-nav.is-scrolled {
  box-shadow: 0 4px 20px rgba(15,31,46,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 70px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-shop-btn {
  padding: 9px 18px !important;
  font-size: 13px !important;
}
.cart-btn {
  position: relative;
  width: 38px;
  height: 38px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: border-color 0.2s;
  text-decoration: none;
}
.cart-btn:hover { border-color: var(--blue); }
.cart-badge {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hide Astra's own header on the homepage — our nav handles it */
.aps-homepage #masthead,
.aps-homepage .site-header {
  display: none !important;
}


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — Hero
   ═══════════════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(160deg, #FFFFFF 0%, #FAF8F5 50%, #F0EDE8 100%);
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27,79,138,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 64px;
  align-items: center;
  min-height: 420px;
  position: relative;
  z-index: 1;
}

.market-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 28px;
}
.market-badge .dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.market-badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.45} }

.hero h1 {
  font-size: clamp(32px, 3.3vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue);
}
.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
  font-weight: 400;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-proof {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-2);
}
.proof-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 1px solid var(--green-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--green);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   HERO VISUAL PANEL — premium compound showcase
   ═══════════════════════════════════════════════════════════════ */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Featured card */
.hv-featured {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 14px;
  padding: 24px 26px;
  box-shadow: 0 4px 24px rgba(15,43,78,0.10);
}
.hv-featured-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.hv-popular-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: 20px;
  padding: 3px 10px;
}
.hv-featured-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-dark);
  letter-spacing: -0.5px;
}
.hv-featured-body {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.hv-icon-wrap {
  width: 46px;
  height: 46px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.hv-featured-info { flex: 1; min-width: 0; }
.hv-featured-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 3px;
}
.hv-featured-spec {
  font-size: 12px;
  color: var(--text-muted);
}
.hv-tags-row {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.hv-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.2px;
  line-height: 1.4;
}
.hv-tag--green { color: var(--green); background: var(--green-pale); border: 1px solid var(--green-border); }
.hv-tag--blue  { color: var(--blue);  background: var(--blue-pale);  border: 1px solid var(--border-blue); }
.hv-tag--gold  { color: var(--gold-dark); background: var(--gold-pale); border: 1px solid var(--gold-light); }
.hv-tag--sm    { font-size: 10px; padding: 2px 7px; }

/* Purity bar */
.hv-purity-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hv-purity-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  white-space: nowrap;
}
.hv-purity-track {
  flex: 1;
  height: 5px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.hv-purity-fill {
  height: 100%;
  width: 99.2%;
  background: linear-gradient(90deg, var(--green) 0%, #10B981 100%);
  border-radius: 10px;
}
.hv-purity-val {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}

/* 2-up smaller compound cards */
.hv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.hv-card:hover {
  border-color: var(--border-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.hv-card-icon { font-size: 20px; margin-bottom: 6px; line-height: 1; }
.hv-card-name { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.2; }
.hv-card-spec  { font-size: 11px; color: var(--text-muted); }
.hv-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.hv-card-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--blue-dark);
}

/* Stats bar */
.hv-stats-bar {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  border-radius: 12px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.hv-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.hv-stat-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.5px;
}
.hv-stat-lbl {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.9px;
  white-space: nowrap;
}
.hv-stat-sep {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — Trust Bar
   ═══════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--blue-dark);
  padding: 16px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}
.t-icon { font-size: 17px; color: var(--gold); }
.trust-item strong { color: #fff; }


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — Research Disclaimer Band
   ═══════════════════════════════════════════════════════════════ */
.research-band {
  background: var(--blue-pale);
  border-top: 1px solid var(--border-blue);
  border-bottom: 1px solid var(--border-blue);
  padding: 12px 0;
  text-align: center;
}
.research-band p {
  font-size: 11px;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — Market Moment Banner
   ═══════════════════════════════════════════════════════════════ */
.market-moment {
  background: var(--blue-dark);
  padding: 28px 0;
}
.moment-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.moment-text h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.moment-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  line-height: 1.6;
  margin: 0;
}
.moment-text p strong { color: var(--gold); }


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — Product Cards
   ═══════════════════════════════════════════════════════════════ */
.featured-section { background: var(--off-white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  justify-content: center;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.15);
}
.product-image {
  background: var(--blue-pale);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.prod-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.prod-purity {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--green-pale);
  border: 1px solid var(--green-border);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
}
.product-body { padding: 16px 16px 0; flex: 1; }
.product-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.product-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}
.product-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.coa-line {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 12px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.product-price { font-size: 20px; font-weight: 800; color: var(--blue-dark); }
.product-price span { font-size: 11px; color: var(--text-muted); font-weight: 400; display: block; }
.add-btn {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.add-btn:hover { background: var(--blue-dark); color: #fff; }


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — Category Cards
   ═══════════════════════════════════════════════════════════════ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
}
.category-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.category-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.category-card:hover::after { transform: scaleX(1); }
.cat-icon { display: block; width: 26px; height: 26px; margin-bottom: 14px; color: var(--gold); }
.cat-icon svg { width: 26px; height: 26px; display: block; }
.category-card h3 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.category-card p { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.cat-count { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; color: var(--blue); text-transform: uppercase; }
.cat-compounds { font-size: 11px; color: var(--text-muted); margin-top: 3px; }

/* "View All" card variant */
.category-card--all {
  background: var(--blue);
  border-color: var(--blue);
  justify-content: center;
  align-items: center;
  text-align: center;
}
.category-card--all h3 { color: #fff; }
.category-card--all p { color: rgba(255,255,255,0.75); }
.category-card--all .cat-icon { color: #fff; }
.category-card--all:hover { border-color: var(--blue-dark); background: var(--blue-dark); }
.category-card--all::after { display: none; }


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — COA Trust Section
   ═══════════════════════════════════════════════════════════════ */
.coa-section { background: var(--off-white); }
.coa-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.coa-left h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  margin: 10px 0 18px;
  letter-spacing: -0.5px;
  color: var(--text);
}
.coa-left p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 26px;
}
.coa-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
  padding: 0;
}
.coa-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2);
}
.f-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.coa-feature-list li strong { color: var(--text); }
.coa-mockup {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.coa-mock-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.coa-logo {
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 9px 13px;
  border-radius: 7px;
}
.coa-mock-title { font-size: 14px; font-weight: 700; color: var(--text); }
.coa-mock-sub { font-size: 11px; color: var(--text-muted); }
.coa-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.coa-row:last-of-type { border-bottom: none; }
.coa-key { color: var(--text-muted); }
.coa-val { font-weight: 600; color: var(--text); }
.coa-val.pass { color: var(--green); }
.coa-batch-note {
  font-size: 11px;
  color: var(--text-muted);
  margin: 14px 0;
}
.coa-batch-note strong { color: var(--blue); }
.coa-stamp {
  text-align: center;
  background: var(--green-pale);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-md);
  padding: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — Calculator CTA
   ═══════════════════════════════════════════════════════════════ */
.calc-cta {
  background: var(--blue-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.calc-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
}
.calc-left {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.calc-left h2 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  margin: 10px 0 14px;
  letter-spacing: -0.5px;
  color: #fff;
}
.calc-left p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 26px;
}
.calc-right {
  background: rgba(255,255,255,0.05);
  border-left: 1px solid rgba(255,255,255,0.1);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-preview {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-md);
}
.calc-field-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.calc-preview select,
.calc-preview input {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 11px 13px;
  color: var(--text);
  font-size: 13px;
  font-family: inherit;
  margin-bottom: 11px;
  outline: none;
  appearance: none;
}
.calc-result {
  background: var(--blue-pale);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-top: 4px;
}
.calc-result-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
}
.calc-result-value { font-size: 24px; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 3px; }
.calc-result-sub { font-size: 11px; color: var(--text-muted); }


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — How It Works Steps
   ═══════════════════════════════════════════════════════════════ */
.how-section { background: var(--off-white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  text-align: center;
  padding: 24px 14px;
  position: relative;
}
.step::after {
  content: '→';
  position: absolute;
  right: -10px; top: 36px;
  color: var(--border);
  font-size: 18px;
}
.step:last-child::after { display: none; }
.step-num {
  width: 44px; height: 44px;
  background: var(--blue-pale);
  border: 1.5px solid var(--border-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--blue);
  margin: 0 auto 12px;
}
.step h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.step p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — Reviews
   ═══════════════════════════════════════════════════════════════ */
.reviews-section { background: var(--white); }
.reviews-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.rating-big { font-size: 50px; font-weight: 900; color: var(--blue); line-height: 1; }
.rating-detail .stars { font-size: 18px; color: var(--gold); }
.rating-detail .count { font-size: 12px; color: var(--text-muted); }
.community-line { font-size: 13px; color: var(--text-2); display: flex; align-items: center; gap: 8px; }
.community-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-sm);
}
.review-card:hover { border-color: var(--border-blue); box-shadow: var(--shadow-md); }
.review-stars { color: var(--gold); font-size: 14px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: var(--text-2); line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.r-avatar {
  width: 36px; height: 36px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  border: 1px solid var(--border-blue);
  flex-shrink: 0;
}
.r-name { font-size: 13px; font-weight: 600; color: var(--text); }
.r-meta { font-size: 11px; color: var(--text-muted); }
.verified { color: var(--green); font-weight: 600; }
.review-coa-note {
  margin-top: 10px;
  padding: 7px 11px;
  background: var(--green-pale);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-sm);
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
}


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — Resources
   ═══════════════════════════════════════════════════════════════ */
.resources-section { background: var(--off-white); }
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
  display: block;
  text-decoration: none;
  color: inherit;
}
.resource-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: inherit;
}
.res-icon { font-size: 32px; margin-bottom: 12px; }
.resource-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.resource-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.res-link { font-size: 13px; font-weight: 600; color: var(--blue); }


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — Compliance Section
   ═══════════════════════════════════════════════════════════════ */
.compliance-section {
  background: var(--blue-pale);
  border-top: 1px solid var(--border-blue);
  border-bottom: 1px solid var(--border-blue);
}
.compliance-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 44px 0;
  flex-wrap: wrap;
}
.compliance-icon { font-size: 44px; flex-shrink: 0; }
.compliance-content h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.compliance-content p { font-size: 14px; color: var(--text-2); line-height: 1.75; max-width: 680px; margin: 0; }
.compliance-badges { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.comp-badge {
  background: var(--white);
  border: 1px solid var(--border-blue);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 5px 13px;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
}


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq-section { background: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.faq-item {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: var(--border-blue); box-shadow: var(--shadow-sm); }
.faq-q {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.faq-q::before {
  content: 'Q';
  background: var(--blue-pale);
  border: 1px solid var(--border-blue);
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  width: 21px; height: 21px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.faq-a { font-size: 13px; color: var(--text-muted); line-height: 1.7; padding-left: 31px; }


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — Email Section
   ═══════════════════════════════════════════════════════════════ */
.email-section {
  text-align: center;
  padding: 60px 0;
  background: var(--blue-dark);
}
.email-section h2 { font-size: 26px; font-weight: 700; margin: 10px 0; color: #fff; }
.email-section p { font-size: 15px; color: rgba(255,255,255,0.75); margin-bottom: 26px; }
.email-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}
.email-form input {
  flex: 1;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}
.email-form input:focus { border-color: rgba(255,255,255,0.5); }
.email-form input::placeholder { color: rgba(255,255,255,0.45); }
.email-note { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 10px; }

/* WPForms override — match dark email section design */
.email-section .wpforms-container { max-width: 440px; margin: 0 auto; }
.email-section .wpforms-form .wpforms-field { padding: 0; margin-bottom: 10px; }
.email-section .wpforms-form label.wpforms-field-label { display: none; }
.email-section .wpforms-form input[type=email] {
  width: 100%;
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: var(--radius-md) !important;
  padding: 13px 16px !important;
  color: #fff !important;
  font-family: inherit !important;
  font-size: 14px !important;
  box-shadow: none !important;
  box-sizing: border-box;
}
.email-section .wpforms-form input[type=email]::placeholder { color: rgba(255,255,255,0.45) !important; }
.email-section .wpforms-form input[type=email]:focus {
  border-color: rgba(255,255,255,0.5) !important;
  outline: none !important;
}
.email-section .wpforms-form .wpforms-submit-container { margin: 0; padding: 0; text-align: center; }
.email-section .wpforms-form button[type=submit],
.email-section .wpforms-form .wpforms-submit {
  background: var(--gold) !important;
  color: var(--blue-dark) !important;
  border: none !important;
  border-radius: var(--radius-md) !important;
  padding: 13px 32px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  cursor: pointer !important;
  width: 100% !important;
  margin-top: 8px;
  transition: background 0.2s ease !important;
}
.email-section .wpforms-form button[type=submit]:hover,
.email-section .wpforms-form .wpforms-submit:hover {
  background: var(--gold-dark) !important;
}
.email-section .wpforms-confirmation-container-full {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: #fff;
  text-align: center;
  max-width: 440px;
  margin: 0 auto;
}
.email-section .wpforms-error-container,
.email-section .wpforms-field-container .wpforms-error {
  color: #FCA5A5 !important;
  font-size: 12px !important;
  background: transparent !important;
  border: none !important;
  padding: 4px 0 0 !important;
}


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — Footer
   ═══════════════════════════════════════════════════════════════ */
.aps-footer {
  background: var(--blue-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 56px 0 28px;
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  text-align: center;
  margin-bottom: 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 12px;
  display: block;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 0 0 16px; max-width: 240px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; padding: 0; margin: 0; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.payment-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); margin: 0; }

/* Hide Astra footer on homepage */
.aps-homepage #colophon,
.aps-homepage .site-footer {
  display: none !important;
}


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — Mobile Sticky CTA Bar
   ═══════════════════════════════════════════════════════════════ */
.aps-sticky-cta {
  display: none; /* shown via JS on scroll */
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 2px solid var(--border);
  padding: 12px 20px;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(15,31,46,0.13);
  align-items: center;
  gap: 12px;
}
.aps-sticky-cta.is-visible { display: flex; }
.sticky-cta-info { flex: 1; min-width: 0; }
.sticky-cta-sub { font-size: 11px; color: var(--text-muted); line-height: 1.3; }
.sticky-cta-main { font-size: 13px; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-cta-btn {
  background: var(--blue);
  color: #fff;
  padding: 13px 22px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.sticky-cta-btn:hover { background: var(--blue-dark); color: #fff; }


/* ═══════════════════════════════════════════════════════════════
   WOOCOMMERCE — Global overrides
   ═══════════════════════════════════════════════════════════════ */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.woocommerce ul.products li.product .price {
  color: var(--blue);
  font-weight: 800;
}
.woocommerce ul.products li.product a img {
  background: var(--blue-pale);
}
.woocommerce .product .price {
  color: var(--blue);
  font-size: 22px;
  font-weight: 800;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.woocommerce .star-rating span::before,
.woocommerce .star-rating::before,
.woocommerce .star-rating .filled {
  color: var(--gold) !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.single_add_to_cart_button:hover {
  background: var(--gold) !important;
  color: var(--blue-dark) !important;
}

/* Shop page grid */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
  gap: 20px !important;
  list-style: none !important;
  padding: 0 !important;
}
.woocommerce ul.products li.product {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-lg) !important;
  background: var(--white) !important;
  overflow: hidden !important;
  transition: box-shadow 0.2s, transform 0.2s !important;
  padding: 0 !important;
}
.woocommerce ul.products li.product:hover {
  box-shadow: var(--shadow-md) !important;
  transform: translateY(-2px) !important;
}
/* Product card image — tighter padding, square aspect, hover zoom */
.woocommerce ul.products li.product a {
  display: block !important;
}
.woocommerce ul.products li.product a:has(img),
.woocommerce ul.products li.product .aps-image-wrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--blue-pale) !important;
  overflow: hidden;
}
.woocommerce ul.products li.product img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: var(--blue-pale) !important;
  display: block !important;
  padding: 12px !important;
  transition: transform 0.35s ease !important;
}
.woocommerce ul.products li.product:hover img {
  transform: scale(1.04) !important;
}
/* Polished placeholder for products missing featured image */
.woocommerce ul.products li.product .aps-no-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--blue-pale);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  text-align: center;
}
.aps-no-image-crest {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  font-family: 'Inter', sans-serif;
}
.aps-no-image-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.aps-no-image-soon {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 12px 14px 4px !important;
}
.woocommerce ul.products li.product .price {
  padding: 0 14px 8px !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  color: var(--blue) !important;
}
.woocommerce ul.products li.product .button {
  margin: 0 14px 14px !important;
  width: calc(100% - 28px) !important;
  text-align: center !important;
  display: block !important;
}

/* Single product */
.woocommerce div.product .woocommerce-product-gallery {
  background: var(--blue-pale);
  border-radius: var(--radius-lg);
}
.summary .product_title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--text);
}

/* Cart / Checkout */
.woocommerce #payment { background: var(--off-white); border-radius: var(--radius-lg); }


/* ═══════════════════════════════════════════════════════════════
   CONTENT PAGES (About, FAQ, etc.)
   ═══════════════════════════════════════════════════════════════ */
.entry-title, .page-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.entry-content h2 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; color: var(--text); margin-top: 40px; margin-bottom: 14px; }
.entry-content h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-top: 28px; margin-bottom: 10px; }
.entry-content p { color: var(--text-2); font-size: 15px; line-height: 1.75; margin-bottom: 16px; }
.entry-content ul { color: var(--text-2); font-size: 15px; line-height: 1.75; padding-left: 20px; margin-bottom: 16px; }
.entry-content a { color: var(--blue); text-decoration: underline; }
.entry-content a.btn, .entry-content a.btn-primary { color: #fff !important; text-decoration: none !important; }

/* Breadcrumbs */
.ast-breadcrumbs-wrapper, #breadcrumbs {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: 12px;
  color: var(--text-muted);
}

/* Blog */
.ast-article-post .entry-title a { color: var(--text); font-weight: 700; }
.ast-article-post .entry-title a:hover { color: var(--blue); text-decoration: none; }
.category-label, .ast-post-categories a {
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Non-homepage Astra footer */
.site-footer, #colophon { background: var(--blue-dark) !important; color: rgba(255,255,255,0.6) !important; }
.site-footer a, #colophon a { color: rgba(255,255,255,0.6) !important; }
.site-footer a:hover, #colophon a:hover { color: var(--gold) !important; }
.site-footer .ast-footer-copyright, #colophon .ast-footer-copyright { color: rgba(255,255,255,0.5) !important; font-size: 12px !important; }

/* Focus rings */
input:focus, textarea:focus, select:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15) !important;
  outline: none !important;
}


/* ═══════════════════════════════════════════════════════════════
   SHOP — Category Filter Bar
   ═══════════════════════════════════════════════════════════════ */
.aps-category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.cat-filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--off-white);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.cat-filter-btn:hover {
  background: var(--blue-pale);
  border-color: var(--blue);
  color: var(--blue);
}
.cat-filter-btn.active {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: #fff;
}


/* ═══════════════════════════════════════════════════════════════
   MOBILE — max-width: 900px
   One clean block. All mobile overrides live here.
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {

  /* Body: pad bottom for sticky CTA bar */
  body { padding-bottom: 76px; }

  /* ── Shop category filter — 2-row wrap on mobile ── */
  .aps-category-filter {
    flex-wrap: wrap;
    gap: 7px;
    padding: 16px 0 4px;
  }
  .cat-filter-btn { font-size: 12px; padding: 6px 13px; }

  /* ── Nav ── */
  .aps-nav .nav-links,
  .aps-nav .nav-search { display: none; }
  .nav-shop-btn { display: none !important; }
  .nav-logo-img { height: 56px !important; width: auto !important; }
  .nav-inner { height: 72px; }

  /* ── Hero ── */
  .hero { padding: 40px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .hero h1 { font-size: clamp(26px, 7vw, 34px); letter-spacing: -0.8px; margin-bottom: 16px; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; max-width: 100%; }

  /* One CTA, full width */
  .hero-secondary-cta { display: none; }
  .hero-actions .btn-primary { width: 100%; justify-content: center; padding: 16px 24px; font-size: 15px; }
  .hero-actions { margin-bottom: 24px; }

  /* Proof items — 2 column grid */
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding-top: 20px; }
  .proof-item { font-size: 11px; }

  /* ── Trust Bar ── */
  .trust-bar-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 24px;
    justify-content: flex-start;
    padding: 0 4px;
  }
  .trust-bar-inner::-webkit-scrollbar { display: none; }
  .trust-item { flex-shrink: 0; font-size: 12px; }

  /* ── Sections ── */
  .section { padding: 52px 0; }

  /* ── Grids ── */
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .step::after { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .coa-section-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* ── Calculator ── */
  .calc-cta-inner { grid-template-columns: 1fr; }
  .calc-right { display: none; }
  .calc-left { padding: 36px 28px; }
  .calc-left h2 { font-size: 22px; }

  /* ── Market moment ── */
  .moment-inner { flex-direction: column; }
  .moment-inner .btn-ghost-white { width: 100%; justify-content: center; }

  /* ── Email form ── */
  .email-form { flex-direction: column; }

  /* ── Product cards ── */
  .product-name { font-size: 14px; }
  .product-price { font-size: 17px; }
  .add-btn { padding: 8px 10px; font-size: 12px; }

  /* ── Category cards ── */
  .category-card { padding: 18px 14px; }
  .cat-icon { width: 22px; height: 22px; margin-bottom: 8px; }
  .cat-icon svg { width: 22px; height: 22px; }
  .category-card h3 { font-size: 13px; }
  .cat-compounds { display: none; } /* hide compound list on mobile — too cramped */

  /* ── Reviews ── */
  .reviews-meta { flex-direction: column; gap: 12px; }

  /* ── Compliance ── */
  .compliance-inner { gap: 20px; padding: 32px 0; }
  .compliance-icon { display: none; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }

}

/* ── Very small screens ── */
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .hero-proof { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
}


/* ═══════════════════════════════════════════════════════════════
   LEGAL — Site-wide footer disclaimer band + checkout attestation
   ═══════════════════════════════════════════════════════════════ */
.aps-legal-band {
  background: #0F0E0C;
  color: rgba(255,255,255,0.85);
  border-top: 3px solid var(--gold);
  padding: 18px 0;
  font-size: 12px;
  line-height: 1.55;
}
.aps-legal-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.aps-legal-icon {
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}
.aps-legal-text {
  flex: 1;
}
.aps-legal-text strong {
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.2px;
}
.aps-legal-text a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.aps-legal-text a:hover {
  color: #FFFFFF;
}

/* Buyer attestation block on checkout */
.aps-attestation {
  background: #FBF6E9;
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 20px 22px;
  margin: 20px 0;
}
.aps-attestation-title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue-dark);
  margin-bottom: 6px;
}
.aps-attestation-intro {
  font-size: 13px;
  color: var(--text-2);
  margin: 0 0 14px;
  line-height: 1.5;
}
.aps-attest-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(201,168,76,0.25);
  cursor: pointer;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
}
.aps-attest-row:first-of-type {
  border-top: 0;
  padding-top: 4px;
}
.aps-attest-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue);
  cursor: pointer;
}
.aps-attest-row span {
  flex: 1;
}
.aps-attest-row strong {
  color: var(--blue-dark);
  font-weight: 700;
}

@media (max-width: 900px) {
  .aps-legal-band { padding: 14px 0; font-size: 11px; }
  .aps-legal-inner { padding: 0 16px; gap: 10px; }
  .aps-legal-icon { font-size: 18px; }
  .aps-attestation { padding: 16px 14px; }
}


/* SVG icons in hero cards — replaces emoji */
.hv-icon-wrap svg {
  width: 26px;
  height: 26px;
  color: var(--blue);
  display: block;
}
.hv-card-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.hv-card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
  display: block;
}

/* Shop sort dropdown */
.aps-sort-bar {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 18px;
  padding: 0;
}
.aps-sort-form {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  box-shadow: var(--shadow-sm);
}
.aps-sort-form label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.aps-orderby {
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 4px 8px 4px 4px;
  cursor: pointer;
  outline: none;
}
.aps-orderby:focus {
  color: var(--blue);
}

/* Product page COA badge near price */
.aps-coa-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-pale);
  border: 1px solid var(--border-blue);
  color: var(--blue);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin: 8px 0 14px;
  text-decoration: none !important;
}
.aps-coa-badge:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.aps-coa-badge svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 900px) {
  .aps-sort-bar { justify-content: stretch; }
  .aps-sort-form { width: 100%; }
  .aps-orderby { flex: 1; }
}


/* ═══════════════════════════════════════════════════════════════
   PEPTIDE CALCULATOR — researcher-first redesign
   ═══════════════════════════════════════════════════════════════ */
.aps-calc-wrap {
  max-width: 1100px;
  margin: 32px auto 64px;
  padding: 0 20px;
}
.aps-calc-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--text);
}
.aps-calc-sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 720px;
}

.aps-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* INPUT CARD */
.aps-calc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.aps-calc-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.aps-calc-step:first-child { padding-top: 0; }
.aps-calc-step:last-child { border-bottom: 0; padding-bottom: 0; }
.aps-step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: var(--gold);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.aps-step-body { flex: 1; min-width: 0; }
.aps-step-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.aps-step-hint {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 12px;
}
.aps-pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.aps-pill {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  color: var(--text-2);
  padding: 10px 16px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  min-width: 60px;
}
.aps-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.aps-pill--active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.aps-custom-input {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 14px;
  border: 1.5px solid var(--blue);
  border-radius: 8px;
  background: var(--blue-pale);
}
.aps-custom-input input {
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  outline: none;
  flex: 1;
  min-width: 0;
}
.aps-custom-input span {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
}
.aps-target-row {
  display: flex;
  gap: 10px;
}
.aps-target-row input {
  flex: 1;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  outline: none;
  min-width: 0;
}
.aps-target-row input:focus { border-color: var(--blue); }
.aps-target-row select {
  padding: 12px 36px 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: var(--white) url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 8' fill='none'%3e%3cpath d='M1 1L7 7L13 1' stroke='%23C9A84C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e") no-repeat right 12px center;
  background-size: 12px 7px;
  cursor: pointer;
  outline: none;
  min-width: 92px;
  flex-shrink: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* RESULTS CARD */
.aps-calc-results {
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 100%);
  border-radius: 14px;
  padding: 28px;
  color: #fff;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 90px;
}
.aps-result-conc {
  text-align: center;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 22px;
}
.aps-result-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.aps-result-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  letter-spacing: -1px;
}
.aps-result-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.aps-result-block {
  margin-bottom: 18px;
}
.aps-result-block:last-child { margin-bottom: 0; }
.aps-result-block-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold);
  margin-bottom: 10px;
}
.aps-syringe-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.aps-syringe-table td {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.aps-syringe-table td:first-child {
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  width: 40%;
}
.aps-syringe-table td:last-child {
  color: #fff;
  font-weight: 600;
  text-align: right;
}
.aps-syringe-table tr:last-child td { border-bottom: 0; }

.aps-target-result {
  margin-top: 22px;
  padding: 20px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 10px;
}
.aps-target-result-label {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}
.aps-target-result-label span {
  color: var(--gold);
  font-weight: 700;
}
.aps-target-row-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 0;
}
.aps-target-units {
  font-size: 22px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.3px;
}
.aps-target-detail {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.aps-target-volume {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(201,168,76,0.25);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}
.aps-target-volume span {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}

/* Quick reference */
.aps-calc-quickref {
  margin-top: 32px;
  padding: 24px;
  background: var(--off-white);
  border-radius: 14px;
}
.aps-quickref-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.aps-quickref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}
.aps-quickref-btn {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  transition: all 0.15s;
  text-align: left;
}
.aps-quickref-btn:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
}
.aps-quickref-btn span {
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
}

.aps-calc-disclaimer {
  margin-top: 32px;
  padding: 16px 18px;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ───────────────────────────────────
   Mobile breakpoint
   ─────────────────────────────────── */
@media (max-width: 900px) {
  .aps-calc-grid { grid-template-columns: 1fr; }
  .aps-calc-card { padding: 20px; }
  .aps-calc-results { padding: 22px; position: static; }
  .aps-result-value { font-size: 30px; }
  .aps-pill { padding: 9px 14px; font-size: 13px; min-width: 55px; }
  .aps-calc-quickref { padding: 18px 16px; }
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT PAGE — fix "First time?" callout layout
   ═══════════════════════════════════════════════════════════════ */
.aps-firsttime {
  display: block;
  width: 100%;
  clear: both;
  margin: 18px 0 0;
  padding: 14px 16px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text);
}
.aps-firsttime-q {
  font-weight: 700;
  color: var(--blue-dark);
  margin-right: 4px;
}
.aps-firsttime a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.aps-firsttime a:hover {
  color: var(--gold-dark);
}

/* Make sure WC cart form doesn't squeeze the callout */
.single-product .cart {
  display: block !important;
}
.single-product .cart .quantity,
.single-product .cart button.single_add_to_cart_button {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 600px) {
  .single-product .cart .quantity,
  .single-product .cart button.single_add_to_cart_button {
    display: block;
    width: 100%;
    margin-top: 10px;
  }
  .single-product .cart .quantity { margin-top: 0; }
  .single-product .cart button.single_add_to_cart_button { margin-top: 10px; }
}


/* ═══════════════════════════════════════════════════════════════
   SHOP — Data Badges on Loop Product Cards
   Nova design sprint 2026-05-25: purity + COA chips below title
   ═══════════════════════════════════════════════════════════════ */

/* Badge row injected after product title via woocommerce.php hook */
.woocommerce ul.products li.product .aps-loop-badges {
  display: flex;
  gap: 5px;
  padding: 2px 14px 8px;
  flex-wrap: wrap;
  align-items: center;
}

/* Purity chip — green */
.aps-loop-purity-chip {
  display: inline-flex;
  align-items: center;
  background: var(--green-pale);
  border: 1px solid var(--green-border);
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.2px;
  line-height: 1.5;
  white-space: nowrap;
}

/* COA chip — navy/blue */
.aps-loop-coa-chip {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: var(--blue-pale);
  border: 1px solid var(--border-blue);
  color: var(--blue);
  font-size: 9px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  line-height: 1.5;
  white-space: nowrap;
  text-decoration: none !important;
}
.aps-loop-coa-chip:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.aps-loop-coa-chip svg {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

/* Tighten WC loop card vertical whitespace */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 12px 14px 2px !important;
}
.woocommerce ul.products li.product .price {
  padding: 0 14px 10px !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  color: var(--blue) !important;
}

@media (max-width: 900px) {
  .aps-loop-badges { padding: 2px 12px 6px; gap: 4px; }
  .aps-loop-purity-chip, .aps-loop-coa-chip { font-size: 8px; padding: 2px 6px; }
}


/* ═══════════════════════════════════════════════════════════════
   SHOP — Category Filter — Text-only tabs, emoji suppressed
   ═══════════════════════════════════════════════════════════════ */

/* Suppress emoji rendering at the CSS layer (fallback if DB not yet cleaned) */
.cat-filter-btn {
  font-variant-emoji: text; /* hides color emoji, shows text fallback */
}

/* Hard-hide any inline .cat-emoji span the PHP might wrap around emoji */
.cat-filter-btn .cat-emoji {
  display: none;
}


/* ═══════════════════════════════════════════════════════════════
   FUNNELKIT CART — Override default teal (#03a0c7) to Etched black
   ═══════════════════════════════════════════════════════════════ */
.wfc-open-cart-button {
  background-color: #0F0E0C !important;
  border-color: #0F0E0C !important;
  color: #F0EDE8 !important;
}
.wfc-open-cart-button:hover {
  background-color: #2C2A25 !important;
  border-color: #2C2A25 !important;
}
.wfc-open-cart-button__count {
  background-color: #C9A84C !important;
  color: #0F0E0C !important;
}

/* ═══════════════════════════════════════════════════════════════
   WOOCOMMERCE + ASTRA — Override remaining blue-grey system colors
   ═══════════════════════════════════════════════════════════════ */
select.orderby,
select.orderby option,
.woocommerce-ordering select { color: var(--text) !important; }

/* Page/post title text (Astra default is slate-800) */
h1.page-title, h1.entry-title, .page-title, .entry-title { color: var(--text) !important; }

/* Any remaining slate text colours */
body, p, li, td, th, label, input, select, textarea { color: var(--text); }


/* WooCommerce qty input + all form inputs/selects — purge slate-600 */
.qty, input.qty, input[type=number],
input.input-text, select.orderby, .woocommerce select,
.woocommerce input[type=text],
.woocommerce input[type=email],
.woocommerce input[type=number],
.woocommerce textarea,
.woocommerce-page input,
.woocommerce-page select {
  color: var(--text) !important;
  border-color: var(--border) !important;
}

/* Beat Astra specificity on all text inputs */
.site-content input[type=text],
.site-content input[type=search],
.site-content input[type=email],
.site-content input[type=number],
.site-content input[type=tel],
.site-content input[type=password],
.site-content select,
.site-content textarea,
input.rl-search,
.rl-search,
.entry-content input,
.entry-content select,
.entry-content textarea { color: #0F0E0C !important; }

/* ═══ HEADER HEIGHT FIX — logo needs room to breathe ════════════ */
#masthead .main-header-bar,
#masthead .ast-primary-header-bar,
#masthead .site-header-focus-item,
.site-header .main-header-bar,
.ast-primary-header-bar {
  min-height: 90px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

#masthead .ast-site-identity,
#masthead .site-logo-img,
.site-header .ast-site-identity {
  display: flex !important;
  align-items: center !important;
  padding: 0 !important;
}

.site-logo img,
.custom-logo,
img.custom-logo,
.ast-site-identity img,
.astra-logo-img {
  max-height: 70px !important;
  max-width: 260px !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
}

/* ═══ HERO VISUAL — clickable cards ════════════════════════════ */
a.hv-featured,
a.hv-card {
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
a.hv-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(15,14,12,0.14);
}
a.hv-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,14,12,0.12);
}
