:root {
  --bg: #141414;
  --bg-soft: #1A1A1A;
  --bg-card: #1C1C1C;
  --bg-card-img: #fff;
  --ink: #FFFFFF;
  --ink-soft: rgba(255,255,255,0.65);
  --ink-muted: rgba(255,255,255,0.40);
  --brand: #C99777;
  --brand-dark: #B47F5C;
  --brand-light: rgba(201,151,119,0.10);
  --line: rgba(201,151,119,0.15);
  --line-soft: rgba(255,255,255,0.06);
  --success: #16a34a;
  --warn: #f59e0b;
  --radius: 8px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.4);
  --container: 1200px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-family: var(--font);
  color: #FFFFFF;
  color: var(--ink);
  background: #141414;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ── WooCommerce AJAX loading overlay ──
   WC's default blockUI overlay is a white 60%-opacity layer with a dark spinner
   (added via inline style, hence !important). On this dark theme that reads as a
   cheap "white screen" flash during cart/checkout AJAX. Recolor it to a subtle
   dark veil with a brand-coloured ring spinner. */
.blockOverlay,
.blockUI.blockOverlay {
  background-color: #141414 !important;
  background-image: none !important;
  opacity: 0.55 !important;
}
.blockUI.blockOverlay::before {
  content: "";
  width: 26px !important;
  height: 26px !important;
  margin-left: -13px !important;
  margin-top: -13px !important;
  border: 2px solid var(--line);
  border-top-color: var(--brand);
  border-radius: 50%;
  background: none !important;
  animation: onyx-spin 0.7s linear infinite;
}
@keyframes onyx-spin { to { transform: rotate(360deg); } }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.announce {
  background: #0A0A0A;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  text-align: center;
  padding: 8px 24px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--line);
}
.announce strong { font-weight: 600; }
.announce span { color: var(--brand); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #141414;
  background: var(--bg);
  border-bottom: 1px solid rgba(201,151,119,0.15);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.logo:hover { text-decoration: none; color: var(--ink); }
.logo-icon {
  width: 90px !important;
  height: 38px !important;
  max-width: 90px !important;
  max-height: 38px !important;
  object-fit: contain !important;
  flex-shrink: 0;
  border-radius: 0;
  mix-blend-mode: lighten;
}
.logo .logo-text {
  color: var(--ink);
  font-weight: 700;
}
.logo .brand {
  color: var(--brand);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2em;
}

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-card);
  cursor: pointer;
  place-items: center;
  color: var(--ink);
}
.hamburger:hover { border-color: var(--brand); color: var(--brand); }

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav ul,
.nav .menu,
.nav > ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  gap: 36px;
}
.nav li,
.nav .menu-item {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.nav li::marker { content: none !important; }
.nav a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--brand); border-bottom-color: var(--brand); text-decoration: none; }

/* ── Language switcher ── */
.onyx-lang { position: relative; }
.onyx-lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s;
}
.onyx-lang__btn:hover,
.onyx-lang.is-open .onyx-lang__btn { border-color: var(--brand); color: var(--ink); }
.onyx-lang__btn svg { width: 16px; height: 16px; }
.onyx-lang__caret { width: 12px !important; height: 12px !important; transition: transform 0.18s; }
.onyx-lang.is-open .onyx-lang__caret { transform: rotate(180deg); }
.onyx-lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 168px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.16s, transform 0.16s, visibility 0.16s;
  z-index: 60;
}
.onyx-lang.is-open .onyx-lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.onyx-lang__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 7px;
  color: var(--ink-soft);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.onyx-lang__item:hover { background: var(--brand-light); color: var(--ink); text-decoration: none; }
.onyx-lang__item.is-active { color: var(--brand); font-weight: 600; }
/* Flag emoji in switcher button + menu */
.onyx-lang__flag {
  font-size: 16px;
  line-height: 1;
  flex: 0 0 auto;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}
.onyx-lang__btn .onyx-lang__flag { font-size: 15px; margin-right: 1px; }
.onyx-lang__name { flex: 1 1 auto; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-card);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink-soft);
  position: relative;
}
.icon-btn:hover { border-color: var(--brand); color: var(--brand); }
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  letter-spacing: 0.01em;
  text-transform: capitalize;
}
.btn-primary { background: var(--brand); color: #141414; }
.btn-primary:hover { background: #D9A88A; text-decoration: none; }
.btn-outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: #141414; text-decoration: none; }
.btn-ghost { background: transparent; color: var(--brand); padding: 8px 14px; }
.btn-ghost:hover { background: var(--brand-light); text-decoration: none; }
.hero-text-link {
  display: block;
  text-align: center;
  color: var(--brand);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 6px 0;
  transition: opacity 0.15s;
}
.hero-text-link:hover { opacity: 0.75; text-decoration: underline; }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-block { width: 100%; }

.hero {
  position: relative;
  background: var(--bg);
  padding: 80px 48px 100px;
  overflow: hidden;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-canvas-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 112px;
}
.hero-video {
  position: relative;
  z-index: 2;
  height: 660px;
  overflow: hidden;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--bg);
}
.hero-video::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to right, var(--bg) 0%, var(--bg) 20%, transparent 45%, transparent 55%, var(--bg) 80%, var(--bg) 100%),
    linear-gradient(to bottom, var(--bg) 0%, transparent 15%, transparent 90%, var(--bg) 100%);
}
.hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  box-shadow:
    inset 200px 0 120px -80px var(--bg),
    inset -200px 0 120px -80px var(--bg),
    inset 0 150px 100px -80px var(--bg),
    inset 0 -20px 30px -10px var(--bg);
}
.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 0 0 24px;
  font-weight: 700;
  color: var(--ink);
}
.hero h1 .accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
}
.hero p.lead {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 36px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-vials {
  position: relative;
  display: flex;
  gap: 18px;
  z-index: 1;
}
.vial {
  width: 60px;
  height: 200px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 30%, rgba(255,255,255,0.7) 100%);
  border-radius: 6px 6px 30px 30px / 6px 6px 12px 12px;
  position: relative;
  box-shadow: inset -8px 0 16px rgba(0,0,0,0.1), 0 10px 30px rgba(0,0,0,0.2);
}
.vial::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 18px;
  background: linear-gradient(180deg, #d6dae8, #8a92ad);
  border-radius: 4px;
}
.vial::after {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 8px;
  right: 8px;
  height: 60%;
  background: linear-gradient(180deg, transparent, rgba(201,151,119,0.15));
  border-radius: 0 0 20px 20px;
}
.vial:nth-child(2) { height: 230px; margin-top: -15px; }
.vial:nth-child(3) { height: 180px; margin-top: 10px; }

.vial-3d-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.vial-3d-stage canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.trust {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  position: relative;
  z-index: 1;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 4px 24px;
  border-left: 1px solid var(--line);
}
.trust-item:first-child { border-left: none; }
.trust-icon {
  flex: none;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  border: none;
  color: var(--brand);
  display: grid;
  place-items: center;
}
.trust-icon svg { width: 22px; height: 22px; }
.trust-item > div strong,
.trust-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.trust-item > div span,
.trust-text span {
  display: block;
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

section { padding: 72px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
h2.section-title {
  font-size: clamp(28px, 3.5vw, 36px);
  letter-spacing: -0.5px;
  margin: 0;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}
h2.section-title .accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
}
.section-sub {
  color: var(--ink-soft);
  margin: 12px 0 0;
  max-width: 600px;
}

.chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 32px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.15s ease;
}
.chip:hover { border-color: var(--brand); color: var(--brand); }
.chip.active { background: var(--brand); color: #141414; border-color: var(--brand); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--brand);
  box-shadow: 0 16px 40px rgba(15,15,15,0.08);
  transform: translateY(-4px);
}
.product-image {
  aspect-ratio: 1;
  background: var(--bg-card);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-image img { transform: scale(1.05); }
.product-card .add-to-cart-btn {
  display: block;
  width: 100%;
  background: var(--brand);
  color: #141414;
  border: none;
  border-radius: 0;
  padding: 12px 0;
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
}
.product-card .add-to-cart-btn:hover {
  background: #D9A88A;
}
.product-image .vial-mini {
  width: 50px;
  height: 100px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.6));
  border: 1px solid rgba(201,151,119,0.2);
  border-radius: 4px 4px 20px 20px / 4px 4px 10px 10px;
  position: relative;
  box-shadow: 0 8px 20px rgba(201,151,119,0.15);
}
.product-image .vial-mini::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 12px;
  background: linear-gradient(180deg, #c8cfe6, #7d87a8);
  border-radius: 3px;
}
.product-image .vial-mini::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 5px;
  right: 5px;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(201,151,119,0.25));
  border-radius: 0 0 10px 10px;
}
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #0A0A0A;
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 3px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--brand);
  z-index: 2;
}
.product-badge.new { background: var(--brand); color: #141414; border-color: var(--brand); }

a.product-image {
  display: grid;
  place-items: center;
}
a.product-body,
a.product-body:hover {
  text-decoration: none;
  color: inherit;
}
.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-cat {
  font-size: 10px;
  color: var(--brand);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}
.product-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.3px;
}
.product-meta {
  font-size: 12px;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-purity {
  font-size: 12px;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-purity::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.purity-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.product-foot {
  margin-top: auto;
  padding: 14px 20px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}
.product-price .from {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-muted);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: -2px;
}
.product-price .old {
  text-decoration: line-through;
  color: var(--ink-muted);
  font-weight: 400;
  font-size: 14px;
  margin-right: 6px;
}
.product-cta {
  font-size: 12px;
  color: var(--brand);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.callout {
  background: #0A0A0A;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 100% 100%, rgba(201,151,119,0.06), transparent 60%);
  pointer-events: none;
}
.callout h3 {
  font-size: 32px;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.callout h3 .accent {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
}
.callout p { color: rgba(255,255,255,0.65); margin: 0 0 24px; font-size: 15px; line-height: 1.7; }
.callout .btn-primary { background: var(--brand); color: #141414; }
.callout .btn-primary:hover { background: #D9A88A; }
.callout .stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,151,119,0.2);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
}
.stat .num {
  display: block;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--brand);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.stat .label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.how-step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.how-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-light);
  border: 1px solid var(--line);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 18px;
}
.how-step h4 {
  font-size: 18px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.how-step p { color: var(--ink-soft); margin: 0; font-size: 15px; }

.affiliate {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.affiliate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.affiliate h3 {
  font-size: 32px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  font-weight: 700;
  color: var(--ink);
}
.affiliate p { color: var(--ink-soft); margin: 0 0 24px; max-width: 460px; }
.affiliate-perks { display: grid; gap: 12px; }
.perk { display: flex; gap: 12px; align-items: flex-start; padding: 14px 18px; background: var(--bg-card); border: 1px solid var(--line); border-radius: 10px; }
.perk-icon { color: var(--brand); flex: none; }

.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 24px;
}
.faq-item summary {
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--brand);
  font-weight: 400;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { color: var(--ink-soft); margin: 12px 0 0; font-size: 15px; }

.newsletter {
  background: #0A0A0A;
  border: 1px solid var(--line);
  color: #fff;
  text-align: center;
  padding: 64px 24px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.newsletter h3 {
  font-size: 32px;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
}
.newsletter p { color: var(--ink-soft); margin: 0 0 24px; }
.newsletter form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
}
.newsletter input::placeholder { color: var(--ink-muted); }
.newsletter .btn { background: var(--brand); color: #141414; border-color: var(--brand); }
.newsletter .btn:hover { background: #D9A88A; }

.site-footer {
  background: #0A0A0A;
  color: rgba(255,255,255,0.6);
  padding: 80px 0 32px;
  margin-top: 80px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: #fff; }
.footer-brand .logo-mark { background: #fff; }
.footer-brand p {
  font-size: 14px;
  margin: 16px 0 0;
  color: rgba(255,255,255,0.5);
  max-width: 320px;
  line-height: 1.6;
}
.footer-col h5 {
  color: var(--brand);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 14px; display: block; padding: 4px 0; }
.footer-col a:hover { color: var(--brand); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 16px;
}
.payments { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,151,119,0.15);
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.disclaimer-bar {
  background: #060606;
  color: rgba(255,255,255,0.4);
  text-align: center;
  font-size: 12px;
  padding: 14px 24px;
  border-top: 1px solid var(--line-soft);
}

/* ── Order Received / Thank You page ── */
.onyx-order-received {
  max-width: 760px;
  margin: 48px auto 72px;
  padding: 0 24px;
}
.onyx-order-banner {
  text-align: center;
  padding: 8px 0 36px;
}
.onyx-order-check {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-light);
  color: var(--brand);
  border: 1px solid var(--line);
}
.onyx-order-banner h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 10px;
}
.onyx-order-banner p {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0;
}

/* Order overview cards */
.onyx-order-overview {
  list-style: none;
  margin: 0 0 32px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.onyx-order-overview li {
  margin: 0;
  border: none !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.onyx-order-overview li span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  font-weight: 600;
}
.onyx-order-overview li strong {
  font-size: 16px;
  color: var(--ink);
  font-weight: 600;
  word-break: break-word;
}

/* Payment reference callout (bank transfer) */
.onyx-payment-reference {
  background: linear-gradient(180deg, rgba(201,151,119,0.10), rgba(201,151,119,0.03));
  border: 1px solid var(--brand);
  border-radius: 14px;
  padding: 24px 26px;
  margin: 0 0 36px;
}
.onyx-payment-reference__head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.onyx-payment-reference p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 16px;
}
.onyx-payment-reference strong {
  color: var(--ink);
}
.onyx-payment-reference__code {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bg);
  border: 1px dashed var(--brand);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 14px;
}
.onyx-payment-reference__code span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  font-weight: 600;
}
.onyx-payment-reference__code strong {
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--brand);
  font-family: var(--font);
}
.onyx-payment-reference__note {
  font-size: 13px !important;
  color: var(--ink-muted) !important;
  margin: 0 !important;
}

/* Bank details (BACS) output */
.onyx-order-received .woocommerce-bacs-bank-details,
.onyx-order-received .wc-bacs-bank-details {
  list-style: none;
  margin: 0 0 36px;
  padding: 24px 26px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.onyx-order-received .woocommerce-bacs-bank-details-account-name,
.onyx-order-received .wc-bacs-bank-details-account-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 16px;
  padding: 0;
}
.onyx-order-received .wc-bacs-bank-details li,
.onyx-order-received .woocommerce-bacs-bank-details li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--ink-soft);
}
.onyx-order-received .wc-bacs-bank-details li:last-child,
.onyx-order-received .woocommerce-bacs-bank-details li:last-child {
  border-bottom: none;
}
.onyx-order-received .wc-bacs-bank-details li strong {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
  letter-spacing: 0.02em;
}

/* Section headings on the order page */
.onyx-order-received h2,
.onyx-order-received .woocommerce-column__title,
.onyx-order-received .woocommerce-order-details__title,
.onyx-order-received .woocommerce-customer-details h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin: 36px 0 18px;
}

/* Order details table */
.onyx-order-received .woocommerce-table--order-details,
.onyx-order-received table.shop_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin: 0 0 32px;
  background: var(--bg-soft);
}
.onyx-order-received table.shop_table th,
.onyx-order-received table.shop_table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
  border: none;
  border-bottom: 1px solid var(--line-soft);
}
.onyx-order-received table.shop_table thead th {
  background: rgba(255,255,255,0.02);
  color: var(--ink-muted);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.onyx-order-received table.shop_table td {
  color: var(--ink-soft);
}
.onyx-order-received table.shop_table .product-total,
.onyx-order-received table.shop_table td:last-child,
.onyx-order-received table.shop_table th:last-child {
  text-align: right;
}
.onyx-order-received table.shop_table a {
  color: var(--brand);
}
.onyx-order-received table.shop_table tfoot th,
.onyx-order-received table.shop_table tfoot td {
  color: var(--ink);
  font-weight: 600;
  background: rgba(255,255,255,0.02);
}
.onyx-order-received table.shop_table tfoot tr:last-child th,
.onyx-order-received table.shop_table tfoot tr:last-child td {
  font-size: 16px;
}

/* Customer / addresses */
.onyx-order-received .woocommerce-customer-details address {
  font-style: normal;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
  padding: 20px 22px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}

@media (max-width: 640px) {
  .onyx-order-banner h1 { font-size: 28px; }
  .onyx-order-overview {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }
  .onyx-order-received table.shop_table th,
  .onyx-order-received table.shop_table td { padding: 12px 14px; }
}

/* ── Bank-transfer focused order-received layout ── */
.onyx-order-received--bt {
  max-width: 640px;
  margin: 36px auto 40px;
}

/* Top bar: back link + order number */
.onyx-bt-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.onyx-bt-back {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease;
}
.onyx-bt-back:hover {
  color: var(--brand);
}
.onyx-bt-ordernum {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}

/* Banner heading */
.onyx-bt-banner {
  text-align: center;
  margin-bottom: 28px;
}
.onyx-bt-banner h1 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 12px;
}
.onyx-bt-banner p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 460px;
}

/* The bank-transfer details card */
.onyx-bt-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px 26px 22px;
  margin: 0 0 22px;
}
.onyx-bt-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  padding: 20px 0 8px;
  border-bottom: 1px solid var(--line-soft);
}

/* Each detail row */
.onyx-bt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.onyx-bt-row:last-child {
  border-bottom: none;
}
.onyx-bt-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  font-weight: 600;
  flex-shrink: 0;
}
.onyx-bt-value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-align: right;
  word-break: break-word;
}

/* Emphasised amount */
.onyx-bt-row--amount {
  padding-top: 18px;
}
.onyx-bt-amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--brand);
}
.onyx-bt-amount .woocommerce-Price-amount,
.onyx-bt-amount bdi {
  color: var(--brand);
}

/* Emphasised reference */
.onyx-bt-row--ref .onyx-bt-value {
  font-size: 17px;
}
.onyx-bt-ref strong {
  color: var(--brand);
  letter-spacing: 0.04em;
}

/* EPC (SEPA) QR code */
.onyx-bt-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 22px 0 6px;
}
.onyx-bt-qr__code {
  padding: 12px;
  background: #fff;
  border-radius: 12px;
  line-height: 0;
}
.onyx-bt-qr__hint {
  margin: 0;
  max-width: 260px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-muted);
}

/* Copy button */
.onyx-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--bg-card);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
}
.onyx-copy:hover {
  color: var(--brand);
  border-color: var(--brand);
  background: var(--brand-light);
}
.onyx-copy.is-copied {
  color: var(--success);
  border-color: var(--success);
}
.onyx-copy.is-copied::after {
  content: "Copied";
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--success);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 3px 8px;
  border-radius: 5px;
  white-space: nowrap;
  pointer-events: none;
}

/* Helper notes */
.onyx-bt-note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 8px;
}
.onyx-bt-note strong {
  color: var(--brand);
}
.onyx-bt-subnote {
  text-align: center;
  color: var(--ink-muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 8px;
}

/* Tighten the order-details + addresses spacing on the bank-transfer layout */
.onyx-order-received--bt .woocommerce-order-details,
.onyx-order-received--bt .woocommerce-customer-details {
  margin-top: 28px;
  padding-top: 0;
}
.onyx-order-received--bt h2,
.onyx-order-received--bt .woocommerce-order-details__title,
.onyx-order-received--bt .woocommerce-column__title,
.onyx-order-received--bt .woocommerce-customer-details h2 {
  margin: 0 0 14px;
  font-size: 20px;
}
.onyx-order-received--bt .woocommerce-order-details + .woocommerce-customer-details,
.onyx-order-received--bt .woocommerce-customer-details {
  margin-top: 24px;
}
.onyx-order-received--bt table.shop_table {
  margin-bottom: 0;
}
.onyx-order-received--bt .woocommerce-columns--addresses {
  margin: 0;
}

/* Product thumbnail beside each order item name */
.onyx-order-received--bt td.product-name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.onyx-order-received--bt td.product-name .product-quantity {
  color: var(--ink-muted);
  font-weight: 600;
}
.onyx-oi {
  display: flex;
  align-items: center;
  gap: 12px;
}
.onyx-oi-img {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
}
.onyx-oi-img .onyx-oi-thumb,
.onyx-oi-img img {
  width: 46px !important;
  height: 46px !important;
  object-fit: cover;
  display: block;
  margin: 0 !important;
}
.onyx-oi-name {
  color: var(--brand);
  font-weight: 600;
}

@media (max-width: 640px) {
  .onyx-bt-banner h1 { font-size: 27px; }
  .onyx-oi-img,
  .onyx-oi-img .onyx-oi-thumb,
  .onyx-oi-img img { width: 38px; height: 38px; }
  .onyx-oi-img .onyx-oi-thumb,
  .onyx-oi-img img { width: 38px !important; height: 38px !important; }
  .onyx-bt-card { padding: 4px 18px 16px; }
  .onyx-bt-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .onyx-bt-value { text-align: left; }
}

/* ── Empty cart state + suggestions ── */
.onyx-empty-cart {
  max-width: 480px;
  margin: 28px auto 56px;
  padding: 0 24px;
  text-align: center;
}
.onyx-empty-cart__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-light);
  color: var(--brand);
  border: 1px solid var(--line);
}
.onyx-empty-cart__icon svg {
  width: 28px;
  height: 28px;
}
.onyx-empty-cart__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
}
.onyx-empty-cart__text {
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0 auto 18px;
  max-width: 380px;
}
.onyx-empty-cart__btn {
  display: inline-block;
  padding: 11px 22px;
  font-size: 12px;
}

.onyx-empty-notice {
  max-width: 960px;
  margin: 32px auto 0;
  padding: 0 24px;
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.03em;
}
.onyx-suggest {
  max-width: 960px;
  margin: 12px auto 8px;
  padding: 0 24px;
}
/* ── Cart page: horizontal "You might like" strip (Alza-style) ── */
.onyx-suggest--cart {
  flex: 0 0 100%;
  width: 100vw;
  max-width: 100vw;
  margin: -8px calc(50% - 50vw) 4px;
  padding: 0 40px 14px;
  box-sizing: border-box;
  border-bottom: 1px solid var(--line);
}
.onyx-suggest--cart .onyx-suggest__head {
  text-align: center;
  margin-bottom: 10px;
}
.onyx-suggest--cart .onyx-suggest__head .eyebrow { margin-bottom: 0; }

.onyx-hstrip {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--brand) transparent;
}
.onyx-hstrip::-webkit-scrollbar { height: 6px; }
.onyx-hstrip::-webkit-scrollbar-thumb { background: var(--line); border-radius: 6px; }
.onyx-hstrip::-webkit-scrollbar-thumb:hover { background: var(--brand); }
.onyx-hstrip__track {
  display: flex;
  gap: 12px;
  padding-bottom: 8px;
}
.onyx-hcard {
  flex: 0 0 150px;
  width: 150px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s;
}
.onyx-hcard:hover { border-color: var(--line); }
.onyx-hcard__img {
  display: block;
  height: 96px;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.onyx-hcard__img img { width: 100%; height: 96px; object-fit: cover; display: block; }
.onyx-hcard__name {
  display: block;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  min-height: 31px;
}
.onyx-hcard__name:hover { color: var(--brand); }
.onyx-hcard__price {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.onyx-hcard__price del { color: var(--ink-muted); font-weight: 400; font-size: 11px; margin-right: 4px; }
.onyx-hcard__price ins { text-decoration: none; color: var(--brand); }
.onyx-hcard__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
  padding: 8px 0;
  background: var(--brand);
  color: #141414;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.onyx-hcard__btn svg { width: 14px; height: 14px; }
.onyx-hcard__btn:hover { background: #D9A88A; }
.onyx-hcard__btn--ghost {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.onyx-hcard__btn--ghost:hover { background: var(--brand-light); color: var(--ink); }

@media (max-width: 640px) {
  .onyx-suggest--cart { padding: 0 14px 16px; }
  .onyx-hcard { flex-basis: 132px; width: 132px; }
}
.onyx-suggest__head {
  text-align: center;
  margin-bottom: 22px;
}
.onyx-suggest__head .eyebrow {
  display: block;
  margin-bottom: 6px;
}
.onyx-suggest__head .section-title {
  margin: 0;
  font-size: 22px;
}

/* Compact suggestion cards (smaller than the shop grid) */
.onyx-suggest .shop-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.onyx-suggest .product-card .product-body {
  padding: 12px 12px 8px;
}
.onyx-suggest .product-card .product-cat {
  font-size: 9px;
}
.onyx-suggest .product-card .product-name {
  font-size: 14px;
}
.onyx-suggest .product-card .product-meta {
  font-size: 11px;
}
.onyx-suggest .product-card .product-foot {
  padding: 8px 12px 12px;
}
.onyx-suggest .product-card .product-price {
  font-size: 14px;
}
.onyx-suggest .product-card .product-foot .btn-ghost {
  padding: 6px 10px;
  font-size: 11px;
}
.onyx-suggest .product-card .add-to-cart-btn {
  padding: 9px 0;
  font-size: 11px;
}

@media (max-width: 900px) {
  .onyx-suggest .shop-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .onyx-empty-cart__title { font-size: 21px; }
  .onyx-empty-cart { margin-top: 28px; }
  .onyx-suggest .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ── Age / Research Disclaimer Gate ── */
.onyx-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.onyx-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.onyx-gate-modal {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  padding: 48px 40px 40px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}
.onyx-gate-icon {
  color: var(--brand);
  margin-bottom: 16px;
}
.onyx-gate-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 16px;
}
.onyx-gate-text {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 12px;
}
.onyx-gate-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}
.onyx-gate-list li {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
  padding: 6px 0 6px 24px;
  position: relative;
}
.onyx-gate-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.onyx-gate-list li strong {
  color: var(--ink);
}
.onyx-gate-list li a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.onyx-gate-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.onyx-gate-buttons .btn-primary {
  flex: 1;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.onyx-gate-buttons .btn-primary:hover {
  background: var(--brand-light);
}
.onyx-gate-buttons .btn-ghost {
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink-muted);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.onyx-gate-buttons .btn-ghost:hover {
  border-color: var(--ink-muted);
  color: var(--ink-soft);
}

@media (max-width: 640px) {
  .onyx-gate-modal {
    padding: 32px 24px 28px;
  }
  .onyx-gate-title {
    font-size: 22px;
  }
  .onyx-gate-buttons {
    flex-direction: column;
  }
}

.shop-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
}
.filter-panel {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px;
  position: sticky;
  top: 88px;
  align-self: start;
}
.filter-panel h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}
.filter-group { padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid var(--line); }
.filter-group:last-child { border: 0; padding-bottom: 0; margin-bottom: 0; }
.filter-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; }
.filter-list li { border-bottom: 1px solid var(--line-soft); }
.filter-list li:last-child { border-bottom: none; }
.filter-list a,
.filter-list label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 10px 4px;
  transition: color 0.15s;
  text-decoration: none;
}
.filter-list a:hover,
.filter-list label:hover { color: var(--brand); text-decoration: none; }
.filter-list a.active { color: var(--brand); font-weight: 600; }
.filter-list a span {
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 400;
}
.filter-list input { accent-color: var(--brand); }

/* ── Category pills (shop filter, inspiration-style) ── */
.onyx-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 28px;
}
.onyx-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.onyx-pill:hover {
  border-color: var(--brand);
  color: var(--ink);
  text-decoration: none;
}
.onyx-pill.is-active {
  background: var(--brand-light);
  border-color: var(--brand);
  color: var(--brand);
  font-weight: 600;
}
.shop-layout--full { display: block; }

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.results-count { font-size: 14px; color: var(--ink-soft); }
.sort-select {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg-card);
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.breadcrumbs {
  font-size: 13px;
  color: var(--ink-muted);
  padding: 24px 0 0;
}
.breadcrumbs a { color: var(--ink-muted); }
.breadcrumbs a:hover { color: var(--brand); }
.breadcrumbs span { margin: 0 8px; color: var(--ink-muted); }

.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  padding: 32px 0 64px;
}
.product-gallery {
  position: relative;
}
.gallery-main {
  background: none;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  border: none;
  overflow: hidden;
}
.gallery-main img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}
.gallery-main .vial-large {
  width: 110px;
  height: 280px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.7));
  border: 1px solid rgba(201,151,119,0.2);
  border-radius: 6px 6px 36px 36px / 6px 6px 14px 14px;
  position: relative;
  box-shadow: 0 20px 50px rgba(201,151,119,0.2);
}
.gallery-main .vial-large::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 22px;
  background: linear-gradient(180deg, #c8cfe6, #7d87a8);
  border-radius: 4px;
}
.gallery-main .vial-large::after {
  content: "";
  position: absolute;
  bottom: 36px;
  left: 12px;
  right: 12px;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(201,151,119,0.3));
  border-radius: 0 0 16px 16px;
}
.gallery-thumbs { display: flex; gap: 10px; }
.gallery-thumbs .thumb {
  width: 70px;
  height: 70px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 2px solid transparent;
  cursor: pointer;
}
.gallery-thumbs .thumb.active { border-color: var(--brand); }

.product-info h1 {
  font-size: 36px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--ink-soft);
}
.stars { color: #f59e0b; letter-spacing: 2px; }
.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.stock-badge.in-stock { color: var(--success); }
.stock-badge.out-of-stock { color: #ef4444; }
.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.in-stock .stock-dot { background: var(--success); box-shadow: 0 0 6px rgba(22,163,74,0.5); }
.out-of-stock .stock-dot { background: #ef4444; box-shadow: 0 0 6px rgba(239,68,68,0.5); }

.product-info .price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.price-block .price { font-size: 32px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.price-block .original { font-size: 18px; color: var(--ink-muted); text-decoration: line-through; }
.price-block .save { background: var(--brand-light); color: var(--brand); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; letter-spacing: 0.04em; }

.option-group { margin-bottom: 20px; }
.option-label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 10px; letter-spacing: 0.02em; }
.option-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.option-pill {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--bg-card);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all 0.15s ease;
}
.option-pill:hover { border-color: var(--brand); color: var(--brand); }
.option-pill.active { background: var(--brand-light); border-color: var(--brand); color: var(--brand); }

.qty-row { display: flex; gap: 10px; margin-bottom: 18px; }
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.qty-control button {
  width: 44px;
  height: 48px;
  background: var(--bg-card);
  border: 0;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
}
.qty-control button:hover { background: var(--brand-light); color: var(--brand); }
.qty-control input {
  width: 56px;
  height: 48px;
  text-align: center;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-family: inherit;
  font-weight: 600;
  color: var(--ink);
  font-size: 16px;
  background: var(--bg-card);
}
.qty-row .btn { flex: 1; }

.product-perks { display: grid; gap: 10px; margin-top: 24px; }
.product-perks .perk { font-size: 14px; padding: 12px 16px; }

.tabs {
  margin-top: 32px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.tab-nav { display: flex; gap: 8px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.tab-nav button {
  padding: 12px 18px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-muted);
  cursor: pointer;
  margin-bottom: -1px;
}
.tab-nav button.active { color: var(--brand); border-bottom-color: var(--brand); }
.tab-panel { color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.tab-panel h4 { color: var(--ink); margin: 0 0 12px; }

.calc-page { max-width: 1100px; }

.calc-page-header {
  text-align: center;
  margin-bottom: 32px;
}
.calc-title {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  margin: 8px 0 10px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}
.calc-intro {
  color: var(--ink-soft);
  font-size: 16px;
  margin: 0;
}

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

.calc-inputs-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
}

.calc-results-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: sticky;
  top: 88px;
  text-align: center;
}

.calc-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.calc-card-main { padding: 36px; }

.calc-field { margin-bottom: 28px; }
.calc-field-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.calc-field-unit {
  font-weight: 500;
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: 0;
}

.calc-presets-wide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.calc-presets-wide .calc-preset {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 14px 10px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--bg-card);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.12s ease;
}
.calc-presets-wide .calc-preset small {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-soft);
}
.calc-presets-wide .calc-preset:hover { border-color: var(--brand); color: var(--brand); }
.calc-presets-wide .calc-preset:hover small { color: var(--brand); }
.calc-presets-wide .calc-preset.active {
  border-color: var(--brand);
  color: var(--brand);
  font-weight: 800;
  background: var(--brand-light);
}
.calc-presets-wide .calc-preset.active small { color: var(--brand); }

.calc-presets-round {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.calc-presets-round .calc-preset {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.12s ease;
}
.calc-presets-round .calc-preset:hover { border-color: var(--brand); color: var(--brand); }
.calc-presets-round .calc-preset.active {
  border-color: var(--brand);
  color: var(--brand);
  font-weight: 800;
  background: var(--brand-light);
}
.calc-presets-round .calc-preset-other {
  width: auto;
  padding: 0 16px;
  border-radius: 27px;
  border-style: dashed;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
}
.calc-presets-round .calc-preset-other:hover { border-color: var(--brand); color: var(--brand); border-style: solid; }

.calc-conc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
}
.calc-conc-chip strong { color: var(--ink); font-weight: 700; }

.calc-other-input {
  margin-top: 10px;
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--brand);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-card);
  max-width: 200px;
}
.calc-other-input input {
  flex: 1;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  outline: none;
  -moz-appearance: textfield;
}
.calc-other-input input::-webkit-outer-spin-button,
.calc-other-input input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-input-suffix {
  display: flex;
  align-items: center;
  padding: 0 12px;
  background: var(--brand-light);
  color: var(--brand);
  font-weight: 700;
  font-size: 13px;
}

.calc-result-prefix {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  margin: 0 0 4px;
}
.calc-result-units {
  font-size: 88px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  margin: 0;
}
.calc-result-caption {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 4px 0 0;
  font-family: "JetBrains Mono", "Menlo", monospace;
}

.calc-syringe-wrap {
  display: flex;
  justify-content: center;
  margin: 16px 0 20px;
}
.calc-syringe-svg {
  width: 180px;
  height: auto;
}
.calc-syringe-svg #syringeFill { transition: y 0.3s ease, height 0.3s ease; }
.calc-syringe-svg #syringeBadge { transition: transform 0.3s ease; }

.calc-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.calc-stat {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.calc-stat-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}
.calc-stat-val {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.calc-stat-unit {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 500;
}

.calc-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.calc-result-item {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.calc-result-key {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}
.calc-result-val {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.calc-result-val small {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-left: 4px;
  letter-spacing: 0.02em;
}

.calc-warning {
  padding: 12px 14px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  color: #fbbf24;
  font-size: 13px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.calc-warning svg { flex: none; margin-top: 1px; color: #f59e0b; }

.calc-disclaimer {
  margin: 0;
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.6;
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.calc-faq { margin-top: 56px; }
.calc-section-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  text-align: center;
  color: var(--ink);
}

.legal-page {
  padding: 24px 0 80px;
}
.legal-container {
  max-width: 760px;
}
.legal-container h1 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--ink);
}
.legal-updated {
  color: var(--ink-muted);
  font-size: 0.85rem;
  margin: 0 0 32px;
}
.legal-container h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 32px 0 10px;
  color: var(--ink);
}
.legal-container h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 20px 0 6px;
  color: var(--ink);
}
.legal-container p,
.legal-container li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.legal-container ul,
.legal-container ol {
  padding-left: 20px;
  margin: 8px 0 16px;
}
.legal-container li {
  margin-bottom: 6px;
}
.legal-container a {
  color: var(--brand);
  text-decoration: underline;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: 0.9rem;
}
.legal-table th,
.legal-table td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}
.legal-table th {
  font-weight: 600;
  background: var(--bg-soft);
  color: var(--ink);
}
.legal-table td {
  color: var(--ink-soft);
}
.about-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 16px 0 32px;
}
.about-value {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.about-value h3 {
  margin: 0 0 6px;
  color: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  margin-top: 32px;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}
.contact-card h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin: 0 0 8px;
  font-weight: 600;
}
.contact-card p {
  margin: 0;
  color: var(--ink-soft);
}
.contact-note {
  font-size: 0.82rem !important;
  color: var(--ink-muted) !important;
  margin-top: 6px !important;
}
.contact-form h2 {
  margin: 0 0 20px;
  color: var(--ink);
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg-card);
  color: var(--ink);
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-muted);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(201,151,119,0.15);
}

.affiliate-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 16px 0 40px;
}
.affiliate-benefit {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.affiliate-icon {
  width: 48px;
  height: 48px;
  background: var(--brand-light);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--brand);
}
.affiliate-benefit h3 {
  margin: 0 0 6px;
  color: var(--ink);
}
.affiliate-steps {
  padding-left: 20px;
  margin: 12px 0 32px;
}
.affiliate-steps li {
  margin-bottom: 10px;
  color: var(--ink-soft);
}
.affiliate-cta {
  background: #0A0A0A;
  border: 1px solid var(--line);
  color: white;
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin-top: 40px;
}
.affiliate-cta h2 {
  color: white;
  margin: 0 0 10px;
}
.affiliate-cta p {
  color: var(--ink-soft) !important;
  margin-bottom: 20px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.affiliate-cta .btn-primary {
  background: var(--brand);
  color: #141414;
}
.affiliate-cta .btn-primary:hover {
  background: #D9A88A;
}

.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product img {
  background: var(--bg-card-img);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px;
  object-fit: contain;
  width: 100% !important;
  height: 280px !important;
  max-width: 100%;
}
.woocommerce ul.products li.product .price {
  color: var(--ink) !important;
  font-weight: 700;
}
.woocommerce ul.products li.product a {
  color: var(--ink);
}
.woocommerce ul.products li.product a:hover {
  text-decoration: none;
}
.woocommerce ul.products li.product h2.woocommerce-loop-product__title {
  color: var(--ink) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 8px 0 4px !important;
}
.woocommerce div.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--ink);
  font-size: 28px;
  font-weight: 700;
}
.woocommerce div.product .price del,
.woocommerce ul.products li.product .price del,
.product-foot del,
.product-price del,
.price-block del {
  color: var(--ink-muted);
  font-size: 20px;
  font-weight: 400;
  text-decoration: line-through !important;
}
.woocommerce div.product .price ins,
.woocommerce ul.products li.product .price ins,
.product-foot ins,
.product-price ins,
.price-block ins {
  text-decoration: none !important;
  color: var(--brand);
  font-weight: 700;
}
.woocommerce ins,
ins {
  text-decoration: none !important;
}
.woocommerce div.product .stock {
  color: var(--ink-soft);
  font-size: 14px;
  margin-bottom: 16px;
}
.woocommerce .quantity .qty {
  background: transparent;
  border: none;
  color: var(--ink);
  border-radius: 0;
  padding: 0;
  font-size: 16px;
  font-family: inherit;
  font-weight: 600;
  width: 80px;
  text-align: center;
}
.woocommerce .quantity .qty:focus {
  outline: none;
}
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce a.button.alt,
.woocommerce .single_add_to_cart_button {
  background: var(--brand) !important;
  color: #141414 !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 14px 28px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  letter-spacing: 0.01em !important;
  text-transform: capitalize !important;
  cursor: pointer;
  transition: background 0.2s;
}
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce .single_add_to_cart_button:hover {
  background: #D9A88A !important;
  color: #141414 !important;
}
/* ── Qty +/- selector (single pill) ── */
.onyx-qty {
  display: inline-flex !important;
  align-items: center;
  background: var(--bg-soft) !important;
  border: 1px solid var(--line) !important;
  border-radius: 14px !important;
  overflow: hidden;
  height: 64px;
  flex-shrink: 0;
  box-sizing: border-box;
}
.onyx-qty-btn {
  width: 44px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  color: var(--ink-soft) !important;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  transition: color 0.15s;
  font-family: inherit;
  user-select: none;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1;
}
.onyx-qty-btn:hover {
  color: var(--brand) !important;
}
.onyx-qty .qty {
  width: 40px !important;
  text-align: center !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  color: var(--ink) !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  padding: 0 !important;
  margin: 0 !important;
  height: 100% !important;
  -moz-appearance: textfield;
  box-shadow: none !important;
}
.onyx-qty .qty:focus {
  outline: none !important;
  box-shadow: none !important;
}
.onyx-qty .qty::-webkit-inner-spin-button,
.onyx-qty .qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Product page add-to-cart row */
.product-info form.cart {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  width: 100% !important;
  gap: 18px;
  margin-bottom: 28px;
}
.product-info form.cart .quantity {
  margin: 0 !important;
  flex-shrink: 0;
  float: none !important;
  display: inline-flex !important;
}
.product-info form.cart::before,
.product-info form.cart::after {
  display: none !important;
}
.product-info form.cart .single_add_to_cart_button,
.woocommerce div.product form.cart .single_add_to_cart_button {
  flex: 1 1 auto !important;
  width: auto !important;
  height: 64px !important;
  min-height: 64px !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  text-transform: capitalize !important;
  border-radius: 14px !important;
  background: var(--brand) !important;
  color: #141414 !important;
  padding: 0 28px !important;
  box-sizing: border-box;
  transition: background 0.2s;
}
.product-info form.cart .single_add_to_cart_button:hover,
.woocommerce div.product form.cart .single_add_to_cart_button:hover {
  background: #D9A88A !important;
}
.woocommerce-message,
.woocommerce-info {
  background: var(--bg-card);
  border-top-color: var(--brand);
  color: var(--ink);
}
.woocommerce-message a,
.woocommerce-info a {
  color: var(--brand);
}
.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--brand);
}
.woocommerce-error {
  background: var(--bg-card);
  border-top-color: #ef4444;
  color: var(--ink);
}
.woocommerce nav.woocommerce-pagination {
  margin-top: 56px;
  text-align: center;
}
.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex !important;
  gap: 8px;
  border: none !important;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: none !important;
  overflow: visible !important;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 42px !important;
  height: 42px !important;
  background: var(--bg-card) !important;
  color: var(--ink-soft) !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.15s;
  padding: 0 !important;
}
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--brand-light) !important;
  color: var(--brand) !important;
  border-color: var(--brand) !important;
  text-decoration: none;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--brand) !important;
  color: #141414 !important;
  border-color: var(--brand) !important;
}
.woocommerce .woocommerce-ordering select,
.woocommerce .woocommerce-result-count {
  background: var(--bg-card);
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 14px;
  font-family: inherit;
}
.woocommerce-cart .cart-collaterals,
.woocommerce table.shop_table {
  background: var(--bg-card);
  border-color: var(--line);
  color: var(--ink);
}
.woocommerce table.shop_table th {
  color: var(--ink-soft);
}
.woocommerce table.shop_table td {
  border-color: var(--line-soft);
  color: var(--ink);
}
/* ── Onyx checkout layout ── */
.onyx-checkout-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
/* Steps — accordion */
.onyx-step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.onyx-step.is-active {
  border-color: var(--brand);
}
.onyx-step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;
}
.onyx-step.is-active .onyx-step-header {
  border-bottom: 1px solid var(--line);
}
.onyx-step.is-collapsed .onyx-step-header:hover {
  background: var(--bg-soft);
}
.onyx-step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--brand);
  color: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.onyx-step.is-collapsed .onyx-step-num {
  opacity: 0.5;
}
.onyx-step-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  border: none;
  padding: 0;
  transition: opacity 0.2s;
}
.onyx-step.is-collapsed .onyx-step-header h3 {
  opacity: 0.45;
}
/* Accordion body show/hide */
.onyx-step-body {
  padding: 28px;
}
.onyx-step.is-collapsed .onyx-step-body {
  display: none;
}
/* Continue buttons */
.onyx-continue-btn {
  display: block;
  width: 100%;
  margin-top: 24px;
  padding: 16px;
  background: var(--brand);
  color: #141414;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s;
}
.onyx-continue-btn:hover {
  background: #D9A88A;
}
/* ── Checkout form fields (WooCommerce 6.9 float-based) ── */
/* Use WooCommerce's full selector chain to win specificity */
.woocommerce form.checkout .onyx-step-body .woocommerce-billing-fields h3,
.woocommerce form.checkout .onyx-step-body .woocommerce-shipping-fields h3,
.woocommerce-checkout .onyx-step-body .woocommerce-billing-fields h3,
.woocommerce-checkout .onyx-step-body .woocommerce-shipping-fields h3 {
  display: none !important;
}
/* Clear floats */
.onyx-step-body .woocommerce-billing-fields__field-wrapper::after,
.onyx-step-body .woocommerce-shipping-fields__field-wrapper::after {
  content: "";
  display: table;
  clear: both;
}
/* Row layout — float based for WooCommerce 6.9 */
.woocommerce form .form-row,
.woocommerce-page form .form-row,
.woocommerce form.checkout .form-row {
  padding: 0 !important;
  margin: 0 0 14px !important;
}
.woocommerce form.checkout .form-row-first,
.woocommerce-page form.checkout .form-row-first {
  float: left !important;
  width: 48% !important;
  clear: left !important;
}
.woocommerce form.checkout .form-row-last,
.woocommerce-page form.checkout .form-row-last {
  float: right !important;
  width: 48% !important;
}
.woocommerce form.checkout .form-row-wide,
.woocommerce-page form.checkout .form-row-wide {
  float: none !important;
  clear: both !important;
  width: 100% !important;
}
/* Labels */
.woocommerce form.checkout .form-row label,
.woocommerce-page form.checkout .form-row label {
  display: block !important;
  color: var(--ink-soft) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  margin-bottom: 8px !important;
  line-height: 1.3 !important;
}
.woocommerce form.checkout .form-row label abbr {
  color: var(--brand) !important;
  text-decoration: none !important;
}
/* Input wrapper — force full width */
.woocommerce form.checkout .form-row .woocommerce-input-wrapper {
  display: block !important;
  width: 100% !important;
}
/* ALL inputs — max specificity to beat WooCommerce */
.woocommerce form.checkout .form-row input.input-text,
.woocommerce form.checkout .form-row textarea,
.woocommerce form.checkout .form-row select,
.woocommerce-page form.checkout .form-row input.input-text,
.woocommerce-page form.checkout .form-row textarea,
.woocommerce-page form.checkout .form-row select,
.woocommerce .onyx-checkout .form-row input.input-text,
.woocommerce .onyx-checkout .form-row textarea,
.woocommerce .onyx-checkout .form-row select {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  background: var(--bg-soft) !important;
  border: 1px solid var(--line) !important;
  color: var(--ink) !important;
  border-radius: 8px !important;
  padding: 14px 16px !important;
  font-family: var(--font) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  box-sizing: border-box !important;
  height: auto !important;
  line-height: 1.4 !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  transition: border-color 0.2s;
}
.woocommerce form.checkout .form-row input.input-text::placeholder {
  color: var(--ink-muted) !important;
}
.woocommerce form.checkout .form-row input.input-text:focus,
.woocommerce form.checkout .form-row textarea:focus,
.woocommerce form.checkout .form-row select:focus {
  border-color: var(--brand) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(201,151,119,0.12) !important;
}
/* Select2 dropdown override */
.woocommerce form.checkout .select2-container,
.woocommerce .onyx-checkout .select2-container {
  width: 100% !important;
}
.woocommerce form.checkout .select2-container--default .select2-selection--single,
.woocommerce .onyx-checkout .select2-container--default .select2-selection--single {
  background: var(--bg-soft) !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  height: 48px !important;
}
.woocommerce form.checkout .select2-selection--single .select2-selection__rendered {
  color: var(--ink) !important;
  padding-left: 16px !important;
  line-height: 48px !important;
}
.woocommerce form.checkout .select2-selection--single .select2-selection__arrow {
  height: 48px !important;
  right: 10px !important;
}
/* Ship to different address */
.onyx-step-body #ship-to-different-address {
  clear: both;
  margin-top: 8px;
}
.woocommerce form.checkout #ship-to-different-address label {
  font-size: 14px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--ink) !important;
}
/* Order notes */
.woocommerce form.checkout .woocommerce-additional-fields textarea {
  min-height: 80px;
  resize: vertical;
}
/* Hide the default "Have a coupon?" bar — we have coupon in sidebar */
.woocommerce-form-coupon-toggle {
  display: none !important;
}
.checkout_coupon.woocommerce-form-coupon {
  display: none !important;
}
/* Payment inside step */
.onyx-step-body #payment {
  background: none;
  border: none;
  border-radius: 0;
  margin: 0;
}
/* ── Payment method selection — clean modern cards ── */
.onyx-step-body #payment,
.onyx-step-body #payment .woocommerce-checkout-payment {
  background: transparent !important;
  border: none !important;
}
.onyx-step-body #payment .payment_methods {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  list-style: none !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* Each method = a clean row: [radio] [ title + badge / description ]. No icon. */
.onyx-step-body #payment .payment_methods li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 13px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 14px 16px;
  margin: 0 !important;
  list-style: none !important;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.onyx-step-body #payment .payment_methods li:hover {
  border-color: rgba(201,151,119,0.45);
}
/* Selected row — subtle brand highlight (no heavy glow) */
.onyx-step-body #payment .payment_methods li:has(input:checked) {
  border-color: var(--brand);
  background: var(--bg-card);
}
/* Custom radio — native input, styled as a brand-gold dot */
.onyx-step-body #payment .payment_methods li input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 19px;
  height: 19px;
  min-width: 19px;
  margin: 0 !important;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
  grid-column: 1;
  transition: border-color 0.18s ease;
}
.onyx-step-body #payment .payment_methods li input[type="radio"]:checked {
  border-color: var(--brand);
}
.onyx-step-body #payment .payment_methods li input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
}
/* Text column: title row + description stacked */
.onyx-step-body #payment .payment_methods li > label {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  color: var(--ink) !important;
  cursor: pointer;
  padding: 0 !important;
  margin: 0 !important;
}
.onyx-pay-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 9px;
}
.onyx-pay-title {
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.3;
  color: var(--ink);
}
.onyx-pay-desc {
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--ink-muted);
}
/* Discount / recommended pill next to the payment title */
.onyx-pay-badge {
  display: inline-block;
  background: var(--brand);
  color: #1a1512;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  line-height: 1.25;
  white-space: nowrap;
}
.onyx-step-body #payment .place-order {
  display: none;
}
/* Hide WooCommerce default place order visually — sidebar button triggers it via JS */
.woocommerce-checkout #place_order {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
/* Sidebar complete payment button */
.onyx-sidebar-action {
  margin-bottom: 20px;
}
.onyx-complete-btn {
  width: 100%;
  background: var(--brand);
  color: #141414;
  border: none;
  border-radius: 10px;
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s;
}
.onyx-complete-btn:hover {
  background: #D9A88A;
}
.onyx-fields-note {
  text-align: center;
  color: var(--brand);
  font-size: 13px;
  margin: 10px 0 0;
  font-weight: 500;
}
/* Order summary sidebar */
.onyx-summary-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  position: sticky;
  top: 100px;
}
.onyx-summary-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
/* Product items */
.onyx-summary-items {
  margin-bottom: 20px;
}
.onyx-summary-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}
.onyx-summary-item:last-child {
  border-bottom: none;
}
.onyx-summary-thumb {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.onyx-summary-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.onyx-summary-info {
  flex: 1;
  min-width: 0;
}
.onyx-summary-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.onyx-summary-meta {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 1px;
}
.onyx-summary-qty {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 2px;
}
.onyx-summary-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
/* Coupon */
.onyx-coupon {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.onyx-coupon-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.onyx-coupon-input {
  flex: 1;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 14px;
}
.onyx-coupon-input::placeholder {
  color: var(--ink-muted);
}
.onyx-coupon-input:focus {
  border-color: var(--brand);
  outline: none;
}
.onyx-coupon-btn {
  background: var(--brand);
  color: #141414;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}
.onyx-coupon-btn:hover {
  background: #D9A88A;
}
/* Totals */
.onyx-summary-totals {
  margin-bottom: 16px;
}
.onyx-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-soft);
}
.onyx-total-row span:last-child {
  font-weight: 600;
  color: var(--ink);
}
.onyx-discount span:last-child {
  color: var(--success);
}
.onyx-total-final {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 0;
  border-top: 2px solid var(--line);
  margin-bottom: 24px;
}
.onyx-total-final span:first-child {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.onyx-total-final span:last-child {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
}
/* Trust badges */
.onyx-checkout-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.onyx-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
}
/* Select2 */
.select2-container--default .select2-selection--single {
  background: var(--bg-soft) !important;
  border-color: var(--line) !important;
  color: var(--ink) !important;
  border-radius: 8px !important;
  height: 48px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--ink) !important;
  line-height: 48px !important;
  padding-left: 16px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 48px !important;
}
/* ── Country / State dropdown (select2) — refined dark styling ── */
.select2-dropdown {
  background: var(--bg-card) !important;
  border: 1px solid rgba(201,151,119,0.30) !important;
  border-radius: 12px !important;
  box-shadow: 0 18px 50px rgba(0,0,0,0.55) !important;
  overflow: hidden !important;
  padding: 6px !important;
  margin-top: 6px !important;
}
.select2-dropdown--above { margin-top: 0 !important; margin-bottom: 6px !important; }
/* search field inside the dropdown */
.select2-search--dropdown { padding: 4px 4px 8px !important; }
.select2-container--default .select2-search--dropdown .select2-search__field {
  background: var(--bg-soft) !important;
  border: 1px solid rgba(201,151,119,0.25) !important;
  border-radius: 8px !important;
  color: var(--ink) !important;
  padding: 10px 12px !important;
  font-size: 14px !important;
  outline: none !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: var(--brand) !important;
  box-shadow: 0 0 0 3px rgba(201,151,119,0.12) !important;
}
.select2-results { max-height: 320px !important; }
.select2-results__options { max-height: 300px !important; }
.select2-results__option {
  color: var(--ink) !important;
  padding: 11px 14px !important;
  border-radius: 8px !important;
  font-size: 14.5px !important;
  transition: background 0.12s ease, color 0.12s ease;
}
.select2-results__option--highlighted {
  background: var(--brand-light) !important;
  color: var(--ink) !important;
}
.select2-results__option[aria-selected="true"],
.select2-results__option--selected {
  background: var(--brand) !important;
  color: #141414 !important;
  font-weight: 600 !important;
}
/* scrollbar inside dropdown */
.select2-results__options::-webkit-scrollbar { width: 8px; }
.select2-results__options::-webkit-scrollbar-thumb { background: rgba(201,151,119,0.35); border-radius: 8px; }
/* Remove old checkout ::after trust text */
.woocommerce-checkout::after { display: none; }
/* ── Cart page — table left, totals right ── */
.woocommerce-cart .woocommerce {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
}
.woocommerce-cart .woocommerce > .woocommerce-notices-wrapper {
  width: 100%;
  flex-shrink: 0;
}
.woocommerce-cart form.woocommerce-cart-form {
  flex: 1;
  min-width: 0;
}
.woocommerce-cart .cart-collaterals {
  width: 320px;
  flex-shrink: 0;
}
.woocommerce-cart .cart_totals {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  position: sticky;
  top: 100px;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden;
}
.woocommerce-cart .cart_totals h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
/* Free-shipping progress bar */
.onyx-freeship {
  margin: 0 0 18px;
}
.onyx-freeship__msg {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}
.onyx-freeship.is-done .onyx-freeship__msg {
  color: var(--brand);
}
.onyx-freeship__bar {
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: var(--bg-soft);
  overflow: hidden;
}
.onyx-freeship__fill {
  height: 100%;
  border-radius: 4px;
  background: var(--brand);
  transition: width 0.4s ease;
}
.woocommerce-cart .cart_totals table {
  width: 100% !important;
  max-width: 100% !important;
  table-layout: fixed !important;
  border: none !important;
  background: none !important;
}
.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
  padding: 10px 0 !important;
  border: none !important;
  background: none !important;
  vertical-align: middle;
}
.woocommerce-cart .cart_totals table th {
  color: var(--ink-soft) !important;
  font-weight: 500;
  font-size: 13px;
  text-align: left;
  width: 40%;
}
.woocommerce-cart .cart_totals table td {
  color: var(--ink) !important;
  font-weight: 600;
  text-align: right;
  font-size: 15px;
}
.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
  padding-top: 14px !important;
  border-top: 1px solid var(--line) !important;
}
.woocommerce-cart .cart_totals .order-total td {
  font-size: 20px !important;
  font-weight: 800 !important;
}
.woocommerce-cart .wc-proceed-to-checkout {
  padding: 0 !important;
}
.woocommerce-cart .wc-proceed-to-checkout a.button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  text-align: center;
  margin-top: 16px;
  border-radius: 10px !important;
  padding: 14px 16px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  white-space: nowrap;
  overflow: hidden;
}
/* Cart table */
.woocommerce-cart table.shop_table {
  background: var(--bg-card) !important;
  border: 1px solid var(--line) !important;
  border-radius: 14px !important;
  overflow: hidden;
  width: 100% !important;
  border-collapse: collapse !important;
}
.woocommerce-cart table.shop_table th {
  background: var(--bg-soft) !important;
  color: var(--ink-muted) !important;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 16px !important;
  white-space: nowrap;
}
.woocommerce-cart table.shop_table td {
  padding: 20px 16px !important;
  border-color: var(--line-soft) !important;
  color: var(--ink) !important;
  vertical-align: middle !important;
}
/* Product thumbnail */
.woocommerce-cart table.shop_table .product-thumbnail {
  width: 80px !important;
}
.woocommerce-cart table.shop_table .product-thumbnail img {
  width: 64px !important;
  height: 64px !important;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
}
/* Product name - don't break awkwardly */
.woocommerce-cart table.shop_table .product-name {
  min-width: 140px;
}
.woocommerce-cart table.shop_table .product-name a {
  color: var(--brand) !important;
  font-weight: 600;
  font-size: 14px;
}
/* Subtle remove button */
.woocommerce-cart table.shop_table .product-remove {
  width: 30px !important;
}
.woocommerce-cart table.shop_table .product-remove a.remove {
  color: var(--ink-muted) !important;
  font-size: 16px !important;
  font-weight: 300;
  opacity: 0.35;
  transition: opacity 0.2s, color 0.2s;
}
.woocommerce-cart table.shop_table .product-remove a.remove:hover {
  color: #ef4444 !important;
  background: none !important;
  opacity: 1;
}
/* Coupon row */
.woocommerce-cart table.shop_table td.actions {
  padding: 16px !important;
}
.woocommerce-cart table.shop_table td.actions .coupon {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.woocommerce-cart table.shop_table td.actions .coupon input {
  background: var(--bg-soft) !important;
  border: 1px solid var(--line) !important;
  color: var(--ink) !important;
  border-radius: 12px !important;
  padding: 14px 16px !important;
  font-family: inherit !important;
  font-size: 15px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
/* Apply Coupon + Update Cart — both full width, brand color */
.woocommerce-cart td.actions input[name="apply_coupon"],
.woocommerce-cart td.actions button[name="apply_coupon"] {
  display: block !important;
  width: 100% !important;
  background: var(--brand) !important;
  color: #141414 !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 15px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  letter-spacing: 0.01em !important;
  text-transform: capitalize !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  box-sizing: border-box !important;
}
.woocommerce-cart td.actions input[name="update_cart"],
.woocommerce-cart td.actions button[name="update_cart"] {
  display: block !important;
  width: 100% !important;
  background: var(--brand) !important;
  color: #141414 !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 15px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  letter-spacing: 0.01em !important;
  text-transform: capitalize !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  box-sizing: border-box !important;
  margin-top: 8px !important;
}
.woocommerce-cart td.actions input[name="apply_coupon"]:hover,
.woocommerce-cart td.actions button[name="apply_coupon"]:hover,
.woocommerce-cart td.actions input[name="update_cart"]:hover,
.woocommerce-cart td.actions button[name="update_cart"]:hover {
  background: #D9A88A !important;
}
/* Old checkout trust text — replaced by sidebar trust badges */
.woocommerce-checkout::after {
  display: none;
}
/* My account page */
.woocommerce-account .woocommerce-MyAccount-navigation {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 14px 20px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
  font-weight: 500;
  transition: all 0.2s;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
  color: var(--brand);
  background: var(--brand-light);
  text-decoration: none;
}
.woocommerce-account .woocommerce-MyAccount-content {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
}
.woocommerce-account .woocommerce-MyAccount-content a {
  color: var(--brand);
}
.woocommerce form.login,
.woocommerce form.register {
  background: var(--bg-card) !important;
  border: 1px solid var(--line) !important;
  border-radius: 14px !important;
  padding: 32px !important;
}
.woocommerce form.login label,
.woocommerce form.register label {
  color: var(--ink-soft) !important;
}
.woocommerce form.login input[type="text"],
.woocommerce form.login input[type="password"],
.woocommerce form.login input[type="email"],
.woocommerce form.register input[type="text"],
.woocommerce form.register input[type="password"],
.woocommerce form.register input[type="email"] {
  background: var(--bg-soft) !important;
  border: 1px solid var(--line) !important;
  color: var(--ink) !important;
  border-radius: 8px !important;
  padding: 14px 16px !important;
  font-family: inherit !important;
  width: 100% !important;
}

/* ── WooCommerce Product Tabs ── */
.woocommerce-tabs {
  margin-top: 64px;
  margin-bottom: 64px;
}
.woocommerce-tabs ul.tabs,
.woocommerce-tabs .wc-tabs {
  list-style: none !important;
  margin: 0 0 0 0 !important;
  padding: 0 !important;
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  overflow: visible !important;
}
.woocommerce-tabs ul.tabs::before,
.woocommerce-tabs ul.tabs::after {
  display: none !important;
}
.woocommerce-tabs ul.tabs li {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  border-radius: 0 !important;
  position: relative;
}
.woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 14px 24px;
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.woocommerce-tabs ul.tabs li a:hover {
  color: var(--ink-soft);
}
.woocommerce-tabs ul.tabs li.active a {
  color: var(--brand);
  border-bottom-color: var(--brand);
}
.woocommerce-tabs .panel,
.woocommerce-tabs .woocommerce-Tabs-panel {
  padding: 32px 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}
.woocommerce-tabs .panel h2,
.woocommerce-tabs .woocommerce-Tabs-panel h2 {
  display: none;
}
.woocommerce-tabs .panel p,
.woocommerce-tabs .woocommerce-Tabs-panel p {
  margin-bottom: 16px;
  color: var(--ink-soft);
}
.woocommerce-tabs .panel ul,
.woocommerce-tabs .woocommerce-Tabs-panel ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.woocommerce-tabs .panel ul li,
.woocommerce-tabs .woocommerce-Tabs-panel ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--ink-soft);
}
.woocommerce-tabs .panel ul li::before,
.woocommerce-tabs .woocommerce-Tabs-panel ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.woocommerce-tabs .panel table,
.woocommerce-tabs .woocommerce-Tabs-panel table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.woocommerce-tabs .panel table th,
.woocommerce-tabs .panel table td,
.woocommerce-tabs .woocommerce-Tabs-panel table th,
.woocommerce-tabs .woocommerce-Tabs-panel table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 14px;
}
.woocommerce-tabs .panel table th,
.woocommerce-tabs .woocommerce-Tabs-panel table th {
  color: var(--ink);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.06em;
}
/* Additional info tab (attributes table) */
.woocommerce-tabs .shop_attributes {
  width: 100%;
  border-collapse: collapse;
}
.woocommerce-tabs .shop_attributes th {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  width: 30%;
  text-transform: none;
  letter-spacing: 0;
}
.woocommerce-tabs .shop_attributes td {
  color: var(--ink);
  font-size: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.woocommerce-tabs .shop_attributes td p {
  margin: 0;
}

/* ── Tablet: 1024px ── */
@media (max-width: 1024px) {
  .onyx-checkout-grid { grid-template-columns: 1fr; }
  .onyx-summary-card { position: static; }
  .woocommerce-cart .woocommerce { flex-direction: column; }
  .woocommerce-cart .cart-collaterals { width: 100%; }
  .woocommerce-cart .cart_totals { position: static; }
  .hero { grid-template-columns: 1fr; padding: 48px 24px 56px; }
  .hero-content { padding-left: 0; max-width: 100%; }
  .hero-video { height: 400px; }
  .product-grid, .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .callout, .affiliate-grid { grid-template-columns: 1fr; padding: 36px; }
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  /* Product page mobile tweaks */
  .product-info h1 { font-size: 28px; }
  .price-block .price { font-size: 26px; }
  /* Gallery thumbs scrollable */
  .gallery-thumbs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  /* Tabs scroll on tablet if many */
  .woocommerce-tabs { margin-top: 40px; margin-bottom: 40px; }
}

/* ── Small tablet / large phone: 768px ── */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .calc-two-col { grid-template-columns: 1fr; }
  .calc-results-card { position: static; }
  .calc-inputs-card, .calc-results-card { padding: 24px; }
  .about-values, .affiliate-benefits { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .affiliate-cta { padding: 28px 20px; }
  /* Hero: hide video on smaller screens */
  .hero-video { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  /* Announce bar */
  .announce { font-size: 11px; padding: 6px 12px; }
  /* Trust bar: stack vertically */
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-item { gap: 10px; }
  .trust-icon { width: 36px; height: 36px; }
  .trust-icon svg { width: 16px; height: 16px; }
  /* Cart table mobile */
  .woocommerce-cart table.shop_table { font-size: 13px; }
  .woocommerce-cart table.shop_table .product-thumbnail { width: 60px !important; }
  .woocommerce-cart table.shop_table .product-thumbnail img { width: 48px !important; height: 48px !important; }
  /* Checkout */
  .onyx-step-header h3 { font-size: 16px; }
  .onyx-continue-btn { font-size: 14px; padding: 14px 24px; }
  .onyx-summary-items { gap: 12px; }
  /* Product page */
  .product-info h1 { font-size: 24px; }
  .price-block .price { font-size: 24px; }
  .product-perks .perk { font-size: 13px; padding: 10px 14px; }
  /* Form cart (qty + add to cart) stacks on small */
  .product-info form.cart { flex-direction: column !important; align-items: stretch !important; }
  .product-info form.cart .onyx-qty { align-self: flex-start; }
  .product-info form.cart .single_add_to_cart_button { width: 100% !important; }
  /* WooCommerce tabs */
  .woocommerce-tabs ul.tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .woocommerce-tabs ul.tabs::-webkit-scrollbar { display: none; }
  .woocommerce-tabs ul.tabs li a { padding: 12px 16px; font-size: 12px; white-space: nowrap; }
  .woocommerce-tabs .panel,
  .woocommerce-tabs .woocommerce-Tabs-panel { padding: 24px 0; font-size: 14px; }
  .woocommerce-tabs { margin-top: 32px; margin-bottom: 32px; }
  /* Related products — 2 col on tablet */
  .related.products .product-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── Phone only: related products 1 col ── */
@media (max-width: 640px) {
  .related.products .product-grid { grid-template-columns: 1fr !important; }
}

/* ── Phone: 640px ── */
@media (max-width: 640px) {
  /* Header & nav */
  .nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--line); padding: 16px 24px; gap: 12px; box-shadow: var(--shadow-md); z-index: 50; }
  .nav.nav-open { display: flex; }
  .nav ul, .nav .menu { flex-direction: column; gap: 12px; }
  .hamburger { display: grid; margin-left: auto; }
  .onyx-lang__btn { height: 36px; padding: 0 8px; font-size: 12px; }
  .onyx-lang__btn svg:first-child { display: none; }
  .header-actions .icon-btn:not([aria-label="Cart"]) { display: none; }
  .header-actions { margin-right: 6px; }
  .header-inner { padding: 12px 0; gap: 8px; }
  .logo { font-size: 16px; gap: 6px; }
  .logo-icon { width: 58px !important; height: 24px !important; max-width: 58px !important; max-height: 24px !important; }
  .logo .brand { font-size: 11px; }
  /* Announce bar */
  .announce { font-size: 10px; padding: 6px 8px; line-height: 1.4; }
  /* Hero */
  section { padding: 48px 0; }
  .hero { padding: 72px 16px 84px; min-height: 78vh; align-content: center; }
  .hero-video { display: none; }
  .hero h1 { font-size: 30px; letter-spacing: -0.5px; line-height: 1.2; }
  .hero p.lead { font-size: 15px; margin-bottom: 28px; line-height: 1.6; }
  .hero-ctas {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    width: 100%;
  }
  .hero-ctas .btn {
    text-align: center;
    width: 100%;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em !important;
    text-transform: capitalize !important;
    padding: 17px 24px !important;
    border-radius: 14px !important;
  }
  .hero-text-link {
    text-align: center;
    font-size: 15px;
    padding: 4px 0 !important;
  }
  .eyebrow { font-size: 10px; }
  /* Product grids — 2 columns on mobile */
  .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
  /* Product card — compact 2-up, image fills the whole frame */
  .product-card { border-radius: 12px; }
  .product-image { height: auto; aspect-ratio: 1; }
  .product-image img { width: 100%; height: 100%; object-fit: cover; }
  .product-body { padding: 10px 10px 6px; gap: 3px; }
  .product-cat { font-size: 9px; }
  .product-name { font-size: 13px; line-height: 1.25; }
  .product-meta { font-size: 11px; }
  .product-foot { padding: 8px 10px 0; }
  .product-price { font-size: 14px; }
  .product-card .add-to-cart-btn {
    padding: 11px 0;
    font-size: 11px;
    border-radius: 0;
    width: 100%;
    margin: 0;
  }
  /* Trust — 2×2 divider strip */
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .trust-item { padding: 16px 14px; border-left: none; }
  .trust-item:nth-child(even) { border-left: 1px solid var(--line); }
  .trust-item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .trust { padding: 20px 0; }
  /* Callout */
  .callout { padding: 28px 20px; gap: 24px; }
  .callout h3 { font-size: 22px; }
  .callout p { font-size: 14px; }
  .callout .stat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat { padding: 16px 12px; }
  .stat .num { font-size: 22px; }
  .stat .label { font-size: 10px; }
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer { padding: 48px 0 24px; margin-top: 48px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .disclaimer-bar { font-size: 10px; padding: 10px 16px; }
  /* Newsletter */
  .newsletter { padding: 32px 16px; }
  .newsletter h3 { font-size: 20px; }
  .newsletter form { flex-direction: column; }
  .newsletter .btn { width: 100%; }
  /* Affiliate */
  .affiliate-grid { gap: 24px; }
  .affiliate h3 { font-size: 22px; }
  /* How steps */
  .how-step { padding: 20px; }
  .how-step h4 { font-size: 16px; }
  .how-step p { font-size: 14px; }
  /* Section heads */
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  h2.section-title { font-size: 22px; }
  /* Breadcrumbs */
  .breadcrumbs { font-size: 12px; padding: 16px 0 0; }
  /* Product detail page */
  .product-detail { gap: 24px; padding: 20px 0 40px; }
  .product-info h1 { font-size: 22px; }
  .product-info .price-block { padding: 14px 0; margin-bottom: 18px; }
  .price-block .price { font-size: 22px; }
  .product-perks { gap: 8px; margin-top: 18px; }
  .product-perks .perk { font-size: 13px; padding: 10px 12px; }
  .product-perks .perk-icon { flex: none; }
  .product-perks .perk-icon svg { width: 16px; height: 16px; }
  .gallery-thumbs .thumb { width: 56px; height: 56px; }
  /* Qty + Add to Cart mobile */
  .onyx-qty { height: 54px !important; border-radius: 12px !important; }
  .onyx-qty .onyx-qty-btn { width: 44px !important; font-size: 18px !important; }
  .onyx-qty .qty { width: 40px !important; font-size: 16px !important; }
  .product-info form.cart { gap: 12px !important; }
  .product-info form.cart .single_add_to_cart_button,
  .single_add_to_cart_button {
    height: 54px !important;
    min-height: 54px !important;
    font-size: 16px !important;
    border-radius: 12px !important;
    letter-spacing: 0.01em !important;
    text-transform: capitalize !important;
  }
  /* WooCommerce tabs */
  .woocommerce-tabs { margin-top: 24px; margin-bottom: 24px; }
  .woocommerce-tabs ul.tabs li a { padding: 10px 14px; font-size: 11px; }
  .woocommerce-tabs .panel,
  .woocommerce-tabs .woocommerce-Tabs-panel { padding: 20px 0; font-size: 14px; line-height: 1.7; }
  /* Checkout mobile */
  .onyx-checkout-grid { gap: 24px; }
  .onyx-step-header { padding: 14px 16px; }
  .onyx-step-header h3 { font-size: 15px; }
  .onyx-step-num { width: 28px; height: 28px; font-size: 12px; }
  .onyx-step-body { padding: 16px; }
  .onyx-continue-btn { font-size: 13px; padding: 12px 20px; }
  .onyx-summary-card { padding: 20px; }
  .onyx-summary-card h3 { font-size: 18px; }
  .onyx-summary-thumb { width: 48px; height: 48px; }
  .onyx-summary-name { font-size: 13px; }
  .onyx-total-final { font-size: 16px; padding: 14px 0; }
  .onyx-complete-btn { font-size: 14px; padding: 14px 24px; }
  .onyx-checkout-trust { gap: 10px; }
  .onyx-trust-item { font-size: 12px; gap: 8px; }
  .onyx-trust-item svg { width: 14px; height: 14px; }
  .onyx-coupon-input { font-size: 13px !important; }
  .onyx-coupon-btn { font-size: 12px !important; padding: 8px 12px !important; }
  /* Checkout form fields mobile */
  .onyx-checkout .form-row-first,
  .onyx-checkout .form-row-last { float: none !important; width: 100% !important; }
  /* Cart mobile — product table and totals stack at equal full width */
  .woocommerce-cart form.woocommerce-cart-form,
  .woocommerce-cart .cart-collaterals {
    width: 100% !important;
    flex-basis: 100% !important;
    max-width: 100% !important;
  }

  /* ── Compact cart line items: tiny image + 2-row card (saves vertical space) ── */
  .woocommerce-cart table.shop_table { border: none !important; font-size: 12px; }
  .woocommerce-cart table.shop_table thead { display: none; }
  .woocommerce-cart table.shop_table tbody tr.cart_item {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    grid-template-areas:
      "thumb name remove"
      "thumb qty  subtotal";
    column-gap: 12px;
    row-gap: 8px;
    align-items: center;
    padding: 12px;
    margin-bottom: 10px;
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    border-radius: 12px;
  }
  .woocommerce-cart table.shop_table tbody tr.cart_item td {
    display: block;
    padding: 0 !important;
    border: none !important;
    text-align: left !important;
    width: auto !important;
  }
  .woocommerce-cart table.shop_table tbody tr.cart_item td::before { display: none !important; }
  .cart_item .product-thumbnail { grid-area: thumb; align-self: center; }
  .cart_item .product-thumbnail img { width: 46px !important; height: 46px !important; border-radius: 8px; display: block; }
  .cart_item .product-name { grid-area: name; align-self: end; }
  .cart_item .product-name a { font-size: 13px !important; font-weight: 600; line-height: 1.3; }
  .cart_item .product-remove { grid-area: remove; text-align: right !important; align-self: start; }
  .cart_item .product-remove a.remove { font-size: 20px !important; line-height: 1; }
  .cart_item .product-price { display: none !important; }
  .cart_item .product-quantity { grid-area: qty; align-self: center; display: flex; }
  .cart_item .product-quantity .onyx-qty {
    height: 34px !important;
    width: 104px !important;
    border-radius: 9px !important;
  }
  .cart_item .product-quantity .onyx-qty .qty {
    width: 34px !important;
    font-size: 13px !important;
  }
  .cart_item .product-quantity .onyx-qty .onyx-qty-btn {
    width: 32px !important;
    font-size: 15px !important;
  }
  .cart_item .product-subtotal { grid-area: subtotal; text-align: right !important; align-self: start; font-size: 14px; font-weight: 700; }

  /* Coupon / actions row stays a normal block */
  .woocommerce-cart table.shop_table tbody tr:not(.cart_item) { display: block; border: none; }
  .woocommerce-cart table.shop_table td.actions { padding: 12px 0 !important; }
  .woocommerce-cart table.shop_table td.actions::before { display: none !important; }
  .woocommerce-cart table.shop_table td.actions .coupon { flex-direction: column; gap: 8px; }
  .woocommerce-cart table.shop_table td.actions .coupon input { width: 100% !important; }
  .woocommerce-cart .cart_totals { border-radius: 10px; }
  /* Cart buttons — fix uppercase, sizing */
  .woocommerce-cart .button,
  .woocommerce button.button,
  .woocommerce a.button,
  .woocommerce input[name="apply_coupon"],
  .woocommerce input[name="update_cart"],
  .woocommerce-cart .checkout-button {
    text-transform: capitalize !important;
    letter-spacing: 0.01em !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    padding: 14px 20px !important;
    height: auto !important;
    min-height: 50px !important;
    white-space: nowrap !important;
  }
  .woocommerce-cart .checkout-button {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 54px !important;
    font-size: 16px !important;
  }
  /* Filter panel mobile */
  .filter-panel { border-radius: 10px; padding: 16px 18px; }
  .filter-panel h4 { font-size: 10px; margin-bottom: 12px; }
  .filter-list a { font-size: 13px; padding: 9px 4px; }
  /* My account mobile */
  .woocommerce-account .woocommerce-MyAccount-navigation li a { padding: 12px 16px; font-size: 14px; }
  .woocommerce-account .woocommerce-MyAccount-content { padding: 20px; }
  /* Pagination */
  .woocommerce-pagination { margin-top: 32px !important; }
  /* FAQ mobile */
  .faq-item { padding: 16px 18px; }
  .faq-item summary { font-size: 14px; }
  .faq-item p { font-size: 13px; }
  /* Legal page mobile */
  .legal-container { padding: 24px 0 !important; }
  .legal-container h1 { font-size: 24px !important; }
}

/* ── Very small phone: 380px ── */
@media (max-width: 380px) {
  .container { padding: 0 12px; }
  .logo { font-size: 14px; gap: 5px; }
  .logo-icon { width: 46px !important; height: 20px !important; max-width: 46px !important; max-height: 20px !important; }
  .logo .brand { font-size: 9px; letter-spacing: 0.1em; }
  .product-grid { grid-template-columns: 1fr !important; }
  .hero h1 { font-size: 24px; }
  .hero p.lead { font-size: 14px; }
  .btn { padding: 12px 20px; font-size: 13px; }
  .callout h3 { font-size: 20px; }
  .product-info h1 { font-size: 20px; }
  .price-block .price { font-size: 20px; }
  h2.section-title { font-size: 20px; }
}

/* ── Single product: research disclaimer + stacked sections ── */
.onyx-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(201, 151, 119, 0.30);
  background: var(--brand-light);
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 12.5px;
  line-height: 1.5;
}
.onyx-disclaimer svg {
  flex: none;
  width: 18px;
  height: 18px;
  color: var(--brand);
  margin-top: 1px;
}
.onyx-disclaimer strong { color: var(--ink); }

.onyx-pdp {
  max-width: 920px;
  margin: 64px auto 0;
}

/* ── Tab navigation ── */
.onyx-tabs {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}
.onyx-tabs::-webkit-scrollbar { display: none; }
.onyx-tab {
  position: relative;
  flex: none;
  appearance: none;
  background: none;
  border: 0;
  padding: 14px 18px;
  margin-bottom: -1px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.onyx-tab:hover { color: var(--ink-soft); }
.onyx-tab.is-active { color: var(--ink); }
.onyx-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--brand);
  border-radius: 2px 2px 0 0;
}

/* ── Tab panels (card under the tabs) ── */
.onyx-tab-panel { display: none; }
.onyx-tab-panel.is-active {
  display: block;
  margin-top: 26px;
  padding: 30px 32px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  animation: onyxFadeIn 0.2s ease;
}
@keyframes onyxFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: none; }
}
.onyx-pdp-sec__body {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.7;
}
.onyx-pdp-sec__body p { margin: 0 0 12px; }
.onyx-pdp-sec__body p:last-child { margin: 0; }

/* ── Research tab ── */
.onyx-research__label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 16px;
}
.onyx-research__label + .onyx-research__list,
.onyx-refs + .onyx-research__label { margin-top: 0; }
.onyx-refs ~ .onyx-research__label,
.onyx-research__list ~ .onyx-research__label { margin-top: 30px; }
.onyx-research__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
}
.onyx-research__list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
}
.onyx-research__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.onyx-refs {
  display: grid;
  gap: 0;
}
.onyx-ref {
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
}
.onyx-ref:first-child { padding-top: 4px; border-top: 0; }
.onyx-ref__authors {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.onyx-ref__title {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 6px;
}
.onyx-ref__meta {
  font-size: 12.5px;
  color: var(--ink-muted);
  line-height: 1.6;
}
.onyx-ref__meta a {
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.onyx-ref__meta a:hover { border-color: var(--brand); }
.onyx-research__note {
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-muted);
}

.onyx-spec-table {
  width: 100%;
  border-collapse: collapse;
}
.onyx-spec-table th,
.onyx-spec-table td {
  text-align: left;
  padding: 11px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}
.onyx-spec-table th {
  width: 42%;
  color: var(--ink-muted);
  font-weight: 500;
}
.onyx-spec-table td { color: var(--ink); }
.onyx-spec-table tr:last-child th,
.onyx-spec-table tr:last-child td { border-bottom: 0; }
.onyx-spec-table sub { font-size: 0.72em; }

.onyx-testing-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}
.onyx-testing-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  color: var(--ink-soft);
  font-size: 14px;
}
.onyx-testing-list strong { color: var(--ink); font-weight: 600; }
.onyx-test-dot {
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.onyx-coa-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 11px 18px;
  border: 1px solid var(--brand);
  border-radius: var(--radius);
  background: var(--brand-light);
  color: var(--brand);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.onyx-coa-btn:hover { background: var(--brand); color: #141414; }
.onyx-coa-btn svg { width: 17px; height: 17px; flex: none; }

/* Shop pagination */
.onyx-pagination {
  display: flex;
  justify-content: center;
  margin: 56px 0 12px;
}
.onyx-pagination ul.page-numbers {
  display: inline-flex !important;
  align-items: center;
  gap: 10px !important;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 0 !important;        /* kill WooCommerce's connecting outer border */
  overflow: visible !important;
}
.onyx-pagination ul.page-numbers li {
  margin: 0 !important;
  list-style: none;
  border: 0 !important;        /* kill WooCommerce's divider right-borders */
}
.onyx-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 6px;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  background: var(--bg-soft);
  color: var(--ink-soft);
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.onyx-pagination a.page-numbers:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-light);
}
.onyx-pagination .page-numbers.current {
  border-color: var(--brand);
  background: var(--brand);
  color: #141414;
}
.onyx-pagination .page-numbers.dots {
  border-color: transparent;
  background: none;
  color: var(--ink-muted);
  min-width: 26px;
}
.onyx-pagination .page-numbers.prev,
.onyx-pagination .page-numbers.next {
  font-size: 17px;
}
.onyx-pagination .onyx-page-arrow { line-height: 1; }

/* Trust bar (below Add to Cart) */
.onyx-trustbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 22px 0 10px;
  background: var(--brand-light);
  border: 1px solid var(--brand);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.onyx-trustbar__cell {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}
.onyx-trustbar__cell:last-child { border-right: 0; }
.onyx-trustbar__label {
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}
.onyx-trustbar__value {
  font-family: var(--font);
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}
.onyx-trustbar__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand);
  text-decoration: none;
  transition: color 0.15s ease;
}
.onyx-trustbar__link:hover { color: var(--brand-dark); }
.onyx-trustbar__link svg { width: 15px; height: 15px; flex: none; }
.onyx-trustbar__caption {
  margin: 0 0 4px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-muted);
}
@media (max-width: 560px) {
  .onyx-trustbar { grid-template-columns: 1fr; }
  .onyx-trustbar__cell { border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .onyx-trustbar__cell:last-child { border-bottom: 0; }
}

.onyx-faq__item { border-bottom: 1px solid var(--line-soft); }
.onyx-faq__item:last-child { border-bottom: 0; }
.onyx-faq__item:first-child .onyx-faq__q { padding-top: 4px; }
.onyx-faq__q {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
}
.onyx-faq__q::-webkit-details-marker { display: none; }
.onyx-faq__icon {
  flex: none;
  position: relative;
  width: 14px;
  height: 14px;
}
.onyx-faq__icon::before,
.onyx-faq__icon::after {
  content: "";
  position: absolute;
  background: var(--brand);
  transition: transform 0.2s ease;
}
.onyx-faq__icon::before { top: 6px; left: 0; width: 14px; height: 2px; }
.onyx-faq__icon::after { top: 0; left: 6px; width: 2px; height: 14px; }
.onyx-faq__item[open] .onyx-faq__icon::after { transform: scaleY(0); }
.onyx-faq__a {
  padding: 0 0 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
  max-width: 92%;
}
.onyx-faq__a p { margin: 0 0 10px; }
.onyx-faq__a p:last-child { margin: 0; }

@media (max-width: 640px) {
  .onyx-pdp { margin-top: 44px; }
  .onyx-spec-table th { width: 50%; }
  .onyx-tab { padding: 13px 14px; font-size: 14px; }
  .onyx-tab-panel.is-active { padding: 22px 18px; margin-top: 22px; }
  .onyx-ref__meta { word-break: break-word; }
}

/* ── Checkout consent checkbox ── */
.onyx-consents { margin: 22px 0 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); }
.onyx-consent { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; font-size: 13.5px; line-height: 1.65; color: rgba(255,255,255,.78); }
.onyx-consent input { position: absolute; opacity: 0; width: 0; height: 0; }
.onyx-consent__box { flex: 0 0 20px; width: 20px; height: 20px; margin-top: 2px; border: 1.5px solid rgba(255,255,255,.3); border-radius: 6px; background: rgba(255,255,255,.05); transition: border-color .18s ease, background .18s ease, box-shadow .18s ease; position: relative; }
.onyx-consent:hover .onyx-consent__box { border-color: var(--brand); }
.onyx-consent input:focus-visible + .onyx-consent__box { box-shadow: 0 0 0 3px rgba(201,144,110,.28); }
.onyx-consent input:checked + .onyx-consent__box { background: var(--brand); border-color: var(--brand); }
.onyx-consent input:checked + .onyx-consent__box::after { content: ""; position: absolute; left: 5.5px; top: 1.5px; width: 5px; height: 10px; border: solid #14161a; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.onyx-consent input:checked ~ .onyx-consent__txt { color: rgba(255,255,255,.92); }
.onyx-consent__txt a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.onyx-consent__txt a:hover { opacity: .82; }
/* Inline consent error — appears at the box, not top of page */
.onyx-consent-error {
  display: none;
  margin: 10px 0 0;
  padding: 9px 12px 9px 34px;
  position: relative;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.4;
  color: #ff8a7a;
  background: rgba(220,53,69,.10);
  border: 1px solid rgba(220,53,69,.45);
  border-radius: 8px;
}
.onyx-consent-error::before {
  content: "!";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #dc3545;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 16px;
}
.onyx-consents.has-error .onyx-consent-error { display: block; animation: onyxConsentShake .32s ease; }
.onyx-consents.has-error .onyx-consent__box { border-color: #dc3545; background: rgba(220,53,69,.12); box-shadow: 0 0 0 3px rgba(220,53,69,.18); }
@keyframes onyxConsentShake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}
/* Inline shipping error — pickup point not chosen yet */
.onyx-shipping-error {
  display: none;
  margin: 10px 0 0;
  padding: 9px 12px 9px 34px;
  position: relative;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.4;
  color: #ff8a7a;
  background: rgba(220,53,69,.10);
  border: 1px solid rgba(220,53,69,.45);
  border-radius: 8px;
}
.onyx-shipping-error::before {
  content: "!";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #dc3545;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 16px;
}
.onyx-shipping-error.is-visible { display: block; animation: onyxConsentShake .32s ease; }
.onyx-shipping-methods.has-error ul#shipping_method li input:checked + label { border-color: #dc3545; background: rgba(220,53,69,.10); }
.onyx-shipping-methods.has-error ul#shipping_method li input:checked + label::before { border-color: #dc3545; }

/* ── Checkout shipping method list ── */
.onyx-shipping-methods { margin: 6px 0 18px; }
.onyx-shipping-methods ul#shipping_method { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.onyx-shipping-methods ul#shipping_method li { margin: 0; padding: 0; display: block; position: relative; }
.onyx-shipping-methods ul#shipping_method li input[type="radio"] { position: absolute; opacity: 0; }
.onyx-shipping-methods ul#shipping_method li label {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 14px 16px 14px 46px; margin: 0; cursor: pointer; position: relative;
  border: 1.5px solid rgba(255,255,255,.14); border-radius: 10px;
  background: rgba(255,255,255,.03);
  font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.4;
  transition: border-color .18s ease, background .18s ease;
}
.onyx-shipping-methods ul#shipping_method li label::before {
  content: ""; position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.35); background: transparent;
  transition: all .18s ease;
}
.onyx-shipping-methods ul#shipping_method li label:hover { border-color: var(--brand); }
.onyx-shipping-methods ul#shipping_method li input:checked + label { border-color: var(--brand); background: rgba(201,144,110,.08); }
.onyx-shipping-methods ul#shipping_method li input:checked + label::before { border-color: var(--brand); border-width: 5px; }
.onyx-shipping-methods ul#shipping_method .woocommerce-Price-amount { margin-left: auto; font-weight: 700; color: var(--brand); white-space: nowrap; }
.onyx-shipping-methods p { color: rgba(255,255,255,.6); font-size: 13px; }

/* ── Packeta pickup-point widget (button + selected address) ── */
.onyx-shipping-methods .packetery-widget-button-wrapper {
  margin: 10px 0 2px 46px;
}
/* Packeta's own front.css forces img/button to width:150px on ".after-rate",
   which is what wraps the button text — override with matching specificity. */
.onyx-shipping-methods .packeta-widget.after-rate .packeta-widget-button,
.onyx-shipping-methods .packetery-widget-button-row,
.onyx-shipping-methods .packeta-widget-button {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: auto !important;
}
.onyx-shipping-methods .packeta-widget.after-rate .packeta-widget-button img,
.onyx-shipping-methods .packetery-widget-button-logo {
  width: 22px !important;
  height: 22px !important;
  margin: 0 !important;
  object-fit: contain;
  border-radius: 5px;
  flex: 0 0 auto;
}
.onyx-shipping-methods .packeta-widget.after-rate .packeta-widget-button button,
.onyx-shipping-methods .packeta-widget-button button.button,
.onyx-shipping-methods .packetery-widget-button-row button.button {
  width: auto !important;
  white-space: nowrap !important;
  background: var(--brand) !important;
  color: #141414 !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 10px 18px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  font-family: inherit !important;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: none !important;
  transition: background 0.2s;
}
.onyx-shipping-methods .packeta-widget-button button.button:hover,
.onyx-shipping-methods .packetery-widget-button-row button.button:hover {
  background: #D9A88A !important;
}
.onyx-shipping-methods .packeta-widget-selected-address,
.onyx-shipping-methods .packeta-widget-place {
  margin: 10px 0 0 !important;
  padding: 10px 12px 10px 34px !important;
  position: relative;
  font-size: 13px !important;
  color: rgba(255,255,255,.82) !important;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 8px;
  line-height: 1.4;
}
.onyx-shipping-methods .packeta-widget-selected-address:empty,
.onyx-shipping-methods .packeta-widget-place:empty { display: none !important; }
.onyx-shipping-methods .packeta-widget-selected-address::before {
  content: "";
  position: absolute; left: 11px; top: 12px;
  width: 14px; height: 14px;
  background: var(--brand);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 2 4 6v6c0 5 3.5 9 8 10 4.5-1 8-5 8-10V6l-8-4z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 2 4 6v6c0 5 3.5 9 8 10 4.5-1 8-5 8-10V6l-8-4z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.onyx-shipping-methods .packeta-widget-place { display: none !important; }
.onyx-shipping-methods .packeta-widget-info {
  margin: 6px 0 0 !important;
  font-size: 12px !important;
  color: rgba(255,255,255,.5) !important;
}
