/* ── Self-hosted Fonts ───────────────────────────────────────────── */

@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/bebas-neue-v16-latin-regular.woff2") format("woff2");
  /* Bebas Neue's cap-height is ~70% of em. Centering math:
     ascent-override = cap-height + (1em - cap-height)/2 = 85%
     descent-override = (1em - cap-height)/2 = 15% */
  ascent-override: 85%;
  descent-override: 15%;
  line-gap-override: 0%;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/inter-v20-latin-300.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-v20-latin-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-v20-latin-500.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-v20-latin-600.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter-v20-latin-700.woff2") format("woff2");
}

:root {
  --covert-bg-void: #060606;
  --covert-bg-base: #0a0a0a;
  --covert-bg-surface: #0a0a0a;
  --covert-bg-raised: #141414;
  --covert-bg-muted: #141414;
  --covert-gold: #D4AF37;
  --covert-gold-light: #E5C84A;
  --covert-gold-dark: #A88B25;
  --covert-gold-dim: #8c7220;
  --covert-text-primary: #cccccc;
  --covert-text-secondary: #CCCCCC;
  --covert-text-muted: #CCCCCC;
  --covert-border: rgba(212, 175, 55, 0.15);
  --covert-border-strong: rgba(255,255,255,0.06);

  /* Legacy variable aliases for ported template-parts */
  --gold: #D4AF37;
  --gold-light: #E5C84A;
  --gold-dark: #A88B25;
  --bg: #0a0a0a;
  --bg-surface: #141414;
  --bg-card: #1A1A1A;
  --bg-elevated: #222222;
  --text: #cccccc;
  --text-muted: #CCCCCC;
  --text-dim: #CCCCCC;
  --border: rgba(212, 175, 55, 0.15);
  --border-subtle: rgba(255,255,255,0.06);
  --radius: 8px;
  --radius-lg: 14px;
  --radius-pill: 100px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 24px rgba(212,175,55,0.18);
  --transition: 0.2s ease;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-display: var(--font-heading);
  --font-body: 'Inter', sans-serif;
  --font-ui: var(--font-body);
  --sativa-color: #22C55E;
  --indica-color: #A855F7;
  --hybrid-color: #06B6D4;
  --covert-container: 1280px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  background-color: var(--covert-bg-surface);
  color: var(--covert-text-secondary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  line-height: 1.7;
}

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

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

:focus-visible {
  outline: 2px solid var(--covert-gold);
  outline-offset: 2px;
}

.covert-site {
  min-height: 100vh;
}

.covert-shell {
  width: 100%;
  max-width: var(--covert-container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.covert-main {
  min-height: 60vh;
}

/* ── Age Gate ────────────────────────────────────────────────────── */

.covert-age-gate {
  position: fixed;
  inset: 0;
  z-index: 2147483647; /* must exceed Klaviyo popup (~999999) */
  background: var(--covert-bg-void);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: opacity 0.3s ease;
}

.covert-age-gate__inner {
  max-width: 460px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  border: 1px solid var(--covert-border);
  border-top: 3px solid var(--covert-gold);
  padding: 48px 40px 36px;
}

.covert-age-gate__logo {
  width: 100px;
  margin-bottom: 8px;
}

.covert-age-gate__eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--covert-gold);
  margin: 0;
}

.covert-age-gate__heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--covert-text-primary);
  line-height: 1;
  margin: 0;
}

.covert-age-gate__body {
  color: var(--covert-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.covert-age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 8px;
}

.covert-age-gate__actions .covert-button {
  width: 100%;
  justify-content: center;
}

.covert-age-gate__actions .covert-button--ghost {
  background: transparent !important;
  color: var(--covert-text-primary) !important;
  border-color: #555 !important;
}

.covert-age-gate__disclaimer {
  font-size: 10px;
  color: var(--covert-text-secondary);
  opacity: 0.5;
  margin: 0;
  line-height: 1.5;
}

body:has(.covert-age-gate) {
  overflow: hidden;
}

/* ── End Age Gate ────────────────────────────────────────────────── */

.covert-border-b,
.covert-border-t {
  position: relative;
}

.covert-border-b::after,
.covert-border-t::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: var(--covert-border);
}

.covert-border-b::after {
  bottom: 0;
}

.covert-border-t::before {
  top: 0;
}

/* ── Container ───────────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--covert-container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.covert-footer__grid,
.covert-footer__legal {
  width: 100%;
  max-width: var(--covert-container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Announcement Bar ────────────────────────────────────────────── */

.announcement-bar {
  background: var(--covert-bg-raised);
  border-bottom: 1px solid var(--covert-border);
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
  max-height: 38px;
  transition: max-height 0.25s ease;
}

.site-header.scrolled .announcement-bar {
  max-height: 0;
}

.announcement-bar__track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: marquee 91s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.announcement-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--covert-text-secondary);
  flex-shrink: 0;
}

.announcement-bar__item svg { color: var(--covert-gold); flex-shrink: 0; }

/* ── Site Header ─────────────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  transition: border-color 0.2s ease;
  border-bottom: 1px solid transparent;
}

/* Holds vertical space equal to the fixed header height so page content
   is never obscured. Height is written by JS and updated on resize / scroll. */
#site-header-placeholder {
  flex-shrink: 0;
}

.site-header.scrolled { border-bottom-color: var(--covert-border); }

.header__inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 2rem;
}

.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.header__logo .custom-logo-link,
.header__logo .header__logo-link {
  display: flex;
  align-items: center;
}

.header__logo img,
.header__logo .custom-logo-link img { max-height: 44px; max-width: 240px; width: auto; height: auto; }

.header__logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  color: var(--covert-gold);
}

.header__nav { flex: 1; display: flex; justify-content: center; }

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 3px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-list > li > a {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--covert-text-secondary);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.header__nav-list > li > a:hover,
.header__nav-list > li:hover > a,
.header__nav-list > li.current-menu-item > a {
  color: var(--covert-text-primary);
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.05);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header__search-btn,
.header__cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--covert-text-secondary);
  transition: color 0.2s ease, background 0.2s ease;
}

.header__search-btn:hover,
.header__cart-btn:hover { color: var(--covert-text-primary); background: var(--covert-bg-raised); }

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--covert-gold);
  color: #000;
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

.cart-count[data-count="0"] { display: none; }

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
  color: var(--covert-text-primary);
  transition: background 0.2s ease;
}

.header__hamburger:hover { background: var(--covert-bg-raised); }

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── Trust Bar ───────────────────────────────────────────────────── */

.header__trust-bar {
  background: var(--covert-bg-raised);
  border-top: 1px solid var(--covert-border-strong);
}

.header__trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  height: 36px;
}

.header__trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--covert-text-secondary);
  text-transform: uppercase;
}

.header__trust-bar svg { color: var(--covert-gold); }

/* ── Mobile Drawer ───────────────────────────────────────────────── */

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 0.3s;
}

.mobile-drawer.is-open {
  pointer-events: all;
  visibility: visible;
  transition-delay: 0s;
}

.mobile-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-drawer.is-open .mobile-drawer__overlay { opacity: 1; }

.mobile-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: var(--covert-bg-raised);
  border-right: 1px solid var(--covert-border);
  padding: 2rem 1.5rem;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }

.mobile-drawer__close {
  align-self: flex-end;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--covert-text-secondary);
  margin-bottom: 1rem;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-drawer__close:hover { color: var(--covert-text-primary); background: var(--covert-bg-muted); }

.mobile-drawer__nav-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-drawer__nav-list li a {
  display: block;
  padding: 0.875rem 0;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--covert-text-secondary);
  border-bottom: 1px solid var(--covert-border-strong);
  transition: color 0.2s ease;
}

.mobile-drawer__nav-list li a:hover { color: var(--covert-gold); }
.mobile-drawer__cart-link { margin-top: 1.5rem; }

/* ── Search Overlay ──────────────────────────────────────────────── */

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: flex-start;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}

.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease;
}

.search-overlay__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-overlay__form { display: flex; flex: 1; gap: 0.75rem; }

.search-overlay__input {
  flex: 1;
  background: var(--covert-bg-raised);
  border: 1px solid var(--covert-border);
  border-radius: 100px;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  color: var(--covert-text-primary);
  outline: none;
  transition: border-color 0.2s ease;
}

.search-overlay__input:focus { border-color: var(--covert-gold); }
.search-overlay__input::placeholder { color: var(--covert-text-muted); }

.search-overlay__submit {
  background: var(--covert-gold);
  color: #000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.search-overlay__submit:hover { background: var(--covert-gold-light); }

.search-overlay__close {
  position: absolute;
  top: -70px;
  right: 0;
  color: var(--covert-text-secondary);
  transition: color 0.2s ease;
}

.search-overlay__close:hover { color: var(--covert-text-primary); }

/* ── Old button aliases for drawer/search ────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 100px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--gold {
  background: var(--covert-gold);
  color: #000;
}

.btn--gold:hover { background: var(--covert-gold-light); }

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.covert-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.covert-hero__copy {
  display: grid;
  align-content: start;
  padding: 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 1 / 1;
}

.covert-eyebrow {
  margin: 0 0 16px;
  color: var(--covert-gold);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.covert-hero h1,
.covert-panel h2,
.covert-entry__title,
.woocommerce-products-header__title.page-title {
  margin: 0 0 18px;
  color: var(--covert-text-primary);
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.covert-hero h1 span,
.covert-cash__copy h2 span {
  display: block;
}

.covert-panel h2,
.covert-entry__title,
.woocommerce-products-header__title.page-title {
  font-size: clamp(28px, 3vw, 44px);
}

.covert-lead {
  max-width: 38rem;
  margin: 0 0 32px;
  color: var(--covert-text-secondary);
  font-size: 16px;
}

.covert-hero__shipping {
  margin: 0 0 28px;
  color: var(--covert-text-muted);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.covert-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.covert-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wc-block-cart__submit-container .wc-block-components-button,
.wc-block-cart__submit-container a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s;
}

.covert-button--small {
  min-height: 38px;
  padding: 0 16px;
  font-size: 12px;
}

.covert-button--primary,
button.single_add_to_cart_button.button.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce button[name="apply_coupon"],
.woocommerce .wc-proceed-to-checkout a.checkout-button,
.wc-block-cart__submit-container .wc-block-components-button,
.wc-block-cart__submit-container a {
  background: var(--covert-gold) !important;
  color: #0d0d0d !important;
  border-color: transparent !important;
}

.wc-block-cart__submit-container .wc-block-components-button,
.wc-block-cart__submit-container a {
  width: 100%;
  justify-content: center;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  opacity: 0.88;
  color: #0d0d0d;
}

.covert-button--ghost {
  border-color: #666666;
  color: var(--covert-text-primary);
}

.covert-button--sold-out {
  background: #0d0d0d;
  border-color: #2a2a2a;
  color: var(--covert-text-secondary);
  cursor: not-allowed;
  pointer-events: none;
  position: relative;
  overflow: hidden;
}
.covert-button--sold-out::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: var(--covert-gold);
  transform: translateY(-50%);
}

.covert-hero__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--covert-bg-void);
  aspect-ratio: 1 / 1;
}

.covert-hero__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

.covert-trust {
  padding: 20px 60px 18px;
}

.covert-trust__grid,
.covert-content-grid {
  display: grid;
  gap: 20px;
}

.covert-trust__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.covert-trust__grid .covert-trust__item,
.covert-panel,
.covert-entry,
.woocommerce ul.products li.product,
.woocommerce div.product,
.woocommerce-cart .cart-collaterals,
.woocommerce-checkout form.checkout {
  background: var(--covert-bg-raised);
  border: 1px solid #1c1c1c;
}

.covert-trust__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 16px;
}

.covert-trust__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #222222;
  background: var(--covert-bg-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--covert-gold);
  flex-shrink: 0;
}

.covert-trust__icon svg {
  width: 18px;
  height: 18px;
}

.covert-trust__copy {
  display: grid;
  gap: 2px;
}

.covert-trust__grid strong {
  color: var(--covert-text-primary);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.covert-trust__grid span {
  color: var(--covert-text-muted);
  font-size: 12px;
}

.covert-content-grid {
  grid-template-columns: 1fr 1fr;
  padding: 32px 0 56px;
}

.covert-section-head {
  padding: 10px 0 10px;
}

.covert-section-head--center {
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.covert-section-head--center .covert-section-number,
.covert-section-head--center .covert-eyebrow {
  width: 100%;
  text-align: left;
}

.covert-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: 16px;
}

.covert-panel--link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2.75 / 1;
  min-height: 0;
  padding: 18px 18px 14px;
}

.covert-panel--link h3,
.covert-step-grid h3,
.covert-enlistment__body h3 {
  margin: 0;
  color: var(--covert-text-primary);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.covert-panel--link .covert-eyebrow {
  position: absolute;
  top: 12px;
  left: 14px;
  margin: 0;
}

.covert-panel--link h3 {
  text-align: center;
}

.covert-shipping {
  padding: 24px 0 34px;
}

.covert-shipping__tool {
  max-width: 700px;
  margin: 0 auto;
}

.covert-shipping__controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.covert-shipping__select {
  min-width: 180px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid #666666;
  border-radius: 6px;
  background: var(--covert-bg-muted);
  color: var(--covert-text-primary);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.covert-shipping__result {
  margin: 24px auto 0;
  width: fit-content;
  padding: 16px 24px;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.covert-shipping__result.is-clear {
  border: 1px solid #1e5c1e;
  background: #0d2b0d;
  color: #4caf50;
}

.covert-shipping__result.is-blocked {
  border: 1px solid #5c1e1e;
  background: #2b0d0d;
  color: #f44336;
}

.covert-state-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
}

.covert-state-grid__item {
  width: 38px;
  height: 28px;
  border: 1px solid var(--covert-border);
  border-radius: 4px;
  background: var(--covert-bg-surface);
  color: var(--covert-text-secondary);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.035em;
  cursor: pointer;
}

.covert-state-grid__item.is-eligible {
  border-color: var(--covert-border-strong);
  color: var(--covert-text-secondary);
  background: var(--covert-bg-muted);
}

.covert-state-grid__item.is-selected {
  border-color: var(--covert-gold);
  background: var(--covert-gold);
  color: #0d0d0d;
}

.covert-story,
.covert-cash {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.covert-story__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-left: 1px solid var(--covert-border);
  background: #080808;
  min-height: 560px;
}

.covert-story__media img {
  width: 100%;
  max-width: 360px;
  object-fit: contain;
}

.covert-story__copy,
.covert-cash__copy,
.covert-cash__card {
  padding: 36px 34px 28px;
  min-height: 500px;
}

.covert-story__body {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.covert-story__body p,
.covert-enlistment__body p {
  margin: 0;
  color: var(--covert-text-secondary);
  font-size: 14px;
}

.covert-story__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--covert-border);
  border-left: 1px solid var(--covert-border);
}

.covert-story__stats div {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-right: 1px solid var(--covert-border);
  border-bottom: 1px solid var(--covert-border);
  background: var(--covert-bg-raised);
}

.covert-story__stats strong {
  color: var(--covert-gold);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.covert-story__stats span,
.covert-story__tags span {
  color: var(--covert-text-secondary);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.covert-story__tags {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.covert-story__tags span {
  padding: 4px 10px;
  border: 1px solid #222222;
  border-radius: 4px;
  background: var(--covert-bg-muted);
}

.covert-story__tags .is-ghost {
  border: 0;
  background: transparent;
  color: var(--covert-text-secondary);
}

.covert-rule-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.covert-rule-head__line {
  width: 28px;
  height: 1px;
  background: var(--covert-gold);
  flex-shrink: 0;
}

.covert-cash__copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 36px;
  border-right: 1px solid #222222;
  background: var(--covert-bg-base);
}

.covert-story__copy {
  padding: 36px;
}

.covert-cash__copy h2 {
  margin: 0;
  line-height: 0.92;
}

.covert-cash__copy h2 .is-gold {
  color: var(--covert-gold);
}

.covert-tier-table {
  overflow: hidden;
  border: 1px solid var(--covert-border);
  border-radius: 3px;
}

.covert-tier-table__head,
.covert-tier-table__row {
  display: grid;
  grid-template-columns: 40px 1fr 72px 1fr;
  gap: 14px;
  padding: 9px 12px;
  align-items: start;
}

.covert-tier-table__head {
  background: var(--covert-bg-base);
  border-bottom: 1px solid var(--covert-border);
}

.covert-tier-table__head span,
.covert-step-grid p,
.covert-enlistment__head span,
.covert-enlistment__meta small,
.covert-stamp small {
  color: var(--covert-text-secondary);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.covert-tier-table__row {
  border-bottom: 1px solid #161616;
}

.covert-tier-table__row:last-child {
  border-bottom: 0;
}

.covert-tier-table__row strong,
.covert-enlistment__meta strong,
.covert-stamp strong {
  color: var(--covert-text-primary);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.covert-tier-table__row span {
  color: var(--covert-text-secondary);
  font-size: 12px;
}

.covert-designation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 18px;
  border: 1px solid rgba(200, 148, 26, 0.25);
  border-radius: 1px;
  color: var(--covert-gold) !important;
  font-family: var(--font-ui);
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.covert-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: -2px;
}

.covert-step-grid div {
  position: relative;
  padding: 0 14px;
}

.covert-step-grid div:last-child {
  padding-right: 18px;
}

.covert-step-grid div:first-child {
  padding-left: 0;
}

.covert-step-grid div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: var(--covert-border);
}

.covert-step-grid span {
  color: var(--covert-text-secondary);
  font-size: 11px;
  line-height: 1.45;
}

.covert-cash__card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

.covert-enlistment {
  width: 100%;
  max-width: 500px;
  max-height: 500px;
  aspect-ratio: 1 / 1;
  border: 1px solid #242424;
  border-radius: 3px;
  overflow: hidden;
  background: var(--covert-bg-raised);
}

.covert-enlistment__head,
.covert-enlistment__body,
.covert-enlistment__foot {
  padding-left: 20px;
  padding-right: 20px;
}

.covert-enlistment__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--covert-border);
  background: #141414;
}

.covert-enlistment__head .is-open {
  color: var(--covert-gold);
}

.covert-enlistment__body {
  display: grid;
  gap: 14px;
  padding-top: 16px;
  padding-bottom: 10px;
  background: #080808;
}

.covert-enlistment__account {
  font-size: 13px;
}

.covert-enlistment__list {
  margin: 0;
  padding-left: 18px;
  color: var(--covert-text-secondary);
  font-size: 12px;
  line-height: 1.6;
}

.covert-enlistment__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--covert-border);
}

.covert-enlistment__meta div {
  display: grid;
  gap: 2px;
}

.covert-stamp {
  padding: 3px 7px;
  border: 1px solid #1e1e1e;
  border-radius: 1px;
  text-align: center;
}

.covert-enlistment__meta .is-green {
  color: #1e3a28;
}

.covert-enlistment__foot {
  padding-top: 8px;
  padding-bottom: 10px;
  border-top: 1px solid #141414;
}

.covert-enlistment__foot p {
  margin: 0;
  color: var(--covert-text-secondary);
  font-size: 12px;
}

.covert-panel,
.covert-entry {
  padding: 32px;
}

.covert-content {
  padding: 40px 0 64px;
}

.covert-entry__content > :first-child {
  margin-top: 0;
}

.covert-entry__content > :last-child {
  margin-bottom: 0;
}

.covert-entry__content h2 {
  margin: 32px 0 10px;
  color: var(--covert-text-primary);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.covert-entry__content h3 {
  margin: 20px 0 8px;
  color: var(--covert-text-secondary);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.covert-entry__content p,
.covert-entry__content li {
  color: var(--covert-text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

.covert-entry__content ul {
  margin: 8px 0 16px;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.covert-entry__content li strong {
  color: var(--covert-text-primary);
  font-weight: 600;
}

.covert-footer {
  margin-top: 0;
  background: #0a0a0a;
}

.covert-footer__grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 34px 24px 24px;
}

.covert-footer__grid > :not(.covert-footer__brand) {
  justify-self: center;
  width: max-content;
}

.covert-footer__brand-lockup {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 12px;
}

.covert-footer__brand-lockup img {
  width: auto;
  height: 136px;
  object-fit: contain;
}

.covert-footer__brand-meta {
  display: flex;
  align-items: center;
  min-height: 100%;
}

.covert-footer__brand-copy {
  display: grid;
  align-content: start;
  gap: 10px;
}

.covert-footer__brand-stack {
  display: grid;
  gap: 0;
  flex-shrink: 0;
}

.covert-footer__brand-lockup strong {
  display: block;
  color: var(--covert-text-primary);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.covert-footer__brand-lockup span {
  display: block;
  color: var(--covert-gold);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1;
  text-transform: uppercase;
}

.covert-footer__address {
  margin: 0;
  color: var(--covert-text-primary);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.covert-footer__address a {
  color: var(--covert-gold);
  font-size: 17px;
}

.covert-footer__socials {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 12px;
}

.covert-footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid #222222;
  background: var(--covert-bg-muted);
  color: var(--covert-text-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.covert-footer__socials svg {
  width: 14px;
  height: 14px;
}

.covert-footer h2 {
  --covert-underline-offset: 8px;
  margin: 0 0 14px;
  position: relative;
  display: block;
  color: var(--covert-text-primary);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.covert-footer h2::after {
  content: none;
}

.covert-label-shell {
  display: inline-flex;
  position: relative;
}

.covert-label-edge {
  display: inline-block;
}

.covert-label-middle {
  position: relative;
  display: inline-block;
}

.covert-label-middle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--covert-underline-offset, 6px) * -1);
  height: 1px;
  background: var(--covert-gold);
}

.covert-menu--primary .covert-label-middle::after {
  right: 0.08em;
}

.covert-footer h2 .covert-label-middle::after {
  right: 0.22em;
}

.covert-menu--footer {
  display: grid;
  gap: 5px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.covert-menu--footer a {
  color: var(--covert-text-secondary);
  font-size: 13px;
  line-height: 1;
}

.covert-footer__legal {
  padding: 0 24px 20px;
  color: var(--covert-text-secondary);
  font-size: 11px;
  border-top: 1px solid #141414;
  text-align: center;
}

.covert-footer__meta {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding-top: 12px;
}

.covert-footer__powered {
  display: flex;
  align-items: center;
  width: fit-content;
  min-height: 150px;
  gap: 0;
  flex-wrap: wrap;
  font-size: 13px;
}

.covert-footer__powered img {
  height: 43px;
  width: auto;
}

.covert-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-height: 34px;
  margin-top: 0;
  padding: 1px 0;
}

.covert-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid var(--covert-border-strong);
  border-radius: 999px;
  color: var(--covert-text-secondary);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.covert-chip.is-active,
.covert-chip:hover {
  border-color: var(--covert-gold);
  color: var(--covert-text-primary);
}

.covert-chip--strain {
  border-color: color-mix(in srgb, var(--covert-accent) 52%, transparent);
  background: color-mix(in srgb, var(--covert-accent) 12%, transparent);
  color: var(--covert-accent);
}

.covert-chip--strain.is-active,
.covert-chip--strain:hover {
  border-color: var(--covert-accent);
  color: var(--covert-accent);
}

.covert-chip--subcat {
  border-color: color-mix(in srgb, #cccccc 52%, transparent);
  background: color-mix(in srgb, #cccccc 10%, transparent);
  color: #cccccc;
}

.covert-chip--subcat.is-active,
.covert-chip--subcat:hover {
  border-color: #cccccc;
  color: #cccccc;
}

.covert-empty-state {
  padding: 28px 24px;
  border: 1px solid var(--covert-border);
  background: var(--covert-bg-raised);
  color: var(--covert-text-secondary);
}

.covert-shell--shop {
  padding: 20px 0 48px;
}

.covert-entry--shop-header {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
  padding: 0 16px;
}

.woocommerce-result-count,
.woocommerce-breadcrumb,
.price,
.woocommerce-Price-amount,
.stock,
.posted_in,
.sku_wrapper,
.product_meta,
.woocommerce-tabs,
.woocommerce-message,
.woocommerce-info,
  .woocommerce-error {
  color: var(--covert-text-secondary);
}

/* product_meta: flex column so we can reorder SKU above Category */
.product_meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.product_meta .sku_wrapper {
  order: 1;
}

.product_meta .posted_in {
  order: 2;
}

/* Hide the stock paragraph from the single product summary — stock is shown in the stats row */
.covert-single-product__summary p.stock {
  display: none;
}

.woocommerce-breadcrumb {
  display: none;
}

.covert-entry--shop-header .woocommerce-products-header__title.page-title {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1;
}

.covert-entry--shop-header .covert-section-number,
.covert-entry--shop-header .covert-eyebrow,
.covert-entry--shop-header .covert-lead {
  margin-bottom: 0;
}

.covert-shop-kicker {
  display: grid;
  justify-items: start;
  gap: 2px;
  min-height: 0;
  align-content: start;
}

.covert-shop-kicker .covert-section-number {
  line-height: 1;
}

.covert-shop-kicker .covert-eyebrow {
  line-height: 1;
}

.covert-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
  min-height: 34px;
  margin-top: 0;
  padding: 1px 0 4px;
  border-bottom: 1px solid var(--covert-border);
}

.covert-shop-toolbar__controls,
.covert-shop-toolbar .woocommerce-ordering {
  float: none;
  margin: 0;
  margin-left: auto;
}

.covert-shop-toolbar .woocommerce-ordering select {
  min-width: 180px;
  min-height: 32px;
  padding: 0 34px 0 12px;
  border: 1px solid #5a5a5a;
  border-radius: 4px;
  background: var(--covert-bg-base);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath d='M1 1.25 5 5.25l4-4' fill='none' stroke='%23cccccc' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 10px 7px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.035em;
  color: var(--covert-text-primary);
  line-height: 1.2;
  text-transform: uppercase;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.covert-shop-toolbar .woocommerce-ordering select:hover {
  border-color: #787878;
}

.covert-shop-toolbar .woocommerce-ordering select:focus {
  border-color: var(--covert-gold);
  box-shadow: 0 0 0 1px rgba(200, 148, 26, 0.28);
}

.woocommerce ul.products,
.covert-product-new-block ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.covert-product-new-block ul.products::before,
.covert-product-new-block ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.covert-product-new-block ul.products li.product {
  display: flex;
  flex-direction: column;
  width: auto;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

/* Hide the "View cart" link WooCommerce injects after AJAX add-to-cart */
.woocommerce ul.products li.product a.added_to_cart,
.covert-product-new-block ul.products li.product a.added_to_cart,
.woocommerce a.added_to_cart.wc-forward { display: none !important; }

.covert-product-card__media {
  position: relative;
  display: block;
  padding: 16px 16px 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.22)),
    var(--covert-bg-base);
}

.covert-product-card__media-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(200, 148, 26, 0.1);
  pointer-events: none;
}

.woocommerce ul.products li.product a img,
.covert-product-card__media img {
  margin-bottom: 0;
  background: var(--covert-bg-void);
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.product_title {
  color: var(--covert-text-primary);
  font-family: var(--font-ui);
  font-weight: 800;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: 0.01em;
}

.covert-product-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px 16px;
}

.covert-product-card__body::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--covert-gold);
}

.covert-product-card__top,
.covert-product-card__meta,
.covert-product-card__footer,
.covert-product-card__actions,
.covert-product-card__badges,
.covert-product-card__top-right,
.covert-single-product__eyebrow-row,
.covert-single-product__stats {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Top row: never let badges + kind wrap onto a second line */
.covert-product-card__top {
  flex-wrap: nowrap;
  justify-content: space-between;
  overflow: hidden;
}

/* Badges (left side): clip rather than wrap */
.covert-product-card__badges {
  flex-wrap: nowrap;
  overflow: hidden;
  min-width: 0;
  flex-shrink: 1;
}

/* Top-right chips: never shrink; they sit at the edge */
.covert-product-card__top-right {
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.covert-product-card__footer {
  justify-content: space-between;
}

/* Stock anchored directly above price — meta takes the auto margin */
.covert-product-card__meta {
  margin-top: auto;
}

.covert-product-card__pill,
.covert-product-card__size,
.covert-product-card__kind {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.covert-product-card__pill {
  border: 1px solid rgba(200, 148, 26, 0.28);
  color: var(--covert-gold);
}

.covert-product-card__size {
  border: 1px solid rgba(166, 166, 166, 0.26);
  background: rgba(166, 166, 166, 0.08);
  color: var(--covert-text-secondary);
}

.covert-product-card__kind {
  border: 1px solid color-mix(in srgb, var(--covert-accent) 52%, transparent);
  background: color-mix(in srgb, var(--covert-accent) 12%, transparent);
  color: var(--covert-accent);
}

.covert-product-card__kind.is-snow-cap {
  border-color: rgba(204, 204, 204, 0.52);
  background: rgba(204, 204, 204, 0.12);
  color: #cccccc;
}

.covert-product-card__title {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(16px, 1vw, 18px);
  font-weight: 800;
  line-height: 1.18;
  text-transform: none;
  letter-spacing: 0.01em;
}

.covert-product-card__subtitle {
  margin: -4px 0 0;
  color: var(--covert-text-primary);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.covert-product-card__tagline,
.covert-single-product__coa p {
  margin: 0;
  color: var(--covert-text-secondary);
  font-size: 11px;
  line-height: 1.5;
}

.covert-product-card__tagline {
  display: grid;
  gap: 3px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
  text-transform: none;
}

.covert-product-card__tagline span {
  display: block;
}

.covert-product-card__meta {
  color: var(--covert-text-muted);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.covert-product-card__actions {
  justify-content: flex-end;
  gap: 8px;
}

.covert-product-card__footer .price {
  color: var(--covert-text-primary);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.covert-product-card .covert-button--small {
  min-height: 34px;
  padding: 0 12px;
  font-size: 10px;
  letter-spacing: 0.035em;
}

.covert-product-card .covert-button--view {
  padding: 0 14px;
}

.covert-single-product__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.covert-single-product__gallery .woocommerce-product-gallery {
  margin-bottom: 0;
}

.covert-single-product__summary {
  display: grid;
  align-content: start;
  gap: 10px;
}

.covert-single-product__summary .product_title {
  margin-bottom: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
}

.covert-single-product__title-meta {
  margin: -2px 0 10px;
  color: var(--covert-muted);
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-transform: none;
}

.covert-single-product__summary .price {
  font-size: 22px;
  color: var(--covert-text-primary);
  margin: 0;
  padding: 0;
}

.covert-single-product__summary .woocommerce-product-rating {
  margin: 0;
}

.covert-single-product__summary .woocommerce-product-details__short-description {
  margin: 0;
}

.covert-single-product__summary .woocommerce-product-details__short-description p,
.covert-single-product__summary .woocommerce-product-details__short-description ul {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--covert-text-secondary);
}

.covert-single-product__summary .woocommerce-product-details__short-description ul {
  padding-left: 16px;
}

.covert-single-product__stats {
  padding: 10px 0;
  border-top: 1px solid var(--covert-border);
  border-bottom: 1px solid var(--covert-border);
}

.covert-single-product__stats div {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
}

.covert-single-product__stats strong,
.covert-lab-table th {
  color: var(--covert-text-primary);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.covert-single-product__coa {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--covert-border);
  background: rgba(255, 255, 255, 0.02);
}

.covert-single-product__after {
  margin-top: 28px;
}

/* ── WooCommerce star ratings ────────────────────────────────────────────── */

.star-rating {
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 5.4em;
  height: 1em;
  line-height: 1;
  font-size: 14px;
  /* Unicode stars - no icon font dependency */
  font-family: inherit;
}

.star-rating::before {
  content: "★★★★★";
  position: absolute;
  top: 0;
  left: 0;
  color: #3a3a3a;
  letter-spacing: 0.08em;
}

.star-rating span {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 1.5em;
  white-space: nowrap;
}

.star-rating span::before {
  content: "★★★★★";
  position: absolute;
  top: 0;
  left: 0;
  color: #c8941a;
  letter-spacing: 0.08em;
}

.woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: var(--covert-text-muted);
}

.woocommerce-product-rating .star-rating {
  font-size: 20px;
  width: 5.4em;
}

.woocommerce-review-link {
  color: var(--covert-text-muted);
  text-decoration: none;
  font-size: 15px;
}

.woocommerce-review-link:hover {
  color: var(--covert-text-secondary);
}

/* Review count in the tab label */
.woocommerce-tabs ul.wc-tabs li.reviews_tab a::after {
  content: "";
}

/* ── WooCommerce product gallery ─────────────────────────────────────────── */

.woocommerce-product-gallery {
  position: relative;
  margin: 0;
  background: transparent;
}

.woocommerce-product-gallery__wrapper {
  margin: 0;
  padding: 0;
}

.woocommerce-product-gallery__image {
  background: #0d0d0d;
  border: 1px solid var(--covert-border);
}

.woocommerce-product-gallery__image a,
.woocommerce-product-gallery__image img {
  display: block;
  width: 100%;
  height: auto;
}

.woocommerce-product-gallery__trigger {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #000;
  border: 1px solid var(--covert-border);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  color: var(--covert-text-secondary);
}

.woocommerce-product-gallery__trigger:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--covert-text-primary);
}

/* Thumbnails */
.flex-control-nav.flex-control-thumbs {
  display: flex;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
}

.flex-control-thumbs li {
  flex: 0 0 72px;
}

.flex-control-thumbs img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid var(--covert-border);
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.15s, border-color 0.15s;
}

.flex-control-thumbs img.flex-active,
.flex-control-thumbs img:hover {
  opacity: 1;
  border-color: var(--covert-gold);
}

/* Photoswipe / zoom overlay resets */
.pswp {
  z-index: 99999;
}

/* ── WooCommerce tabs ────────────────────────────────────────────────────── */

.woocommerce-tabs {
  margin-top: 40px;
  border-top: 1px solid var(--covert-border);
}

ul.wc-tabs {
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--covert-border);
}

ul.wc-tabs li {
  margin: 0;
}

ul.wc-tabs li a {
  display: block;
  padding: 14px 22px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--covert-text-secondary);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
}

ul.wc-tabs li a:hover {
  color: var(--covert-text-primary);
}

ul.wc-tabs li.active a {
  color: var(--covert-gold);
  border-bottom-color: var(--covert-gold);
}

.woocommerce-Tabs-panel {
  padding: 28px 0;
  display: none;
}

.woocommerce-Tabs-panel.active {
  display: block;
}

.woocommerce-Tabs-panel h2 {
  display: none;
}

/* Additional information table */
.shop_attributes {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.shop_attributes th,
.shop_attributes td {
  padding: 10px 0;
  border-bottom: 1px solid var(--covert-border);
  text-align: left;
  color: var(--covert-text-secondary);
  vertical-align: middle;
}

/* Remove paragraph margin inside table cells so label and value sit on the same baseline */
.shop_attributes td p,
.shop_attributes .woocommerce-product-attributes-item__value {
  margin: 0;
  padding: 0;
}

.shop_attributes th {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--covert-text-primary);
  width: 30%;
  padding-right: 20px;
}

/* ── WooCommerce reviews ─────────────────────────────────────────────────── */

/* Constrain the entire reviews panel to the gallery column width */
.woocommerce-Tabs-panel--reviews {
  max-width: 54%;
}

/* Comment list */
ol.commentlist {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

ol.commentlist li.comment {
  padding: 20px 0;
}

/* Avatar + text side-by-side inside the container */
ol.commentlist .comment_container {
  display: flex;
  gap: 16px;
  border-left: 1px solid var(--covert-border);
  padding-left: 16px;
}

/* Avatar */
ol.commentlist .avatar {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Comment text wrapper */
ol.commentlist .comment-text {
  flex: 1;
  min-width: 0;
}

ol.commentlist .comment-text .star-rating {
  font-size: 15px;
  margin: 0;
}

ol.commentlist .comment-text p.meta {
  margin: 0;
  font-size: 12px;
  color: var(--covert-text-muted);
}

ol.commentlist .comment-text p.meta strong {
  color: var(--covert-text-primary);
  font-size: 13px;
}

ol.commentlist .comment-text .description p {
  margin: 0;
  font-size: 14px;
  color: var(--covert-text-secondary);
  line-height: 1.6;
}

/* Review number (1.) — hide it */
ol.commentlist li > p:first-child {
  display: none;
}

/* Review form */
#review_form_wrapper {
  margin-top: 28px;
}

#review_form .comment-form-rating {
  margin-bottom: 16px;
}

#review_form .comment-form-rating label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--covert-text-secondary);
}

/* Hide the native select, show the star links instead */
#review_form .comment-form-rating select {
  display: none;
}

/* Star selector */
#review_form p.stars {
  display: flex;
  gap: 2px;
  font-size: 26px;
  line-height: 1;
  margin: 0;
}

#review_form p.stars a {
  display: inline-block;
  width: 1em;
  height: 1em;
  overflow: hidden;
  text-indent: -9999em;
  position: relative;
  text-decoration: none;
  color: transparent;
}

#review_form p.stars a::before {
  content: "★";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  text-indent: 0;
  color: #3a3a3a;
  width: 1em;
  height: 1em;
  transition: color 0.1s;
}

/* Hover: light up up-to-and-including hovered star */
#review_form p.stars:hover a::before,
#review_form p.stars a:hover ~ a::before {
  color: #3a3a3a;
}

#review_form p.stars a:hover::before,
#review_form p.stars a:hover ~ a::before {
  color: #3a3a3a;
}

#review_form p.stars:hover a::before {
  color: #c8941a;
}

#review_form p.stars a:hover ~ a::before {
  color: #3a3a3a !important;
}

/* Selected state (WooCommerce JS adds .selected + .active classes) */
#review_form p.stars.selected a.active::before,
#review_form p.stars.selected a:not(.active):not(.active ~ a)::before {
  color: #c8941a;
}

#review_form p.stars.selected a.active ~ a::before {
  color: #3a3a3a;
}

/* Comment textarea */
#review_form .comment-form-comment label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--covert-text-secondary);
}

#review_form .comment-form-comment textarea {
  width: 100%;
  min-height: 140px;
  padding: 12px 14px;
  background: var(--covert-bg-secondary);
  border: 1px solid var(--covert-border);
  color: var(--covert-text-primary);
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
  box-sizing: border-box;
}

#review_form .comment-form-comment textarea:focus {
  outline: none;
  border-color: var(--covert-gold);
}

/* Submit button */
#review_form .form-submit {
  margin-top: 16px;
}

#review_form .form-submit #submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  min-height: 46px;
  background: var(--covert-gold);
  border: none;
  color: #000;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  transition: opacity 0.15s;
}

#review_form .form-submit #submit:hover {
  opacity: 0.88;
}

/* ── Related products ────────────────────────────────────────────────────── */

.related,
.upsells {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--covert-border);
}

.related > h2,
.upsells > h2 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--covert-text-secondary);
  margin-bottom: 24px;
}

.related ul.products,
.upsells ul.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.related ul.products li.product,
.upsells ul.products li.product {
  width: calc(25% - 12px);
  min-width: 200px;
}

/* Force related/upsell cards to use the same title + tagline rules as the main grid */
.related .covert-product-card__title,
.upsells .covert-product-card__title {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(16px, 1vw, 18px);
  font-weight: 800;
  line-height: 1.18;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--covert-text-primary);
}

.related .covert-product-card__subtitle,
.upsells .covert-product-card__subtitle {
  margin: -4px 0 0;
  color: var(--covert-text-primary);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.related .covert-product-card__tagline,
.upsells .covert-product-card__tagline {
  display: grid;
  gap: 3px;
  margin: 0;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--covert-text-secondary);
  line-height: 1.45;
}

/* ── WooCommerce variation form ──────────────────────────────────────────── */

/* Push the entire variations form to the bottom of the summary grid,
   so the table sits flush on top of the add-to-cart wrap */
.covert-single-product__summary .variations_form {
  margin-top: auto;
  display: flex;
  flex-direction: column;
}

.covert-single-product__summary .variations_form .variations {
  margin-top: auto;
}

.variations_form .variations {
  width: 100%;
  border-collapse: collapse;
}

.variations_form .variations td,
.variations_form .variations th {
  padding: 0 0 12px;
  vertical-align: top;
}

.variations_form .variations th.label {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--covert-text-primary);
  padding-right: 16px;
  padding-top: 9px;
  white-space: nowrap;
  width: 1%;
  line-height: 1.2;
}

.variations_form .variations select {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  padding: 10px 36px 10px 14px;
  background: var(--covert-bg-secondary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: 1px solid var(--covert-border);
  color: var(--covert-text-primary);
  font-size: 14px;
  cursor: pointer;
}

.variations_form .variations select:focus {
  outline: none;
  border-color: var(--covert-gold);
}

/* Force option elements to be readable when the native OS dropdown opens.
   Browsers render the open list with system colors; setting both bg and color
   here ensures the text is never white-on-white or light-on-light. */
.variations_form .variations select option {
  background: #1a1a1a;
  color: var(--covert-text-primary);
}

.reset_variations {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--covert-text-secondary);
}

.woocommerce-variation-price .price {
  font-size: 22px;
  color: var(--covert-text-primary);
}

.woocommerce-variation-availability .stock {
  font-size: 13px;
  color: var(--covert-text-secondary);
}

/* Quantity + add to cart row */
.woocommerce-variation-add-to-cart,
form.cart {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.quantity input[type="number"] {
  -webkit-appearance: none;
  appearance: textfield;
  width: 68px;
  padding: 10px 12px;
  background: var(--covert-bg-secondary);
  border: 1px solid var(--covert-border);
  color: var(--covert-text-primary);
  font-size: 15px;
  text-align: center;
}

.quantity input[type="number"]:focus {
  outline: none;
  border-color: var(--covert-gold);
}

/* single_add_to_cart_button comes through as .button from WC */
.single_add_to_cart_button.button {
  flex: 1;
  padding: 12px 24px;
  background: var(--covert-gold);
  border: none;
  color: #000;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.15s;
}

.single_add_to_cart_button.button:hover {
  opacity: 0.88;
}

.single_add_to_cart_button.button.disabled,
.single_add_to_cart_button.button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ── WooCommerce notices (cart/checkout carry-over) ─────────────────────── */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 14px 18px;
  margin-bottom: 20px;
  border-left: 3px solid var(--covert-gold);
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
  list-style: none;
}

.woocommerce-error {
  border-left-color: #c0392b;
}

/* ── WooCommerce checkout & cart form fields ─────────────────────────────── */

/* All WooCommerce text-type inputs and selects */
.woocommerce .input-text,
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="number"],
.woocommerce input[type="password"],
.woocommerce textarea,
.woocommerce select,
.select2-container--default .select2-selection--single {
  width: 100%;
  padding: 11px 14px;
  background: var(--covert-bg-secondary);
  border: 1px solid var(--covert-border);
  color: var(--covert-text-primary);
  font-family: inherit;
  font-size: 14px;
  border-radius: 0;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.woocommerce select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.woocommerce .input-text:focus,
.woocommerce input[type="text"]:focus,
.woocommerce input[type="email"]:focus,
.woocommerce input[type="tel"]:focus,
.woocommerce input[type="number"]:focus,
.woocommerce input[type="password"]:focus,
.woocommerce textarea:focus,
.woocommerce select:focus {
  outline: none;
  border-color: var(--covert-gold);
}

/* Select2 (WooCommerce replaces <select> with this for country/state) */
.select2-container--default .select2-selection--single {
  height: auto;
  border-radius: 0;
  border-color: var(--covert-border);
  background: var(--covert-bg-secondary);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--covert-text-primary);
  padding: 11px 14px;
  line-height: 1.4;
  font-size: 14px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #999 transparent transparent;
}

.select2-dropdown {
  background: var(--covert-bg-secondary);
  border: 1px solid var(--covert-border);
  border-radius: 0;
}

.select2-container--default .select2-results__option {
  color: var(--covert-text-secondary);
  padding: 10px 14px;
  font-size: 14px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: var(--covert-gold);
  color: #000;
}

.select2-search--dropdown .select2-search__field {
  background: var(--covert-bg-secondary);
  border: 1px solid var(--covert-border);
  color: var(--covert-text-primary);
  padding: 8px 12px;
}

/* Form rows */
.woocommerce form .form-row {
  margin-bottom: 16px;
}

.woocommerce form .form-row label {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--covert-text-secondary);
}

.woocommerce form .form-row label abbr {
  color: var(--covert-gold);
  text-decoration: none;
}

/* Order notes textarea */
.woocommerce textarea#order_comments {
  min-height: 100px;
  resize: vertical;
}

/* Checkout layout: billing left, order review right */
.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.9fr);
  grid-template-areas:
    "customer coupon"
    "customer review-heading"
    "customer review";
  align-items: start;
  gap: 28px;
  padding: 32px;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle {
  grid-area: coupon;
  margin: 0;
}

.woocommerce-checkout #customer_details {
  grid-area: customer;
  float: none;
  width: 100%;
  display: grid;
  gap: 26px;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  float: none;
  width: 100%;
}

.woocommerce-checkout #order_review_heading {
  grid-area: review-heading;
  margin: 0;
}

.woocommerce-checkout #order_review {
  grid-area: review;
  margin-top: 0;
  padding: 24px;
  background: var(--covert-bg-base);
  border: 1px solid var(--covert-border);
  position: sticky;
  top: 112px;
}

.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
  float: none;
  width: 100%;
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields {
  display: grid;
  gap: 18px;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px 16px;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper::after,
.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper::after,
.woocommerce-checkout form .form-row::after,
.woocommerce-checkout form .form-row::before {
  content: none;
}

.woocommerce-checkout form .form-row-first,
.woocommerce-checkout form .form-row-last,
.woocommerce-checkout form .form-row-wide {
  float: none;
  clear: none;
  width: 100%;
}

.woocommerce-checkout form .form-row {
  width: 100%;
  margin: 0;
  grid-column: span 6;
}

.woocommerce-checkout #billing_first_name_field,
.woocommerce-checkout #billing_last_name_field,
.woocommerce-checkout #shipping_first_name_field,
.woocommerce-checkout #shipping_last_name_field,
.woocommerce-checkout #billing_phone_field,
.woocommerce-checkout #billing_email_field {
  grid-column: span 3;
}

.woocommerce-checkout #billing_city_field,
.woocommerce-checkout #billing_state_field,
.woocommerce-checkout #billing_postcode_field,
.woocommerce-checkout #shipping_city_field,
.woocommerce-checkout #shipping_state_field,
.woocommerce-checkout #shipping_postcode_field {
  grid-column: span 2;
}

.woocommerce-checkout #billing_country_field,
.woocommerce-checkout #shipping_country_field,
.woocommerce-checkout #billing_address_1_field,
.woocommerce-checkout #billing_address_2_field,
.woocommerce-checkout #shipping_address_1_field,
.woocommerce-checkout #shipping_address_2_field,
.woocommerce-checkout #order_comments_field {
  grid-column: 1 / -1;
}

.woocommerce-checkout .woocommerce-additional-fields {
  padding-top: 6px;
  border-top: 1px solid var(--covert-border);
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  margin: 0;
  min-height: 100%;
}

.woocommerce-checkout .woocommerce-checkout-payment {
  display: grid;
  gap: 18px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--covert-border);
  color: var(--covert-text-secondary);
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--covert-text-primary);
}

/* Section headings (Billing Details, Additional Information, Your Order) */
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3,
.woocommerce-checkout #order_review_heading {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--covert-text-secondary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--covert-border);
}

/* Payment methods list */
#payment {
  background: transparent;
  margin-top: 10px;
}

#payment ul.payment_methods {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  border-bottom: 1px solid var(--covert-border);
}

#payment ul.payment_methods li {
  padding: 14px 0;
  border-top: 1px solid var(--covert-border);
  font-size: 14px;
  color: var(--covert-text-secondary);
}

#payment ul.payment_methods li label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--covert-text-primary);
}

#payment ul.payment_methods li input[type="radio"] {
  accent-color: var(--covert-gold);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

#payment .payment_box {
  padding: 16px 0 0;
  font-size: 14px;
  color: var(--covert-text-secondary);
}

/* Card iframe wrapper (Stripe / payment gateway) */
#payment .payment_box iframe,
.wc-stripe-elements-field,
#wc-stripe-card-element,
#wc-stripe-payment-element {
  width: 100%;
  background: var(--covert-bg-secondary);
  border: 1px solid var(--covert-border);
  padding: 14px;
  box-sizing: border-box;
}

/* Place Order button */
#payment #place_order,
.woocommerce-checkout #place_order {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 14px;
  margin-top: 20px;
}

/* Coupon toggle link on checkout */
.woocommerce-checkout .woocommerce-form-coupon-toggle a,
.checkout_coupon .button {
  color: var(--covert-gold);
}

/* "Have a coupon?" notice */
.woocommerce-info.woocommerce-checkout-payment-info {
  border-left-color: var(--covert-gold);
}

@media (max-width: 1100px) {
  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "coupon"
      "customer"
      "review-heading"
      "review";
    padding: 24px;
  }

  .woocommerce-checkout #order_review {
    margin-top: 0;
    position: static;
  }
}

@media (max-width: 760px) {
  .woocommerce-checkout form.checkout {
    padding: 18px;
    gap: 22px;
  }

  .woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
  .woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
  .woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
    grid-template-columns: 1fr;
  }

  .woocommerce-checkout .woocommerce form .form-row,
  .woocommerce-checkout #billing_first_name_field,
  .woocommerce-checkout #billing_last_name_field,
  .woocommerce-checkout #shipping_first_name_field,
  .woocommerce-checkout #shipping_last_name_field,
  .woocommerce-checkout #billing_phone_field,
  .woocommerce-checkout #billing_email_field,
  .woocommerce-checkout #billing_city_field,
  .woocommerce-checkout #billing_state_field,
  .woocommerce-checkout #billing_postcode_field,
  .woocommerce-checkout #shipping_city_field,
  .woocommerce-checkout #shipping_state_field,
  .woocommerce-checkout #shipping_postcode_field {
    grid-column: span 1;
  }

  .woocommerce-checkout #order_review {
    padding: 18px;
  }
}

.covert-lab-page {
  display: grid;
  gap: 28px;
}

.covert-lab-page__header {
  display: grid;
  gap: 10px;
}

.covert-lab-page__header .covert-entry__title {
  margin-bottom: 0;
}

.covert-lab-page__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.covert-lab-page__filters {
  gap: 10px;
  padding: 0;
}

.covert-lab-page__filters .covert-chip {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.covert-lab-page__filters .covert-chip.is-active {
  background: var(--covert-gold);
  color: #0d0d0d;
}

.covert-lab-search {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: min(420px, 100%);
  padding: 0 18px;
  border: 1px solid #222222;
  border-radius: 6px;
  background: var(--covert-bg-muted);
}

.covert-lab-search__icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  color: var(--covert-text-secondary);
  flex-shrink: 0;
}

.covert-lab-search__icon svg {
  width: 18px;
  height: 18px;
}

.covert-lab-search input[type="search"] {
  min-height: 58px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--covert-text-primary);
  font-family: var(--font-ui);
  font-size: 16px;
}

.covert-lab-search input[type="search"]::placeholder {
  color: var(--covert-text-secondary);
}

.covert-lab-report-shell {
  overflow-x: auto;
  border: 1px solid var(--covert-border);
  border-radius: 8px;
  background: var(--covert-bg-base);
}

.covert-lab-report-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.covert-lab-report-table th,
.covert-lab-report-table td {
  padding: 20px 24px;
  border-bottom: 1px solid #141414;
  text-align: left;
}

.covert-lab-report-table th {
  color: var(--covert-text-secondary);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.covert-lab-report-table td {
  color: var(--covert-text-secondary);
  font-size: 13px;
}

.covert-lab-report-table tbody tr.is-alt {
  background: rgba(255, 255, 255, 0.01);
}

.covert-lab-report-table tbody tr:last-child td {
  border-bottom: 0;
}

.covert-lab-report-table__product,
.covert-lab-report-table__document {
  color: var(--covert-text-primary);
  font-family: var(--font-ui);
  text-transform: uppercase;
}

.covert-lab-report-table__product {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.covert-lab-report-table__line {
  color: var(--covert-gold);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.covert-lab-report-table__batch,
.covert-lab-report-table__tested,
.covert-lab-report-table__dash {
  color: var(--covert-text-secondary);
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.covert-lab-report-table__document {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--covert-gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.covert-lab-report-table__document svg {
  width: 14px;
  height: 14px;
}

.covert-lab-report-table__empty {
  padding: 48px 24px;
  color: var(--covert-text-secondary);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.wc-block-grid__products,
.wc-block-product-template {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: start;
  gap: 18px;
}

.wc-block-grid__product,
.wc-block-product {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  height: 100%;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 100%;
  flex: 1 1 auto;
  margin: 0 !important;
}

.wc-block-grid__product-image,
.wc-block-components-product-image {
  display: block;
  width: 100%;
  max-width: none;
  max-height: none;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
  margin: 0 !important;
}

.wc-block-grid__product-link,
.wc-block-components-product-link {
  display: grid;
  align-content: start;
  gap: 12px;
  width: 100%;
  margin-bottom: 0;
}

.wc-block-grid__product-image img,
.wc-block-components-product-image img {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  object-fit: contain;
}

.wc-block-grid__product-title,
.wc-block-components-product-name {
  margin: 0;
  width: 100%;
  color: var(--covert-text-primary);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-align: center;
  text-transform: none;
}

.covert-block-product__title {
  font-size: 20px;
}

.covert-block-product__tagline {
  display: grid;
  gap: 3px;
  margin: 0;
  width: 100%;
  color: var(--covert-text-secondary);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.covert-block-product__tagline span {
  display: block;
}

.wc-block-grid__product-price,
.wc-block-components-product-price {
  width: 100%;
  color: var(--covert-text-primary);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
}

.wc-block-cart-items .wc-block-components-product-link,
.wp-block-woocommerce-cart-order-summary-block .wc-block-components-product-link {
  display: block;
  width: auto;
}

.wc-block-cart-items .wc-block-components-product-name,
.wp-block-woocommerce-cart-order-summary-block .wc-block-components-product-name {
  width: auto;
  font-size: 14px;
  line-height: 1.3;
  text-align: left;
}

.wc-block-cart-items .covert-block-product__title,
.wp-block-woocommerce-cart-order-summary-block .covert-block-product__title {
  font-size: 14px;
}

.wc-block-cart-items .covert-block-product__tagline,
.wp-block-woocommerce-cart-order-summary-block .covert-block-product__tagline {
  width: auto;
  text-align: left;
}

.wc-block-cart-items .wc-block-components-product-price,
.wp-block-woocommerce-cart-order-summary-block .wc-block-components-product-price {
  width: auto;
  font-size: 14px;
  text-align: left;
}

.wc-block-cart-items .wc-block-components-product-price {
  display: none;
}

.wc-block-cart-items .wc-block-components-product-metadata,
.wp-block-woocommerce-cart-order-summary-block .wc-block-components-product-metadata {
  margin-top: 4px;
}

.wc-block-cart-items .wc-block-cart-item__wrap,
.wp-block-woocommerce-cart-order-summary-block .wc-block-cart-item__wrap {
  display: grid;
  gap: 6px;
}

.wc-block-cart-items .wc-block-cart-item__prices,
.wp-block-woocommerce-cart-order-summary-block .wc-block-cart-item__prices {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  margin-left: auto;
  text-align: right;
}

.wc-block-cart-items .wc-block-cart-item__prices,
.wc-block-cart-items .wc-block-components-product-price {
  display: none;
}

.covert-cart-item-subtotal {
  color: var(--covert-text-primary);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: left;
}

.wc-block-grid__product .wp-block-button,
.wc-block-product .wp-block-button {
  width: 100%;
  margin-top: auto;
  margin-bottom: 0;
  text-align: center;
}

.wc-block-grid__product .wp-block-button__link,
.wc-block-product .wp-block-button__link {
  margin-top: auto;
}

.wc-block-grid__product .wp-block-button__link,
.wc-block-product .wp-block-button__link,
.wc-block-components-product-button .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--covert-gold);
  border-radius: 6px;
  background: var(--covert-gold);
  color: #0A0A0A;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.wc-block-grid__product .wp-block-button__link:hover,
.wc-block-product .wp-block-button__link:hover,
.wc-block-components-product-button .wp-block-button__link:hover,
.wc-block-grid__product .wp-block-button__link:visited,
.wc-block-product .wp-block-button__link:visited,
.wc-block-components-product-button .wp-block-button__link:visited {
  color: #0A0A0A;
}

.woocommerce .quantity .qty,
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce textarea,
.woocommerce select {
  min-height: 44px;
  border: 1px solid var(--covert-border-strong);
  background: var(--covert-bg-base);
  color: var(--covert-text-primary);
}

/* ── Contact Page ─────────────────────────────────────────────────── */

.covert-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.covert-contact__copy {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 36px;
  border-right: 1px solid #222222;
  background: var(--covert-bg-base);
}

.covert-contact__heading {
  margin: 0;
  line-height: 0.92;
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.covert-contact__heading span {
  display: block;
  color: var(--covert-text-primary);
}

.covert-contact__heading .is-gold {
  color: var(--covert-gold);
}

.covert-contact__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #1c1c1c;
}

.covert-contact__info-cell {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-right: 1px solid #1c1c1c;
  border-bottom: 1px solid #1c1c1c;
}

.covert-contact__info-cell:nth-child(2n) {
  border-right: 0;
}

.covert-contact__info-cell:nth-last-child(-n+2) {
  border-bottom: 0;
}

.covert-contact__info-label {
  color: var(--covert-text-muted);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.covert-contact__info-value {
  color: var(--covert-text-primary);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-decoration: none;
}

.covert-contact__info-value--gold {
  color: var(--covert-gold);
}

.covert-contact__card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  background: var(--covert-bg-surface);
}

.covert-enlistment--contact {
  max-height: none;
  max-width: 100%;
  width: 100%;
  aspect-ratio: auto;
  overflow: visible;
}

/* Form */

.covert-contact-form {
  display: grid;
  gap: 14px;
}

.covert-form-field {
  display: grid;
  gap: 6px;
}

.covert-form-label {
  color: var(--covert-text-muted);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.covert-form-required {
  color: var(--covert-gold);
}

.covert-form-input,
.covert-form-textarea {
  width: 100%;
  background: var(--covert-bg-muted);
  border: 1px solid #222222;
  border-radius: 0;
  color: var(--covert-text-primary);
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.5;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
}

.covert-form-input:focus,
.covert-form-textarea:focus {
  border-color: var(--covert-gold-dim);
}

.covert-form-input::placeholder,
.covert-form-textarea::placeholder {
  color: var(--covert-text-muted);
}

.covert-form-textarea {
  resize: vertical;
  min-height: 120px;
}

.covert-button--full {
  width: 100%;
  justify-content: center;
}

.covert-contact__success {
  display: grid;
  gap: 10px;
  padding: 20px 0;
}

.covert-contact__error {
  color: #c0392b;
  font-size: 13px;
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────────── */

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1024px) {
  .covert-shell,
  .container,
  .covert-footer__grid,
  .covert-footer__legal {
    width: 100%;
    box-sizing: border-box;
    padding-left: 24px;
    padding-right: 24px;
  }

  .covert-trust__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .covert-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .woocommerce ul.products,
  .covert-product-new-block ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .covert-single-product__grid {
    grid-template-columns: 1fr;
  }

  .covert-story,
  .covert-cash,
  .covert-contact {
    grid-template-columns: 1fr;
  }

  .covert-contact__copy {
    border-right: 0;
    border-bottom: 1px solid var(--covert-border);
  }

  .covert-story__media,
  .covert-cash__copy {
    border-right: 0;
    border-bottom: 1px solid var(--covert-border);
  }
}

@media (max-width: 900px) {
  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .header__logo img,
  .header__logo .custom-logo-link img {
    max-height: 42px;
  }

  .header__trust-bar span:last-child {
    display: none;
  }

  .header__trust-bar .container {
    gap: 1rem;
    font-size: 0.65rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .covert-footer__grid {
    grid-template-columns: 1fr;
  }

  .covert-shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .covert-shop-toolbar .woocommerce-ordering,
  .covert-shop-toolbar .woocommerce-ordering select {
    width: 100%;
    min-width: 0;
  }

  .covert-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 0;
  }

  .covert-step-grid div {
    padding: 14px 14px 16px;
    border: 1px solid var(--covert-border);
    background: rgba(255, 255, 255, 0.01);
  }

  .covert-step-grid div:first-child,
  .covert-step-grid div:last-child {
    padding-left: 14px;
    padding-right: 14px;
  }

  .covert-step-grid div::after {
    content: none;
  }

  .covert-step-grid div:last-child {
    border-bottom: 1px solid var(--covert-border);
  }

  .covert-step-grid h3 {
    font-size: 18px;
    line-height: 1.1;
  }

  .covert-step-grid span {
    font-size: 10px;
    line-height: 1.45;
  }
}

@media (max-width: 640px) {
  .covert-shell,
  .covert-header__inner,
  .covert-footer__grid,
  .covert-footer__legal {
    padding-left: 16px;
    padding-right: 16px;
  }

  .covert-hero {
    grid-template-columns: 1fr;
  }

  .covert-hero__copy {
    padding: 30px 20px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    aspect-ratio: auto;
  }

  .covert-hero__media {
    padding: 0;
    min-height: 320px;
  }

  .covert-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .covert-hero .covert-actions {
    justify-content: center;
  }

  .covert-hero .covert-actions .covert-button {
    min-width: 148px;
  }

  .covert-trust__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .covert-trust__item {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    padding: 14px 12px;
  }

  .covert-trust__icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
  }

  .covert-trust__icon svg {
    width: 14px;
    height: 14px;
  }

  .covert-trust__copy {
    gap: 4px;
  }

  .covert-trust__grid strong {
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: 0.08em;
  }

  .covert-trust__grid span {
    font-size: 11px;
    line-height: 1.45;
  }

  .woocommerce ul.products,
  .covert-product-new-block ul.products {
    grid-template-columns: 1fr;
  }

  .covert-entry--shop-header {
    gap: 10px;
    padding: 18px 14px 16px;
  }

  .covert-card-grid,
  .covert-story__stats {
    grid-template-columns: 1fr;
  }

  .covert-panel,
  .covert-entry {
    padding: 24px 20px;
  }

  .covert-story__copy,
  .covert-cash__copy,
  .covert-cash__card {
    padding: 28px 18px 22px;
  }

  .covert-story__media,
  .covert-contact__card {
    padding: 24px 18px;
    min-height: 0;
  }

  .covert-story__media {
    display: none;
  }

  .covert-story__media img {
    max-width: 280px;
  }

  .covert-cash__card {
    padding-left: 0;
    padding-right: 0;
  }

  .covert-enlistment {
    max-height: none;
    aspect-ratio: auto;
  }

  .covert-shipping__controls {
    flex-direction: column;
    align-items: stretch;
  }

  .covert-shipping__select,
  .covert-shipping__controls .covert-button {
    width: 100%;
  }

  .covert-shipping__result {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    text-align: center;
  }

  .covert-story__stats,
  .covert-contact__info {
    grid-template-columns: 1fr;
  }

  .covert-story__stats {
    display: none;
  }

  .covert-contact__info-cell,
  .covert-contact__info-cell:nth-child(2n) {
    border-right: 0;
  }

  .covert-contact__info-cell:nth-last-child(-n+2) {
    border-bottom: 1px solid #1c1c1c;
  }

  .covert-contact__info-cell:last-child {
    border-bottom: 0;
  }

  .covert-tier-table__head,
  .covert-tier-table__row {
    grid-template-columns: 32px 1fr;
  }

  .covert-tier-table__head span:nth-child(3),
  .covert-tier-table__head span:nth-child(4),
  .covert-tier-table__row span:nth-child(3),
  .covert-tier-table__row span:nth-child(4) {
    grid-column: 2;
  }

  .covert-enlistment__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .covert-product-card__top {
    gap: 10px;
  }

  .covert-product-card__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .covert-product-card__footer,
  .covert-product-card__actions {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .covert-product-card__actions {
    width: 100%;
  }

  .covert-product-card__actions .covert-button {
    flex: 1 1 auto;
  }

  .covert-single-product__eyebrow-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .covert-single-product__summary .product_title {
    font-size: clamp(24px, 9vw, 34px);
  }

  .covert-single-product__title-meta {
    font-size: 11px;
    line-height: 1.5;
  }

  .covert-single-product__stats div {
    justify-content: space-between;
  }

  .variations_form .variations,
  .variations_form .variations tbody,
  .variations_form .variations tr,
  .variations_form .variations th,
  .variations_form .variations td {
    display: block;
    width: 100%;
  }

  .variations_form .variations tr {
    padding-bottom: 10px;
  }

  .variations_form .variations th.label {
    padding-bottom: 6px;
  }

  .woocommerce-variation-add-to-cart,
  form.cart {
    align-items: stretch;
  }

  .quantity,
  .quantity input[type="number"],
  .single_add_to_cart_button.button {
    width: 100%;
  }

  .covert-lab-page__filters .covert-chip {
    min-height: 40px;
    padding: 0 16px;
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .covert-lab-report-shell {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .covert-lab-report-table {
    min-width: 620px;
  }

  .covert-lab-page__toolbar {
    align-items: stretch;
  }

  .covert-lab-search {
    width: 100%;
    min-width: 0;
  }

  .covert-footer__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 20px 24px;
    padding-top: 22px;
    padding-bottom: 16px;
  }

  .covert-footer__brand {
    grid-column: 1;
    grid-row: 1 / span 3;
    align-self: start;
  }

  .covert-footer__grid > :not(.covert-footer__brand) {
    grid-column: 2;
    justify-self: start;
    width: 100%;
  }

  .covert-footer__brand-lockup {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 8px;
  }

  .covert-footer__brand-lockup img {
    height: 88px;
  }

  .covert-footer__brand-meta {
    min-height: 0;
  }

  .covert-footer h2 {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .covert-menu--footer {
    gap: 8px;
  }

  .covert-menu--footer a {
    line-height: 1.35;
  }

  .covert-footer__socials {
    margin-top: 8px;
  }

  .covert-footer__legal {
    padding-top: 14px;
    padding-bottom: 16px;
    font-size: 10px;
  }

  .covert-footer__meta {
    gap: 6px;
    padding-top: 10px;
  }
}

@media (max-width: 480px) {
  .covert-footer__grid {
    gap: 18px 18px;
  }

  .covert-header__inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .custom-logo-link img,
  .covert-brand img {
    max-height: 42px;
  }

  .covert-cart-link {
    min-height: 36px;
    padding: 0 8px;
  }

  .covert-cart-count {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .covert-menu-toggle {
    width: 38px;
    height: 38px;
  }

  .covert-product-card__title {
    font-size: 18px;
    line-height: 1.1;
  }

  .covert-product-card__body {
    padding: 12px 14px 14px;
  }

  .covert-shop-toolbar {
    gap: 12px;
  }

  .covert-chip-row {
    gap: 6px;
  }

  .covert-footer__address {
    font-size: 13px;
  }

  .covert-footer__address a {
    font-size: 16px;
  }
}

/* ============================================================
   HOMEPAGE SECTIONS — PORTED FROM COVERT-HEMP
   ============================================================ */

/* ── Shared utilities ──────────────────────────────────────── */
.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 0.08em;
    color: var(--text);
}
.view-all-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: var(--gold); font-size: 0.875rem; font-weight: 500;
    transition: gap var(--transition);
}
.view-all-link:hover { gap: 0.7rem; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.fade-up { opacity: 0; transform: translateY(20px); animation: fadeUp 0.7s ease forwards; }
.fade-up--delay { animation-delay: 0.2s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.strain-badge {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.strain-badge--sativa  { background: rgba(34,197,94,0.2);  color: var(--sativa-color); }
.strain-badge--indica  { background: rgba(168,85,247,0.2); color: var(--indica-color); }
.strain-badge--hybrid  { background: rgba(6,182,212,0.2);  color: var(--hybrid-color); }

/* ── Hero ──────────────────────────────────────────────────── */
.site-main { background: var(--bg); }
.hero {
    display: flex; align-items: center;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(212,175,55,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}
.hero__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.25rem;
}
.hero__headline {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 6rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    display: flex; flex-direction: column;
}
.hero__body {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 420px;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero__filters { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.hero__filter-pill {
    padding: 0.4rem 1rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: all var(--transition);
}
.hero__filter-pill:hover,
.hero__filter-pill--gold { border-color: var(--gold); color: var(--gold); }
.hero__media { position: relative; display: flex; justify-content: center; }
.hero__glow {
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.hero__product-img {
    position: relative; z-index: 1;
    max-height: 580px;
    width: auto;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
}
.hero__placeholder {
    width: 340px; aspect-ratio: 3/4;
    background: var(--bg-card);
    border: 1px dashed var(--border);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
}
.hero__placeholder-inner { text-align: center; }
.hero__placeholder-brand {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.hero__placeholder-sub { display: block; font-size: 0.7rem; letter-spacing: 0.2em; color: var(--text-dim); text-transform: uppercase; }
.hero__placeholder-hint { display: block; font-size: 0.7rem; color: var(--text-dim); margin-top: 0.75rem; }

/* ── Value Props ───────────────────────────────────────────── */
.value-props { padding: 2.5rem 0; }
.value-props__grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.value-props__item { text-align: center; padding: 1.25rem 1.5rem; }
.value-props__icon {
    width: 56px; height: 56px;
    background: rgba(212,175,55,0.08);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--gold);
}
.value-props__title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.value-props__body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.value-props__cta-row { text-align: center; }
.value-props__learn-more {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--gold); font-size: 0.875rem; font-weight: 500;
    transition: gap var(--transition);
}
.value-props__learn-more:hover { gap: 0.8rem; }

/* ── Category Tiles ────────────────────────────────────────── */
.category-tiles { padding: 2.5rem 0; }
.category-tiles__header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.25rem;
}
.category-tiles__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
@media (min-width: 900px) {
    .category-tiles__grid { grid-template-columns: repeat(4, 1fr); }
}
.category-tile {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1/1;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    display: flex; align-items: flex-end;
    text-decoration: none;
    transition: transform var(--transition), border-color var(--transition);
}
.category-tile:hover { transform: translateY(-4px); border-color: var(--border); }
.category-tile__img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.category-tile:hover .category-tile__img { transform: scale(1.05); }
.category-tile__img-placeholder {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
}
.category-tile__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
}
.category-tile__content { position: relative; z-index: 1; padding: 1rem 0.875rem; }
.category-tile__name {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    color: var(--text);
    line-height: 1.2;
}
.category-tile__count { display: block; font-size: 0.7rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ── Strain Types ──────────────────────────────────────────── */
.strain-types { padding: 2rem 0; }
.strain-types .section-heading { text-align: center; margin-bottom: 1.5rem; }
.strain-types__grid {
    display: grid; grid-template-columns: 1fr;
    gap: 0.6rem;
}
.strain-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 0.875rem 1.25rem;
    display: flex; flex-direction: row;
    align-items: center; gap: 1.25rem;
    transition: border-color var(--transition), transform var(--transition);
}
.strain-card:hover { transform: translateY(-3px); }
.strain-card--purple:hover { border-color: rgba(168,85,247,0.4); }
.strain-card--teal:hover   { border-color: rgba(6,182,212,0.4); }
.strain-card--green:hover  { border-color: rgba(34,197,94,0.4); }
.strain-card__name {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 1.5rem; letter-spacing: 0.08em;
    white-space: nowrap; flex-shrink: 0; margin: 0;
}
.strain-card__name--indica { background: rgba(178,111,204,0.15); color: #B26FCC; }
.strain-card__name--hybrid { background: rgba(123,194,66,0.15);  color: #7bc242; }
.strain-card__name--sativa { background: rgba(242,200,75,0.15);  color: #f2c84b; }
.strain-card__desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; flex: 1; margin: 0; }
.strain-card__btn { flex-shrink: 0; margin-top: 0; padding: 0.5rem 1.1rem; font-size: 0.8rem; }

/* ── Featured Products ─────────────────────────────────────── */
.featured-products { padding: 2.5rem 0; }
.featured-products__header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.5rem;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}
.featured-products__empty {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--border);
    color: var(--text-muted);
}
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-4px); border-color: var(--border); box-shadow: var(--shadow-card); }
.product-card__image-wrap {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-elevated);
}
.product-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card__img { transform: scale(1.04); }
.product-card__strain { position: absolute; top: 0.75rem; left: 0.75rem; z-index: 1; }
.product-card__badge {
    position: absolute; top: 0.75rem; right: 0.75rem; z-index: 1;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-pill);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.product-card__badge--new { background: var(--gold); color: #000; }
.product-card__badge--best_seller { background: var(--bg-elevated); color: var(--gold); border: 1px solid var(--gold); }
.product-card__body { padding: 1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.product-card__thc { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; }
.product-card__thc { font-family: var(--font-ui); letter-spacing: 0.045em; line-height: 1.35; }
.product-card__name { font-family: var(--font-ui); font-size: 0.95rem; font-weight: 800; line-height: 1.25; margin-top: 0.2rem; }
.product-card__name a { color: var(--text); transition: color var(--transition); }
.product-card__name a:hover { color: var(--gold); }
.product-card__price { font-family: var(--font-ui); font-size: 0.95rem; font-weight: 800; color: var(--text); margin-top: 0.25rem; }
.product-card__price del { color: var(--text-muted); font-weight: 400; font-size: 0.8rem; }
.product-card__price ins { text-decoration: none; }
.product-card__cta { margin-top: 0.75rem; font-size: 0.72rem; letter-spacing: 0.04em; }

/* ── Trust Badges ──────────────────────────────────────────── */
.trust-badges {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: var(--bg-surface);
}
.trust-badges__grid {
    display: flex; flex-wrap: nowrap; justify-content: center; align-items: center;
    gap: 0 2.25rem;
    overflow: hidden;
}
.trust-badge {
    display: flex; align-items: center; gap: 0.6rem;
    font-family: var(--font-ui);
    font-size: 0.78rem; font-weight: 700;
    letter-spacing: 0.035em; text-transform: uppercase;
    color: var(--text-muted);
}
.trust-badge svg { color: var(--gold); flex-shrink: 0; }

/* ── Brand Story ───────────────────────────────────────────── */
.brand-story { padding: 3.5rem 0; }
.brand-story__inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 3rem; }
.brand-story__media { display: flex; justify-content: center; }
.brand-story__mascot { max-width: 420px; width: 100%; border-radius: var(--radius-lg); filter: drop-shadow(0 20px 60px rgba(212,175,55,0.15)); }
.brand-story__eyebrow { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 0.75rem; display: block; }
.brand-story__headline { font-family: var(--font-heading); font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.05; margin-bottom: 1.5rem; color: var(--text); }
.brand-story__body { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1rem; }
.brand-story__stats {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1rem; margin: 1.5rem 0; padding: 1.25rem;
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.brand-story__stat-number { display: block; font-family: var(--font-heading); font-size: 1.4rem; letter-spacing: 0.06em; color: var(--gold); }
.brand-story__stat-label { display: block; font-size: 0.75rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ── Loyalty Section ───────────────────────────────────────── */
.loyalty-section { padding: 2rem 0; background: var(--bg-surface); border-top: 1px solid var(--border-subtle); }
.loyalty-section__inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 2rem; }
.loyalty-section__eyebrow { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 0.4rem; display: block; }
.loyalty-section__headline { font-family: var(--font-heading); font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 0.5rem; color: var(--text); }
.loyalty-section__body { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.loyalty-section__perks { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1rem; }
.loyalty-perk { display: flex; gap: 1rem; font-size: 0.875rem; }
.loyalty-perk__number {
    width: 32px; height: 32px;
    background: rgba(212,175,55,0.1); border: 1px solid var(--border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: var(--gold); flex-shrink: 0; font-size: 0.8rem;
}
.loyalty-perk strong { display: block; margin-bottom: 0; font-size: 0.875rem; color: var(--text); }
.loyalty-perk p { color: var(--text-muted); margin: 0; font-size: 0.8rem; }
.loyalty-section__visual { display: flex; justify-content: center; align-items: center; }
.loyalty-section__card {
    width: 270px; aspect-ratio: 1.586;
    background: linear-gradient(135deg, #1A1500 0%, #2D2000 40%, #1A1500 100%);
    border: 1px solid var(--gold); border-radius: 16px;
    padding: 2rem; display: flex; flex-direction: column; justify-content: space-between;
    box-shadow: 0 0 60px rgba(212,175,55,0.12);
    position: relative; overflow: hidden;
}
.loyalty-section__card::before {
    content: ''; position: absolute; top: -40%; right: -20%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.loyalty-section__card-label { font-family: var(--font-heading); font-size: 0.75rem; letter-spacing: 0.3em; color: rgba(212,175,55,0.6); }
.loyalty-section__card-points { font-family: var(--font-heading); font-size: 2.5rem; color: var(--gold); letter-spacing: 0.04em; }
.loyalty-section__card-tier { font-size: 0.7rem; letter-spacing: 0.2em; color: rgba(212,175,55,0.6); text-transform: uppercase; }

/* ── Reviews ───────────────────────────────────────────────── */
.reviews { padding: 2rem 0; }
.reviews__header { text-align: center; margin-bottom: 1.25rem; }
.reviews__aggregate { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 0.75rem; }
.reviews__stars { color: var(--gold); font-size: 1.1rem; }
.reviews__score { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.reviews__count { font-size: 0.875rem; color: var(--text-muted); }
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 0.75rem; }
.review-card {
    background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
    padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.5rem;
    transition: border-color var(--transition);
}
.review-card:hover { border-color: var(--border); }
.review-card__stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.05em; }
.review-card__text {
    font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.review-card__footer { display: flex; align-items: center; gap: 0.6rem; padding-top: 0.5rem; border-top: 1px solid var(--border-subtle); }
.review-card__avatar {
    width: 30px; height: 30px; background: rgba(212,175,55,0.12); border: 1px solid var(--border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem; font-weight: 700; color: var(--gold); flex-shrink: 0;
}
.review-card__name { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text); }
.review-card__product { display: block; font-size: 0.72rem; color: var(--text-muted); margin-top: 0.1rem; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq { padding: 3rem 0; background: var(--bg-surface); }
.faq .section-heading { text-align: center; margin-bottom: 1.75rem; }
.faq__grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.5rem; }
.faq__item {
    background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius); overflow: hidden;
    transition: border-color var(--transition);
}
.faq__item[open] { border-color: var(--border); }
.faq__question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 1.5rem; font-size: 0.95rem; font-weight: 600; cursor: pointer;
    list-style: none; gap: 1rem; user-select: none; color: var(--text);
    transition: color var(--transition);
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question:hover { color: var(--gold); }
.faq__chevron { flex-shrink: 0; transition: transform 0.3s ease; color: var(--text-muted); }
.faq__item[open] .faq__chevron { transform: rotate(180deg); color: var(--gold); }
.faq__answer { padding: 0 1.5rem 1.25rem; }
.faq__answer p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }

/* ── Email Signup ──────────────────────────────────────────── */
.email-signup {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #0D0D00 0%, var(--bg) 50%, #0D0D00 100%);
    border-top: 1px solid var(--border);
}
.email-signup__inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; }
.email-signup__eyebrow { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 0.75rem; display: block; }
.email-signup__headline { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.6rem); line-height: 1.1; margin-bottom: 0.75rem; color: var(--text); }
.email-signup__body { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.email-signup__field-row { display: flex; gap: 0.5rem; margin-top: 1.5rem; }
.email-signup__input {
    flex: 1; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-pill);
    padding: 0.875rem 1.25rem; font-size: 0.9rem; color: var(--text); outline: none;
    transition: border-color var(--transition);
}
.email-signup__input:focus { border-color: var(--gold); }
.email-signup__input::placeholder { color: var(--text-dim); }
.email-signup__submit { position: relative; padding: 0.875rem 1.5rem; border-radius: var(--radius-pill); font-size: 0.78rem; letter-spacing: 0.1em; flex-shrink: 0; border: none; }
.email-signup__submit-loading { display: none; }
.email-signup__status { min-height: 1.2rem; font-size: 0.8rem; margin-top: 0.5rem; }
.email-signup__status.success { color: var(--sativa-color); }
.email-signup__status.error   { color: #EF4444; }
.email-signup__legal { font-size: 0.7rem; color: var(--text-dim); margin-top: 0.75rem; }
.email-signup__legal a { color: var(--gold); text-decoration: underline; }

/* ── Homepage responsive overrides ────────────────────────── */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero__body { margin: 0 auto 2rem; }
    .hero__ctas { justify-content: center; }
    .hero__filters { justify-content: center; }
    .hero__media { max-width: 400px; margin: 0 auto; }
    .value-props__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 2.5rem; }
    .brand-story__inner,
    .loyalty-section__inner,
    .email-signup__inner { grid-template-columns: 1fr; gap: 3rem; }
    .brand-story__stats { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
    .hero { padding: 1.5rem 0; }
    .hero__headline { font-size: clamp(2.5rem, 10vw, 3.5rem); }
    .category-tiles__grid { grid-template-columns: repeat(2, 1fr); }
    .reviews__grid { grid-template-columns: 1fr; }
    .email-signup__inner { grid-template-columns: 1fr; }
    .email-signup__field-row { flex-direction: column; }
    .brand-story__stats { grid-template-columns: repeat(2, 1fr); }
    .loyalty-section__card { width: 100%; max-width: 320px; }
}
