/* ============================================================
   BuyBaby — Block System Stylesheet
   Upload to: /wp-content/themes/kadence-child/css/buybaby-blocks.css
   Then enqueue from functions.php OR include via Kadence Customizer
   ============================================================ */


/* ===================== DESIGN TOKENS ===================== */
:root {
  /* Brand */
  --bb-periwinkle:        #7b8ed8;
  --bb-periwinkle-dark:   #6a7dc8;
  --bb-periwinkle-deep:   #5266b3;
  --bb-rose:              #f5a3b8;
  --bb-rose-deep:         #d97a93;
  --bb-rose-text:         #a04860;
  --bb-plum:              #2a2547;
  --bb-plum-mid:          #3d3760;
  --bb-butter:            #ffe9a8;
  --bb-butter-light:      #fff4cc;
  --bb-butter-dark:       #f5d678;
  --bb-butter-text:       #8a6d1e;

  /* Surfaces */
  --bb-sky:               #dce4f7;
  --bb-sky-soft:          #edf1fa;
  --bb-blush:             #fde0e7;
  --bb-blush-soft:        #fdeef2;
  --bb-cream:             #fffaf0;
  --bb-bg:                #f7f5fb;
  --bb-bg-warm:           #fbf9fd;
  --bb-white:             #ffffff;

  /* Text */
  --bb-text:              #2a2547;
  --bb-text-mid:          #5d5879;
  --bb-text-light:        #8d8aa8;

  /* Borders */
  --bb-border:            #e8e3f0;
  --bb-border-light:      #f0ecf5;
  --bb-border-strong:     #d8d2e3;

  /* Semantic */
  --bb-green:             #2d7a4f;
  --bb-red:               #b94a4a;

  /* Effects */
  --bb-shadow-sm:         0 2px 6px rgba(42,37,71,0.06);
  --bb-shadow-md:         0 6px 20px rgba(123,142,216,0.10);

  /* Layout */
  --bb-radius-sm:         8px;
  --bb-radius-md:         12px;
  --bb-radius-lg:         16px;
  --bb-radius-xl:         20px;
  --bb-transition:        0.2s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ===================== TYPOGRAPHY HELPERS ===================== */
.bb-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--bb-periwinkle);
  margin-bottom: 12px;
}

.bb-h1 { font-family:'Fraunces',serif; font-size:clamp(32px,5vw,48px); font-weight:600; color:var(--bb-plum); letter-spacing:-0.02em; line-height:1.1; }
.bb-h2 { font-family:'Fraunces',serif; font-size:clamp(26px,4vw,34px); font-weight:600; color:var(--bb-plum); letter-spacing:-0.015em; line-height:1.2; }
.bb-h3 { font-family:'Fraunces',serif; font-size:22px; font-weight:600; color:var(--bb-plum); letter-spacing:-0.01em; line-height:1.3; }
.bb-h4 { font-family:'Fraunces',serif; font-size:18px; font-weight:600; color:var(--bb-plum); line-height:1.35; }


/* ===================== SECTION HEADING (between blocks) ===================== */
.bb-section-heading {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--bb-plum);
  margin: 48px 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bb-border-light);
  letter-spacing: -0.01em;
}


/* ===================== BUTTONS ===================== */
.bb-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--bb-radius-md);
  text-decoration: none; border: none; cursor: pointer;
  transition: var(--bb-transition);
  white-space: nowrap;
}
.bb-btn:hover { transform: translateY(-2px); }
.bb-btn svg { width: 16px; height: 16px; }
.bb-btn:hover svg { transform: translateX(3px); }

.bb-btn-primary {
  background: var(--bb-butter); color: var(--bb-plum);
  box-shadow: 0 4px 14px rgba(255,233,168,0.4);
}
.bb-btn-primary:hover { background: var(--bb-butter-dark); box-shadow: 0 6px 20px rgba(255,233,168,0.55); }

.bb-btn-secondary { background: var(--bb-plum); color: var(--bb-cream); }
.bb-btn-secondary:hover { background: var(--bb-plum-mid); color: var(--bb-cream); }

.bb-btn-ghost {
  background: transparent; color: var(--bb-periwinkle-deep);
  border: 1.5px solid var(--bb-border-strong);
}
.bb-btn-ghost:hover { border-color: var(--bb-periwinkle); background: var(--bb-bg-warm); }

.bb-btn-amazon {
  background: var(--bb-plum); color: var(--bb-cream);
  width: 100%; justify-content: center;
}
.bb-btn-amazon:hover { background: var(--bb-plum-mid); color: var(--bb-cream); }


/* ===================== HERO ===================== */
.bb-hero {
  background: linear-gradient(165deg, var(--bb-periwinkle) 0%, var(--bb-periwinkle-dark) 100%);
  color: var(--bb-white);
  padding: 72px 48px;
  border-radius: var(--bb-radius-xl);
  position: relative; overflow: hidden;
  margin-bottom: 32px;
}
.bb-hero::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,163,184,0.28) 0%, transparent 70%);
  pointer-events: none;
}
.bb-hero-inner { max-width: 680px; position: relative; z-index: 1; }
.bb-hero h1 {
  font-family: 'Fraunces', serif; font-size: clamp(34px,5.2vw,52px);
  font-weight: 600; line-height: 1.08; letter-spacing: -0.02em;
  margin-bottom: 20px; color: var(--bb-white);
}
.bb-hero h1 .accent { color: var(--bb-blush); font-style: italic; font-weight: 500; }
.bb-hero p {
  font-size: 18px; color: rgba(255,255,255,0.88);
  max-width: 560px; margin-bottom: 32px; line-height: 1.65;
}


/* ===================== TRUST BAR ===================== */
.bb-trust-bar {
  display: flex; justify-content: center; gap: 40px;
  flex-wrap: wrap; padding: 28px 24px;
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-lg);
  margin-bottom: 32px;
}
.bb-trust-item { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--bb-text-mid); }
.bb-trust-item strong { color: var(--bb-plum); font-weight: 600; }
.bb-trust-icon {
  width: 38px; height: 38px;
  background: var(--bb-sky); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.bb-trust-item:nth-child(2) .bb-trust-icon { background: var(--bb-blush); }
.bb-trust-item:nth-child(3) .bb-trust-icon { background: var(--bb-butter); }


/* ===================== CATEGORY GRID ===================== */
.bb-cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 32px; }
.bb-cat-card {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-lg);
  padding: 28px;
  transition: var(--bb-transition);
  text-decoration: none; color: inherit; display: block;
}
.bb-cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--bb-shadow-md);
  border-color: var(--bb-periwinkle);
}
.bb-cat-icon {
  width: 52px; height: 52px;
  border-radius: var(--bb-radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
  background: var(--bb-sky);
}
.bb-cat-card:nth-child(2n) .bb-cat-icon { background: var(--bb-blush); }
.bb-cat-card h3 {
  font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600;
  margin-bottom: 8px; color: var(--bb-plum);
  letter-spacing: -0.01em;
}
.bb-cat-card p { font-size: 14px; color: var(--bb-text-mid); line-height: 1.6; margin-bottom: 14px; }
.bb-cat-link { font-size: 13px; font-weight: 600; color: var(--bb-periwinkle-deep); }


/* ===================== LATEST REVIEWS ===================== */
.bb-reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 32px; }
.bb-review-card {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-lg);
  overflow: hidden; transition: var(--bb-transition);
  text-decoration: none; color: inherit; display: block;
}
.bb-review-card:hover { transform: translateY(-3px); box-shadow: var(--bb-shadow-md); }
.bb-review-img {
  height: 180px;
  background: linear-gradient(135deg, var(--bb-sky) 0%, var(--bb-blush) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--bb-periwinkle-deep);
  font-size: 13px; font-weight: 500;
}
.bb-review-body { padding: 20px 22px 22px; }
.bb-review-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  color: var(--bb-periwinkle-deep); background: var(--bb-sky);
  padding: 4px 10px; border-radius: 100px;
  margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.bb-review-card h3 {
  font-family: 'Fraunces', serif; font-size: 18px; font-weight: 600;
  color: var(--bb-plum); line-height: 1.35; margin-bottom: 8px;
}
.bb-review-meta { font-size: 12px; color: var(--bb-text-light); }


/* ===================== HOW WE WORK ===================== */
.bb-how {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-xl);
  padding: 48px;
  margin-bottom: 32px;
}
.bb-how-header { text-align: center; margin-bottom: 36px; }
.bb-how-rows { max-width: 640px; margin: 0 auto; }
.bb-how-row {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 24px; align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--bb-border-light);
}
.bb-how-row:last-child { border-bottom: none; }
.bb-how-num {
  width: 48px; height: 48px;
  background: var(--bb-periwinkle); color: var(--bb-white);
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 600;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.bb-how-row-content h4 {
  font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600;
  color: var(--bb-plum); margin-bottom: 6px;
}
.bb-how-row-content p { font-size: 15px; color: var(--bb-text-mid); line-height: 1.7; }


/* ===================== CTA BAND / NEWSLETTER ===================== */
.bb-cta-band {
  background: var(--bb-plum); color: var(--bb-cream);
  border-radius: var(--bb-radius-xl);
  padding: 48px;
  text-align: center;
  position: relative; overflow: hidden;
  margin-bottom: 32px;
}
.bb-cta-band::before {
  content: ''; position: absolute;
  top: -80px; left: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,142,216,0.25) 0%, transparent 70%);
}
.bb-cta-band::after {
  content: ''; position: absolute;
  bottom: -100px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,163,184,0.18) 0%, transparent 70%);
}
.bb-cta-inner { position: relative; z-index: 1; max-width: 540px; margin: 0 auto; }
.bb-cta-band h2 {
  font-family: 'Fraunces', serif; font-size: clamp(28px,4vw,36px);
  font-weight: 600; color: var(--bb-cream);
  margin-bottom: 12px; letter-spacing: -0.02em;
}
.bb-cta-band p {
  color: rgba(255,250,240,0.78);
  font-size: 16px; margin-bottom: 28px; line-height: 1.65;
}
.bb-cta-form {
  display: flex; gap: 8px;
  max-width: 440px; margin: 0 auto;
}
.bb-cta-form input {
  flex: 1; padding: 14px 18px;
  border-radius: var(--bb-radius-md); border: none;
  background: rgba(255,250,240,0.95);
  color: var(--bb-plum);
  font-family: 'Inter', sans-serif; font-size: 14px;
}
.bb-cta-form input::placeholder { color: var(--bb-text-light); }


/* ===================== META BAR ===================== */
.bb-meta-bar {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: var(--bb-bg-warm);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-md);
  font-size: 13px; color: var(--bb-text-mid);
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.bb-meta-bar strong { color: var(--bb-plum); font-weight: 600; }
.bb-meta-divider { width: 1px; height: 16px; background: var(--bb-border-strong); }


/* ===================== AFFILIATE DISCLOSURE ===================== */
.bb-disclosure {
  background: var(--bb-butter-light);
  border-left: 3px solid var(--bb-butter-dark);
  padding: 16px 20px;
  border-radius: var(--bb-radius-md);
  font-size: 13px; color: var(--bb-butter-text);
  line-height: 1.65;
  margin-bottom: 24px;
}
.bb-disclosure strong { color: var(--bb-plum); font-weight: 600; }
.bb-disclosure a { color: var(--bb-periwinkle-deep); text-decoration: underline; }


/* ===================== RESEARCH NOTE ===================== */
.bb-research {
  background: var(--bb-bg-warm);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-lg);
  padding: 24px 28px;
  display: flex; gap: 18px; align-items: flex-start;
  margin-bottom: 32px;
}
.bb-research-icon {
  width: 40px; height: 40px;
  background: var(--bb-sky);
  border-radius: var(--bb-radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.bb-research h4 {
  font-family: 'Fraunces', serif; font-size: 17px; font-weight: 600;
  color: var(--bb-plum); margin-bottom: 6px;
}
.bb-research p { font-size: 14px; color: var(--bb-text-mid); line-height: 1.7; }


/* ===================== QUICK PICKS ===================== */
.bb-quick-picks {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-lg);
  padding: 28px 32px;
  margin-bottom: 32px;
}
.bb-quick-picks h3 {
  font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600;
  color: var(--bb-plum);
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid var(--bb-border-light);
}
.bb-quick-picks ol { list-style: none; counter-reset: pick; padding: 0; }
.bb-quick-picks li {
  counter-increment: pick;
  display: flex; gap: 16px; align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--bb-border-light);
}
.bb-quick-picks li:last-child { border-bottom: none; }
.bb-quick-picks li::before {
  content: counter(pick);
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--bb-periwinkle); color: var(--bb-white);
  font-family: 'Fraunces', serif; font-size: 14px; font-weight: 600;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.bb-quick-pick-content h4 {
  font-size: 14px; font-weight: 600;
  color: var(--bb-plum); margin-bottom: 2px;
}
.bb-quick-pick-content p { font-size: 13px; color: var(--bb-text-mid); line-height: 1.55; }
.bb-quick-pick-content a { color: var(--bb-periwinkle-deep); text-decoration: none; font-weight: 500; }


/* ===================== COMPARISON TABLE ===================== */
.bb-table-wrap {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-lg);
  overflow-x: auto;
  margin-bottom: 32px;
}
.bb-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 600px; }
.bb-table thead { background: var(--bb-bg-warm); border-bottom: 2px solid var(--bb-border); }
.bb-table th {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--bb-text-mid);
  padding: 14px 16px; text-align: left;
}
.bb-table td {
  padding: 16px;
  border-bottom: 1px solid var(--bb-border-light);
  vertical-align: top;
}
.bb-table tr:last-child td { border-bottom: none; }
.bb-table tr:hover td { background: var(--bb-bg-warm); }
.bb-table .product-name { font-family: 'Fraunces', serif; font-size: 15px; font-weight: 600; color: var(--bb-plum); }
.bb-table .price { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 600; color: var(--bb-plum); }


/* ===================== HOW TO CHOOSE ===================== */
.bb-choose {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-lg);
  padding: 32px;
  margin-bottom: 32px;
}
.bb-choose h3 {
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 600;
  color: var(--bb-plum); margin-bottom: 20px;
}
.bb-choose-list { display: flex; flex-direction: column; gap: 18px; }
.bb-choose-item {
  display: grid; grid-template-columns: 36px 1fr;
  gap: 16px; align-items: flex-start;
}
.bb-choose-icon {
  width: 36px; height: 36px;
  background: var(--bb-blush);
  border-radius: var(--bb-radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.bb-choose-item:nth-child(2n) .bb-choose-icon { background: var(--bb-sky); }
.bb-choose-item:nth-child(3n) .bb-choose-icon { background: var(--bb-butter); }
.bb-choose-content h4 {
  font-family: 'Fraunces', serif; font-size: 16px; font-weight: 600;
  color: var(--bb-plum); margin-bottom: 4px;
}
.bb-choose-content p { font-size: 14px; color: var(--bb-text-mid); line-height: 1.65; }


/* ===================== HERO PICK ===================== */
.bb-hero-pick {
  background: var(--bb-white);
  border: 2px solid var(--bb-periwinkle);
  border-radius: var(--bb-radius-lg);
  overflow: hidden; position: relative;
  margin-bottom: 24px;
}
.bb-hero-pick-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--bb-periwinkle); color: var(--bb-white);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 6px 12px; border-radius: 6px; z-index: 2;
}
.bb-hero-pick-grid { display: grid; grid-template-columns: 240px 1fr; gap: 0; }
.bb-hero-pick-img {
  background: linear-gradient(135deg, var(--bb-sky) 0%, var(--bb-blush) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--bb-periwinkle-deep);
  font-size: 13px; min-height: 280px;
}
.bb-hero-pick-img img { width: 100%; height: 100%; object-fit: cover; }
.bb-hero-pick-body {
  padding: 32px 36px;
  display: flex; flex-direction: column; justify-content: center;
}
.bb-hero-pick-tagline {
  font-size: 12px; font-weight: 600; color: var(--bb-periwinkle-deep);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.bb-hero-pick h2,
.bb-hero-pick h3 {
  font-family: 'Fraunces', serif; font-size: 26px; font-weight: 600;
  color: var(--bb-plum); margin-bottom: 14px;
  letter-spacing: -0.01em; line-height: 1.2;
}
.bb-hero-pick p {
  font-size: 15px; color: var(--bb-text-mid);
  line-height: 1.7; margin-bottom: 22px;
}


/* ===================== PRODUCT CARD ===================== */
.bb-product-card {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-lg);
  padding: 24px;
  display: grid; grid-template-columns: 180px 1fr;
  gap: 24px; position: relative;
  margin-bottom: 16px;
}
.bb-product-rank {
  position: absolute; top: 16px; left: 16px;
  background: var(--bb-plum); color: var(--bb-cream);
  font-family: 'Fraunces', serif; font-size: 13px; font-weight: 600;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.bb-product-img {
  background: linear-gradient(135deg, var(--bb-sky) 0%, var(--bb-blush) 100%);
  border-radius: var(--bb-radius-md);
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  color: var(--bb-periwinkle-deep);
  font-size: 13px;
}
.bb-product-img img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--bb-radius-md); }
.bb-product-info h2,
.bb-product-info h3,
.bb-product-info h4 {
  font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600;
  color: var(--bb-plum); margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.bb-product-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  color: var(--bb-rose-text); background: var(--bb-blush);
  padding: 4px 10px; border-radius: 6px;
  margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.bb-product-info p { font-size: 14px; color: var(--bb-text-mid); line-height: 1.65; margin-bottom: 14px; }
.bb-product-pros-cons {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
  padding: 14px 16px;
  background: var(--bb-bg-warm);
  border-radius: var(--bb-radius-md);
}
.bb-pros h5,
.bb-cons h5 {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.bb-pros h5 { color: var(--bb-green); }
.bb-cons h5 { color: var(--bb-red); }
.bb-pros ul,
.bb-cons ul { list-style: none; font-size: 13px; color: var(--bb-text-mid); line-height: 1.55; padding: 0; }
.bb-pros li,
.bb-cons li { position: relative; padding-left: 14px; margin-bottom: 4px; }
.bb-pros li::before { content: '+'; position: absolute; left: 0; color: var(--bb-green); font-weight: 700; }
.bb-cons li::before { content: '−'; position: absolute; left: 0; color: var(--bb-red); font-weight: 700; }
.bb-product-bottom { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.bb-product-price { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 600; color: var(--bb-plum); }


/* ===================== VERDICT ===================== */
.bb-verdict {
  background: var(--bb-cream);
  border: 1px solid var(--bb-butter-dark);
  border-radius: var(--bb-radius-lg);
  padding: 28px 32px;
  position: relative;
  margin-bottom: 32px;
}
.bb-verdict-label {
  display: inline-block;
  background: var(--bb-butter); color: var(--bb-plum);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 5px 12px; border-radius: 100px;
  margin-bottom: 14px;
}
.bb-verdict h3 {
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 600;
  color: var(--bb-plum); margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.bb-verdict p { font-size: 15px; color: var(--bb-text); line-height: 1.7; margin-bottom: 12px; }
.bb-verdict p:last-child { margin-bottom: 0; }


/* ===================== EDITORIAL PROSE ===================== */
.bb-editorial { font-size: 16px; color: var(--bb-text); line-height: 1.75; max-width: 680px; margin-bottom: 32px; }
.bb-editorial h2 {
  font-family: 'Fraunces', serif; font-size: 28px; font-weight: 600;
  color: var(--bb-plum); margin: 32px 0 14px;
  letter-spacing: -0.015em;
}
.bb-editorial h3 {
  font-family: 'Fraunces', serif; font-size: 21px; font-weight: 600;
  color: var(--bb-plum); margin: 24px 0 10px;
}
.bb-editorial p { margin-bottom: 16px; }
.bb-editorial a {
  color: var(--bb-periwinkle-deep); text-decoration: underline;
  text-decoration-color: var(--bb-periwinkle);
  text-underline-offset: 3px;
}
.bb-editorial blockquote {
  border-left: 3px solid var(--bb-rose);
  padding: 8px 0 8px 20px;
  margin: 24px 0;
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 18px; color: var(--bb-plum-mid);
  line-height: 1.6;
}
.bb-editorial ul,
.bb-editorial ol { margin: 16px 0; padding-left: 24px; }
.bb-editorial li { margin-bottom: 6px; }
.bb-editorial strong { color: var(--bb-plum); font-weight: 600; }


/* ===================== EDITORIAL + IMAGE SPLIT ===================== */
.bb-edit-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: center;
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-lg);
  padding: 32px;
  margin-bottom: 32px;
}
.bb-edit-split.right .bb-edit-split-img { order: 2; }
.bb-edit-split-img {
  background: linear-gradient(135deg, var(--bb-sky) 0%, var(--bb-blush) 100%);
  border-radius: var(--bb-radius-md);
  height: 240px;
  display: flex; align-items: center; justify-content: center;
  color: var(--bb-periwinkle-deep);
  font-size: 13px;
}
.bb-edit-split-img img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--bb-radius-md); }
.bb-edit-split h3 {
  font-family: 'Fraunces', serif; font-size: 24px; font-weight: 600;
  color: var(--bb-plum); margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.bb-edit-split p { font-size: 15px; color: var(--bb-text-mid); line-height: 1.7; margin-bottom: 12px; }


/* ===================== FAQ ===================== */
.bb-faq {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.bb-faq-item { border-bottom: 1px solid var(--bb-border-light); }
.bb-faq-item:last-child { border-bottom: none; }
.bb-faq-q {
  padding: 18px 24px;
  font-family: 'Fraunces', serif; font-size: 17px; font-weight: 600;
  color: var(--bb-plum);
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
}
.bb-faq-q::after { content: '+'; font-size: 22px; color: var(--bb-periwinkle); font-weight: 400; }
.bb-faq-item.open .bb-faq-q::after { content: '−'; }
.bb-faq-a { padding: 0 24px 18px; font-size: 14px; color: var(--bb-text-mid); line-height: 1.7; }


/* ===================== AUTHOR BOX ===================== */
.bb-author {
  background: var(--bb-bg-warm);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-lg);
  padding: 24px 28px;
  display: grid; grid-template-columns: 80px 1fr;
  gap: 20px; align-items: center;
  margin-bottom: 32px;
}
.bb-author-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bb-periwinkle) 0%, var(--bb-rose) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--bb-white);
  font-family: 'Fraunces', serif; font-size: 28px; font-weight: 600;
}
.bb-author-name { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 600; color: var(--bb-plum); margin-bottom: 4px; }
.bb-author-role {
  font-size: 12px; font-weight: 600; color: var(--bb-periwinkle-deep);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.bb-author-bio { font-size: 13px; color: var(--bb-text-mid); line-height: 1.6; }


/* ===================== CALLOUTS ===================== */
.bb-callout {
  border-radius: var(--bb-radius-md);
  padding: 18px 22px;
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 14px; line-height: 1.65;
  margin-bottom: 16px;
}
.bb-callout-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: var(--bb-radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.bb-callout strong { font-weight: 600; }
.bb-callout.info { background: var(--bb-sky); color: var(--bb-periwinkle-deep); }
.bb-callout.info .bb-callout-icon { background: var(--bb-periwinkle); color: var(--bb-white); }
.bb-callout.warn { background: var(--bb-cream); color: var(--bb-butter-text); border: 1px solid var(--bb-butter-dark); }
.bb-callout.warn .bb-callout-icon { background: var(--bb-butter-dark); color: var(--bb-plum); }
.bb-callout.tip { background: var(--bb-blush); color: var(--bb-rose-text); }
.bb-callout.tip .bb-callout-icon { background: var(--bb-rose); color: var(--bb-white); }


/* ===================== BREADCRUMB ===================== */
.bb-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--bb-text-light);
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.bb-breadcrumb a { color: var(--bb-periwinkle-deep); text-decoration: none; font-weight: 500; }
.bb-breadcrumb a:hover { text-decoration: underline; }
.bb-breadcrumb-sep { color: var(--bb-text-light); }
.bb-breadcrumb-current { color: var(--bb-text-mid); font-weight: 500; }


/* ===================== FILTER BAR ===================== */
.bb-filter-bar {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-md);
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.bb-filter-label {
  font-size: 12px; font-weight: 600; color: var(--bb-text-light);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.bb-filter-pill {
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500;
  color: var(--bb-text-mid); background: var(--bb-bg);
  padding: 6px 14px; border-radius: 100px;
  border: none; cursor: pointer;
  transition: var(--bb-transition);
}
.bb-filter-pill:hover { background: var(--bb-sky); color: var(--bb-periwinkle-deep); }
.bb-filter-pill.active { background: var(--bb-periwinkle); color: var(--bb-white); }
.bb-filter-count { margin-left: auto; font-size: 13px; color: var(--bb-text-light); }


/* ===================== PAGE HEADER ===================== */
.bb-page-header {
  background: linear-gradient(135deg, var(--bb-sky) 0%, var(--bb-blush) 100%);
  border-radius: var(--bb-radius-xl);
  padding: 56px 48px;
  text-align: center;
  position: relative; overflow: hidden;
  margin-bottom: 32px;
}
.bb-page-header h1 {
  font-family: 'Fraunces', serif; font-size: clamp(32px,4.5vw,44px);
  font-weight: 600; color: var(--bb-plum);
  letter-spacing: -0.02em; margin-bottom: 10px;
}
.bb-page-header p { font-size: 16px; color: var(--bb-plum-mid); max-width: 580px; margin: 0 auto; line-height: 1.65; }


/* ===================== RESPONSIVE ===================== */
@media (max-width: 720px) {
  .bb-cat-grid,
  .bb-reviews-grid { grid-template-columns: 1fr; gap: 14px; }

  .bb-hero { padding: 48px 28px; }
  .bb-cta-band, .bb-how, .bb-edit-split { padding: 32px 24px; }

  .bb-product-card { grid-template-columns: 1fr; }
  .bb-product-img { height: 200px; }

  .bb-hero-pick-grid { grid-template-columns: 1fr; }
  .bb-hero-pick-img { min-height: 200px; }

  .bb-edit-split { grid-template-columns: 1fr; }
  .bb-edit-split.right .bb-edit-split-img { order: 0; }

  .bb-product-pros-cons { grid-template-columns: 1fr; }
}
