/* ============================================================
   Brandcoves — Maison Commerce Design System
   Inter · Warm parchment palette
   ============================================================ */

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

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --bc-cream:        #F7F4EF;
  --bc-white:        #FFFFFF;
  --bc-ink:          #1A1614;
  --bc-ink-light:    #4A4440;
  --bc-muted:        #8C8278;
  --bc-border:       #E8E3DC;
  --bc-border-strong:#CBC3BA;
  --bc-accent:       #C9503A;
  --bc-accent-dark:  #A83D2A;
  --bc-green:        #4A6741;
  --bc-green-light:  #EBF0E9;
  --bc-amber:        #C4956A;
  --bc-card-bg:      #FFFFFF;
  --bc-shadow-sm:    0 1px 4px rgba(26,22,20,.06);
  --bc-shadow-md:    0 4px 16px rgba(26,22,20,.10);
  --bc-shadow-lg:    0 12px 40px rgba(26,22,20,.14);
  --bc-radius:       4px;
  --bc-radius-lg:    8px;
  --bc-font-display:    'Inter', system-ui, -apple-system, sans-serif;
  --bc-font-body:       system-ui, -apple-system, 'Inter', sans-serif;
  --bc-font-editorial:  'Inter', system-ui, -apple-system, sans-serif;
  --bc-transition:   0.22s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ─────────────────────────────────────────────────── */
.bc-wrap *,
.bc-wrap *::before,
.bc-wrap *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

.bc-wrap {
  font-family: var(--bc-font-body);
  color: var(--bc-ink);
  background: var(--bc-cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* ── Typography ─────────────────────────────────────────────── */
.bc-display {
  font-family: var(--bc-font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.bc-h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.1; }
.bc-h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1.2; }
.bc-h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); line-height: 1.3; }

.bc-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bc-muted);
}

/* ── Layout ─────────────────────────────────────────────────── */
.bc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .bc-container { padding: 0 40px; } }

/* ── Buttons ─────────────────────────────────────────────────── */
.bc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--bc-font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--bc-transition);
  text-decoration: none;
  padding: 11px 20px;
  border-radius: var(--bc-radius);
  white-space: nowrap;
}
.bc-btn-primary,
.bc-btn--primary {
  background: var(--bc-ink);
  color: var(--bc-white);
}
.bc-btn-primary:hover,
.bc-btn--primary:hover { background: var(--bc-accent); color: var(--bc-white); }

.bc-btn-accent {
  background: var(--bc-accent);
  color: var(--bc-white);
}
.bc-btn-accent:hover { background: var(--bc-accent-dark); }

.bc-btn-ghost,
.bc-btn--ghost {
  background: transparent;
  color: var(--bc-ink);
  border: 1px solid var(--bc-border-strong);
}
.bc-btn-ghost:hover,
.bc-btn--ghost:hover { border-color: var(--bc-ink); }

/* Secondary/following state — muted ghost */
.bc-btn--secondary {
  background: transparent;
  color: var(--bc-muted);
  border: 1px solid var(--bc-border);
}
.bc-btn--secondary:hover { border-color: var(--bc-border-strong); color: var(--bc-ink); }

/* Size modifier */
.bc-btn--sm { padding: 7px 14px; font-size: 0.75rem; }

.bc-btn-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--bc-accent);
  font-size: inherit;
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  padding-bottom: 1px;
}
.bc-btn-link:hover { color: var(--bc-accent-dark); }

/* ── Source Pill ─────────────────────────────────────────────── */
.bc-source-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  border: 1px solid currentColor;
}
.bc-source-pill__logo {
  width: 14px;
  height: 14px;
  object-fit: contain;
  border-radius: 2px;
  flex-shrink: 0;
}
.bc-source-pill--awin   { color: var(--bc-muted); }
.bc-source-pill--bol    { color: #0061A3; }
.bc-source-pill--amazon { color: #C7511F; }

/* ════════════════════════════════════════════════════════════
   SEARCH RESULTS PAGE
   ════════════════════════════════════════════════════════════ */

.bc-search-page {
  min-height: 100vh;
  background: var(--bc-cream);
}

/* ── Search hero bar ─────────────────────────────────────────── */
.bc-search-hero {
  background: var(--bc-white);
  border-bottom: 1px solid var(--bc-border);
  padding: 24px 0;
}
.bc-search-bar-wrap {
  display: flex;
  gap: 12px;
  align-items: center;
}
.bc-search-input-group {
  flex: 1;
  position: relative;
}
.bc-search-input-group svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bc-muted);
  pointer-events: none;
}
.bc-search-input {
  width: 100%;
  height: 52px;
  padding: 0 16px 0 48px;
  font-family: var(--bc-font-body);
  font-size: 1rem;
  color: var(--bc-ink);
  background: var(--bc-cream);
  border: 1.5px solid var(--bc-border-strong);
  border-radius: var(--bc-radius);
  transition: var(--bc-transition);
  outline: none;
}
.bc-search-input:focus { border-color: var(--bc-ink); background: var(--bc-white); }
.bc-search-input::placeholder { color: var(--bc-muted); }

/* ── Suggested brands strip ──────────────────────────────────── */
.bc-suggested-strip {
  padding: 16px 0 8px;
  border-bottom: 1px solid var(--bc-border);
  background: var(--bc-white);
}
.bc-suggested-strip__label { display: inline-block; margin-right: 12px; }
.bc-suggested-brands {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.bc-suggested-brands::-webkit-scrollbar { display: none; }
.bc-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 5px 14px;
  border: 1.5px solid var(--bc-border-strong);
  border-radius: 100px;
  background: var(--bc-white);
  color: var(--bc-ink);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--bc-transition);
  text-decoration: none;
}
.bc-brand-pill:hover,
.bc-brand-pill.is-active {
  background: var(--bc-ink);
  border-color: var(--bc-ink);
  color: var(--bc-white);
}

/* ── Search body (sidebar + grid) ────────────────────────────── */
.bc-search-page .bc-container {
  max-width: 1560px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .bc-search-page .bc-container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.bc-search-body {
  padding: 32px 0;
}

/* ── Filter backdrop ─────────────────────────────────────────── */
.bc-filter-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.bc-filter-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* ── Filter drawer ───────────────────────────────────────────── */
.bc-filter-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px;
  max-width: 90vw;
  background: var(--bc-white);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.32, 0, 0.15, 1);
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.1);
}
.bc-filter-drawer.is-open {
  transform: translateX(0);
}

.bc-filter-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--bc-border);
  flex-shrink: 0;
}
.bc-filter-drawer__title {
  font-family: var(--bc-font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--bc-ink);
}
.bc-filter-drawer__close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--bc-muted);
  transition: background var(--bc-transition), color var(--bc-transition);
}
.bc-filter-drawer__close:hover {
  background: var(--bc-cream);
  color: var(--bc-ink);
}

.bc-filter-drawer__body {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--bc-border-strong) transparent;
}

.bc-filter-drawer__foot {
  padding: 14px 20px;
  border-top: 1px solid var(--bc-border);
  flex-shrink: 0;
}

.bc-filters__clear {
  font-size: 0.75rem;
  color: var(--bc-accent);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--bc-font-body);
  font-weight: 500;
}
.bc-filters__clear:hover { color: var(--bc-accent-dark); }

/* ── Filters trigger button ──────────────────────────────────── */
.bc-filters-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: var(--bc-white);
  border: 1.5px solid var(--bc-border-strong);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--bc-font-body);
  color: var(--bc-ink);
  cursor: pointer;
  transition: border-color var(--bc-transition), color var(--bc-transition), background var(--bc-transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.bc-filters-trigger:hover {
  border-color: var(--bc-accent);
  color: var(--bc-accent);
}
.bc-filters-trigger.has-filters {
  background: var(--bc-ink);
  border-color: var(--bc-ink);
  color: var(--bc-white);
}
.bc-filters-trigger__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: var(--bc-accent);
  color: var(--bc-white);
  border-radius: 9px;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
}
.bc-filters-trigger.has-filters .bc-filters-trigger__badge {
  background: var(--bc-white);
  color: var(--bc-ink);
}

.bc-filter-group {
  border-bottom: 1px solid var(--bc-border);
}
.bc-filter-group:last-child { border-bottom: none; }

.bc-filter-group__toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--bc-font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bc-ink);
}
.bc-filter-group__toggle svg { transition: transform var(--bc-transition); }
.bc-filter-group.is-open .bc-filter-group__toggle svg { transform: rotate(180deg); }

.bc-filter-group__body {
  padding: 0 20px 16px;
  display: none;
}
.bc-filter-group.is-open .bc-filter-group__body { display: block; }

/* Store filter: scroll if many merchants */
.bc-filter-group__body--stores {
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--bc-border-strong) transparent;
}
.bc-filter-merchant-logo {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  object-fit: contain;
  background: var(--bc-cream);
  border: 1px solid var(--bc-border);
  flex-shrink: 0;
}

.bc-filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--bc-ink-light);
  transition: color var(--bc-transition);
}
.bc-filter-option:hover { color: var(--bc-ink); }
.bc-filter-option input[type="checkbox"] {
  width: 16px; height: 16px;
  border-radius: 2px;
  border: 1.5px solid var(--bc-border-strong);
  appearance: none;
  cursor: pointer;
  transition: var(--bc-transition);
  flex-shrink: 0;
}
.bc-filter-option input[type="checkbox"]:checked {
  background: var(--bc-ink);
  border-color: var(--bc-ink);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.bc-price-range { padding: 8px 0; }
.bc-price-range__inputs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.bc-price-range__inputs span { color: var(--bc-muted); font-size: 0.875rem; text-align: center; }
.bc-price-input {
  width: 100%;
  padding: 7px 10px;
  font-family: var(--bc-font-body);
  font-size: 0.875rem;
  border: 1.5px solid var(--bc-border-strong);
  border-radius: var(--bc-radius);
  background: var(--bc-cream);
  color: var(--bc-ink);
  outline: none;
  transition: border-color var(--bc-transition);
}
.bc-price-input:focus { border-color: var(--bc-ink); }

/* ── Results area ────────────────────────────────────────────── */
.bc-results-area {}

.bc-results-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.bc-results-count {
  font-family: var(--bc-font-display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  color: var(--bc-ink-light);
}
.bc-results-count strong {
  font-style: normal;
  font-weight: 500;
  color: var(--bc-ink);
}
.bc-sort-select {
  font-family: var(--bc-font-body);
  font-size: 0.8125rem;
  border: 1.5px solid var(--bc-border-strong);
  border-radius: var(--bc-radius);
  padding: 7px 12px;
  background: var(--bc-white);
  color: var(--bc-ink);
  cursor: pointer;
  outline: none;
}

/* ── Results header controls (toggle + sort) ─────────────────── */
.bc-results-header__controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── View toggle ─────────────────────────────────────────────── */
.bc-view-toggle {
  display: inline-flex;
  border: 1.5px solid var(--bc-border-strong);
  border-radius: var(--bc-radius);
  overflow: hidden;
  background: var(--bc-white);
}
.bc-view-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  font-family: var(--bc-font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--bc-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--bc-transition), background var(--bc-transition);
  white-space: nowrap;
}
.bc-view-toggle__btn + .bc-view-toggle__btn {
  border-left: 1.5px solid var(--bc-border-strong);
}
.bc-view-toggle__btn:hover { color: var(--bc-ink); }
.bc-view-toggle__btn.is-active {
  background: var(--bc-ink);
  color: var(--bc-white);
}

/* ── Store-by-store lanes ────────────────────────────────────── */
.bc-store-lanes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  align-items: flex-start;
}

.bc-store-lane {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
}

.bc-store-lane__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--bc-border);
  background: var(--bc-cream);
}
.bc-store-lane__logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: contain;
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  flex-shrink: 0;
}
.bc-store-lane__logo-placeholder {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--bc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--bc-font-display);
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--bc-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.bc-store-lane__name {
  font-family: var(--bc-font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bc-ink);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.bc-store-lane__count {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--bc-muted);
  background: var(--bc-border);
  border-radius: 100px;
  padding: 2px 7px;
  white-space: nowrap;
}

.bc-store-lane__products {
  display: flex;
  flex-direction: column;
}

/* Compact product row inside a store lane */
.bc-store-product {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--bc-border);
  position: relative;
}
.bc-store-product:last-child { border-bottom: none; }
.bc-store-product:hover { background: var(--bc-cream); }
.bc-store-product.is-ean-match { background: color-mix(in srgb, var(--bc-accent) 8%, transparent); outline: 1px solid color-mix(in srgb, var(--bc-accent) 25%, transparent); }

.bc-store-lane__show-more {
  width: 100%;
  padding: 8px 16px;
  background: none;
  border: none;
  border-top: 1px solid var(--bc-border);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bc-accent);
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.04em;
  transition: background var(--bc-transition);
}
.bc-store-lane__show-more:hover { background: var(--bc-cream); }

.bc-store-product__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  flex: 1;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

/* Wishlist button on store product rows */
.bc-store-product__wishlist {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--bc-border);
  background: var(--bc-white);
  color: var(--bc-muted);
  cursor: pointer;
  transition: color var(--bc-transition), border-color var(--bc-transition), background var(--bc-transition);
}
.bc-store-product__wishlist:hover,
.bc-store-product__wishlist.is-wishlisted {
  color: #e5384f;
  border-color: #e5384f;
  background: #fff0f2;
}
.bc-store-product__wishlist svg { transition: fill 0.15s ease; }
.bc-store-product__wishlist.is-wishlisted svg { fill: #e5384f; }

.bc-store-product__thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bc-cream);
  border: 1px solid var(--bc-border);
}
.bc-store-product__thumb-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--bc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bc-muted);
}
.bc-store-product__info {
  flex: 1;
  min-width: 0;
}
.bc-store-product__title {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--bc-ink);
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 3px;
}
.bc-store-product__price {
  font-family: var(--bc-font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bc-accent);
}
.bc-store-product__no-price {
  font-size: 0.75rem;
  color: var(--bc-muted);
}
.bc-store-product__cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bc-ink);
  color: var(--bc-white);
  transition: background var(--bc-transition), transform var(--bc-transition);
}
.bc-store-product:hover .bc-store-product__cta {
  background: var(--bc-accent);
  transform: scale(1.08);
}

/* Empty / skeleton states for store view */
.bc-store-lanes-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 0;
  gap: 12px;
  color: var(--bc-muted);
}

.bc-store-lane--skeleton .bc-store-lane__header {
  gap: 10px;
}
.bc-store-lane--skeleton .bc-skeleton-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.bc-store-lane--skeleton .bc-skeleton-name {
  height: 14px;
  width: 100px;
  border-radius: 4px;
}
.bc-store-lane--skeleton .bc-skeleton-row {
  display: flex;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--bc-border);
  align-items: center;
}
.bc-store-lane--skeleton .bc-skeleton-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
}
.bc-store-lane--skeleton .bc-skeleton-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bc-store-lane--skeleton .bc-skeleton-line {
  height: 10px;
  border-radius: 4px;
}
.bc-store-lane--skeleton .bc-skeleton-line:last-child { width: 50%; }

/* ── Product grid ────────────────────────────────────────────── */
.bc-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) { .bc-product-grid { gap: 20px; } }
@media (min-width: 1024px) { .bc-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .bc-product-grid { grid-template-columns: repeat(4, 1fr); } }

/* ── Product card ────────────────────────────────────────────── */
.bc-product-card {
  background: var(--bc-card-bg);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--bc-transition), transform var(--bc-transition);
  position: relative;
}
.bc-product-card:hover {
  box-shadow: var(--bc-shadow-lg);
  transform: translateY(-2px);
}

.bc-product-card__image-wrap {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #ffffff;
  position: relative;
  padding: 12px;
}
.bc-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.bc-product-card:hover .bc-product-card__image { transform: scale(1.04); }

.bc-product-card__no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F0EDE7 0%, #E8E3DC 100%);
  color: var(--bc-muted);
}

@keyframes bc-heart-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.35); }
  70%  { transform: scale(0.88); }
  100% { transform: scale(1); }
}

/* Wishlist button — shared base */
.bc-wishlist-btn {
  width: 34px;
  height: 34px;
  background: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--bc-transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  color: #e0294a;
  flex-shrink: 0;
}
.bc-wishlist-btn:hover { background: #fff0f3; color: #c0162e; transform: scale(1.1); }
.bc-wishlist-btn svg { transition: fill 0.15s ease; }
.bc-wishlist-btn.is-wishlisted { color: #e0294a; animation: bc-heart-pop 0.35s cubic-bezier(0.36, 0.07, 0.19, 0.97) both; }
.bc-wishlist-btn.is-wishlisted svg { fill: #e0294a; }

/* Heart overlaid on the image — absolutely positioned top-right */
.bc-product-card__image-wrap .bc-wishlist-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
}


.bc-product-card__body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.bc-product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bc-product-card__brand {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bc-muted);
}

.bc-product-card__title {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--bc-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.bc-product-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
}

.bc-product-card__price {
  font-family: var(--bc-font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--bc-ink);
  line-height: 1;
}
.bc-product-card__price .bc-currency {
  font-size: 0.75rem;
  vertical-align: top;
  margin-top: 2px;
  display: inline-block;
  font-family: var(--bc-font-body);
  font-weight: 500;
}

.bc-updated-date {
  display: block;
  font-size: 0.625rem;
  color: var(--bc-muted);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.bc-product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bc-accent);
  text-decoration: none;
  border-bottom: 1px solid var(--bc-accent);
  padding-bottom: 1px;
  transition: color var(--bc-transition);
  white-space: nowrap;
}
.bc-product-card__cta:hover { color: var(--bc-accent-dark); border-color: var(--bc-accent-dark); }

.bc-no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 24px;
  color: var(--bc-muted);
}
.bc-no-results svg { display: block; margin: 0 auto 16px; color: var(--bc-border-strong); }
.bc-no-results p { font-family: var(--bc-font-display); font-size: 1.25rem; font-style: italic; }

/* ── Pagination ──────────────────────────────────────────────── */
.bc-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 48px;
  padding-bottom: 48px;
}
.bc-pagination__btn {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1.5px solid var(--bc-border-strong);
  border-radius: var(--bc-radius);
  background: var(--bc-white);
  color: var(--bc-ink);
  cursor: pointer;
  transition: var(--bc-transition);
  text-decoration: none;
  font-family: var(--bc-font-body);
}
.bc-pagination__btn:hover { border-color: var(--bc-ink); }
.bc-pagination__btn.is-active { background: var(--bc-ink); border-color: var(--bc-ink); color: var(--bc-white); }
.bc-pagination__btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Mobile filters overlay ──────────────────────────────────── */
.bc-mobile-filter-bar {
  display: flex;
  gap: 8px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.bc-mobile-filter-bar::-webkit-scrollbar { display: none; }
@media (min-width: 960px) { .bc-mobile-filter-bar { display: none; } }

.bc-filter-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--bc-font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 8px 14px;
  border: 1.5px solid var(--bc-border-strong);
  border-radius: 100px;
  background: var(--bc-white);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--bc-transition);
}
.bc-filter-toggle-btn.is-active {
  background: var(--bc-ink);
  border-color: var(--bc-ink);
  color: var(--bc-white);
}

/* ════════════════════════════════════════════════════════════
   BRAND PAGE
   ════════════════════════════════════════════════════════════ */

.bc-brand-page { background: var(--bc-cream); }

/* ── Brand hero ──────────────────────────────────────────────── */
.bc-brand-hero {
  background: var(--bc-white);
  border-bottom: 1px solid var(--bc-border);
  padding: 60px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bc-brand-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(201,80,58,.06) 0%, transparent 70%);
  pointer-events: none;
}

.bc-brand-hero__logo-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 2px solid var(--bc-border);
  background: var(--bc-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bc-brand-hero__logo { width: 100%; height: 100%; object-fit: cover; }
.bc-brand-hero__logo-placeholder {
  font-family: var(--bc-font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--bc-muted);
}

.bc-brand-hero__name {
  font-family: var(--bc-font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--bc-ink);
  margin-bottom: 10px;
}

.bc-brand-hero__tagline {
  font-family: var(--bc-font-display);
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 300;
  color: var(--bc-muted);
  margin-bottom: 24px;
}

/* Brand meta strip */
.bc-brand-meta-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 24px;
}
.bc-brand-meta-item {
  padding: 6px 20px;
  border-right: 1px solid var(--bc-border);
  text-align: center;
}
.bc-brand-meta-item:last-child { border-right: none; }
.bc-brand-meta-item__value {
  font-family: var(--bc-font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--bc-ink);
  display: block;
}
.bc-brand-meta-item__label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bc-muted);
}

/* Sustainability badge */
.bc-sustain-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bc-green-light);
  color: var(--bc-green);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 12px;
}
.bc-sustain-badge svg { flex-shrink: 0; }

/* Product brand tags */
.bc-brand-hero__sub-brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.bc-brand-hero__sub-brands a {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--bc-ink-light);
  border: 1px solid var(--bc-border-strong);
  border-radius: 100px;
  padding: 4px 12px;
  text-decoration: none;
  transition: var(--bc-transition);
}
.bc-brand-hero__sub-brands a:hover { background: var(--bc-ink); color: var(--bc-white); border-color: var(--bc-ink); }

/* Social links */
.bc-brand-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.bc-brand-socials a {
  width: 36px; height: 36px;
  border: 1.5px solid var(--bc-border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bc-muted);
  text-decoration: none;
  transition: var(--bc-transition);
}
.bc-brand-socials a:hover { border-color: var(--bc-ink); color: var(--bc-ink); }

/* ── Brand page sections ──────────────────────────────────────── */
.bc-brand-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--bc-border);
}
.bc-brand-section:last-child { border-bottom: none; }

.bc-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}
.bc-section-title {
  font-family: var(--bc-font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--bc-ink);
}

/* ── News cards ──────────────────────────────────────────────── */
.bc-news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .bc-news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .bc-news-grid { grid-template-columns: repeat(3, 1fr); } }

.bc-news-card {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--bc-transition);
  text-decoration: none;
  color: inherit;
}
.bc-news-card:hover { box-shadow: var(--bc-shadow-md); border-color: var(--bc-border-strong); }

.bc-news-card__source {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bc-accent);
}
.bc-news-card__title {
  font-family: var(--bc-font-display);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--bc-ink);
}
.bc-news-card__date {
  font-size: 0.75rem;
  color: var(--bc-muted);
  margin-top: auto;
}

/* ── Community rating ────────────────────────────────────────── */
.bc-rating-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  padding: 28px;
}
@media (max-width: 639px) { .bc-rating-block { grid-template-columns: 1fr; gap: 20px; } }

.bc-rating-block__score {
  text-align: center;
  min-width: 100px;
}
.bc-rating-block__number {
  font-family: var(--bc-font-display);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--bc-ink);
}
.bc-rating-block__of { font-size: 0.875rem; color: var(--bc-muted); }
.bc-stars {
  display: flex;
  gap: 3px;
  justify-content: center;
  margin: 6px 0;
}
.bc-star { color: var(--bc-amber); }
.bc-star--empty { color: var(--bc-border-strong); }

.bc-rating-categories { display: flex; flex-direction: column; gap: 10px; }
.bc-rating-bar-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 12px;
  align-items: center;
  font-size: 0.8125rem;
}
.bc-rating-bar-row span:first-child { color: var(--bc-ink-light); }
.bc-rating-bar-track {
  height: 6px;
  background: var(--bc-border);
  border-radius: 3px;
  overflow: hidden;
}
.bc-rating-bar-fill {
  height: 100%;
  background: var(--bc-amber);
  border-radius: 3px;
}
.bc-rating-bar-row span:last-child { font-weight: 500; font-size: 0.8125rem; color: var(--bc-ink); min-width: 28px; text-align: right; }

/* ── Q&A section ─────────────────────────────────────────────── */
.bc-qa-list { display: flex; flex-direction: column; gap: 1px; }
.bc-qa-item {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  margin-bottom: 8px;
}
.bc-qa-item:last-child { margin-bottom: 0; }

.bc-qa-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--bc-font-display);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--bc-ink);
  line-height: 1.4;
}
.bc-qa-question svg { flex-shrink: 0; margin-top: 3px; transition: transform var(--bc-transition); color: var(--bc-muted); }
.bc-qa-item.is-open .bc-qa-question svg { transform: rotate(180deg); }
.bc-qa-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.9375rem;
  color: var(--bc-ink-light);
  line-height: 1.7;
  border-top: 1px solid var(--bc-border);
  padding-top: 16px;
}
.bc-qa-item.is-open .bc-qa-answer { display: block; }

/* ════════════════════════════════════════════════════════════
   WISHLIST PAGE
   ════════════════════════════════════════════════════════════ */

.bc-wishlist-page {
  background: var(--bc-cream);
  min-height: 80vh;
  padding: 40px 0;
}

.bc-wishlist-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.bc-wishlist-header__title {
  font-family: var(--bc-font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--bc-ink);
}
.bc-wishlist-header__subtitle {
  font-style: italic;
  color: var(--bc-muted);
  font-family: var(--bc-font-display);
  font-size: 1rem;
  margin-top: 4px;
}

.bc-wishlist-tabs {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--bc-border-strong);
  border-radius: var(--bc-radius);
  overflow: hidden;
  width: fit-content;
  margin-bottom: 24px;
}
.bc-wishlist-tab {
  padding: 9px 20px;
  font-family: var(--bc-font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  background: var(--bc-white);
  border: none;
  color: var(--bc-ink-light);
  transition: var(--bc-transition);
  border-right: 1.5px solid var(--bc-border-strong);
}
.bc-wishlist-tab:last-child { border-right: none; }
.bc-wishlist-tab.is-active { background: var(--bc-ink); color: var(--bc-white); }

/* Wishlist item list */
.bc-wishlist-items { display: flex; flex-direction: column; gap: 12px; }

.bc-wishlist-item {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px;
  transition: var(--bc-transition);
}
@media (min-width: 640px) { .bc-wishlist-item { grid-template-columns: 100px 1fr auto; } }
.bc-wishlist-item:hover { box-shadow: var(--bc-shadow-sm); }

.bc-wishlist-item__image-wrap {
  aspect-ratio: 1;
  border-radius: var(--bc-radius);
  overflow: hidden;
  background: var(--bc-cream);
  flex-shrink: 0;
}
.bc-wishlist-item__image { width: 100%; height: 100%; object-fit: contain; padding: 4px; box-sizing: border-box; }

.bc-wishlist-item__info { min-width: 0; }
.bc-wishlist-item__brand {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bc-muted);
  margin-bottom: 4px;
}
.bc-wishlist-item__title {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--bc-ink);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bc-wishlist-item__price {
  font-family: var(--bc-font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--bc-ink);
}

/* Claim states */
.bc-claim-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}
.bc-claim-badge--yours { background: var(--bc-green-light); color: var(--bc-green); }
.bc-claim-badge--taken { background: #FFF3CD; color: #856404; }
.bc-claim-badge--available { display: none; }

.bc-wishlist-item__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  flex-shrink: 0;
}

.bc-remove-btn {
  width: 30px; height: 30px;
  background: none;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--bc-muted);
  transition: var(--bc-transition);
}
.bc-remove-btn:hover { background: #FFF0EE; color: var(--bc-accent); }

/* Empty wishlist */
.bc-wishlist-empty {
  text-align: center;
  padding: 80px 24px;
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
}
.bc-wishlist-empty svg { display: block; margin: 0 auto 16px; color: var(--bc-border-strong); }
.bc-wishlist-empty__title {
  font-family: var(--bc-font-display);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 8px;
}
.bc-wishlist-empty__text { color: var(--bc-muted); font-size: 0.9375rem; }

/* ── Create new list prompt ─────────────────────────────────── */
.bc-create-list-card {
  background: var(--bc-white);
  border: 2px dashed var(--bc-border-strong);
  border-radius: var(--bc-radius-lg);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: var(--bc-transition);
}
.bc-create-list-card:hover { border-color: var(--bc-ink); }
.bc-create-list-card svg { color: var(--bc-muted); margin-bottom: 8px; display: block; margin-left: auto; margin-right: auto; }
.bc-create-list-card p { font-family: var(--bc-font-display); font-size: 1.125rem; font-weight: 400; color: var(--bc-ink-light); }

/* ── Loading & toast ─────────────────────────────────────────── */
.bc-loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(247,244,239,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.bc-loading-overlay.is-visible { opacity: 1; pointer-events: all; }
.bc-spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--bc-border-strong);
  border-top-color: var(--bc-accent);
  border-radius: 50%;
  animation: bc-spin 0.7s linear infinite;
}
@keyframes bc-spin { to { transform: rotate(360deg); } }

.bc-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bc-ink);
  color: var(--bc-white);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: var(--bc-radius);
  box-shadow: var(--bc-shadow-lg);
  white-space: nowrap;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.bc-toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ════════════════════════════════════════════════════════════
   PHASE 2 — SOCIAL SHARE BAR
   ════════════════════════════════════════════════════════════ */

.bc-share-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.bc-share-bar__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bc-muted);
  margin-right: 4px;
  white-space: nowrap;
}
.bc-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 14px;
  border-radius: 100px;
  border: 1.5px solid var(--bc-border-strong);
  background: var(--bc-white);
  font-family: var(--bc-font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--bc-ink);
  cursor: pointer;
  text-decoration: none;
  transition: var(--bc-transition);
  white-space: nowrap;
}
.bc-share-btn svg { flex-shrink: 0; }
.bc-share-btn:hover { transform: translateY(-1px); box-shadow: var(--bc-shadow-md); }
.bc-share-btn--whatsapp:hover { border-color: #25D366; color: #25D366; }
.bc-share-btn--facebook:hover { border-color: #1877F2; color: #1877F2; }
.bc-share-btn--x:hover        { border-color: #000;   color: #000; }
.bc-share-btn--copy {  }
.bc-share-btn--copy.copied { border-color: var(--bc-green); color: var(--bc-green); }

/* Floating share strip (appears when wishlist is public) */
.bc-share-strip {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  animation: bc-slide-down 0.3s ease both;
}
@keyframes bc-slide-down {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bc-share-strip__text {
  font-family: var(--bc-font-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--bc-ink-light);
  margin-right: auto;
}

/* ════════════════════════════════════════════════════════════
   PHASE 2 — AUTH / LOGIN PAGE
   ════════════════════════════════════════════════════════════ */

.bc-auth-page {
  min-height: 100vh;
  background: var(--bc-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.bc-auth-card {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--bc-shadow-md);
}

.bc-auth-card__logo {
  text-align: center;
  margin-bottom: 8px;
}
.bc-auth-card__logo img { height: 36px; }

.bc-auth-card__title {
  font-family: var(--bc-font-display);
  font-size: 1.875rem;
  font-weight: 300;
  text-align: center;
  color: var(--bc-ink);
  margin-bottom: 4px;
}
.bc-auth-card__subtitle {
  font-family: var(--bc-font-display);
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--bc-muted);
  text-align: center;
  margin-bottom: 28px;
}

/* Social buttons */
.bc-social-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.bc-social-btn {
  width: 100%;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--bc-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--bc-radius);
  cursor: pointer;
  text-decoration: none;
  transition: var(--bc-transition);
  border: 1.5px solid transparent;
}
.bc-social-btn--google {
  background: var(--bc-white);
  border-color: var(--bc-border-strong);
  color: var(--bc-ink);
}
.bc-social-btn--google:hover { border-color: var(--bc-ink); box-shadow: var(--bc-shadow-sm); }

.bc-social-btn--facebook {
  background: #1877F2;
  color: #fff;
}
.bc-social-btn--facebook:hover { background: #1560CC; color: #fff; }

/* Divider */
.bc-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--bc-muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.bc-auth-divider::before,
.bc-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--bc-border);
}

/* Magic link form */
.bc-magic-form { display: flex; flex-direction: column; gap: 10px; }
.bc-magic-form input[type="email"] {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  font-family: var(--bc-font-body);
  font-size: 0.9375rem;
  color: var(--bc-ink);
  background: var(--bc-cream);
  border: 1.5px solid var(--bc-border-strong);
  border-radius: var(--bc-radius);
  outline: none;
  transition: border-color var(--bc-transition);
}
.bc-magic-form input[type="email"]:focus { border-color: var(--bc-ink); background: var(--bc-white); }
.bc-magic-form input[type="email"]::placeholder { color: var(--bc-muted); }
.bc-magic-form .bc-btn-accent {
  width: 100%;
  height: 48px;
  justify-content: center;
  font-size: 0.8125rem;
}

.bc-auth-card__note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--bc-muted);
  margin-top: 16px;
  line-height: 1.5;
}
.bc-auth-card__note a { color: var(--bc-accent); text-decoration: none; }

/* Sent confirmation state */
.bc-magic-sent {
  text-align: center;
  padding: 16px 0;
  display: none;
}
.bc-magic-sent.is-visible { display: block; }
.bc-magic-sent__icon {
  width: 48px; height: 48px;
  background: var(--bc-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--bc-green);
}
.bc-magic-sent p {
  font-family: var(--bc-font-display);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--bc-ink);
  margin-bottom: 4px;
}
.bc-magic-sent small { color: var(--bc-muted); font-size: 0.8125rem; }

/* ════════════════════════════════════════════════════════════
   PHASE 2 — PUBLIC GIFT LIST
   ════════════════════════════════════════════════════════════ */

.bc-gift-list-header {
  background: var(--bc-white);
  border-bottom: 1px solid var(--bc-border);
  padding: 40px 0 32px;
  text-align: center;
  margin-bottom: 32px;
}
.bc-gift-list-header__owner {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bc-muted);
  margin-bottom: 6px;
}
.bc-gift-list-header__title {
  font-family: var(--bc-font-display);
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--bc-ink);
  margin-bottom: 8px;
}
.bc-gift-list-header__count {
  font-family: var(--bc-font-display);
  font-style: italic;
  color: var(--bc-muted);
  font-size: 1rem;
}

/* Progress strip: X of Y items claimed */
.bc-claim-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  padding: 14px 20px;
  margin-bottom: 24px;
}
.bc-claim-progress__track {
  flex: 1;
  height: 6px;
  background: var(--bc-border);
  border-radius: 3px;
  overflow: hidden;
}
.bc-claim-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--bc-green), #6CA558);
  border-radius: 3px;
  transition: width 0.6s ease;
}
.bc-claim-progress__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--bc-ink-light);
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════════════
   PHASE 2 — AI USAGE ADMIN
   ════════════════════════════════════════════════════════════ */

.bc-ai-page { font-family: 'Outfit', system-ui, sans-serif; }

.bc-ai-stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin: 20px 0 28px;
}
.bc-ai-stat {
  background: #fff;
  border: 1px solid #E8E3DC;
  border-radius: 8px;
  padding: 18px 20px;
}
.bc-ai-stat__value {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1A1614;
  line-height: 1;
}
.bc-ai-stat__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8C8278;
  margin-top: 4px;
}
.bc-ai-stat--warning .bc-ai-stat__value { color: #C9503A; }
.bc-ai-stat--ok      .bc-ai-stat__value { color: #4A6741; }

/* Usage table */
.bc-ai-table { width: 100%; border-collapse: collapse; margin: 0 0 32px; }
.bc-ai-table th {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8C8278;
  padding: 8px 12px;
  text-align: left;
  border-bottom: 2px solid #E8E3DC;
  background: #FAFAFA;
}
.bc-ai-table td {
  padding: 12px 12px;
  font-size: 0.875rem;
  color: #1A1614;
  border-bottom: 1px solid #F0ECE6;
  vertical-align: middle;
}
.bc-ai-table tr:last-child td { border-bottom: none; }
.bc-ai-table tr:hover td { background: #FAFAF8; }

.bc-usage-bar-wrap { display: flex; align-items: center; gap: 8px; }
.bc-usage-bar {
  flex: 1;
  height: 6px;
  background: #E8E3DC;
  border-radius: 3px;
  overflow: hidden;
  min-width: 80px;
}
.bc-usage-bar__fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.5s ease;
}
.bc-usage-bar__fill--ok      { background: #4A6741; }
.bc-usage-bar__fill--warn    { background: #C9503A; }
.bc-usage-bar__fill--maxed   { background: #8B1A1A; }

.bc-limit-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
}
.bc-limit-badge--ok    { background: #EBF0E9; color: #4A6741; }
.bc-limit-badge--warn  { background: #FFF3CD; color: #856404; }
.bc-limit-badge--maxed { background: #FDECEA; color: #8B1A1A; }

/* Mini bar chart */
.bc-daily-chart {
  background: #fff;
  border: 1px solid #E8E3DC;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}
.bc-daily-chart__title {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8C8278;
  margin-bottom: 16px;
}
.bc-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 60px;
}
.bc-chart-bar {
  flex: 1;
  background: #E8E3DC;
  border-radius: 2px 2px 0 0;
  min-height: 3px;
  transition: background 0.2s;
  position: relative;
  cursor: default;
}
.bc-chart-bar:hover { background: #C9503A; }
.bc-chart-bar[title]:hover::after {
  content: attr(title);
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: #1A1614;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10;
}
.bc-chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}
.bc-chart-labels span {
  font-size: 0.625rem;
  color: #8C8278;
}

/* ════════════════════════════════════════════════════════════
   PHASE 2 — ARTICLE PAGE + SIDEBAR
   ════════════════════════════════════════════════════════════ */

.bc-article-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 48px 0;
}
@media (min-width: 960px) {
  .bc-article-layout { grid-template-columns: 1fr 280px; align-items: start; }
}

.bc-article-content {
  min-width: 0;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--bc-ink-light);
}
.bc-article-content h1 {
  font-family: var(--bc-font-editorial);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--bc-ink);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.bc-article-content h2 {
  font-family: var(--bc-font-editorial);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--bc-ink);
  margin: 44px 0 14px;
  border-bottom: none;
  padding-bottom: 0;
}
.bc-article-content p   { margin: 0 0 1.2em; }
.bc-article-content ul,
.bc-article-content ol  { margin: 0 0 1.2em; padding-left: 1.5em; }
.bc-article-content li  { margin-bottom: .4em; }
.bc-article-content a   { color: var(--bc-accent); }
.bc-article-content .bc-guide-item__link              { color: var(--bc-white, #fff); }
.bc-article-content .bc-guide-item__link:hover        { color: var(--bc-white, #fff); }
.bc-article-content .bc-guide-item__link--ghost       { color: var(--bc-accent, #c9503a); }
.bc-article-content .bc-guide-item__link--ghost:hover { color: var(--bc-white, #fff); }

.bc-article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.bc-article-meta__locale{ font-size: 0.5625rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color: var(--bc-muted); background: rgba(26,22,20,0.07); padding: 3px 8px; border-radius: 100px; }

/* Date displayed under the article title */
.bc-article-title-date {
  display: block;
  font-size: 0.8125rem;
  color: var(--bc-muted);
  font-weight: 500;
  margin: 6px 0 24px;
  letter-spacing: 0.01em;
}

/* ── Sidebar sections ──────────────────────────────────────────── */
.bc-article-sidebar__section {
  border-top: 1px solid var(--bc-border);
}
.bc-article-sidebar__section:first-child { border-top: none; }

/* Brand items in sidebar */
.bc-sidebar-brand-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--bc-border);
  text-decoration: none;
  color: var(--bc-ink);
  transition: background var(--bc-transition);
}
.bc-sidebar-brand-item:last-child { border-bottom: none; }
.bc-sidebar-brand-item:hover { background: var(--bc-cream); }
.bc-sidebar-brand-item:hover .bc-sidebar-brand-item__name { color: var(--bc-accent); }
.bc-sidebar-brand-item__logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: contain;
  border: 1px solid var(--bc-border);
  background: var(--bc-cream);
  flex-shrink: 0;
}
.bc-sidebar-brand-item__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bc-cream);
  border: 1px solid var(--bc-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bc-ink-light);
  flex-shrink: 0;
}
.bc-sidebar-brand-item__name {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bc-ink);
  line-height: 1.3;
  transition: color var(--bc-transition);
}
.bc-sidebar-brand-item__arrow {
  flex-shrink: 0;
  color: var(--bc-muted);
}

/* Brand block wraps the brand row + its product links */
.bc-sidebar-brand-block {
  border-bottom: 1px solid var(--bc-border);
}
.bc-sidebar-brand-block:last-child { border-bottom: none; }
.bc-sidebar-brand-block .bc-sidebar-brand-item { border-bottom: none; }

/* Product links nested under a brand */
.bc-sidebar-brand-products {
  padding: 0 16px 8px 58px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.bc-sidebar-brand-product {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 0;
  text-decoration: none;
  color: var(--bc-ink-light);
  border-bottom: 1px solid var(--bc-border);
  transition: color var(--bc-transition);
}
.bc-sidebar-brand-product:last-child { border-bottom: none; }
.bc-sidebar-brand-product:hover { color: var(--bc-accent); }
.bc-sidebar-brand-product__title {
  font-size: 0.75rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.bc-sidebar-brand-product__price {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--bc-ink);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Related article items in sidebar */
.bc-sidebar-article-item {
  display: block;
  padding: 10px 16px;
  border-bottom: 1px solid var(--bc-border);
  text-decoration: none;
  color: inherit;
  transition: background var(--bc-transition);
}
.bc-sidebar-article-item:last-child { border-bottom: none; }
.bc-sidebar-article-item:hover { background: var(--bc-cream); }
.bc-sidebar-article-item__title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.8125rem;
  color: var(--bc-ink);
  line-height: 1.4;
}
.bc-sidebar-article-item:hover .bc-sidebar-article-item__title { color: var(--bc-accent); }
.bc-sidebar-article-item__date {
  display: block;
  font-size: 0.6875rem;
  color: var(--bc-muted);
  margin-top: 3px;
}

/* ── Ask questions form ────────────────────────────────────────── */
.bc-article-ask {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--bc-cream);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
}
.bc-article-ask__title {
  font-family: var(--bc-font-editorial);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bc-ink);
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}
.bc-article-ask__sub {
  font-size: 0.875rem;
  color: var(--bc-muted);
  margin: 0 0 18px;
  line-height: 1.5;
}
.bc-article-ask__name,
.bc-article-ask__field {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  background: var(--bc-white);
  font-size: 0.9375rem;
  color: var(--bc-ink);
  font-family: inherit;
  box-sizing: border-box;
  margin-bottom: 10px;
  transition: border-color var(--bc-transition), box-shadow var(--bc-transition);
}
.bc-article-ask__field { resize: vertical; min-height: 80px; }
.bc-article-ask__name:focus,
.bc-article-ask__field:focus {
  outline: none;
  border-color: var(--bc-accent);
  box-shadow: 0 0 0 3px rgba(var(--bc-accent-rgb, 201,150,99), 0.15);
}
.bc-article-ask__submit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--bc-ink);
  color: var(--bc-white);
  border: none;
  border-radius: var(--bc-radius);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity var(--bc-transition);
  font-family: inherit;
}
.bc-article-ask__submit:hover:not(:disabled) { opacity: 0.85; }
.bc-article-ask__submit:disabled { opacity: 0.45; cursor: not-allowed; }
.bc-article-ask__success {
  display: none;
  padding: 12px 16px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--bc-radius);
  color: #065f46;
  font-size: 0.875rem;
  margin-top: 12px;
}
.bc-article-ask__error {
  display: none;
  padding: 12px 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--bc-radius);
  color: #7f1d1d;
  font-size: 0.875rem;
  margin-top: 12px;
}
.bc-brand-ask { margin-top: 48px; padding: 28px 32px; background: var(--bc-cream); border: 1px solid var(--bc-border); border-radius: var(--bc-radius-lg); }
.bc-brand-ask__title { font-family: var(--bc-font-editorial); font-size: 1.25rem; font-weight: 700; color: var(--bc-ink); margin: 0 0 4px; letter-spacing: -0.02em; }
.bc-brand-ask__sub { font-size: 0.875rem; color: var(--bc-muted); margin: 0 0 18px; line-height: 1.5; }
.bc-brand-ask__name, .bc-brand-ask__field { width: 100%; padding: 10px 14px; border: 1px solid var(--bc-border); border-radius: var(--bc-radius); background: var(--bc-white); font-size: 0.9375rem; color: var(--bc-ink); font-family: inherit; box-sizing: border-box; margin-bottom: 10px; transition: border-color var(--bc-transition), box-shadow var(--bc-transition); }
.bc-brand-ask__field { resize: vertical; min-height: 80px; }
.bc-brand-ask__name:focus, .bc-brand-ask__field:focus { outline: none; border-color: var(--bc-accent); box-shadow: 0 0 0 3px rgba(var(--bc-accent-rgb, 201,150,99), 0.15); }
.bc-brand-ask__submit { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; background: var(--bc-ink); color: var(--bc-white); border: none; border-radius: var(--bc-radius); font-size: 0.875rem; font-weight: 600; cursor: pointer; transition: opacity var(--bc-transition); font-family: inherit; }
.bc-brand-ask__submit:hover:not(:disabled) { opacity: 0.85; }
.bc-brand-ask__submit:disabled { opacity: 0.45; cursor: not-allowed; }
.bc-brand-ask__success { display: none; padding: 12px 16px; background: #ecfdf5; border: 1px solid #a7f3d0; border-radius: var(--bc-radius); color: #065f46; font-size: 0.875rem; margin-top: 12px; }
.bc-brand-ask__error { display: none; padding: 12px 16px; background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--bc-radius); color: #7f1d1d; font-size: 0.875rem; margin-top: 12px; }

/* Sticky sidebar */
.bc-article-sidebar {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  height: fit-content;
}
@media (min-width: 960px) { .bc-article-sidebar { position: sticky; top: 24px; } }

.bc-article-sidebar__header {
  padding: 14px 16px;
  border-bottom: 1px solid var(--bc-border);
  background: var(--bc-cream);
}

.bc-article-sidebar__items { padding: 0; }

.bc-article-sidebar__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--bc-border);
  transition: background var(--bc-transition);
}
.bc-article-sidebar__item:last-child { border-bottom: none; }
.bc-article-sidebar__item:hover { background: var(--bc-cream); }

.bc-article-sidebar__image-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--bc-radius);
  overflow: hidden;
  background: var(--bc-cream);
  flex-shrink: 0;
}
.bc-article-sidebar__image-wrap img { width:100%; height:100%; object-fit:cover; }

.bc-article-sidebar__info { min-width:0; display:flex; flex-direction:column; gap:2px; }
.bc-article-sidebar__brand { font-size:.625rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--bc-muted); }
.bc-article-sidebar__title { font-size:.8125rem; line-height:1.3; color:var(--bc-ink); display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.bc-article-sidebar__footer { display:flex; align-items:baseline; justify-content:space-between; gap:8px; margin-top:4px; }
.bc-article-sidebar__price { font-family:var(--bc-font-display); font-size:1rem; font-weight:500; color:var(--bc-ink); }

/* ── Admin CSS (loaded separately) ──────────────────────────── */
/* See brandcoves-admin.css */

/* ── Skeleton loader ─────────────────────────────────────────── */
.bc-skeleton {
  background: linear-gradient(90deg, var(--bc-border) 25%, var(--bc-cream) 50%, var(--bc-border) 75%);
  background-size: 200% 100%;
  animation: bc-shimmer 1.5s infinite;
  border-radius: var(--bc-radius);
}
@keyframes bc-shimmer { to { background-position: -200% 0; } }
.bc-skeleton-card {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
}
.bc-skeleton-image { aspect-ratio: 4/3; }
.bc-skeleton-text { height: 12px; margin: 12px 14px 6px; }
.bc-skeleton-text--sm { height: 10px; margin: 0 14px 14px; width: 60%; }

/* ── Brand verified badge ────────────────────────────────────── */
.bc-brand-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--bc-accent);
  margin-top: 12px;
}

.bc-brand-verified__edit {
  color: var(--bc-muted);
  text-decoration: underline;
  font-size: 0.8125rem;
  transition: color var(--bc-transition);
}

.bc-brand-verified__edit:hover { color: var(--bc-ink); }

/* Brand edit form (brand-edit.php) */
.bc-brand-edit-wrap .bc-form__fieldset {
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  padding: 16px 20px;
  margin: 0 0 20px;
}

.bc-brand-edit-wrap .bc-form__sublabel {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bc-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── In the news (controversy tracker) ───────────────────────── */
.bc-news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bc-news-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--bc-border);
}

.bc-news-item:first-child { border-top: 1px solid var(--bc-border); }

.bc-news-item__link {
  font-size: 0.9375rem;
  color: var(--bc-ink);
  text-decoration: none;
  line-height: 1.4;
  transition: color var(--bc-transition);
}

.bc-news-item__link:hover { color: var(--bc-accent); text-decoration: underline; }

.bc-news-item__meta {
  display: flex;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--bc-muted);
}

.bc-news-item__source { font-weight: 500; }

/* ── Brand follow button ──────────────────────────────────────── */
.bc-follow-btn { gap: 6px; }
.bc-follow-btn svg { vertical-align: middle; }
.bc-follow-count {
  display: inline-block;
  margin-left: 10px;
  font-size: 0.8125rem;
  color: var(--bc-muted);
}

/* ── Brand timeline ───────────────────────────────────────────── */
.bc-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.bc-timeline::before {
  content: '';
  position: absolute;
  left: 88px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--bc-border);
}

.bc-timeline__item {
  display: grid;
  grid-template-columns: 80px 24px 1fr;
  align-items: flex-start;
  gap: 0 16px;
  padding: 0 0 28px;
}

.bc-timeline__year {
  font-family: var(--bc-font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bc-accent);
  text-align: right;
  padding-top: 2px;
  letter-spacing: 0.02em;
}

.bc-timeline__dot {
  width: 10px;
  height: 10px;
  background: var(--bc-accent);
  border-radius: 50%;
  border: 2px solid var(--bc-cream);
  box-shadow: 0 0 0 1px var(--bc-accent);
  margin-top: 4px;
  justify-self: center;
}

.bc-timeline__event {
  font-size: 0.9375rem;
  color: var(--bc-ink-light);
  line-height: 1.55;
  padding-top: 2px;
}

/* ── Similar brands grid ──────────────────────────────────────── */
.bc-brand-grid--compact {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.bc-brand-card {
  display: flex;
  flex-direction: column;
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--bc-transition), transform var(--bc-transition);
}

.bc-brand-card:hover {
  box-shadow: var(--bc-shadow-md);
  transform: translateY(-2px);
}

.bc-brand-card__logo-wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bc-cream);
  padding: 12px;
}

.bc-brand-card__logo { max-height: 56px; width: auto; object-fit: contain; }

.bc-brand-card__logo-placeholder {
  font-family: var(--bc-font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--bc-muted);
}

.bc-brand-card__body { padding: 12px 14px 14px; }

.bc-brand-card__name {
  font-family: var(--bc-font-display);
  font-size: 1rem;
  font-weight: 400;
  margin: 0 0 4px;
  color: var(--bc-ink);
}

.bc-brand-card__tagline {
  font-size: 0.75rem;
  color: var(--bc-muted);
  margin: 0 0 8px;
  line-height: 1.4;
}

.bc-brand-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.bc-tier-pill {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
}

.bc-tier-pill--budget  { background: var(--bc-green-light); color: var(--bc-green); }
.bc-tier-pill--mid     { background: #EEF2FB; color: #3A5BD9; }
.bc-tier-pill--premium { background: #FDF0E9; color: var(--bc-accent); }
.bc-tier-pill--luxury  { background: #FAF0E8; color: var(--bc-amber); }

.bc-brand-card__rating {
  font-size: 0.75rem;
  color: var(--bc-amber);
  font-weight: 500;
}

/* ── Secret Santa / Invisible Friend ─────────────────────────── */
.bc-santa-hero { text-align: center; margin-bottom: 32px; }
.bc-santa-hero__emoji { font-size: 3rem; margin-bottom: 12px; }
.bc-santa-hero__title { margin: 0 0 6px; }
.bc-santa-hero__theme { color: var(--bc-muted); margin: 0; font-style: italic; }

.bc-santa-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.bc-santa-meta__item { font-size: 0.875rem; color: var(--bc-ink-light); }

.bc-santa-status { font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.75rem; padding: 2px 8px; border-radius: 3px; }
.bc-santa-status--open   { background: var(--bc-green-light); color: var(--bc-green); }
.bc-santa-status--drawn  { background: #FDF0E9; color: var(--bc-accent); }
.bc-santa-status--closed { background: var(--bc-border); color: var(--bc-muted); }

.bc-santa-assignment {
  background: var(--bc-cream);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  padding: 24px;
  text-align: center;
  margin-bottom: 32px;
}

.bc-santa-assignment__label { color: var(--bc-muted); margin: 0 0 8px; font-size: 0.875rem; }
.bc-santa-assignment__name {
  font-family: var(--bc-font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--bc-accent);
}

.bc-santa-members { margin-bottom: 32px; }
.bc-santa-member-list { list-style: none; margin: 16px 0 0; padding: 0; }

.bc-santa-member-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bc-border);
}

.bc-santa-member-item__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bc-accent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bc-santa-member-item__name { font-size: 0.9375rem; color: var(--bc-ink); }

.bc-santa-actions { margin-top: 24px; }
.bc-santa-actions__invite { margin-bottom: 20px; }
.bc-santa-actions__invite h3 { font-size: 0.875rem; font-weight: 600; margin: 0 0 8px; color: var(--bc-ink); }

.bc-input-copy { display: flex; gap: 8px; }
.bc-input-copy .bc-input { flex: 1; font-size: 0.8125rem; }

/* ── Notice blocks (form feedback) ───────────────────────────── */
.bc-notice {
  padding: 12px 16px;
  border-radius: var(--bc-radius);
  font-size: 0.875rem;
  margin-bottom: 16px;
  line-height: 1.5;
}
.bc-notice--error   { background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }
.bc-notice--success { background: var(--bc-green-light); color: var(--bc-green); border: 1px solid #C3DBC0; }

/* ╔══════════════════════════════════════════════════════════╗
   ║  HOMEPAGE                                                ║
   ╚══════════════════════════════════════════════════════════╝ */

/* ── Purpose hero ────────────────────────────────────────────── */
.bc-purpose-hero {
  padding: clamp(80px, 10vh, 120px) 0 clamp(64px, 8vh, 96px);
}

.bc-purpose-hero__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 800px) { .bc-purpose-hero__inner { padding: 0 40px; } }

.bc-purpose-hero__inner--centered { text-align: center; }

.bc-purpose-hero__eyebrow {
  display: block;
  font-family: var(--bc-font-body);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bc-accent);
  margin-bottom: 20px;
}

.bc-purpose-hero__headline {
  font-family: var(--bc-font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  color: var(--bc-ink);
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.bc-purpose-hero__body {
  font-family: var(--bc-font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--bc-muted);
  max-width: 90ch;
  margin: 0 auto 36px;
}

.bc-purpose-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.bc-purpose-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bc-ink);
  color: #fff;
  font-family: var(--bc-font-body);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease, gap 0.2s ease;
}

.bc-purpose-hero__btn:hover {
  background: var(--bc-accent);
  gap: 12px;
}

.bc-purpose-hero__link {
  font-family: var(--bc-font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bc-ink-light);
  text-decoration: none;
  border-bottom: 2px solid rgba(26,22,20,0.15);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.bc-purpose-hero__link:hover {
  color: var(--bc-ink);
  border-color: var(--bc-ink);
}

.bc-purpose-hero__stats {
  display: flex;
  flex-direction: row;
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid rgba(26,22,20,0.1);
}

@media (min-width: 800px) {
  .bc-purpose-hero__stats {
    flex-direction: column;
    padding-top: 0;
    padding-left: 56px;
    border-top: none;
    border-left: 1px solid rgba(26,22,20,0.1);
  }
}

.bc-purpose-hero__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 28px 0 0;
  border-right: 1px solid rgba(26,22,20,0.08);
}

.bc-purpose-hero__stat:last-child {
  border-right: none;
  padding-right: 0;
}

@media (min-width: 800px) {
  .bc-purpose-hero__stat {
    flex: initial;
    padding: 24px 0;
    border-right: none;
    border-bottom: 1px solid rgba(26,22,20,0.08);
  }
  .bc-purpose-hero__stat:first-child { padding-top: 0; }
  .bc-purpose-hero__stat:last-child  { border-bottom: none; padding-bottom: 0; }
}

.bc-purpose-hero__stat-num {
  font-family: var(--bc-font-display);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--bc-ink);
  letter-spacing: -0.04em;
  line-height: 1;
}

.bc-purpose-hero__stat-label {
  font-family: var(--bc-font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bc-muted);
}

@keyframes bc-ph-rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bc-purpose-hero__copy  { animation: bc-ph-rise 0.5s ease both; }
.bc-purpose-hero__stats { animation: bc-ph-rise 0.5s 0.12s ease both; }

/* ── Hero ─────────────────────────────────────────────────────── */
.bc-hp-hero {
  position: relative;
  background: var(--bc-cream);
  color: var(--bc-ink);
  overflow: hidden;
}

/* Subtle diagonal accent line — geometric, not gimmicky */
.bc-hp-hero::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(201,80,58,.4) 40%, rgba(201,80,58,.4) 60%, transparent 100%);
  transform: rotate(8deg);
  transform-origin: top;
  pointer-events: none;
  display: none;
}

@media (min-width: 900px) { .bc-hp-hero::after { display: block; right: 37%; } }

.bc-hp-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px 56px;
}

@media (min-width: 900px) {
  .bc-hp-hero__inner {
    grid-template-columns: 1fr 380px;
    gap: 64px;
    padding: 88px 40px 64px;
    align-items: center;
  }
}

/* Eyebrow label */
.bc-hp-hero__eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bc-accent);
  margin: 0 0 20px;
}

/* Headline */
.bc-hp-hero__headline {
  font-family: var(--bc-font-display);
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--bc-ink);
  margin: 0 0 40px;
}

.bc-hp-hero__headline em {
  font-style: italic;
  color: var(--bc-muted);
}

/* Search bar */
.bc-hp-search { margin-bottom: 28px; }

.bc-hp-search__inner {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(26,22,20,0.15);
  border-radius: 3px;
  padding: 0 0 0 16px;
  transition: border-color 0.2s, background 0.2s;
}

.bc-hp-search__inner:focus-within {
  background: #fff;
  border-color: rgba(26,22,20,0.35);
}

.bc-hp-search__icon {
  color: var(--bc-muted);
  flex-shrink: 0;
}

.bc-hp-search__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 12px;
  font-family: var(--bc-font-body);
  font-size: 1rem;
  color: var(--bc-ink);
  width: 100%;
}

.bc-hp-search__input::placeholder { color: rgba(26,22,20,0.35); }

.bc-hp-search__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--bc-accent);
  border: none;
  border-radius: 0 2px 2px 0;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}

.bc-hp-search__btn:hover { background: var(--bc-accent-dark); }

/* Trending pills */
.bc-hp-trending {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.bc-hp-trending__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--bc-muted);
  text-transform: uppercase;
  flex-shrink: 0;
}

.bc-hp-trending__pill {
  font-size: 0.8125rem;
  padding: 5px 12px;
  background: transparent;
  border: 1px solid rgba(26,22,20,0.14);
  border-radius: 2px;
  color: var(--bc-ink-light);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.bc-hp-trending__pill:hover {
  background: var(--bc-ink);
  border-color: var(--bc-ink);
  color: var(--bc-cream);
}

/* Brand mosaic */
.bc-hp-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

@media (max-width: 899px) { .bc-hp-mosaic { display: none; } }

.bc-hp-mosaic__tile {
  aspect-ratio: 1;
  background: rgba(26,22,20,0.04);
  border: 1px solid rgba(26,22,20,0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease;
  animation: bc-mosaic-in 0.6s ease both;
}

.bc-hp-mosaic__tile--1 { animation-delay: 0.06s; }
.bc-hp-mosaic__tile--2 { animation-delay: 0.12s; }
.bc-hp-mosaic__tile--3 { animation-delay: 0.18s; }
.bc-hp-mosaic__tile--4 { animation-delay: 0.24s; }
.bc-hp-mosaic__tile--5 { animation-delay: 0.30s; border-color: rgba(201,80,58,.3); }
.bc-hp-mosaic__tile--6 { animation-delay: 0.36s; }
.bc-hp-mosaic__tile--7 { animation-delay: 0.42s; }
.bc-hp-mosaic__tile--8 { animation-delay: 0.48s; }
.bc-hp-mosaic__tile--9 { animation-delay: 0.54s; }

.bc-hp-mosaic__tile img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }

.bc-hp-mosaic__initials {
  font-family: var(--bc-font-display);
  font-size: 1.375rem;
  font-weight: 300;
  color: rgba(26,22,20,0.2);
  letter-spacing: 0.04em;
}

@keyframes bc-mosaic-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Stats strip */
.bc-hp-stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(26,22,20,0.08);
}

.bc-hp-stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
  padding: 24px;
}

.bc-hp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
  text-align: center;
}

.bc-hp-stat__num {
  font-family: var(--bc-font-display);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--bc-ink);
  line-height: 1;
  letter-spacing: -0.02em;
}

.bc-hp-stat__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bc-ink-light);
}

.bc-hp-stat__div {
  width: 1px;
  height: 32px;
  background: rgba(26,22,20,0.1);
  flex-shrink: 0;
}

/* ── Shared section styles ────────────────────────────────────── */
.bc-hp-section {
  padding: 72px 0;
}

.bc-hp-section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
}

.bc-hp-section__title {
  font-family: var(--bc-font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--bc-ink);
  margin: 0;
}

.bc-hp-section__link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--bc-accent);
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s;
}

.bc-hp-section__link:hover { gap: 8px; }

/* ── Category rail ───────────────────────────────────────────── */
.bc-hp-cats-section { padding-top: 56px; padding-bottom: 56px; }

.bc-hp-cats-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 24px;
}

@media (min-width: 768px) { .bc-hp-cats-scroll { padding: 0 40px; } }
.bc-hp-cats-scroll::-webkit-scrollbar { display: none; }

.bc-hp-cats {
  display: flex;
  gap: 10px;
  min-width: max-content;
}

@media (min-width: 1024px) {
  .bc-hp-cats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    min-width: 0;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .bc-hp-cats-scroll { overflow: visible; padding: 0; }
}

.bc-hp-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid var(--bc-border);
  border-radius: 100px;
  text-decoration: none;
  color: var(--bc-ink-light);
  white-space: nowrap;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}

.bc-hp-cat:hover {
  border-color: var(--bc-ink);
  color: var(--bc-ink);
  background: var(--bc-white);
}

.bc-hp-cat__icon { color: inherit; flex-shrink: 0; }

.bc-hp-cat__name {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.bc-hp-cat__count {
  font-size: 0.6875rem;
  color: var(--bc-muted);
  background: var(--bc-border);
  padding: 1px 6px;
  border-radius: 100px;
}

/* ── Featured brands grid ────────────────────────────────────── */
.bc-hp-brands-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .bc-hp-brands-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .bc-hp-brands-grid { grid-template-columns: repeat(4, 1fr); }
  .bc-hp-brand-card--wide { grid-column: span 2; }
}

.bc-hp-brand-card {
  display: flex;
  flex-direction: column;
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s, transform 0.25s;
}

.bc-hp-brand-card:hover {
  box-shadow: 0 8px 32px rgba(26,22,20,.1);
  transform: translateY(-3px);
}

.bc-hp-brand-card__media {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bc-cream);
  padding: 16px;
  overflow: hidden;
}

.bc-hp-brand-card--wide .bc-hp-brand-card__media { height: 160px; }

.bc-hp-brand-card__logo {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

.bc-hp-brand-card__initials {
  font-family: var(--bc-font-display);
  font-size: 2rem;
  font-weight: 200;
  color: var(--bc-border-strong);
  letter-spacing: 0.04em;
}

.bc-hp-brand-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.bc-hp-brand-card__cat {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bc-accent);
}

.bc-hp-brand-card__name {
  font-family: var(--bc-font-editorial);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--bc-ink);
  margin: 0;
  line-height: 1.2;
}

.bc-hp-brand-card--wide .bc-hp-brand-card__name { font-size: 1.375rem; }

.bc-hp-brand-card__tagline {
  font-size: 0.8125rem;
  color: var(--bc-muted);
  margin: 0;
  line-height: 1.45;
}

.bc-hp-brand-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 10px;
}

.bc-hp-brand-card__rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--bc-amber, #B87333);
}

.bc-hp-brand-card__rcount {
  color: var(--bc-muted);
  font-weight: 400;
}

.bc-hp-brand-card__sustain {
  font-size: 0.6875rem;
  color: var(--bc-green);
  margin-left: auto;
}

/* ── Articles ────────────────────────────────────────────────── */
.bc-hp-articles-section { background: var(--bc-cream); }

.bc-hp-articles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .bc-hp-articles { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .bc-hp-articles { grid-template-columns: repeat(3, 1fr); }
}

.bc-hp-article {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  overflow: hidden;
  background: var(--bc-white);
  transition: box-shadow 0.25s, transform 0.25s;
}

.bc-hp-article:hover {
  box-shadow: 0 6px 24px rgba(26,22,20,.08);
  transform: translateY(-2px);
}

.bc-hp-article__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bc-border);
}

.bc-hp-article__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bc-hp-article:hover .bc-hp-article__thumb img { transform: scale(1.03); }

.bc-hp-article__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.bc-hp-article__topic {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bc-accent);
}

.bc-hp-article__title {
  font-family: var(--bc-font-display);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--bc-ink);
  line-height: 1.3;
  margin: 0;
}

.bc-hp-article__excerpt {
  font-size: 0.875rem;
  color: var(--bc-muted);
  line-height: 1.55;
  margin: 0;
}

.bc-hp-article__date {
  font-size: 0.75rem;
  color: var(--bc-border-strong);
  margin-top: auto;
  padding-top: 8px;
}

/* ══════════════════════════════════════════════════════════════
   HOMEPAGE — MODERN REFINEMENTS
   Targeted overrides: bolder type, cleaner hovers, sharper edges.
   ══════════════════════════════════════════════════════════════ */

/* Hero: collapse to single editorial column, headline owns the space */
.bc-hp-mosaic { display: none !important; }
.bc-hp-hero::after { display: none !important; }

@media (min-width: 900px) {
  .bc-hp-hero__inner {
    grid-template-columns: 1fr;
    max-width: 820px;
  }
}

/* Headline: much larger, tighter, more authority */
.bc-hp-hero__headline {
  font-size: clamp(3.25rem, 7.5vw, 6rem);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-bottom: 44px;
}

/* Search: crisper focus state */
.bc-hp-search__inner:focus-within {
  background: rgba(247,244,239,.15);
  border-color: rgba(247,244,239,.6);
  outline: none;
}

/* Stats: data-journalism scale — numbers first */
.bc-hp-stats__inner { max-width: 820px; }

.bc-hp-stat__num {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: -0.04em;
}

.bc-hp-stat__label {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
}

/* ── Section titles: bolder, more presence ────────────────────── */
.bc-hp-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

/* ── Category: sharp rectangles, not bubbles ─────────────────── */
.bc-hp-cat {
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.bc-hp-cat:hover {
  transform: none;
  background: var(--bc-ink);
  border-color: var(--bc-ink);
  color: var(--bc-cream);
}

.bc-hp-cat:hover .bc-hp-cat__icon { color: var(--bc-cream); }

/* ── Brand cards: clean modern shadow lift ────────────────────── */
.bc-hp-brand-card { border-radius: 8px; border-color: transparent; box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 4px 12px rgba(0,0,0,0.07); }

.bc-hp-brand-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.07), 0 16px 36px rgba(0,0,0,0.1);
  border-color: transparent;
}

.bc-hp-brand-card:hover .bc-hp-brand-card__name { color: var(--bc-accent); }

/* ── Articles: flat, border-only hover ───────────────────────── */
.bc-hp-article { border-radius: 2px; }

.bc-hp-article:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--bc-ink);
}

.bc-hp-article:hover .bc-hp-article__thumb img { transform: none; }

/* ── Products: clean, no source badge clutter ────────────────── */
.bc-hp-product { border-radius: 2px; }

.bc-hp-product:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--bc-ink);
}

.bc-hp-product:hover .bc-hp-product__img { transform: none; }
.bc-hp-product__source { display: none; }

/* ── How it works: step numbers as bold typographic anchors ─────
   Large terracotta numerals sit above the copy — pure editorial,
   not decorative watermarks.                                     */
.bc-hp-howto { padding: 88px 0 96px; }

.bc-hp-step__num {
  font-size: clamp(4rem, 9vw, 7rem);
  font-weight: 200;
  line-height: 0.9;
  letter-spacing: -0.04em;
  opacity: 1;
  margin-bottom: 12px;
  display: block;
}

.bc-hp-step__title {
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--bc-font-body);
  letter-spacing: 0;
  color: var(--bc-cream);
  margin: 0 0 8px;
}

.bc-hp-step__text {
  font-size: 0.875rem;
  line-height: 1.65;
}

/* Connector dots between steps */
.bc-hp-step__connector {
  width: 40px;
  height: 1px;
  background: rgba(201,80,58,.35);
}

/* ── Editorial Lead (articles as page opener) ─────────────────── */
.bc-hp-editorial-lead {
  background: var(--bc-cream);
  border-bottom: 1px solid var(--bc-border);
}

.bc-hp-articles-lead {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 900px) {
  .bc-hp-articles-lead {
    grid-template-columns: 3fr 2fr;
    gap: 56px;
    align-items: start;
  }
}

/* Featured article (left, large) */
.bc-hp-article-featured {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.bc-hp-article-featured__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bc-border);
  border-radius: 2px;
  margin-bottom: 24px;
}

.bc-hp-article-featured__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bc-hp-article-featured:hover .bc-hp-article-featured__thumb img {
  transform: scale(1.04);
}

.bc-hp-article-featured__topic {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bc-accent);
  margin-bottom: 10px;
}

.bc-hp-article-featured__title {
  font-family: var(--bc-font-display);
  font-size: clamp(1.625rem, 3vw, 2.375rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--bc-ink);
  margin: 0 0 14px;
  transition: color 0.2s;
}

.bc-hp-article-featured:hover .bc-hp-article-featured__title {
  color: var(--bc-accent);
}

.bc-hp-article-featured__excerpt {
  font-size: 0.9375rem;
  color: var(--bc-muted);
  line-height: 1.65;
  margin: 0 0 16px;
}

.bc-hp-article-featured__date {
  font-size: 0.75rem;
  color: var(--bc-border-strong);
  letter-spacing: 0.04em;
}

/* Secondary articles (right column) */
.bc-hp-articles-secondary {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--bc-border);
}

.bc-hp-article-secondary {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--bc-border);
  text-decoration: none;
  color: inherit;
}

.bc-hp-article-secondary__thumb {
  width: 88px;
  flex-shrink: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 2px;
  background: var(--bc-border);
}

.bc-hp-article-secondary__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.bc-hp-article-secondary:hover .bc-hp-article-secondary__thumb img {
  transform: scale(1.06);
}

.bc-hp-article-secondary__body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.bc-hp-article-secondary__topic {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bc-accent);
}

.bc-hp-article-secondary__title {
  font-family: var(--bc-font-display);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--bc-ink);
  margin: 0;
  transition: color 0.2s;
}

.bc-hp-article-secondary:hover .bc-hp-article-secondary__title {
  color: var(--bc-accent);
}

.bc-hp-article-secondary__date {
  font-size: 0.6875rem;
  color: var(--bc-border-strong);
  margin-top: 4px;
  letter-spacing: 0.03em;
}

/* ── New arrivals (product grid) ─────────────────────────────── */
.bc-hp-products-section { background: var(--bc-white); padding: 28px 0 36px; }
.bc-hp-products-section .bc-hp-section__title svg { width: 20px; height: 20px; }
.bc-hp-products-section .bc-hp-section__header { margin-bottom: 16px; }
.bc-hp-products-section .bc-hp-section__title { font-size: clamp(1.375rem, 2.5vw, 1.75rem); font-weight: 700; letter-spacing: -0.02em; }

.bc-hp-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 600px)  { .bc-hp-products { grid-template-columns: repeat(4, 1fr); gap: 10px; } }
@media (min-width: 900px)  { .bc-hp-products { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1280px) { .bc-hp-products { grid-template-columns: repeat(4, 1fr); gap: 12px; } }

.bc-hp-product {
  display: flex;
  flex-direction: column;
  background: var(--bc-cream);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.bc-hp-product:hover {
  box-shadow: 0 6px 24px rgba(26,22,20,.09);
  transform: translateY(-2px);
}

.bc-hp-product__img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bc-white);
}

.bc-hp-product__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  transition: transform 0.35s ease;
}

.bc-hp-product:hover .bc-hp-product__img { transform: scale(1.04); }

.bc-hp-product__source {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(26,22,20,.65);
  color: rgba(247,244,239,.9);
  padding: 2px 6px;
  border-radius: 2px;
  pointer-events: none;
}

.bc-hp-product__body {
  padding: 8px 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.bc-hp-product__brand {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--bc-muted);
}

.bc-hp-product__brand a {
  color: var(--bc-accent);
  text-decoration: none;
}

.bc-hp-product__brand a:hover { text-decoration: underline; }

.bc-hp-product__title {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--bc-ink);
  line-height: 1.35;
  margin: 0;
  flex: 1;
}

.bc-hp-product__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--bc-border);
}

.bc-hp-product__prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.bc-hp-product__price {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bc-ink);
  letter-spacing: -0.01em;
}

.bc-hp-product__original-price {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--bc-muted);
  text-decoration: line-through;
}

/* Badge overlaid on product image (wish count / discount %) */
.bc-hp-product__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 3px 7px;
  border-radius: 2px;
  line-height: 1;
}

.bc-hp-product__badge--wish {
  background: var(--bc-accent);
  color: #fff;
}

.bc-hp-product__badge--deal {
  background: var(--bc-green);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  padding: 6px 10px;
  letter-spacing: -0.01em;
}

.bc-hp-product__cta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--bc-accent);
  text-decoration: none;
  transition: gap 0.2s;
  white-space: nowrap;
}

.bc-hp-product__cta:hover { gap: 7px; }

/* ── Guides & brand stories (editorial two-column) ───────────── */
.bc-hp-editorial { background: var(--bc-cream); }

.bc-hp-editorial__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .bc-hp-editorial__cols {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.bc-hp-editorial__col-header { margin-bottom: 28px; }

.bc-hp-editorial__col-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bc-accent);
  margin-bottom: 10px;
}

.bc-hp-editorial__col-title {
  font-family: var(--bc-font-editorial);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bc-ink);
  margin: 0;
  letter-spacing: -0.03em;
}

.bc-hp-editorial__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bc-hp-editorial__item {
  border-top: 1px solid var(--bc-border);
}

.bc-hp-editorial__item:last-child { border-bottom: 1px solid var(--bc-border); }

.bc-hp-editorial__link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  text-decoration: none;
  color: inherit;
  transition: color 0.18s;
}

.bc-hp-editorial__link:hover { color: var(--bc-accent); }

.bc-hp-editorial__item-title {
  font-size: 0.9375rem;
  line-height: 1.4;
  color: inherit;
  flex: 1;
}

.bc-hp-editorial__item-date {
  font-size: 0.6875rem;
  color: var(--bc-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── How it works ────────────────────────────────────────────── */
.bc-hp-howto {
  padding: 80px 0 96px;
  background: var(--bc-ink);
  color: var(--bc-cream);
  margin-top: 72px;
}

.bc-hp-howto .bc-hp-section__title { color: var(--bc-cream); }

.bc-hp-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 768px) {
  .bc-hp-steps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: center;
  }
}

.bc-hp-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.bc-hp-step__num {
  font-family: var(--bc-font-display);
  font-size: 4rem;
  font-weight: 200;
  line-height: 1;
  color: var(--bc-accent);
  letter-spacing: -0.03em;
  opacity: 0.7;
}

.bc-hp-step__title {
  font-family: var(--bc-font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--bc-cream);
  margin: 0 0 4px;
}

.bc-hp-step__text {
  font-size: 0.9rem;
  color: rgba(247,244,239,.6);
  line-height: 1.65;
  margin: 0;
}

.bc-hp-step__connector {
  display: none;
}

@media (min-width: 768px) {
  .bc-hp-step__connector {
    display: block;
    width: 48px;
    height: 1px;
    background: rgba(247,244,239,.15);
    margin: 0 16px;
    flex-shrink: 0;
  }
}

/* ════════════════════════════════════════════════════════════
   BRAND PAGE v2 — UPGRADED TEMPLATE
   ════════════════════════════════════════════════════════════ */

/* ── Scroll-reveal ──────────────────────────────────────────── */
.bc-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(.16,1,.3,1),
              transform 0.55s cubic-bezier(.16,1,.3,1);
}
.bc-reveal.is-revealed { opacity: 1; transform: none; }
.bc-reveal--d1 { transition-delay: 0.08s; }
.bc-reveal--d2 { transition-delay: 0.16s; }
.bc-reveal--d3 { transition-delay: 0.24s; }
.bc-reveal--d4 { transition-delay: 0.32s; }
.bc-reveal--d5 { transition-delay: 0.40s; }

/* ── Sticky brand bar ───────────────────────────────────────── */
.bc-brand-sticky {
  position: fixed;
  top: var(--bc-header-h, 64px);
  left: 0; right: 0;
  z-index: 89;
  background: rgba(247,244,239,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bc-border);
  transform: translateY(-110%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.bc-brand-sticky.is-visible { transform: translateY(0); }
.bc-brand-sticky__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) { .bc-brand-sticky__inner { padding: 0 40px; } }
.bc-brand-sticky__logo {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--bc-border);
  flex-shrink: 0;
}
.bc-brand-sticky__placeholder {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bc-cream);
  border: 1px solid var(--bc-border-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--bc-font-display);
  font-size: 0.75rem;
  color: var(--bc-muted);
  flex-shrink: 0;
}
.bc-brand-sticky__name {
  font-family: var(--bc-font-display);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--bc-ink);
  flex: 1;
}
.bc-brand-sticky__actions { display: flex; gap: 8px; align-items: center; }

/* ── Hero v2 ────────────────────────────────────────────────── */
.bc-brand-page .bc-brand-hero {
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}

/* Grain texture overlay */
.bc-brand-hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='.035'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  opacity: .7;
}

/* Decorative accent line at bottom of hero */
.bc-brand-hero__bottom-rule {
  position: absolute;
  bottom: 0; left: 40px; right: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bc-border-strong) 20%, var(--bc-border-strong) 80%, transparent);
}

/* Hero logo — slightly larger */
.bc-brand-page .bc-brand-hero__logo-wrap {
  width: 96px; height: 96px;
  margin-bottom: 24px;
  border-width: 1px;
  box-shadow: 0 2px 12px rgba(26,22,20,.08);
}

/* Hero name — bold impact */
.bc-brand-page .bc-brand-hero__name {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin-bottom: 0;
}

/* Tagline with flanking rules */
.bc-hero-tagline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 14px auto 0;
  max-width: 480px;
}
.bc-hero-tagline-row__rule {
  flex: 1;
  height: 1px;
  background: var(--bc-border-strong);
  opacity: .7;
}
.bc-brand-page .bc-brand-hero__tagline {
  margin-bottom: 0;
  flex-shrink: 0;
  max-width: 320px;
}

/* Meta strip ── wider breathing room */
.bc-brand-page .bc-brand-meta-strip {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--bc-border);
  display: inline-flex;
}
.bc-brand-page .bc-brand-meta-item__value {
  font-size: 1.375rem;
}

/* Hero bottom actions row */
.bc-hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.bc-brand-cta-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Section eyebrow ────────────────────────────────────────── */
.bc-eyebrow {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--bc-accent);
  display: block;
  margin-bottom: 8px;
}

/* ── Q&A ── smooth max-height animation ─────────────────────── */
.bc-brand-page .bc-qa-answer {
  display: block !important;
  max-height: 0;
  overflow: hidden;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-top: none !important;
  transition:
    max-height 0.38s cubic-bezier(.4,0,.2,1),
    padding 0.28s cubic-bezier(.4,0,.2,1),
    border-color 0.2s;
}
.bc-brand-page .bc-qa-item.is-open .bc-qa-answer {
  max-height: 600px;
  padding-top: 16px !important;
  padding-bottom: 20px !important;
  border-top: 1px solid var(--bc-border) !important;
}

/* ── Rating bars — animate on scroll ───────────────────────── */
.bc-brand-page .bc-rating-bar-fill {
  width: 0 !important;
  transition: width 1.1s cubic-bezier(.4,0,.2,1) 0.15s;
}
.bc-brand-page .bc-rating-bar-fill.is-animated {
  width: var(--bc-bar-width, 0%) !important;
}

/* ── Timeline items — staggered reveal ──────────────────────── */
.bc-timeline__item.bc-reveal { transform: translateX(-10px); }
.bc-timeline__item.bc-reveal.is-revealed { transform: none; }

/* ── News ── dark editorial section ────────────────────────── */
.bc-brand-section--news {
  background: var(--bc-ink);
  border-bottom: none;
  padding: 56px 0;
}
.bc-brand-section--news .bc-section-title { color: var(--bc-cream); }
.bc-brand-section--news .bc-eyebrow { color: var(--bc-amber); }
.bc-news-grid--dark {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px)  { .bc-news-grid--dark { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bc-news-grid--dark { grid-template-columns: repeat(3, 1fr); } }
.bc-news-card--dark {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--bc-radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: var(--bc-cream);
  transition: background var(--bc-transition), border-color var(--bc-transition);
}
.bc-news-card--dark:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.2);
}
.bc-news-card--dark__source {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bc-amber);
}
.bc-news-card--dark__title {
  font-family: var(--bc-font-display);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--bc-cream);
  flex: 1;
}
.bc-news-card--dark__date {
  font-size: 0.6875rem;
  color: rgba(247,244,239,.45);
  letter-spacing: 0.04em;
}

/* ── Category archive page ───────────────────────────────────── */
.bc-cat-hero {
  padding: 64px 0 48px;
  background: var(--bc-cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bc-cat-hero__name {
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 0.96;
  margin-bottom: 0;
  color: var(--bc-ink);
}
.bc-cat-hero__count {
  font-size: 0.8125rem;
  color: var(--bc-muted);
  margin-top: 20px;
  letter-spacing: 0.04em;
}

/* Breadcrumb */
.bc-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--bc-muted);
  margin-bottom: 24px;
}
.bc-breadcrumb a {
  color: var(--bc-muted);
  text-decoration: none;
}
.bc-breadcrumb a:hover { color: var(--bc-accent); text-decoration: underline; }
.bc-breadcrumb [aria-current="page"] { color: var(--bc-ink-light); }

/* Subcategory pills */
.bc-cat-subcats {
  padding: 20px 0 8px;
  border-bottom: 1px solid var(--bc-border);
}
.bc-cat-subcats__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.bc-cat-subcat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: 99px;
  font-size: 0.8125rem;
  color: var(--bc-ink-light);
  text-decoration: none;
  transition: border-color var(--bc-transition), background var(--bc-transition);
}
.bc-cat-subcat-pill:hover {
  border-color: var(--bc-ink);
  background: var(--bc-cream);
  color: var(--bc-ink);
}
.bc-cat-subcat-pill__count {
  font-size: 0.6875rem;
  color: var(--bc-muted);
  font-weight: 600;
}

/* Category brand grid — wider cards */
.bc-brand-grid--category {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 480px)  { .bc-brand-grid--category { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .bc-brand-grid--category { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .bc-brand-grid--category { grid-template-columns: repeat(4, 1fr); } }

/* Brand card in category grid — richer info */
.bc-brand-grid--category .bc-brand-card {
  padding: 20px;
}
.bc-brand-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 6px;
}
.bc-brand-card__country {
  font-size: 0.6875rem;
  color: var(--bc-muted);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.bc-brand-card__founded {
  font-size: 0.6875rem;
  color: var(--bc-muted);
}
.bc-brand-card__followers {
  font-size: 0.6875rem;
  color: var(--bc-muted);
}

/* Pagination */
.bc-pagination .page-numbers {
  display: inline-flex;
  gap: 4px;
}
.bc-pagination .page-numbers li a,
.bc-pagination .page-numbers li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  font-size: 0.875rem;
  color: var(--bc-ink-light);
  text-decoration: none;
  transition: all var(--bc-transition);
}
.bc-pagination .page-numbers li a:hover { border-color: var(--bc-ink); color: var(--bc-ink); }
.bc-pagination .page-numbers li span.current {
  background: var(--bc-accent);
  border-color: var(--bc-accent);
  color: var(--bc-white);
  font-weight: 600;
}
.bc-pagination .page-numbers li span.dots {
  border: none; background: transparent;
}

/* ── About section — two-column layout ──────────────────────── */
.bc-brand-about__layout {
  display: grid;
  grid-template-columns: 1fr 288px;
  gap: 56px;
  align-items: start;
}
.bc-brand-about__body {
  font-size: 1.0625rem;
  line-height: 1.82;
  color: var(--bc-ink-light);
}
.bc-brand-about__body h2,
.bc-brand-about__body h3 {
  font-family: var(--bc-font-display);
  font-weight: 400;
  color: var(--bc-ink);
  margin: 1.5em 0 0.5em;
}
.bc-brand-about__body p { margin-bottom: 1.2em; }
.bc-brand-about__body p:last-child { margin-bottom: 0; }

/* ── Right-column product rail ───────────────────────────────── */
.bc-brand-about__product-rail {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Fact cheat sheet ────────────────────────────────────────── */
.bc-brand-fact-sheet {
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bc-brand-about__product-rail .bc-brand-fact-sheet {
  margin-bottom: 20px;
}
.bc-brand-fact-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.bc-brand-fact-row--block {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.bc-brand-fact-row__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bc-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.bc-brand-fact-row__value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bc-ink);
  text-align: right;
}
.bc-brand-fact-row__value--capitalize {
  text-transform: capitalize;
}
.bc-brand-fact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.bc-brand-fact-chip {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 20px;
  background: var(--bc-cream);
  border: 1px solid var(--bc-border);
  color: var(--bc-ink-light);
  text-decoration: none;
  transition: background var(--bc-transition), border-color var(--bc-transition);
}
.bc-brand-fact-chip:hover {
  background: var(--bc-border);
  border-color: var(--bc-border-strong);
  color: var(--bc-ink);
}

/* ── Fact sheet — top bar variant ───────────────────────────── */
.bc-brand-section--facts {
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 1px solid var(--bc-border);
}
.bc-brand-fact-sheet--bar {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  background: none;
  border: none;
  border-radius: 0;
  padding: 14px 0;
}
.bc-brand-fact-sheet--bar .bc-brand-fact-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 6px 24px 6px 0;
  margin-right: 24px;
  border-right: 1px solid var(--bc-border);
  justify-content: flex-start;
}
.bc-brand-fact-sheet--bar .bc-brand-fact-row:last-child {
  border-right: none;
  margin-right: 0;
}
.bc-brand-fact-sheet--bar .bc-brand-fact-row__value {
  text-align: left;
}
@media (max-width: 600px) {
  .bc-brand-fact-sheet--bar {
    gap: 12px;
  }
  .bc-brand-fact-sheet--bar .bc-brand-fact-row {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }
}

/* ── Product thumbnail grid ──────────────────────────────────── */
.bc-brand-about__product-rail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.bc-product-thumb {
  display: block;
  text-decoration: none;
  color: inherit;
}
.bc-product-thumb__img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--bc-radius);
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  margin-bottom: 5px;
  transition: box-shadow var(--bc-transition), transform var(--bc-transition);
}
.bc-product-thumb__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  box-sizing: border-box;
  display: block;
  transition: transform 0.3s ease;
}
.bc-product-thumb:hover .bc-product-thumb__img-wrap {
  box-shadow: var(--bc-shadow-md);
  transform: translateY(-2px);
}
.bc-product-thumb:hover .bc-product-thumb__img-wrap img {
  transform: scale(1.05);
}
.bc-product-thumb__name {
  font-size: 0.6875rem;
  line-height: 1.45;
  color: var(--bc-ink-light);
  display: block;
}

@media (max-width: 900px) {
  .bc-brand-about__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .bc-brand-about__product-rail {
    position: static;
  }
  .bc-brand-about__product-rail-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Wishlist-join corner modal ──────────────────────────────────── */
.bc-join-modal {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: 16px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.bc-join-modal__close {
  position: absolute;
  top: 12px; right: 12px;
  background: none; border: none; cursor: pointer;
  color: var(--bc-muted); padding: 4px;
}
.bc-join-modal__avatar { margin-bottom: 10px; }
.bc-join-modal__avatar img { border-radius: 50%; }
.bc-join-modal__headline {
  font-size: .9rem; font-weight: 600; margin: 0 0 14px; color: var(--bc-ink);
}
.bc-join-modal__form { display: flex; flex-direction: column; gap: 8px; }
.bc-join-modal__pw-link {
  background: none; border: none; padding: 0;
  font-size: .75rem; color: var(--bc-muted); cursor: pointer; text-align: left;
  text-decoration: underline;
}
.bc-join-modal__submit { width: 100%; }
.bc-join-modal__status { font-size: .78rem; color: var(--bc-muted); margin: 0; }
.bc-join-modal__sent { text-align: center; padding: 8px 0; color: var(--bc-ink); }
.bc-join-modal__sent svg { display: block; margin: 0 auto 8px; color: var(--bc-accent); }
@media (max-width: 480px) {
  .bc-join-modal { left: 12px; right: 12px; width: auto; bottom: 12px; }
}

/* ── Profile social ──────────────────────────────────────────────── */
.bc-profile-social-actions { display: flex; align-items: center; gap: 10px; margin: 12px 0; }
.bc-btn--following { border-color: var(--bc-border); }
.bc-profile-more { position: relative; }
.bc-profile-more__menu {
  position: absolute; right: 0; top: calc(100% + 6px);
  background: var(--bc-white); border: 1px solid var(--bc-border);
  border-radius: 8px; min-width: 180px; box-shadow: 0 4px 16px rgba(0,0,0,.1);
  z-index: 200;
}
.bc-profile-more__item {
  display: block; width: 100%;
  background: none; border: none; cursor: pointer;
  padding: 10px 16px; font-size: .875rem; text-align: left;
}
.bc-profile-more__item--danger { color: #c0392b; }
.bc-profile-more__item:hover { background: var(--bc-bg); }
.bc-profile-counts { display: flex; gap: 20px; margin: 8px 0 16px; }
.bc-profile-count-btn {
  background: none; border: none; cursor: pointer;
  font-size: .875rem; color: var(--bc-muted); padding: 0;
}
.bc-profile-count-btn strong { color: var(--bc-ink); font-weight: 700; margin-right: 4px; }
.bc-profile-count-btn:hover { color: var(--bc-ink); }
.bc-profile-social-panel {
  border: 1px solid var(--bc-border); border-radius: 12px;
  padding: 16px; margin: 0 0 24px;
}
.bc-profile-social-panel__header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px; font-weight: 600;
}
.bc-profile-social-panel__close {
  background: none; border: none; cursor: pointer; color: var(--bc-muted);
}
.bc-social-user {
  display: flex; align-items: center; gap: 10px; padding: 8px 0;
  border-bottom: 1px solid var(--bc-border);
}
.bc-social-user:last-child { border-bottom: none; }
.bc-social-user__avatar { border-radius: 50%; object-fit: cover; }
.bc-social-user__name { flex: 1; font-size: .875rem; }
.bc-profile-blocked-section { margin: 24px 0; }
.bc-profile-blocked-notice { color: var(--bc-muted); font-size: .875rem; }

/* ── Friends' Lists tab ──────────────────────────────────────────── */
.bc-friends-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; padding: 20px 0; }
.bc-friends-card {
  display: block; text-decoration: none;
  border: 1px solid var(--bc-border); border-radius: 12px;
  padding: 16px; transition: border-color .15s, box-shadow .15s;
  color: var(--bc-ink);
}
.bc-friends-card:hover { border-color: var(--bc-accent); box-shadow: 0 2px 12px rgba(0,0,0,.07); }
.bc-friends-card__meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.bc-friends-card__owner { font-size: .78rem; color: var(--bc-muted); }
.bc-friends-card__title { font-size: .95rem; font-weight: 600; margin: 0; }

/* ── Share panel (.bc-sp) ─────────────────────────────────── */
.bc-sp { padding: 24px 0; display: flex; flex-direction: column; gap: 0; }
.bc-sp__section {
  padding: 20px 0;
  border-bottom: 1px solid var(--bc-border);
}
.bc-sp__section:last-child { border-bottom: none; }
.bc-sp__label {
  font-size: .78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--bc-muted); margin: 0 0 10px;
}
/* Visibility row */
.bc-sp__vis-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.bc-sp__vis-select { flex: 1; min-width: 200px; max-width: 340px; }
.bc-sp__vis-save { white-space: nowrap; }
/* Copy row */
.bc-sp__copy-row { display: flex; gap: 8px; align-items: center; }
.bc-sp__url-input {
  flex: 1; min-width: 0;
  padding: 8px 10px; border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius); background: var(--bc-surface);
  font-size: .85rem; color: var(--bc-muted); font-family: inherit;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
/* Social buttons */
.bc-sp__socials { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.bc-sp__social-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: var(--bc-radius);
  border: 1px solid var(--bc-border); background: var(--bc-surface);
  font-size: .82rem; color: var(--bc-text); text-decoration: none;
  transition: border-color .15s, background .15s;
}
.bc-sp__social-btn:hover { border-color: var(--bc-accent); background: var(--bc-accent-light, #f0f4ff); }
/* Status text */
.bc-sp__status { font-size: .82rem; color: var(--bc-muted); margin: 6px 0 0; min-height: 1.2em; }
/* Members list */
.bc-sp__members { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
/* Invite form */
.bc-sp__invite {
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.bc-sp__invite-email { flex: 1; min-width: 180px; }
.bc-sp__invite-perm { min-width: 110px; }

/* ── Visibility radio cards ──────────────────────────────────── */
.bc-vis-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
@media (max-width: 500px) { .bc-vis-cards { grid-template-columns: 1fr; } }

.bc-vis-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 14px 14px 12px;
  border: 1.5px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  background: var(--bc-white);
  cursor: pointer;
  text-align: left;
  transition: border-color var(--bc-transition), background var(--bc-transition), box-shadow var(--bc-transition);
  font-family: var(--bc-font-body);
}
.bc-vis-card:hover {
  border-color: var(--bc-border-strong);
  box-shadow: var(--bc-shadow-sm);
}
.bc-vis-card.is-active {
  border-color: var(--bc-accent);
  background: #FDF3F1;
  box-shadow: 0 0 0 1px var(--bc-accent);
}
.bc-vis-card__icon {
  display: flex;
  color: var(--bc-muted);
  transition: color var(--bc-transition);
}
.bc-vis-card.is-active .bc-vis-card__icon { color: var(--bc-accent); }
.bc-vis-card__title {
  font-family: var(--bc-font-display);
  font-size: .85rem;
  font-weight: 600;
  color: var(--bc-ink);
  line-height: 1;
}
.bc-vis-card__sub {
  font-size: .75rem;
  color: var(--bc-muted);
  line-height: 1.3;
}

.bc-sp__vis-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Segmented pill control ──────────────────────────────────── */
.bc-seg {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  background: var(--bc-cream);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  padding: 3px;
  gap: 0;
}
.bc-seg__pill {
  position: absolute;
  background: var(--bc-white);
  border-radius: calc(var(--bc-radius-lg) - 2px);
  box-shadow: var(--bc-shadow-sm);
  transition: left var(--bc-transition), width var(--bc-transition), height var(--bc-transition);
  pointer-events: none;
}
.bc-seg__opt {
  position: relative;
  z-index: 1;
  padding: 6px 13px;
  border: none;
  background: transparent;
  border-radius: calc(var(--bc-radius-lg) - 2px);
  font-family: var(--bc-font-body);
  font-size: .8rem;
  font-weight: 500;
  color: var(--bc-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--bc-transition);
  line-height: 1.4;
}
.bc-seg__opt.is-active { color: var(--bc-ink); }
.bc-seg__opt:hover:not(.is-active) { color: var(--bc-ink-light); }

/* ── Collaborator member rows ─────────────────────────────── */
.bc-sp__members { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; min-height: 24px; }

.bc-member-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--bc-radius);
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  transition: border-color var(--bc-transition);
}
.bc-member-row:hover { border-color: var(--bc-border-strong); }
.bc-member-row__avatar {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--bc-accent);
  color: #fff;
  font-family: var(--bc-font-display);
  font-size: .7rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: .03em;
}
.bc-member-row__name {
  flex: 1;
  font-size: .85rem;
  font-weight: 500;
  color: var(--bc-ink);
  min-width: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bc-member-row__perm {
  flex-shrink: 0;
  font-size: .72rem;
  font-weight: 500;
  color: var(--bc-muted);
  background: var(--bc-cream);
  border: 1px solid var(--bc-border);
  border-radius: 20px;
  padding: 2px 9px;
  white-space: nowrap;
}
.bc-member-row__remove {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border: none; border-radius: 50%;
  background: transparent;
  color: var(--bc-muted);
  cursor: pointer;
  transition: background var(--bc-transition), color var(--bc-transition);
}
.bc-member-row__remove:hover { background: #FDF3F1; color: var(--bc-accent); }

/* ── Invite form ──────────────────────────────────────────── */
.bc-collab-form { display: flex; flex-direction: column; gap: 8px; }
.bc-collab-form__email {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--bc-border);
  border-radius: var(--bc-radius);
  font-family: var(--bc-font-body);
  font-size: .875rem;
  color: var(--bc-ink);
  background: var(--bc-white);
  transition: border-color var(--bc-transition), box-shadow var(--bc-transition);
  outline: none;
}
.bc-collab-form__email:focus {
  border-color: var(--bc-accent);
  box-shadow: 0 0 0 3px rgba(201,80,58,.1);
}
.bc-collab-form__email::placeholder { color: var(--bc-muted); }
.bc-collab-form__row2 {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.bc-collab-form__row2 .bc-seg { flex-shrink: 0; }
.bc-collab-form__submit { flex-shrink: 0; white-space: nowrap; }
.bc-seg--sm .bc-seg__opt { padding: 5px 10px; font-size: .77rem; }

/* ── Inline product figure (AI-generated articles) ───────────── */
.bc-product-figure {
  margin: 20px 0;
  display: inline-block;
  width: 160px;
  float: right;
  margin-left: 20px;
  margin-bottom: 8px;
}
.bc-product-figure a {
  display: block;
  text-decoration: none;
  border: 1px solid var(--bc-border, #e5e5e5);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bc-card-bg, #fff);
  transition: box-shadow .18s ease;
}
.bc-product-figure a:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.bc-product-figure img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  display: block;
  padding: 8px;
  background: #fafafa;
}
.bc-product-figure figcaption {
  font-size: .72rem;
  line-height: 1.35;
  color: var(--bc-muted, #666);
  padding: 6px 8px 8px;
  border-top: 1px solid var(--bc-border, #e5e5e5);
}
@media (max-width: 480px) {
  .bc-product-figure {
    float: none;
    width: 100%;
    margin-left: 0;
  }
  .bc-product-figure img { height: 180px; }
}

/* ============================================================
   Guides Hero — Buying Guides & Gift Ideas (Clean & Modern v3)
   Used on homepage and articles archive
   ============================================================ */

@keyframes bc-gh-rise {
	from { opacity: 0; transform: translateY(16px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* Override bc-hp-section generic padding */
.bc-hp-section.bc-guides-hero { padding: 64px 0 80px; }

/* ── Header ──────────────────────────────────────────────── */
.bc-guides-hero__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
	animation: bc-gh-rise 0.4s ease both;
}

.bc-guides-hero__header > div {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.bc-guides-hero__header > div::before { display: none; }

.bc-guides-hero__eyebrow {
	display: block;
	font-family: var(--bc-font-body);
	font-size: 0.5625rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--bc-accent);
}

.bc-guides-hero__title {
	font-family: var(--bc-font-display);
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 800;
	color: var(--bc-ink);
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin: 0;
}

.bc-guides-hero__see-all {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--bc-font-body);
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--bc-ink);
	text-decoration: none;
	border: none;
	border-bottom: 2px solid var(--bc-accent);
	padding: 0 0 2px;
	background: transparent;
	white-space: nowrap;
	flex-shrink: 0;
	margin-bottom: 4px;
	transition: color 0.2s;
}
.bc-guides-hero__see-all::after { content: '→'; }
.bc-guides-hero__see-all:hover { color: var(--bc-accent); background: transparent; border-color: var(--bc-accent); }

/* ── Main grid: lead (left) + sidebar (right) ─────────────── */
.bc-guides-hero__main {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	background: transparent;
	border: none;
	animation: bc-gh-rise 0.45s 0.06s ease both;
}
@media (min-width: 768px) {
	.bc-guides-hero__main { grid-template-columns: 1.5fr 1fr; gap: 20px; }
}

/* ── Lead card ───────────────────────────────────────────── */
.bc-guides-hero__lead {
	position: static;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 6px 24px rgba(0,0,0,0.08);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	min-height: unset;
}
.bc-guides-hero__lead:hover {
	box-shadow: 0 4px 8px rgba(0,0,0,0.08), 0 20px 48px rgba(0,0,0,0.12);
	transform: translateY(-4px);
}

.bc-guides-hero__lead-img {
	position: static;
	aspect-ratio: 16 / 10;
	width: 100%;
	overflow: hidden;
	flex-shrink: 0;
	background: var(--bc-border);
}

.bc-guides-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.65s cubic-bezier(.4,0,.2,1);
}
.bc-guides-hero__lead:hover .bc-guides-hero__img,
.bc-guides-hero__side-card:hover .bc-guides-hero__img,
.bc-guides-hero__strip-card:hover .bc-guides-hero__img { transform: scale(1.05); }

/* Overlay hidden — clean layout uses card stacking */
.bc-guides-hero__lead-overlay { display: none; }

/* Content below the image */
.bc-guides-hero__lead-body {
	position: static;
	padding: 24px 26px 28px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

/* Type badge */
.bc-guides-hero__badge {
	display: inline-block;
	font-family: var(--bc-font-body);
	font-size: 0.5rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #fff;
	padding: 4px 9px 3px;
	border-radius: 2px;
	margin-bottom: 12px;
	width: fit-content;
}
.bc-guides-hero__badge::before { display: none; }

/* Lead headline — ink colour (not white) */
.bc-guides-hero__lead-headline {
	font-family: var(--bc-font-editorial);
	font-size: clamp(1.25rem, 2.5vw, 1.875rem);
	font-weight: 800;
	font-style: normal;
	color: var(--bc-ink);
	line-height: 1.14;
	margin-bottom: 12px;
	letter-spacing: -0.035em;
	transition: color 0.2s;
	text-decoration: none;
}
.bc-guides-hero__lead:hover .bc-guides-hero__lead-headline { color: var(--bc-accent); }

.bc-guides-hero__lead-excerpt {
	font-family: var(--bc-font-body);
	font-size: 0.875rem;
	color: var(--bc-muted);
	line-height: 1.6;
	margin-bottom: 20px;
}

.bc-guides-hero__date {
	font-family: var(--bc-font-body);
	font-size: 0.6875rem;
	color: var(--bc-muted);
	letter-spacing: 0;
	text-transform: none;
}

/* Read CTA */
.bc-guides-hero__read-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--bc-font-body);
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--guide-accent, var(--bc-accent));
	margin-top: auto;
	padding-top: 18px;
	transition: gap 0.2s;
}
.bc-guides-hero__read-cta::after { content: '→'; transition: transform 0.2s; }
.bc-guides-hero__lead:hover .bc-guides-hero__read-cta { gap: 10px; }
.bc-guides-hero__lead:hover .bc-guides-hero__read-cta::after { transform: translateX(2px); }

/* ── Sidebar: stacked numbered cards ─────────────────────── */
.bc-guides-hero__sidebar {
	display: flex;
	flex-direction: column;
	gap: 16px;
	background: transparent;
	animation: bc-gh-rise 0.45s 0.12s ease both;
}
@media (min-width: 768px) { .bc-guides-hero__sidebar { gap: 20px; } }

.bc-guides-hero__side-card {
	flex: 1;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 4px 12px rgba(0,0,0,0.07);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	position: static;
}
.bc-guides-hero__side-card:hover {
	box-shadow: 0 3px 6px rgba(0,0,0,0.07), 0 12px 32px rgba(0,0,0,0.1);
	transform: translateY(-3px);
}
/* Clear old ghost-number pseudo */
.bc-guides-hero__side-card:nth-child(1)::after,
.bc-guides-hero__side-card:nth-child(2)::after,
.bc-guides-hero__side-card:nth-child(3)::after { display: none; }

.bc-guides-hero__side-img {
	aspect-ratio: 16 / 7;
	overflow: hidden;
	position: relative;
	background: var(--bc-border);
	flex-shrink: 0;
}

.bc-guides-hero__side-body {
	padding: 18px 20px 20px;
	display: flex;
	flex-direction: column;
	gap: 7px;
	flex: 1;
	position: static;
	z-index: auto;
}

/* Visible item number */
.bc-guides-hero__sidebar .bc-guides-hero__side-card:nth-child(1) .bc-guides-hero__side-body::before { content: '01'; }
.bc-guides-hero__sidebar .bc-guides-hero__side-card:nth-child(2) .bc-guides-hero__side-body::before { content: '02'; }
.bc-guides-hero__side-body::before {
	font-family: var(--bc-font-body);
	font-size: 0.5625rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	color: var(--bc-muted);
	margin-bottom: -2px;
}

.bc-guides-hero__side-headline {
	font-family: var(--bc-font-editorial);
	font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
	font-weight: 700;
	font-style: normal;
	color: var(--bc-ink);
	line-height: 1.25;
	letter-spacing: -0.025em;
	transition: color 0.2s;
}
.bc-guides-hero__side-card:hover .bc-guides-hero__side-headline { color: var(--bc-accent); }

.bc-guides-hero__side-card .bc-guides-hero__date { color: var(--bc-muted); }

/* ── Strip row ───────────────────────────────────────────── */
.bc-guides-hero__strip {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	border: none;
	border-top: none;
	margin-top: 16px;
	animation: bc-gh-rise 0.45s 0.18s ease both;
}
@media (min-width: 640px) { .bc-guides-hero__strip { grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; } }

.bc-guides-hero__strip-card {
	display: flex;
	align-items: stretch;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 4px 12px rgba(0,0,0,0.07);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	min-height: 108px;
}
.bc-guides-hero__strip-card + .bc-guides-hero__strip-card { border-left: none; }
.bc-guides-hero__strip-card:hover {
	box-shadow: 0 3px 6px rgba(0,0,0,0.07), 0 12px 32px rgba(0,0,0,0.1);
	transform: translateY(-3px);
}

.bc-guides-hero__strip-img {
	width: 130px;
	min-width: 130px;
	flex-shrink: 0;
	overflow: hidden;
	position: relative;
	background: var(--bc-border);
}
@media (min-width: 768px) { .bc-guides-hero__strip-img { width: 160px; min-width: 160px; } }

.bc-guides-hero__strip-body {
	padding: 16px 20px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	justify-content: center;
}

.bc-guides-hero__strip-headline {
	font-family: var(--bc-font-editorial);
	font-size: clamp(0.875rem, 1.4vw, 1rem);
	font-weight: 700;
	font-style: normal;
	color: var(--bc-ink);
	line-height: 1.28;
	letter-spacing: -0.025em;
	transition: color 0.2s;
}
.bc-guides-hero__strip-card:hover .bc-guides-hero__strip-headline { color: var(--bc-accent); }

.bc-guides-hero__strip-excerpt {
	font-family: var(--bc-font-body);
	font-size: 0.8125rem;
	color: var(--bc-muted);
	line-height: 1.5;
}

/* ── Image placeholder ───────────────────────────────────── */
.bc-guides-placeholder {
	width: 100%;
	height: 100%;
	min-height: 160px; /* fallback when parent height not set */
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ph-accent, var(--bc-accent));
	position: relative;
	overflow: hidden;
}
/* Fill lead-img container which uses aspect-ratio */
.bc-guides-hero__lead-img .bc-guides-placeholder,
.bc-guides-hero__side-img .bc-guides-placeholder,
.bc-guides-hero__strip-img .bc-guides-placeholder {
	position: absolute;
	inset: 0;
	min-height: unset;
}
.bc-guides-placeholder::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 25% 60%, rgba(255,255,255,0.22) 0%, transparent 52%),
		linear-gradient(145deg, rgba(0,0,0,0.24) 0%, rgba(0,0,0,0) 48%),
		repeating-linear-gradient(
			-48deg,
			transparent 0px, transparent 18px,
			rgba(255,255,255,0.04) 18px, rgba(255,255,255,0.04) 19px
		);
}
.bc-guides-placeholder::after {
	content: attr(data-type);
	position: absolute;
	bottom: -14px;
	right: -8px;
	font-family: var(--bc-font-display);
	font-size: clamp(2rem, 6vw, 4.5rem);
	font-weight: 900;
	color: rgba(255,255,255,0.08);
	letter-spacing: -0.06em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	pointer-events: none;
}
.bc-guides-placeholder svg { position: relative; z-index: 1; opacity: 0.72; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 599px) {
	.bc-guides-hero__lead-body { padding: 20px 18px 24px; }
	.bc-guides-hero__strip-img { width: 100px; min-width: 100px; }
	.bc-guides-hero__side-body { padding: 14px 16px 18px; }
}

/* ── [bc_product] inline card ────────────────────────────────── */
.bc-inline-card {
  display: flex;
  gap: 16px;
  background: var(--bc-card-bg, #fff);
  border: 1px solid var(--bc-border, #e8e3dc);
  border-radius: var(--bc-radius-lg, 12px);
  overflow: hidden;
  margin: 20px 0;
  transition: box-shadow var(--bc-transition, .18s ease), transform var(--bc-transition, .18s ease);
}
.bc-inline-card:hover {
  box-shadow: var(--bc-shadow-lg, 0 8px 24px rgba(0,0,0,.12));
  transform: translateY(-2px);
}

.bc-inline-card__image-wrap {
  flex-shrink: 0;
  width: 130px;
  background: var(--bc-cream, #f5f2ee);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.bc-inline-card__image-wrap--empty {
  color: var(--bc-muted, #888);
}
.bc-inline-card__image {
  width: 100%;
  height: 110px;
  object-fit: contain;
  display: block;
  transition: transform .35s ease;
}
.bc-inline-card:hover .bc-inline-card__image { transform: scale(1.05); }

.bc-inline-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px 14px 0;
  min-width: 0;
}

.bc-inline-card__brand {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bc-muted, #888);
  margin: 0;
}

.bc-inline-card__title {
  margin: 0;
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.4;
  flex: 1;
}
.bc-inline-card__title a {
  color: var(--bc-ink, #1a1a1a);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--bc-transition, .18s ease);
}
.bc-inline-card__title a:hover {
  color: var(--bc-accent, #c4956a);
  border-bottom-color: var(--bc-accent, #c4956a);
}

.bc-inline-card__footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.bc-inline-card__footer .bc-product-card__price {
  font-size: 1.125rem;
}

.bc-inline-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--bc-white, #fff);
  background: var(--bc-ink, #1a1a1a);
  text-decoration: none;
  padding: 7px 14px;
  border-radius: 4px;
  transition: background var(--bc-transition, .18s ease);
  white-space: nowrap;
}
.bc-inline-card__cta:hover {
  background: var(--bc-accent, #c4956a);
  color: var(--bc-white, #fff);
}

@media (max-width: 540px) {
  .bc-inline-card {
    flex-direction: column;
    gap: 0;
  }
  .bc-inline-card__image-wrap {
    width: 100%;
    height: 160px;
    padding: 16px;
  }
  .bc-inline-card__image { height: 120px; }
  .bc-inline-card__body { padding: 12px 14px 14px; }
}

/* ── Brand results in search ───────────────────────────────────────────────── */

.bc-brand-results {
  margin-bottom: 28px;
}

.bc-brand-results__heading {
  font-family: var(--bc-font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--bc-muted);
  margin: 0 0 12px;
}

.bc-brand-results__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}

.bc-brand-result-card {
  display: flex;
  flex-direction: column;
  background: var(--bc-white);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}

.bc-brand-result-card:hover {
  box-shadow: 0 6px 20px rgba(26,22,20,.09);
  transform: translateY(-2px);
}

.bc-brand-result-card__media {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bc-cream);
  padding: 12px;
  overflow: hidden;
}

.bc-brand-result-card__img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.bc-brand-result-card__initials {
  font-family: var(--bc-font-display);
  font-size: 1.25rem;
  font-weight: 200;
  color: var(--bc-border-strong);
  letter-spacing: 0.04em;
}

.bc-brand-result-card__body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bc-brand-result-card__cat {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bc-accent);
}

.bc-brand-result-card__name {
  font-family: var(--bc-font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bc-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Store lane updated-at date (shown once in lane header) */
.bc-store-lane__date {
  font-size: 0.6875rem;
  color: var(--bc-muted);
  white-space: nowrap;
}

/* ── Gift-guide editorial grid ─────────────────────────────────────────────── */
.bc-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 32px 0;
}

.bc-guide-item {
  display: flex;
  flex-direction: column;
}

.bc-guide-item__photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: var(--bc-surface, #f5f2ee);
  padding: 24px;
  border-radius: 10px;
  display: block;
  transition: transform var(--bc-transition, .18s ease);
}
.bc-guide-item__photo--empty {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--bc-surface, #f5f2ee);
  border-radius: 10px;
}
.bc-guide-item:hover .bc-guide-item__photo {
  transform: scale(1.02);
}

.bc-guide-item__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 14px 0 6px;
  color: var(--bc-ink, #1a1a1a);
}

.bc-guide-item__desc {
  font-size: .875rem;
  line-height: 1.65;
  color: var(--bc-muted, #666);
  margin: 0 0 14px;
  flex: 1;
}

.bc-guide-item__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.bc-guide-item__link {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 4px;
  background: var(--bc-accent, #c4956a);
  color: var(--bc-white, #fff);
  transition: background var(--bc-transition, .18s ease);
  white-space: nowrap;
}
.bc-guide-item__link:hover {
  background: var(--bc-ink, #1a1a1a);
  color: var(--bc-white, #fff);
}
.bc-guide-item__link--ghost {
  background: transparent;
  color: var(--bc-accent, #c4956a);
  border: 1px solid var(--bc-accent, #c4956a);
}
.bc-guide-item__link--ghost:hover {
  background: var(--bc-accent, #c4956a);
  color: var(--bc-white, #fff);
}

@media (max-width: 600px) {
  .bc-guide-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ── Section titles (search results) ───────────────────────────────────────── */
.bc-results-section-title {
  font-family: var(--bc-font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bc-ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

/* ── Explore brands + categories pills (search results) ────────────────────── */
.bc-explore-brands {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bc-explore-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bc-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-family: var(--bc-font-display);
  font-weight: 500;
  text-decoration: none;
  line-height: 1.5;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.bc-pill--brand {
  background: var(--bc-ink, #1a1a1a);
  color: var(--bc-white, #fff);
}
.bc-pill--brand:hover {
  opacity: 0.8;
}
.bc-pill--cat {
  background: transparent;
  color: var(--bc-ink, #1a1a1a);
  border: 1px solid var(--bc-border-strong, #c8c4bc);
}
.bc-pill--cat:hover {
  border-color: var(--bc-accent);
  color: var(--bc-accent);
}
