/*
Theme Name:   Peptide Child
Theme URI:    https://github.com/your-org/peptide-commerce
Description:  Child theme for Salient. All customizations live here.
Author:       Peptide Commerce Team
Template:     salient
Version:      1.2.0
Text Domain:  peptide-child
*/

/*
All custom CSS goes below this line.
Do not edit Salient parent theme files directly.
*/

/* ==========================================================================
   BioNova Síntesis — Brand Tokens + All Section Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   Brand Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand colors — official palette, unchanged */
  --color-bg-deep:      #111827;
  --color-navy:         #2D4F5F;
  --color-accent:       #3F8FA8;
  --color-accent-hover: #32788C;
  --color-accent-light: #89C4DE;
  --color-text-primary: #E5E7EB;
  --color-white:        #FFFFFF;
  --color-muted:        #687280;

  /* Gradients — richer darks for hero/section depth */
  --gradient-from:      #0D1929;
  --gradient-to:        #152840;

  /* Typography */
  --font-primary:       'Inter', system-ui, sans-serif;
  --font-mono:          'DM Mono', ui-monospace, monospace;

  /* Radii */
  --radius-sm:          6px;
  --radius-md:          12px;
  --radius-lg:          18px;
  --radius-pill:        999px;

  /* Light zone */
  --color-bg-light:     #F7FAFC;
  --color-bg-white:     #FFFFFF;
  --color-text-dark:    #0D1E2E;
  --color-text-body:    #374151;
  --color-border-light: #E5E7EB;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.10), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.14);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.22);
  --shadow-glow: 0 0 24px rgba(63,143,168,0.28);
}

/* --------------------------------------------------------------------------
   Typography — Inter applied globally; DM Mono for technical data
   -------------------------------------------------------------------------- */
body,
h1, h2, h3, h4, h5, h6,
p, li, a, span, td, th,
.button, button, input, select, textarea {
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Monospace — batch IDs, pipeline badges, calculator output, COA SKUs */
.bbv-card-batch,
.bbv-card-row-value,
.bps-step-badge,
.bionova-coa-table td:first-child,
.bionova-calc-result-value {
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
}

/* --------------------------------------------------------------------------
   Button Normalization — gradient + glow upgrade
   -------------------------------------------------------------------------- */
.button,
a.button,
button.button,
input[type="submit"],
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce-button,
.wp-block-button__link,
.nectar-button,
.wc-block-components-checkout-place-order-button {
  background: linear-gradient(135deg, var(--color-accent) 0%, #3278A0 100%) !important;
  color: var(--color-white) !important;
  font-family: var(--font-primary) !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.025em !important;
  border-radius: var(--radius-sm) !important;
  border: none !important;
  padding: 12px 26px !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 8px rgba(63,143,168,0.22) !important;
  text-decoration: none !important;
}
.button:hover,
a.button:hover,
button.button:hover,
input[type="submit"]:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce-button:hover,
.wp-block-button__link:hover,
.nectar-button:hover,
.wc-block-components-checkout-place-order-button:hover {
  background: linear-gradient(135deg, #4A9FC0 0%, var(--color-accent) 100%) !important;
  box-shadow: 0 6px 22px rgba(63,143,168,0.40), 0 2px 6px rgba(0,0,0,0.12) !important;
  transform: translateY(-1px) !important;
  color: var(--color-white) !important;
}


/* ==========================================================================
   Homepage — Section A: Product Vial Callout
   ========================================================================== */

.bionova-vial-callout {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
  padding: 80px 40px !important;
  background: linear-gradient(160deg, #0D1929, #152840) !important;
  box-sizing: border-box;
  overflow: hidden;
}
.bvc-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.bvc-section-heading {
  text-align: center !important;
  margin-bottom: 52px;
}
.bvc-eyebrow {
  display: block !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  color: #89C4DE !important;
  margin-bottom: 12px !important;
}
.bvc-section-heading h2 {
  font-size: 2.25rem !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  letter-spacing: -0.025em !important;
  line-height: 1.2 !important;
  margin-bottom: 8px !important;
}
.bvc-section-heading p {
  font-size: 0.95rem !important;
  color: #89C4DE !important;
}

/* 3-column grid: left cards | vial | right cards */
.bvc-grid {
  display: grid !important;
  grid-template-columns: 1fr 220px 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 20px;
  align-items: center;
}

/* Cards */
.bvc-card {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 12px !important;
  padding: 20px 22px !important;
  backdrop-filter: blur(14px) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.bvc-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.22) !important;
  border-color: rgba(63,143,168,0.35) !important;
}
.bvc-card-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 6px !important;
  background: rgba(63,143,168,0.15) !important;
  margin-bottom: 12px !important;
  flex-shrink: 0 !important;
}
.bvc-card-icon svg {
  width: 18px !important;
  height: 18px !important;
  stroke: #89C4DE !important;
  fill: none !important;
  flex-shrink: 0 !important;
}
.bvc-card strong {
  display: block !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: #FFFFFF !important;
  margin-bottom: 6px !important;
}
.bvc-card p {
  font-size: 0.78rem !important;
  line-height: 1.6 !important;
  color: #8090A8 !important;
  margin: 0 !important;
}

/* Card grid positions */
.bvc-card--tl { grid-column: 1; grid-row: 1; }
.bvc-card--ml { grid-column: 1; grid-row: 2; }
.bvc-card--bl { grid-column: 1; grid-row: 3; }
.bvc-card--tr { grid-column: 3; grid-row: 1; }
.bvc-card--mr { grid-column: 3; grid-row: 2; }

/* Vial — center column, spans all 3 rows */
.bvc-vial-wrap {
  grid-column: 2;
  grid-row: 1 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/*
 * PLACEHOLDER vial — replace this entire .bvc-vial-placeholder div with:
 *   <img src="[product-photo-url]" alt="BioNova Síntesis — [PRODUCT NAME] — For Research Use Only" ...>
 * when product photos are ready.
 * Label: "BioNova Síntesis — [PRODUCT NAME] — For Research Use Only"
 */
.bvc-vial-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 130px;
  min-height: 300px;
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(255,255,255,0.28);
  border-radius: 10px 10px 48px 48px;
  padding: 24px 12px;
  gap: 10px;
  text-align: center;
}
.bvc-vial-placeholder .bvc-vial-brand {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--color-accent-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.bvc-vial-placeholder .bvc-vial-product {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-white);
}
.bvc-vial-placeholder .bvc-vial-use {
  font-size: 0.58rem;
  color: var(--color-muted);
}
.bvc-placeholder-badge {
  position: absolute;
  bottom: -13px;
  background: #f59e0b;
  color: #000;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  border-radius: 3px;
}

@media (max-width: 860px) {
  .bvc-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bvc-card--tl, .bvc-card--ml, .bvc-card--bl,
  .bvc-card--tr, .bvc-card--mr { grid-column: 1 !important; grid-row: auto !important; }
  .bvc-vial-wrap { grid-column: 1 !important; grid-row: auto !important; order: -1; padding: 12px 0 24px; }
}


/* ==========================================================================
   Homepage — Section B: Why BioNova Comparison Table
   ========================================================================== */

.bionova-comparison {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
  padding: 80px 40px !important;
  background: #111827 !important;
  box-sizing: border-box;
}
.bc-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center !important;
}
.bc-eyebrow {
  display: block !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.28em !important;
  color: #3F8FA8 !important;
  text-transform: uppercase !important;
  margin-bottom: 12px !important;
}
.bionova-comparison h2 {
  font-size: 2.25rem !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  margin-bottom: 10px !important;
}
.bc-subheading {
  font-size: 1rem !important;
  color: #687280 !important;
  margin-bottom: 48px !important;
}
.bc-table-wrap { overflow-x: auto; }
.bc-table {
  width: 100%;
  border-collapse: collapse;
}
.bc-table thead th {
  padding: 14px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.bc-table thead th:first-child {
  text-align: left !important;
  color: #687280 !important;
}
.bc-table thead th.bc-col-bionova {
  color: #89C4DE !important;
  background: rgba(63,143,168,0.12) !important;
  border-top: 2px solid #3F8FA8 !important;
}
.bc-table thead th.bc-col-typical { color: #687280 !important; }
.bc-table tbody tr { border-bottom: 1px solid rgba(255,255,255,0.05) !important; }
.bc-table tbody tr:last-child { border-bottom: none !important; }
.bc-table tbody td {
  padding: 16px 20px !important;
  font-size: 0.875rem !important;
  vertical-align: middle !important;
  color: #E5E7EB !important;
  background: transparent !important;
}
.bc-table tbody td:first-child {
  text-align: left !important;
  color: #E5E7EB !important;
  font-weight: 500 !important;
}
.bc-table tbody td.bc-col-bionova {
  background: rgba(63,143,168,0.07) !important;
  color: #FFFFFF !important;
  font-weight: 600 !important;
  text-align: center !important;
}
.bc-check::before {
  content: '✓ ';
  color: #34D399 !important;
  font-weight: 700 !important;
}
.bc-table tbody tr:hover td {
  background: rgba(255,255,255,0.025) !important;
}
.bc-table tbody td.bc-col-typical {
  color: #687280 !important;
  text-align: center !important;
  font-style: italic !important;
}


/* ==========================================================================
   PDP — Batch Verification Block (Module 7)
   ========================================================================== */

.bionova-batch-verification {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 60px 0;
  align-items: start;
  border-top: 1px solid #e5e7eb;
  margin-top: 40px;
}
.bbv-left h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.bbv-subheading {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 28px;
  line-height: 1.65;
}
.bbv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bbv-list li {
  font-size: 0.875rem;
  color: var(--color-text-body);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.bbv-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* Dark card — right side */
.bbv-card {
  background: var(--color-bg-deep);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
}
.bbv-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 4px;
}
.bbv-card-batch {
  font-size: 0.72rem;
  color: var(--color-muted);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.bbv-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bbv-card-row:last-of-type { border-bottom: none; }
.bbv-card-row-label {
  font-size: 0.72rem;
  color: var(--color-muted);
  font-weight: 500;
}
.bbv-card-row-value {
  font-size: 0.78rem;
  color: var(--color-text-primary);
  font-weight: 500;
}

/* Status badges */
.bbv-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
}
.bbv-badge--confirmed {
  background: rgba(74,222,128,0.12);
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.25);
}
.bbv-badge--pending {
  background: rgba(245,158,11,0.12);
  color: #f59e0b;
  border: 1px solid rgba(245,158,11,0.25);
}
.bbv-badge--failed {
  background: rgba(239,68,68,0.12);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,0.25);
}

/* Pipeline progress bar */
.bbv-progress-wrap { margin-top: 18px; }
.bbv-progress-label {
  font-size: 0.68rem;
  color: var(--color-muted);
  margin-bottom: 6px;
}
.bbv-progress-bg {
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  height: 6px;
  overflow: hidden;
}
.bbv-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  border-radius: 4px;
  transition: width 0.4s ease;
}

/* Release status line */
.bbv-release-status {
  margin-top: 14px;
  font-size: 0.72rem;
  color: var(--color-muted);
  text-align: center;
  padding: 8px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-sm);
}
.bbv-release-status strong { color: var(--color-accent-light); }

@media (max-width: 768px) {
  .bionova-batch-verification { grid-template-columns: 1fr; gap: 32px; }
}


/* ==========================================================================
   PDP — Import Pipeline Status (Module 8)
   ========================================================================== */

.bionova-pipeline-status {
  padding: 56px 0;
  border-top: 1px solid #e5e7eb;
}
.bps-eyebrow {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bionova-pipeline-status h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}
.bps-subheading {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-bottom: 40px;
}

/* Horizontal tracker */
.bps-tracker {
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow-x: auto;
  padding-bottom: 8px;
}
.bps-tracker::before {
  content: '';
  position: absolute;
  top: 19px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: var(--color-border-light);
  z-index: 0;
}
.bps-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  min-width: 90px;
  padding: 0 6px;
}
.bps-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 10px;
  border: 2px solid;
  background: #fff;
}
.bps-step-label {
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 6px;
}
.bps-step-badge {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 10px;
  text-transform: uppercase;
}

/* Complete */
.bps-step--complete .bps-step-icon { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.bps-step--complete .bps-step-label { color: var(--color-text-body); }
.bps-step--complete .bps-step-badge { background: rgba(63,143,168,0.1); color: var(--color-accent); }

/* Active */
.bps-step--active .bps-step-icon {
  background: #fff;
  border-color: var(--color-accent);
  color: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(63,143,168,0.18), 0 0 0 2px rgba(63,143,168,0.35);
}
.bps-step--active .bps-step-label { color: var(--color-text-dark); font-weight: 700; }
.bps-step--active .bps-step-badge { background: rgba(63,143,168,0.12); color: var(--color-accent); }

/* Pending */
.bps-step--pending .bps-step-icon { background: #f9fafb; border-color: #d1d5db; color: #9ca3af; }
.bps-step--pending .bps-step-label { color: #9ca3af; }
.bps-step--pending .bps-step-badge { background: #f3f4f6; color: #9ca3af; }

@media (max-width: 600px) {
  .bps-tracker { flex-direction: column; }
  .bps-tracker::before { display: none; }
  .bps-step { flex-direction: row; text-align: left; gap: 12px; align-items: center; padding: 8px 0; width: 100%; min-width: auto; }
  .bps-step-icon { margin-bottom: 0; flex-shrink: 0; }
}


/* ==========================================================================
   Page Templates — shared base (light zone)
   ========================================================================== */

.bionova-page-wrap {
  background: var(--color-bg-white);
  padding: 64px 0 96px;
}
.bionova-page-header { margin-bottom: 48px; }
.bionova-page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.bionova-page-header p {
  font-size: 1.05rem;
  color: var(--color-text-body);
  max-width: 560px;
  line-height: 1.75;
}

/* Placeholder block — used wherever copy is not yet written */
.bionova-placeholder-block {
  background: #f3f4f6;
  border: 2px dashed #d1d5db;
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  color: #9ca3af;
  font-size: 0.875rem;
  margin: 20px 0;
}
.bionova-placeholder-block strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f59e0b;
  margin-bottom: 6px;
}

/* COA page */
.bionova-coa-table { width: 100%; border-collapse: collapse; }
.bionova-coa-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  border-bottom: 2px solid var(--color-border-light);
}
.bionova-coa-table td {
  padding: 16px;
  font-size: 0.875rem;
  color: var(--color-text-body);
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
}
.bionova-coa-table tbody tr:hover td {
  background: #F0F9FF;
}
.coa-btn {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
}
.coa-btn--download { background: var(--color-accent); color: #fff; }
.coa-btn--download:hover { background: var(--color-accent-hover); color: #fff; }
.coa-btn--pending { background: #f3f4f6; color: #9ca3af; border: 1px solid #e5e7eb; cursor: default; }

/* FAQ page */
.bionova-faq-section { margin-bottom: 48px; }
.bionova-faq-section > h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-accent-light);
}
.bionova-faq-item {
  border-bottom: 1px solid var(--color-border-light);
  transition: background 0.15s ease;
}
.bionova-faq-item:hover {
  background: #F7FAFC;
  border-radius: var(--radius-sm);
}
.bionova-faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-primary);
  transition: color 0.2s;
}
.bionova-faq-question::after { content: '+'; font-size: 1.2rem; color: var(--color-accent); flex-shrink: 0; transition: transform 0.2s; }
.bionova-faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }
.bionova-faq-answer {
  display: none;
  padding: 0 0 18px;
  font-size: 0.9rem;
  color: var(--color-text-body);
  line-height: 1.75;
}
.bionova-faq-answer.is-open { display: block; }

/* Contact page */
.bionova-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.bionova-contact-grid h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}
.bionova-native-form input[type="text"],
.bionova-native-form input[type="email"],
.bionova-native-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: #374151;
  box-sizing: border-box;
  margin-bottom: 12px;
  font-family: var(--font-primary);
}
.bionova-native-form textarea { min-height: 120px; resize: vertical; }
@media (max-width: 768px) { .bionova-contact-grid { grid-template-columns: 1fr; } }

/* Reconstitution calculator */
.bionova-calc-wrap {
  max-width: 520px;
  background: var(--color-bg-deep);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 0 auto 40px;
  box-shadow: var(--shadow-lg);
}
.bionova-calc-wrap h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 28px;
}
.bionova-calc-field { margin-bottom: 20px; }
.bionova-calc-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-accent-light);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.bionova-calc-field input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--color-white);
  box-sizing: border-box;
  font-family: var(--font-primary);
}
.bionova-calc-field input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(63,143,168,0.20);
}
.bionova-calc-result {
  background: rgba(63,143,168,0.1);
  border: 1px solid rgba(63,143,168,0.28);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 24px;
  text-align: center;
}
.bionova-calc-result-label {
  font-size: 0.72rem;
  color: var(--color-accent-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bionova-calc-result-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-white);
}
.bionova-calc-result-unit {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-left: 4px;
}
.bionova-research-disclaimer {
  font-size: 0.72rem;
  color: var(--color-muted);
  text-align: center;
  padding: 16px 24px;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-sm);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* Legal page */
.bionova-legal-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 16px;
  flex-wrap: wrap;
}
.bionova-legal-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-muted);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.bionova-legal-nav a:hover { color: var(--color-accent); border-bottom-color: var(--color-accent); }
.bionova-legal-section {
  margin-bottom: 64px;
  padding-top: 16px;
}
.bionova-legal-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}
.bionova-legal-section p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.8;
}

/* === Quiz Popup === */

.bn-quiz-popup-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: linear-gradient(135deg, var(--color-accent) 0%, #3278A0 100%);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 22px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(63,143,168,0.35), 0 2px 8px rgba(0,0,0,0.18);
  transition: all 0.2s ease;
}

.bn-quiz-popup-btn:hover {
  box-shadow: 0 6px 28px rgba(63,143,168,0.50), 0 2px 8px rgba(0,0,0,0.18);
  transform: translateY(-2px);
}

.bn-quiz-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(17, 24, 39, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.bn-quiz-modal-overlay[hidden] {
  display: none;
}

.bn-quiz-modal {
  position: relative;
  background: #111827;
  border-radius: 12px;
  width: 100%;
  max-width: 580px;
  height: 85vh;
  max-height: 720px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.bn-quiz-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.bn-quiz-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 1;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  font-family: 'Poppins', sans-serif;
}

.bn-quiz-modal-close:hover {
  background: rgba(255,255,255,0.2);
}

/* ==========================================================================
   Header + Navigation Cleanup
   The site header is inherited from Salient; these styles tighten spacing,
   improve contrast, and give the primary nav a more intentional appearance.
   ========================================================================== */

#header-outer {
  background: rgba(255,255,255,0.96) !important;
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(45,79,95,0.10);
  box-shadow: 0 4px 24px rgba(17,24,39,0.07);
}

#header-outer #logo img,
#header-outer .logo-regular,
#header-outer .logo-dark,
#header-outer .logo-main {
  max-height: 44px !important;
  width: auto;
}

#top nav > ul > li > a,
#header-outer[data-lhe="animated_underline"] #top nav > ul > li > a {
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-navy) !important;
  padding: 0 14px !important;
}

#top nav > ul > li > a:hover,
#top nav > ul > li.current-menu-item > a,
#top nav > ul > li.current_page_item > a,
#top nav > ul > li.current-menu-ancestor > a {
  color: var(--color-accent) !important;
}

#top .sf-menu > li > ul,
#top .sf-menu li ul {
  background: rgba(255,255,255,0.98) !important;
  border: 1px solid rgba(45,79,95,0.10);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(17,24,39,0.12);
  padding: 10px 0;
}

#top .sf-menu li ul li a {
  color: var(--color-navy) !important;
  font-size: 0.84rem !important;
  padding: 10px 18px !important;
}

#top .sf-menu li ul li a:hover {
  color: var(--color-accent) !important;
  background: rgba(63,143,168,0.08);
}

#header-outer .slide-out-widget-area-toggle a,
#header-outer .mobile-search a,
#header-outer .cart-menu-wrap a {
  color: var(--color-navy) !important;
}

body.material #header-outer:not([data-format="left-header"]) #top nav > ul > li > a {
  line-height: 1;
}

/* Animated underline on nav items */
#top nav > ul > li > a {
  position: relative;
  transition: color 0.2s ease !important;
}
#top nav > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
#top nav > ul > li > a:hover::after,
#top nav > ul > li.current-menu-item > a::after,
#top nav > ul > li.current_page_item > a::after,
#top nav > ul > li.current-menu-ancestor > a::after {
  transform: scaleX(1);
}

@media (min-width: 1000px) {
  #header-outer #top .container,
  #header-outer #top .span_3,
  #header-outer #top .span_9 {
    min-height: 84px;
  }
}

@media (max-width: 999px) {
  #header-outer {
    background: rgba(255,255,255,0.98) !important;
  }

  #header-outer #logo img,
  #header-outer .logo-regular,
  #header-outer .logo-dark,
  #header-outer .logo-main {
    max-height: 36px !important;
  }
}

/* ==========================================================================
   Homepage Hero Full-Bleed
   The live homepage hero is built with Gutenberg blocks inside Salient's
   constrained content wrapper. These rules let the promo bar and hero cover
   stretch edge-to-edge while keeping the inner content padded and readable.
   ========================================================================== */

.home .promo-bar,
.home .hero-section {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.home .promo-bar > p,
.home .hero-section .hero-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.home .hero-section .wp-block-cover__inner-container {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

.home .hero-section .hero-inner {
  width: min(1200px, calc(100% - 48px));
}

.home .hero-section .hero-inner > .wp-block-columns {
  padding-left: 24px !important;
  padding-right: 24px !important;
  box-sizing: border-box;
}

.home .hero-section .wp-block-columns {
  margin-bottom: 0;
}

.home .coa-cta-section .wp-block-buttons {
  justify-content: center;
}

.home .coa-cta-section .wp-block-button {
  margin-left: auto;
  margin-right: auto;
}

.home .featured-product-section .wp-block-buttons {
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .home .promo-bar > p,
  .home .hero-section .wp-block-cover__inner-container {
    max-width: none;
  }

  .home .hero-section {
    min-height: auto !important;
  }

  .home .hero-section .hero-inner {
    width: min(100%, calc(100% - 32px));
  }

  .home .hero-section .hero-inner > .wp-block-columns {
    padding-left: 16px !important;
    padding-right: 16px !important;
    gap: 28px;
  }

  .home .hero-section h1,
  .home .hero-section p,
  .home .hero-section .trust-tagline {
    text-align: center;
  }

  .home .hero-section .wp-block-buttons {
    justify-content: center;
  }

  .home .hero-section .wp-block-button {
    width: 100%;
  }

  .home .hero-section .wp-block-button__link {
    width: 100%;
    text-align: center;
  }

  .home .trust-bar-section {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  .home .trust-bar-section .wp-block-columns,
  .home .featured-product-section .wp-block-columns,
  .home .why-bionova-section .wp-block-columns {
    gap: 18px;
  }

  .home .coa-cta-section,
  .home .featured-product-section,
  .home .faq-section,
  .home .why-bionova-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .home .coa-cta-section h2,
  .home .featured-product-section h2,
  .home .why-bionova-section h2,
  .home .faq-section h2 {
    font-size: 2rem !important;
    line-height: 1.15 !important;
  }

  .home .coa-cta-section .wp-block-buttons,
  .home .featured-product-section .wp-block-buttons {
    justify-content: center;
  }

  .home .featured-product-section .wp-block-button {
    width: 100%;
  }

  .home .featured-product-section .wp-block-button__link {
    width: 100%;
    text-align: center;
  }

  .home .featured-product-img {
    min-height: 220px;
    padding: 28px 22px;
  }
}

/* ==========================================================================
   Homepage — Section C: Category Grid
   ========================================================================== */

.bionova-category-grid {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 80px 20px;
  background: var(--color-bg-deep);
  box-sizing: border-box;
}
.bcg-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.bcg-eyebrow {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.bcg-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.bcg-sub {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 48px;
}
.bcg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.bcg-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-height: 170px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 28px 24px;
  text-decoration: none;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.bcg-card:hover {
  border-color: var(--color-accent);
  background: rgba(63,143,168,0.10);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.28);
}
.bcg-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 10px;
  background: rgba(63,143,168,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.bcg-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.bcg-tagline {
  font-size: 0.82rem;
  color: var(--color-accent-light);
  line-height: 1.55;
  flex: 1;
}
.bcg-arrow {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: 14px;
}
@media (max-width: 768px) {
  .bcg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .bcg-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Homepage — Section D: Featured Products
   ========================================================================== */

.bionova-featured {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 80px 20px;
  background: linear-gradient(160deg, var(--gradient-from), var(--gradient-to));
  box-sizing: border-box;
}
.bft-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.bft-eyebrow {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 12px;
}
.bft-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 52px;
}
.bft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.bft-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-height: 240px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 36px 22px 28px;
  text-decoration: none;
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.20);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.bft-card:hover {
  border-color: var(--color-accent);
  background: rgba(63,143,168,0.14);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.30);
}
.bft-card-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.bft-card-icon svg {
  width: 100%;
  height: 100%;
}
.bft-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.3;
}
.bft-card-desc {
  font-size: 0.80rem;
  color: var(--color-accent-light);
  line-height: 1.6;
  text-align: center;
  flex: 1;
  margin-bottom: 16px;
}
.bft-card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: auto;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .bft-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .bft-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Homepage — Section E: Bundle CTA
   ========================================================================== */

.bionova-bundle-cta {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 100px 20px;
  background: var(--color-bg-deep);
  box-sizing: border-box;
  text-align: center;
}
.bbc-inner {
  max-width: 640px;
  margin: 0 auto;
}
.bbc-eyebrow {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.bbc-heading {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.bbc-sub {
  font-size: 1.05rem;
  color: #8090A8;
  margin: 0 auto 44px;
  max-width: 520px;
  line-height: 1.7;
}
.bbc-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent) 0%, #2D6E8A 100%);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 8px;
  padding: 16px 44px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(63,143,168,0.42), 0 2px 8px rgba(0,0,0,0.20);
  transition: all 0.2s ease;
}
.bbc-btn:hover {
  background: linear-gradient(135deg, #4AADC8 0%, var(--color-accent) 100%);
  box-shadow: 0 8px 32px rgba(63,143,168,0.58), 0 2px 8px rgba(0,0,0,0.20);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* ==========================================================================
   Bundle Builder Page
   ========================================================================== */

.bn-builder-page {
  font-family: var(--font-primary);
}

/* Hero */
.bn-builder-hero {
  background: linear-gradient(160deg, #0D1929, #152840);
  padding: 80px 24px 60px;
  text-align: center;
}
.bn-builder-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}
.bn-builder-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 12px;
  display: block;
}
.bn-builder-headline {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.bn-builder-sub {
  font-size: 1rem;
  color: #8090A8;
  line-height: 1.7;
  margin-bottom: 24px;
}
.bn-builder-discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(63,143,168,0.15);
  border: 1px solid rgba(63,143,168,0.35);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-accent-light);
}

/* Tracker */
.bn-builder-tracker {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17,24,39,0.96);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
}
.bn-builder-tracker-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.bn-tracker-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.bn-tracker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: background 0.3s;
}
.bn-tracker-dot--filled {
  background: var(--color-accent);
}
.bn-tracker-msg {
  flex: 1;
  font-size: 0.82rem;
  color: var(--color-muted);
  margin: 0;
}
.bn-tracker-msg--active {
  color: #34D399;
  font-weight: 600;
}
.bn-tracker-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.bn-tracker-cart-btn:hover {
  background: var(--color-accent-hover);
  color: #fff;
}

/* Products section */
.bn-builder-products-section {
  background: #F7FAFC;
  padding: 48px 0 80px;
}
.bn-builder-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Filter tabs */
.bn-builder-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.bn-builder-tab {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 999px;
  padding: 7px 18px;
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 500;
  color: #6B7280;
  cursor: pointer;
  transition: all 0.2s;
}
.bn-builder-tab:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.bn-builder-tab--active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* Product grid */
.bn-builder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.bn-product-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.bn-product-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}
.bn-product-card-img {
  background: #EEF3F8;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bn-product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bn-product-card-img-placeholder {
  width: 56px;
  height: 56px;
  opacity: 0.35;
}
.bn-product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bn-product-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: #0D1E2E;
  margin-bottom: 6px;
  line-height: 1.3;
}
.bn-product-card-desc {
  font-size: 0.8rem;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
}
.bn-product-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0D1E2E;
  margin-bottom: 14px;
}
.bn-product-card-btn {
  display: block;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
}
.bn-product-card-btn:hover {
  background: var(--color-accent-hover);
  color: #fff;
}
.bn-builder-empty {
  text-align: center;
  color: #6B7280;
  padding: 48px 0;
  font-size: 0.95rem;
}

/* Protocol bundles strip */
.bn-builder-bundles-section {
  border-top: 1px solid #E5E7EB;
  padding-top: 48px;
}
.bn-builder-bundles-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0D1E2E;
  margin-bottom: 8px;
}
.bn-builder-bundles-sub {
  font-size: 0.9rem;
  color: #6B7280;
  margin-bottom: 28px;
}
.bn-builder-bundles-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bn-bundle-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bn-bundle-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.bn-bundle-card-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  background: #EEF3F8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bn-bundle-card-img img { width: 100%; height: 100%; object-fit: cover; }
.bn-bundle-card-img-placeholder { width: 44px; height: 44px; opacity: 0.3; }
.bn-bundle-card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0D1E2E;
  line-height: 1.3;
}
.bn-bundle-card-price {
  font-size: 1rem;
  font-weight: 700;
  color: #0D1E2E;
}
.bn-bundle-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: auto;
}
.bn-bundle-card-btn:hover {
  background: var(--color-accent);
  color: #fff;
}

@media (max-width: 900px) {
  .bn-builder-grid { grid-template-columns: repeat(2, 1fr); }
  .bn-builder-bundles-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .bn-builder-headline { font-size: 1.75rem; }
  .bn-builder-grid { grid-template-columns: 1fr; }
  .bn-builder-bundles-strip { grid-template-columns: 1fr; }
  .bn-builder-tracker-inner { flex-wrap: wrap; }
}
