/* ------------------------------------------------------------------
   FACOBE — main stylesheet
   Structure:
     1. Reset + base
     2. Layout container
     3. Typography helpers
     4. Buttons
     5. Announcement bar
     6. Header (sticky)
     7. Bottom nav (app-like, mobile only)
     8. Footer
     9. Bottom-sheet modals (cart drawer, filters, size guide)
    10. Search overlay
    11. Utility helpers
   ------------------------------------------------------------------ */

/* ---------- 1. Reset + base — high specificity so FACOBE fonts win over Blocksy ---------- */
* { box-sizing: border-box; }
html, body { margin:0; padding:0; background: var(--fcb-bg); color: var(--fcb-ink); font-family: var(--fcb-font-body); font-size: var(--fcb-fs-md); line-height: var(--fcb-lh-body); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { padding-block: 0; padding-bottom: calc(var(--fcb-bottom-nav-h) + env(safe-area-inset-bottom, 0)); }
body, body p, body li, body input, body select, body textarea, body button, body label { font-family: var(--fcb-font-body); }
h1, h2, h3, h4, h5, h6,
body h1, body h2, body h3, body h4, body h5, body h6,
.entry-title, .entry-title a, .page-title, .wp-block-heading,
.woocommerce-loop-product__title, .product_title {
  font-family: var(--fcb-font-display) !important;
  color: var(--fcb-ink);
  font-weight: 700;
  letter-spacing: -.005em;
}
h1, .entry-title, .page-title, .product_title { font-size: clamp(24px, 4vw, 36px); line-height: 1.15; }
h2 { font-size: clamp(20px, 3vw, 28px); line-height: 1.2; }
h3 { font-size: clamp(18px, 2.4vw, 22px); line-height: 1.25; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--fcb-gold-ink); }
button { font: inherit; cursor: pointer; font-family: var(--fcb-font-body); }
input, select, textarea { font: inherit; color: inherit; font-family: var(--fcb-font-body); }
:focus-visible { outline: 2px solid var(--fcb-focus); outline-offset: 2px; }

/* WP core content — clean typography inside the_content() output */
.entry-content, .page-content, .wp-block-post-content {
  max-width: 720px;
  margin-inline: auto;
  padding-block: 32px;
  color: var(--fcb-ink-2);
  font-size: 16px;
  line-height: 1.75;
}
.entry-content > *, .page-content > * { margin-block: 20px; }
.entry-content h2, .entry-content h3, .page-content h2, .page-content h3 { margin-block: 32px 12px; }
.entry-content ul, .entry-content ol, .page-content ul, .page-content ol { padding-left: 24px; }
.entry-content li, .page-content li { margin-block: 6px; }
.entry-content table, .page-content table {
  width: 100%; border-collapse: collapse; margin-block: 16px;
  font-size: 14px;
}
.entry-content th, .entry-content td, .page-content th, .page-content td {
  padding: 10px 14px; border-bottom: 1px solid var(--fcb-line); text-align: left;
}
.entry-content th, .page-content th { background: var(--fcb-surface); font-weight: 600; }
.entry-content a, .page-content a { color: var(--fcb-gold-ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }

/* Bottom-nav is desktop-hidden — remove body padding above 900px. */
@media (min-width: 900px) {
  body { padding-bottom: 0; }
}

/* ---------- 2. Container ---------- */
.fcb-c { width: 100%; max-width: var(--fcb-container); margin-inline: auto; padding-inline: var(--fcb-gutter); }
.fcb-c--tight { max-width: 960px; }

/* ---------- 3. Typography ---------- */
.fcb-h1 { font-family: var(--fcb-font-display); font-weight: 700; font-size: clamp(28px, 6vw, var(--fcb-fs-4xl)); line-height: var(--fcb-lh-tight); letter-spacing: -.01em; margin: 0 0 var(--fcb-s-4); }
.fcb-h2 { font-family: var(--fcb-font-display); font-weight: 700; font-size: clamp(22px, 4.5vw, var(--fcb-fs-3xl)); line-height: var(--fcb-lh-tight); margin: 0 0 var(--fcb-s-3); }
.fcb-h3 { font-family: var(--fcb-font-display); font-weight: 600; font-size: var(--fcb-fs-2xl); line-height: var(--fcb-lh-tight); margin: 0 0 var(--fcb-s-2); }
.fcb-eyebrow { font-size: var(--fcb-fs-xs); letter-spacing: .18em; text-transform: uppercase; color: var(--fcb-muted); font-weight: 600; }
.fcb-lead { font-size: var(--fcb-fs-lg); color: var(--fcb-ink-2); }
.fcb-muted { color: var(--fcb-muted); }
.fcb-section { padding-block: clamp(36px, 6vw, 72px); }
.fcb-section-head { text-align: center; margin-bottom: var(--fcb-s-5); }
.fcb-section-head .fcb-eyebrow + .fcb-h2 { margin-top: var(--fcb-s-2); }

/* ---------- 4. Buttons — high specificity so Blocksy/Woo defaults can't win ---------- */
/* Woo adds .button + .single_add_to_cart_button to native cart buttons, and Blocksy
   styles those with its own primary colour at equal specificity. We use multiple
   selectors + a body prefix so the FACOBE styling always wins. */
body .fcb-btn,
body a.fcb-btn,
body button.fcb-btn,
body input.fcb-btn,
body .woocommerce button.fcb-btn,
body .woocommerce a.fcb-btn,
body button.button.fcb-btn,
body .single_add_to_cart_button.fcb-btn,
.fcb-btn, a.fcb-btn, button.fcb-btn, input.fcb-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 14px 22px !important;
  border: 1px solid transparent !important;
  border-radius: var(--fcb-r-btn) !important;
  font-weight: 600 !important;
  font-size: var(--fcb-fs-md) !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  cursor: pointer;
  font-family: var(--fcb-font-body) !important;
  line-height: 1.2 !important;
  transition: transform var(--fcb-t-fast) var(--fcb-ease), background var(--fcb-t-base) var(--fcb-ease), color var(--fcb-t-base) var(--fcb-ease), border-color var(--fcb-t-base) var(--fcb-ease);
}
.fcb-btn:active { transform: scale(.98); }

body .fcb-btn--primary,
body a.fcb-btn--primary,
body button.fcb-btn--primary,
body input.fcb-btn--primary,
body .woocommerce button.fcb-btn--primary,
body button.button.fcb-btn--primary,
body .single_add_to_cart_button.fcb-btn--primary,
.fcb-btn--primary { background: var(--fcb-primary) !important; color: #FBF7F2 !important; border-color: var(--fcb-primary) !important; }
body .fcb-btn--primary:hover, body .fcb-btn--primary:focus,
.fcb-btn--primary:hover, .fcb-btn--primary:focus { background: var(--fcb-primary-ink) !important; border-color: var(--fcb-primary-ink) !important; color: #FBF7F2 !important; }

body .fcb-btn--outline,
body a.fcb-btn--outline,
body button.fcb-btn--outline,
body input.fcb-btn--outline,
body .woocommerce button.fcb-btn--outline,
body button.button.fcb-btn--outline,
body .single_add_to_cart_button.fcb-btn--outline,
.fcb-btn--outline { background: transparent !important; color: var(--fcb-ink) !important; border-color: var(--fcb-ink) !important; }
body .fcb-btn--outline:hover,
.fcb-btn--outline:hover { background: var(--fcb-ink) !important; color: #fff !important; }

body .fcb-btn--ghost, .fcb-btn--ghost { background: transparent !important; color: var(--fcb-ink) !important; padding: 10px 12px !important; text-transform: none !important; letter-spacing: 0 !important; border-color: transparent !important; }
body .fcb-btn--full, .fcb-btn--full { width: 100% !important; }
body .fcb-btn--gold, .fcb-btn--gold { background: var(--fcb-gold) !important; color: #fff !important; border-color: var(--fcb-gold) !important; }
body .fcb-btn--gold:hover, .fcb-btn--gold:hover { background: var(--fcb-gold-ink) !important; border-color: var(--fcb-gold-ink) !important; }
.fcb-btn[disabled], .fcb-btn.is-loading { opacity: .55; pointer-events: none; }

/* Chips (filter, sort, category pills) */
.fcb-chip { display: inline-flex; align-items: center; gap: 4px; padding: 8px 14px;
  border: 1px solid var(--fcb-line-2); border-radius: 999px; background: transparent;
  font-size: var(--fcb-fs-sm); color: var(--fcb-ink); white-space: nowrap;
  transition: background var(--fcb-t-fast) var(--fcb-ease), border-color var(--fcb-t-fast) var(--fcb-ease); }
.fcb-chip:hover { border-color: var(--fcb-ink); }
.fcb-chip[aria-pressed="true"], .fcb-chip.is-active { background: var(--fcb-ink); color: #fff; border-color: var(--fcb-ink); }
.fcb-chip--remove { padding-right: 8px; }
.fcb-chip--remove::after { content: '×'; margin-left: 6px; font-size: 16px; line-height: 1; }

/* ---------- 5. Announcement bar ---------- */
.fcb-announcement { background: var(--fcb-ink); color: #fff; text-align: center;
  padding: 8px var(--fcb-gutter); font-size: var(--fcb-fs-xs); letter-spacing: .12em;
  text-transform: uppercase; padding-top: calc(8px + env(safe-area-inset-top, 0)); }

/* ---------- 6. Header ---------- */
.fcb-header { position: sticky; top: 0; z-index: 40; background: var(--fcb-bg);
  border-bottom: 1px solid var(--fcb-line); }
.fcb-header__row { display: flex; align-items: center; justify-content: space-between; gap: var(--fcb-s-3); padding: 12px 0; }
.fcb-logo { display: inline-flex; align-items: center; }
.fcb-logo img, .fcb-logo svg { height: 40px; width: auto; max-width: 180px; object-fit: contain; }
@media (min-width: 900px) { .fcb-logo img, .fcb-logo svg { height: 52px; max-width: 220px; } }

/* Primary menu — hidden in the header on mobile, always shown inside the drawer sheet. */
.fcb-header .fcb-primary-menu { display: none; list-style: none; margin: 0; padding: 0; gap: var(--fcb-s-5); }
.fcb-primary-menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.fcb-primary-menu li { border-bottom: 1px solid var(--fcb-line); }
.fcb-primary-menu li:last-child { border-bottom: 0; }
.fcb-primary-menu a { display: block; font-size: var(--fcb-fs-lg); font-weight: 500; padding: 16px 4px; }
.fcb-primary-menu a:hover { color: var(--fcb-gold-ink); }
@media (min-width: 900px) {
  .fcb-header .fcb-primary-menu { display: flex; flex-direction: row; border: 0; }
  .fcb-header .fcb-primary-menu li { border: 0; }
  .fcb-header .fcb-primary-menu a { padding: 8px 4px; font-size: var(--fcb-fs-md); }
}

.fcb-header__actions { display: flex; align-items: center; gap: 4px; }
.fcb-header__actions button, .fcb-header__actions a {
  background: transparent; border: 0; padding: 10px; color: var(--fcb-ink);
  display: inline-flex; align-items: center; justify-content: center; position: relative;
}
.fcb-header__actions svg { width: 22px; height: 22px; }
.fcb-header__cart-count { position: absolute; top: 4px; right: 4px; min-width: 16px; height: 16px;
  padding: 0 4px; background: var(--fcb-gold); color: #fff; border-radius: 999px;
  font-size: 10px; line-height: 16px; text-align: center; font-weight: 700; }
.fcb-header__hamburger { display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 0; padding: 10px; color: var(--fcb-ink); }
.fcb-header__hamburger svg { width: 24px; height: 24px; }
@media (min-width: 900px) { .fcb-header__hamburger { display: none; } }

/* ---------- 7. Bottom nav ---------- */
.facobe-bottom-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  background: var(--fcb-surface); border-top: 1px solid var(--fcb-line);
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -2px 12px rgba(0,0,0,.04); }
.facobe-bnav__item { display: flex; flex-direction: column; align-items: center;
  gap: 2px; padding: 8px 4px; color: var(--fcb-muted);
  font-size: 10px; font-weight: 500; letter-spacing: .04em;
  min-height: var(--fcb-bottom-nav-h); position: relative; }
.facobe-bnav__item:hover, .facobe-bnav__item[aria-current="page"] { color: var(--fcb-ink); }
.facobe-bnav__i { display: inline-flex; align-items: center; justify-content: center; }
.facobe-bnav__i svg { width: 22px; height: 22px; }
.facobe-bnav__l { display: block; }
.facobe-bnav__badge { position: absolute; top: 6px; right: calc(50% - 20px);
  min-width: 16px; height: 16px; padding: 0 4px; background: var(--fcb-gold); color: #fff;
  border-radius: 999px; font-size: 10px; line-height: 16px; text-align: center; font-weight: 700; }
@media (min-width: 900px) { .facobe-bottom-nav { display: none; } }

/* ---------- 8. Footer ---------- */
.fcb-footer { background: var(--fcb-ink); color: rgba(255,255,255,.85); padding: 40px 0 24px; margin-top: 56px; }
.fcb-footer a { color: rgba(255,255,255,.85); transition: color var(--fcb-t-fast) var(--fcb-ease); }
.fcb-footer a:hover { color: var(--fcb-gold); }

/* Mobile-first: brand block full-width, then link columns in 2-col grid. */
.fcb-footer__grid { display: grid; gap: 28px 24px; grid-template-columns: 1fr 1fr; }
.fcb-footer__brand { grid-column: 1 / -1; text-align: center; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.08); }
.fcb-footer__brand img { display: inline-block; margin: 0 auto; height: 44px; }
.fcb-footer__brand p { font-size: var(--fcb-fs-sm); color: rgba(255,255,255,.6); margin: 12px auto 16px; max-width: 32ch; }
.fcb-footer__brand .fcb-btn { padding: 12px 20px; font-size: 12px; margin: 0 auto; }

.fcb-footer__col h4 { font-family: var(--fcb-font-display); font-size: var(--fcb-fs-lg); margin: 0 0 var(--fcb-s-3); color: #fff; font-weight: 600; letter-spacing: .02em; }
.fcb-footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: var(--fcb-fs-sm); }

@media (min-width: 700px) {
  .fcb-footer { padding: 64px 0 28px; margin-top: 80px; }
  .fcb-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
  .fcb-footer__brand { grid-column: auto; text-align: left; border: 0; padding-bottom: 0; }
  .fcb-footer__brand img { margin: 0; height: 52px; }
  .fcb-footer__brand p { margin-left: 0; margin-right: 0; }
  .fcb-footer__brand .fcb-btn { margin: 0; }
}

/* Connect column */
.fcb-footer__connect { display: flex; flex-direction: column; gap: 12px; }
.fcb-footer__social { display: flex; gap: 10px; margin-top: 4px; }
.fcb-footer__social a { display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(251,247,242,.08); font-size: 11px; font-weight: 700; letter-spacing: .05em;
  color: rgba(251,247,242,.9); }
.fcb-footer__social a:hover { background: var(--fcb-accent); color: var(--fcb-primary); }
.fcb-footer__addr { font-size: 11px; color: rgba(251,247,242,.55); line-height: 1.5;
  border-top: 1px solid rgba(251,247,242,.08); padding-top: 12px; margin-top: 8px; }

/* Payments strip */
.fcb-footer__payments { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-top: 28px; padding: 14px 0;
  border-top: 1px solid rgba(251,247,242,.08); border-bottom: 1px solid rgba(251,247,242,.08); }
.fcb-footer__payments span { padding: 4px 10px; background: rgba(251,247,242,.06);
  border: 1px solid rgba(251,247,242,.12); border-radius: 4px;
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(251,247,242,.7); font-family: var(--fcb-font-body); }

/* Anchor hover in footer picks up the rose-gold accent */
.fcb-footer a:hover { color: var(--fcb-accent-soft); }

.fcb-footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 32px; padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 8px var(--fcb-s-5);
  justify-content: space-between; align-items: center; font-size: var(--fcb-fs-xs); color: rgba(255,255,255,.55);
  text-align: center; }
.fcb-footer__bottom > * { flex: 1 1 auto; }
@media (min-width: 700px) {
  .fcb-footer__bottom { text-align: left; }
}

/* ---------- 9. Bottom-sheet modals ---------- */
.fcb-sheet { position: fixed; inset: 0; z-index: 60; visibility: hidden; }
.fcb-sheet.is-open { visibility: visible; }
.fcb-sheet__scrim { position: absolute; inset: 0; background: rgba(0,0,0,.4); opacity: 0;
  transition: opacity var(--fcb-t-base) var(--fcb-ease); }
.fcb-sheet.is-open .fcb-sheet__scrim { opacity: 1; }
.fcb-sheet__panel { position: absolute; left: 0; right: 0; bottom: 0;
  background: var(--fcb-surface); border-radius: var(--fcb-r-modal) var(--fcb-r-modal) 0 0;
  max-height: 92dvh; overflow: hidden; transform: translateY(100%);
  transition: transform var(--fcb-t-base) var(--fcb-ease);
  display: flex; flex-direction: column; padding-bottom: env(safe-area-inset-bottom, 0); }
.fcb-sheet.is-open .fcb-sheet__panel { transform: translateY(0); }
.fcb-sheet__head { display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--fcb-line); }
.fcb-sheet__head h3 { margin: 0; font-family: var(--fcb-font-display); font-size: var(--fcb-fs-xl); font-weight: 600; }
.fcb-sheet__close { background: transparent; border: 0; padding: 8px; color: var(--fcb-ink); }
.fcb-sheet__close svg { width: 22px; height: 22px; }
.fcb-sheet__body { padding: 16px 20px; overflow-y: auto; overscroll-behavior: contain; }
.fcb-sheet__foot { padding: 12px 20px 16px; border-top: 1px solid var(--fcb-line); background: var(--fcb-surface); }

/* Right-side drawer variant (cart drawer on desktop). */
@media (min-width: 900px) {
  .fcb-sheet--drawer .fcb-sheet__panel { left: auto; top: 0; right: 0; bottom: 0;
    width: 420px; max-height: none; border-radius: 0;
    transform: translateX(100%); }
  .fcb-sheet--drawer.is-open .fcb-sheet__panel { transform: translateX(0); }
}

/* ---------- 10. Search overlay ---------- */
.fcb-search { position: fixed; inset: 0; z-index: 65; background: var(--fcb-bg);
  transform: translateY(-100%); transition: transform var(--fcb-t-base) var(--fcb-ease);
  padding-top: env(safe-area-inset-top, 0); overflow-y: auto; }
.fcb-search.is-open { transform: translateY(0); }
.fcb-search__head { display: flex; gap: 8px; padding: 12px 16px; align-items: center; border-bottom: 1px solid var(--fcb-line); }
.fcb-search__input { flex: 1; border: 0; background: transparent; font-size: var(--fcb-fs-lg); padding: 8px 4px; }

/* ---------- 11. Utility ---------- */
.fcb-hide-sm { display: none; }
@media (min-width: 700px) { .fcb-hide-sm { display: initial; } }
.fcb-only-sm { display: initial; }
@media (min-width: 700px) { .fcb-only-sm { display: none; } }
[hidden] { display: none !important; }

.fcb-skeleton { background: linear-gradient(90deg, #eee 0, #f5f5f5 40%, #eee 80%);
  background-size: 200% 100%; animation: fcbShimmer 1.2s infinite; border-radius: 4px; }
@keyframes fcbShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* Install banner (PWA) */
.facobe-install-bar { position: fixed; bottom: calc(var(--fcb-bottom-nav-h) + env(safe-area-inset-bottom, 0) + 12px); left: 12px; right: 12px; z-index: 55;
  background: var(--fcb-ink); color: #fff; border-radius: 12px; padding: 10px 12px;
  display: flex; gap: 8px; align-items: center; box-shadow: var(--fcb-shadow-lift); font-size: var(--fcb-fs-sm); }
.facobe-install-bar span { flex: 1; }
.facobe-install-bar button { background: var(--fcb-gold); color: #fff; border: 0; padding: 8px 14px; border-radius: 999px; font-weight: 600; font-size: 12px; }
.facobe-install-bar button[data-facobe-install-skip] { background: transparent; padding: 6px 8px; font-size: 20px; line-height: 1; }
@media (min-width: 900px) { .facobe-install-bar { max-width: 380px; left: auto; right: 20px; bottom: 20px; } }

/* Floating WhatsApp */
.fcb-wa { position: fixed; bottom: calc(var(--fcb-bottom-nav-h) + env(safe-area-inset-bottom, 0) + 12px); right: 12px; z-index: 42;
  width: 52px; height: 52px; background: #25D366; color: #fff; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--fcb-shadow-pop); transition: transform var(--fcb-t-base) var(--fcb-ease); }
.fcb-wa:hover { transform: translateY(-2px); }
.fcb-wa svg { width: 26px; height: 26px; }
@media (min-width: 900px) { .fcb-wa { bottom: 20px; right: 20px; width: 56px; height: 56px; } }

/* ================================================================
   v2 Homepage — hero overlay, chips, trust bar, category pills,
   watch-and-buy strip, press strip, FB-style reviews.
   ================================================================ */

/* Ghost button (transparent w/ accent border, sits on hero image) */
.fcb-btn--ghost { background: transparent !important; color: var(--fcb-surface) !important;
  border: 1px solid rgba(251,247,242,.6) !important; backdrop-filter: blur(4px); }
.fcb-btn--ghost:hover { background: rgba(251,247,242,.16) !important; border-color: var(--fcb-surface) !important; }

/* Hero — full-bleed overlay */
.fcb-hero--overlay { position: relative; overflow: hidden; background: var(--fcb-primary); }
.fcb-hero--overlay .fcb-hero__media { position: absolute; inset: 0; z-index: 0; }
.fcb-hero--overlay .fcb-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fcb-hero__scrim { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,31,42,.35) 0%, rgba(42,31,42,.15) 40%, rgba(42,31,42,.65) 100%),
              linear-gradient(90deg, rgba(42,31,42,.55) 0%, rgba(42,31,42,0) 55%); }
.fcb-hero--overlay { min-height: clamp(560px, 78vh, 780px); }
.fcb-hero--overlay .fcb-hero__body { position: relative; z-index: 1;
  display: flex; align-items: flex-end; min-height: inherit;
  padding: 32px var(--fcb-gutter) 40px; }
.fcb-hero__inner { max-width: 560px; color: var(--fcb-surface); }
.fcb-hero__inner .fcb-eyebrow { color: var(--fcb-accent-soft); }
.fcb-hero__inner .fcb-h1 { color: var(--fcb-surface); font-weight: 500;
  font-family: var(--fcb-font-display); font-style: italic;
  font-size: clamp(38px, 6.5vw, 68px); line-height: 1.02; letter-spacing: -.02em; }
.fcb-hero__inner .fcb-lead { color: rgba(251,247,242,.85); font-size: clamp(15px, 1.6vw, 18px); }
.fcb-hero__ctas { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0 20px; }

.fcb-hero__chips { list-style: none; padding: 0; margin: 0;
  display: flex; gap: 8px; flex-wrap: wrap; }
.fcb-hero__chips li { display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; background: rgba(251,247,242,.14); backdrop-filter: blur(8px);
  border: 1px solid rgba(251,247,242,.28); border-radius: var(--fcb-r-pill);
  color: var(--fcb-surface); font-size: 12px; letter-spacing: .04em; }
.fcb-hero__chips li span { color: var(--fcb-accent-soft); font-size: 10px; }

@media (min-width: 900px) {
  .fcb-hero--overlay .fcb-hero__body { padding: 56px 64px 64px; }
}

/* Trust bar — thin strip under hero */
.fcb-trust-bar { background: var(--fcb-surface); border-block: 1px solid var(--fcb-line);
  padding: 14px var(--fcb-gutter); }
.fcb-trust-bar__row { display: flex; gap: 24px; align-items: center; justify-content: center;
  flex-wrap: wrap; max-width: var(--fcb-container); margin: 0 auto;
  font-size: 12px; color: var(--fcb-muted); letter-spacing: .06em; text-transform: uppercase; font-weight: 500; }
.fcb-trust-bar__row span { display: inline-flex; align-items: center; gap: 6px; }
.fcb-trust-bar__row span::before { content: '✓'; color: var(--fcb-success); font-weight: 700; }

/* Category pills — round horizontal scroll */
.fcb-cat-pills { padding: 28px 0 24px; overflow: hidden; }
.fcb-cat-pills__scroll { display: flex; gap: 20px; overflow-x: auto; overflow-y: hidden;
  padding: 0 var(--fcb-gutter) 12px; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none; }
.fcb-cat-pills__scroll::-webkit-scrollbar { display: none; }
.fcb-cat-pill { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center;
  gap: 8px; width: 112px; text-align: center; scroll-snap-align: start;
  transition: transform var(--fcb-t-base) var(--fcb-ease); }
.fcb-cat-pill:hover { transform: translateY(-2px); }
.fcb-cat-pill__media { width: 96px; height: 96px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--fcb-accent-soft); padding: 2px; background: var(--fcb-surface); }
.fcb-cat-pill__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.fcb-cat-pill__label { font-size: 12px; color: var(--fcb-ink); font-weight: 500;
  letter-spacing: .02em; line-height: 1.3; }
@media (min-width: 900px) {
  .fcb-cat-pill { width: 132px; }
  .fcb-cat-pill__media { width: 116px; height: 116px; }
  .fcb-cat-pill__label { font-size: 13px; }
}

/* Watch & Buy — Reels shoppable strip */
.fcb-watch { padding: 32px 0; }
.fcb-watch__scroll { display: flex; gap: 14px; overflow-x: auto; padding: 0 var(--fcb-gutter) 12px;
  scroll-snap-type: x mandatory; scrollbar-width: none; }
.fcb-watch__scroll::-webkit-scrollbar { display: none; }
.fcb-watch__tile { flex: 0 0 220px; aspect-ratio: 9/16; position: relative;
  border-radius: var(--fcb-r-card); overflow: hidden; scroll-snap-align: start;
  background: var(--fcb-primary); box-shadow: var(--fcb-shadow-soft); }
.fcb-watch__tile img { width: 100%; height: 100%; object-fit: cover; }
.fcb-watch__tile::after { content: '▶'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); color: var(--fcb-surface); font-size: 28px;
  background: rgba(61,31,61,.5); width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; padding-left: 6px; }
.fcb-watch__tile a { position: absolute; inset: 0; z-index: 2; }
.fcb-watch__cta { position: absolute; bottom: 12px; left: 12px; right: 12px; z-index: 3;
  padding: 8px 12px; background: var(--fcb-surface); color: var(--fcb-ink);
  border-radius: var(--fcb-r-btn); font-size: 12px; font-weight: 500; text-align: center; }

/* Press strip — "as seen on" */
.fcb-press { padding: 28px 0; background: var(--fcb-surface); border-block: 1px solid var(--fcb-line); }
.fcb-press__label { text-align: center; font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--fcb-muted); margin: 0 0 14px; }
.fcb-press__row { display: flex; gap: 40px; align-items: center; justify-content: center;
  flex-wrap: wrap; opacity: .72; filter: grayscale(1); }
.fcb-press__row img, .fcb-press__row .fcb-press__logo { height: 26px; opacity: .8;
  font-family: var(--fcb-font-display); font-style: italic; font-size: 22px; color: var(--fcb-ink); }

/* Reviews — Facebook-post-style cards */
.fcb-reviews-social { padding: 40px 0; }
.fcb-reviews-social__grid { display: grid; grid-template-columns: 1fr; gap: 16px;
  padding: 0 var(--fcb-gutter); max-width: var(--fcb-container-tight); margin: 0 auto; }
@media (min-width: 900px) { .fcb-reviews-social__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.fcb-review-card { background: var(--fcb-surface); border: 1px solid var(--fcb-line);
  border-radius: var(--fcb-r-card); padding: 16px; box-shadow: var(--fcb-shadow-soft); }
.fcb-review-card__head { display: flex; gap: 10px; align-items: center; }
.fcb-review-card__avatar { width: 40px; height: 40px; border-radius: 50%;
  background: var(--fcb-grad-aubergine); color: var(--fcb-surface);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--fcb-font-display); font-weight: 600; font-size: 16px; }
.fcb-review-card__meta b { display: block; color: var(--fcb-ink); font-size: 14px; }
.fcb-review-card__meta time { font-size: 11px; color: var(--fcb-muted); }
.fcb-review-card__body { margin: 12px 0; color: var(--fcb-ink-2); font-size: 14px; line-height: 1.55; }
.fcb-review-card__stars { color: var(--fcb-accent); font-size: 12px; letter-spacing: 2px; }
.fcb-review-card__product { display: flex; align-items: center; gap: 10px;
  padding: 8px; margin-top: 12px; background: var(--fcb-bg); border-radius: 6px; }
.fcb-review-card__product img { width: 40px; height: 50px; object-fit: cover; border-radius: 4px; }
.fcb-review-card__product span { font-size: 12px; color: var(--fcb-ink); line-height: 1.3; }
.fcb-review-card__actions { display: flex; gap: 20px; padding-top: 10px; margin-top: 12px;
  border-top: 1px solid var(--fcb-line); font-size: 12px; color: var(--fcb-muted); font-weight: 500; }

/* Section head — v2 */
.fcb-section-head .fcb-eyebrow { color: var(--fcb-accent-ink); }
.fcb-section-head h2, .fcb-section-head .fcb-h2 { font-style: italic; }

/* Announcement bar — new palette */
.fcb-announcement, .facobe-announcement { background: var(--fcb-primary); color: var(--fcb-bg); }

/* Coming-soon state on empty category PLPs */
.fcb-coming-soon { max-width: 720px; margin: 40px auto 80px; padding: 24px;
  text-align: center; background: var(--fcb-surface); border: 1px solid var(--fcb-line);
  border-radius: var(--fcb-r-card); box-shadow: var(--fcb-shadow-soft); }
.fcb-coming-soon__art { max-width: 100%; margin: -24px -24px 20px;
  border-radius: var(--fcb-r-card) var(--fcb-r-card) 0 0; overflow: hidden; }
.fcb-coming-soon__art svg { display: block; width: 100%; height: auto; }
.fcb-coming-soon h2 { font-family: var(--fcb-font-display); font-style: italic;
  font-size: clamp(24px, 3.4vw, 34px); color: var(--fcb-ink); margin: 8px 0 12px; }
.fcb-coming-soon p { color: var(--fcb-muted); font-size: 15px; line-height: 1.6;
  max-width: 480px; margin: 0 auto 16px; }
.fcb-coming-soon .fcb-btn { margin-top: 8px; }

/* PDP trust strip — 2x2 chip grid above ATC */
.fcb-pdp-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  padding: 14px; margin: 16px 0; background: var(--fcb-surface);
  border: 1px solid var(--fcb-line); border-radius: var(--fcb-r-card); }
.fcb-pdp-trust > div { display: flex; flex-direction: column; gap: 2px; padding: 4px 8px; }
.fcb-pdp-trust b { font-size: 13px; color: var(--fcb-ink); font-weight: 700; }
.fcb-pdp-trust span { font-size: 11px; color: var(--fcb-muted); letter-spacing: .02em; }

/* PDP FAQ accordion */
.fcb-pdp-faq { max-width: 780px; margin: 48px auto; padding: 0 var(--fcb-gutter); }
.fcb-pdp-faq h2 { font-family: var(--fcb-font-display); font-style: italic;
  font-size: clamp(26px, 3.4vw, 36px); text-align: center; margin: 0 0 20px; color: var(--fcb-ink); }
.fcb-pdp-faq details { border-bottom: 1px solid var(--fcb-line); padding: 14px 0; }
.fcb-pdp-faq summary { list-style: none; cursor: pointer;
  font-family: var(--fcb-font-body); font-weight: 500; font-size: 15px; color: var(--fcb-ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.fcb-pdp-faq summary::-webkit-details-marker { display: none; }
.fcb-pdp-faq summary::after { content: '+'; color: var(--fcb-accent-ink);
  font-size: 24px; font-weight: 300; transition: transform var(--fcb-t-base) var(--fcb-ease); }
.fcb-pdp-faq details[open] summary::after { transform: rotate(45deg); }
.fcb-pdp-faq details > div { margin-top: 8px; color: var(--fcb-ink-2);
  font-size: 14px; line-height: 1.65; }
.fcb-pdp-faq details > div a { color: var(--fcb-accent-ink); font-weight: 500; border-bottom: 1px solid var(--fcb-accent-soft); }

/* Contact form */
.fcb-contact-form { display: flex; flex-direction: column; gap: 14px;
  max-width: 560px; margin: 20px 0 40px;
  background: var(--fcb-surface); border: 1px solid var(--fcb-line);
  border-radius: var(--fcb-r-card); padding: 24px; box-shadow: var(--fcb-shadow-soft); }
.fcb-contact-form label { display: block; font-size: 12px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--fcb-muted); font-weight: 600; }
.fcb-contact-form input, .fcb-contact-form textarea {
  display: block; width: 100%; margin-top: 6px;
  padding: 12px 14px; border: 1px solid var(--fcb-line-2); border-radius: 6px;
  background: var(--fcb-bg); color: var(--fcb-ink); font-family: var(--fcb-font-body); font-size: 14px;
  transition: border-color var(--fcb-t-fast) var(--fcb-ease); }
.fcb-contact-form input:focus, .fcb-contact-form textarea:focus {
  outline: 2px solid var(--fcb-accent); outline-offset: 1px; border-color: transparent; }
.fcb-contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .fcb-contact-form__row { grid-template-columns: 1fr; } }
.fcb-contact-form button { margin-top: 8px; }
.fcb-contact-success { padding: 16px 20px; margin: 16px 0; background: var(--fcb-accent-soft);
  border-left: 4px solid var(--fcb-accent); border-radius: 6px;
  font-family: var(--fcb-font-display); font-style: italic; color: var(--fcb-ink); }
.fcb-contact-error { padding: 12px 16px; margin: 16px 0; background: #F7E6E2;
  border-left: 4px solid var(--fcb-sale); border-radius: 6px; font-size: 14px; }

/* --- Social triggers: live viewer chip on PDP --- */
.fcb-live-viewer { display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; margin: 10px 0;
  background: var(--fcb-primary-soft); color: var(--fcb-primary-ink);
  border-radius: var(--fcb-r-pill);
  font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.fcb-live-viewer__dot { width: 6px; height: 6px; border-radius: 50%;
  background: var(--fcb-success); box-shadow: 0 0 0 0 rgba(110,133,112,.5);
  animation: fcb-pulse 1.8s ease-out infinite; }
@keyframes fcb-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(110,133,112,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(110,133,112,0); }
  100% { box-shadow: 0 0 0 0 rgba(110,133,112,0); }
}

/* --- Return-visit toast (bottom, slide-in) --- */
.fcb-return-toast { position: fixed; left: 12px; right: 12px;
  bottom: calc(var(--fcb-bottom-nav-h) + env(safe-area-inset-bottom, 0) + 12px);
  z-index: 60; display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: var(--fcb-surface); color: var(--fcb-ink);
  border: 1px solid var(--fcb-line); border-radius: var(--fcb-r-card);
  box-shadow: var(--fcb-shadow-pop);
  transform: translateY(150%); opacity: 0;
  transition: transform .35s var(--fcb-ease-emphasized), opacity .35s var(--fcb-ease); }
.fcb-return-toast.is-in { transform: translateY(0); opacity: 1; }
.fcb-return-toast__body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.fcb-return-toast__body b { font-family: var(--fcb-font-display); font-style: italic;
  font-size: 15px; color: var(--fcb-primary); }
.fcb-return-toast__body span { font-size: 12px; color: var(--fcb-muted); }
.fcb-return-toast .fcb-btn { padding: 8px 14px; font-size: 12px; white-space: nowrap; }
.fcb-return-toast__x { background: transparent; border: 0; color: var(--fcb-muted);
  font-size: 22px; line-height: 1; padding: 2px 6px; cursor: pointer; }
.fcb-return-toast__x:hover { color: var(--fcb-ink); }
@media (min-width: 700px) {
  .fcb-return-toast { left: auto; right: 20px; max-width: 420px; bottom: 20px; }
}

/* --- Free-ship progress toast (in cart drawer / floating) --- */
.fcb-ship-progress { display: flex; flex-direction: column; gap: 6px;
  padding: 10px 14px; margin: 8px 0;
  background: var(--fcb-accent-soft); color: var(--fcb-accent-ink);
  border-radius: var(--fcb-r-card); font-size: 12px; font-weight: 500; }
.fcb-ship-progress__bar { height: 4px; background: rgba(184,146,90,.25); border-radius: 999px; overflow: hidden; }
.fcb-ship-progress__fill { height: 100%; background: var(--fcb-accent);
  width: 0%; transition: width .35s var(--fcb-ease); }
.fcb-ship-progress__done { color: var(--fcb-success); font-weight: 600; }

