/* =====================================================================
   BAUWABOX - GLOBAL DESIGN SYSTEM
   ---------------------------------------------------------------------
   The single custom CSS layer for the site. Extracted verbatim from the
   approved BauwaBox designs (Homepage / Shop / Product / Cart / Checkout
   / Order Complete .dc.html), then extended with the global header and
   footer implementation.

   Sections:
     1.  Self-hosted fonts
     2.  Tokens (:root)
     3.  Base + typography
     4.  Layout helpers
     5.  Buttons
     6.  Cards, pills, badges
     7.  Form controls
     8.  Dark editorial sections
     9.  Announcement bar
     10. Global header + mobile drawer
     11. Global footer
     12. WooCommerce overrides
     13. Accessibility + reduced motion

   Everything is prefixed .bb- or scoped to CSS variables so it will not
   collide with plugin styles. Do NOT put product data here.
   ===================================================================== */

/* =====================================================================
   1. SELF-HOSTED FONTS
   Variable woff2, latin subset, served from this theme. Deliberately not
   a Google Fonts <link>: avoids a third-party request on every page load
   (Core Web Vitals) and keeps visitor IPs out of a third party's logs.
   ===================================================================== */
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../fonts/bricolage-grotesque.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/manrope.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* =====================================================================
   2. TOKENS
   ===================================================================== */
:root {
  /* ---- Brand core ---- */
  --bb-cream:      #FBF6EE;  /* page background              */
  --bb-ink:        #241E1A;  /* primary text / dark sections */
  --bb-primary:    #C0492E;  /* terracotta, primary CTA      */
  --bb-primary-dk: #A83D24;  /* CTA hover                    */
  --bb-link:       #B8432A;  /* links                        */
  --bb-link-hover: #8F3220;
  --bb-marigold:   #EBA23A;  /* accent / highlights          */

  /* ---- Neutrals ---- */
  --bb-card:       #FFFFFF;
  --bb-soft:       #F4EAD9;  /* soft band / chips            */
  --bb-border:     #EDE2D1;  /* card + hairline borders      */
  --bb-border-2:   #E4D8C6;  /* controls / secondary btn     */
  --bb-field:      #FBF9F4;  /* form field background        */
  --bb-text:       #5A5047;  /* body copy                    */
  --bb-text-soft:  #6B6157;
  --bb-muted:      #8A7E70;  /* meta / captions              */

  /* ---- Header specific ---- */
  --bb-header-bg:     rgba(251, 246, 238, .88);
  --bb-header-border: #ECE0CE;
  --bb-header-hover:  #F3E9D8;
  --bb-nav-ink:       #3B342E;

  /* ---- Dark editorial sections ---- */
  --bb-dark:       #241E1A;
  --bb-dark-green: #2E4A44;  /* Parent Corner                */
  --bb-dark-warm:  #1C1815;  /* Weekend series               */
  --bb-on-dark:    #F6ECD9;
  --bb-on-dark-2:  #C9BDAB;
  --bb-dark-rule:  #3A322B;

  /* ---- Six category "worlds" (accent / tint) ---- */
  --bb-play:       #E5603A;  --bb-play-tint:  #FBE3D8;  /* Create & Play    */
  --bb-learn:      #2E9E8F;  --bb-learn-tint: #D8EEE9;  /* Learn & Grow     */
  --bb-school:     #3D5CC2;  --bb-school-tint:#DEE3F7;  /* School Life      */
  --bb-celebrate:  #D98A1F;  --bb-celeb-tint: #FBEBCF;  /* Celebrate        */
  --bb-family:     #A2497F;  --bb-family-tint:#F3DDEC;  /* Family Life      */
  --bb-travel:     #5C9B45;  --bb-travel-tint:#E1EFD6;  /* Explore & Travel */
  --bb-free:       #1F7A6D;  --bb-free-tint:  #DCEFE9;  /* Freebies (teal)  */
  --bb-free-ink:   #173B36;

  /* ---- Type ---- */
  --bb-font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --bb-font-body:    'Manrope', system-ui, sans-serif;

  /* ---- Radius ---- */
  --bb-r-pill: 99px;
  --bb-r-card: 22px;
  --bb-r-lg:   24px;
  --bb-r-btn:  14px;
  --bb-r-sm:   12px;

  /* ---- Layout ---- */
  --bb-maxw:    1280px;
  --bb-gutter:  clamp(18px, 4vw, 44px);
  --bb-section: clamp(44px, 6vw, 88px);
  --bb-header-h: 70px;

  /* ---- Shadows ---- */
  --bb-shadow-card: 0 20px 38px rgba(80, 50, 30, .13);
  --bb-shadow-cta:  0 10px 22px rgba(192, 73, 46, .28);
  --bb-shadow-soft: 0 16px 40px rgba(80, 50, 30, .08);
}

/* =====================================================================
   3. BASE + TYPOGRAPHY
   Reset selectors are wrapped in :where() so they carry zero specificity:
   they neutralise UA defaults but never beat a component rule.
   ===================================================================== */
*, *::before, *::after { box-sizing: border-box; }

:where(html, body) { margin: 0; padding: 0; }

body {
  font-family: var(--bb-font-body);
  color: var(--bb-ink);
  background: var(--bb-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

:where(h1, h2, h3, h4, h5, h6) { margin: 0 0 .5em; }
:where(p, ul, ol) { margin: 0 0 1em; }

h1, h2, h3, h4, .bb-display {
  font-family: var(--bb-font-display);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.04;
  color: var(--bb-ink);
}
h1 { font-size: clamp(32px, 5.2vw, 68px); letter-spacing: -.03em; }
h2 { font-size: clamp(28px, 4.4vw, 50px); }
h3 { font-size: clamp(20px, 2.6vw, 30px); }
h4 { font-size: clamp(17px, 1.9vw, 21px); }

p, li {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.6;
  color: var(--bb-text);
  text-wrap: pretty;
}

a { color: var(--bb-link); text-decoration: none; }
a:hover { color: var(--bb-link-hover); }

::selection { background: #F3D9B0; }

img, svg, video { max-width: 100%; height: auto; }

.bb-eyebrow {
  font-family: var(--bb-font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--bb-link);
  letter-spacing: .02em;
  text-transform: uppercase;
}

/* Visually hidden, still read by screen readers */
.bb-sr-only, .screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* Skip link */
.bb-skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--bb-ink); color: var(--bb-on-dark);
  padding: 12px 18px; border-radius: 0 0 var(--bb-r-sm) 0; font-weight: 700;
}
.bb-skip-link:focus { left: 0; color: var(--bb-on-dark); }

/* =====================================================================
   4. LAYOUT HELPERS
   One shared content-width container used by every section, so the header,
   body and footer all align on the same left edge.
   ===================================================================== */
.bb-container {
  max-width: var(--bb-maxw);
  margin-inline: auto;
  padding-inline: var(--bb-gutter);
}
.bb-section { padding-block: var(--bb-section); }

/* =====================================================================
   5. BUTTONS
   ===================================================================== */
.bb-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--bb-font-body); font-weight: 800; font-size: 16px;
  padding: 15px 26px; border-radius: var(--bb-r-pill); border: none; cursor: pointer;
  background: var(--bb-primary); color: #fff; box-shadow: var(--bb-shadow-cta);
  transition: background .15s ease, transform .15s ease;
  text-align: center; line-height: 1.2;
}
.bb-btn:hover { background: var(--bb-primary-dk); color: #fff; }
.bb-btn:active { transform: translateY(1px); }
.bb-btn--block { width: 100%; }
.bb-btn--secondary {
  background: var(--bb-card); color: var(--bb-ink);
  border: 1.5px solid var(--bb-border-2); box-shadow: none;
}
.bb-btn--secondary:hover { border-color: var(--bb-primary); color: var(--bb-primary); background: var(--bb-card); }
.bb-btn--dark { background: var(--bb-ink); color: var(--bb-on-dark); box-shadow: none; }
.bb-btn--dark:hover { background: var(--bb-primary); color: #fff; }

/* Text link CTA with the marigold underline used across the site */
.bb-link-cta {
  font-weight: 800; color: var(--bb-ink);
  border-bottom: 2px solid var(--bb-marigold); padding-bottom: 2px;
}
.bb-link-cta:hover { color: var(--bb-primary); }

/* =====================================================================
   6. CARDS, PILLS, BADGES
   ===================================================================== */
.bb-card-el {
  background: var(--bb-card); border: 1px solid var(--bb-border);
  border-radius: var(--bb-r-card); overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.bb-card-el:hover { transform: translateY(-6px); box-shadow: var(--bb-shadow-card); }

.bb-panel {
  background: var(--bb-card); border: 1px solid var(--bb-border);
  border-radius: var(--bb-r-card); box-shadow: var(--bb-shadow-soft);
}

.bb-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; padding: 5px 11px;
  border-radius: var(--bb-r-pill); background: var(--bb-soft); color: var(--bb-ink);
}
.bb-badge-new     { background: var(--bb-ink); color: var(--bb-on-dark); }
.bb-badge-free    { background: var(--bb-free-ink); color: var(--bb-free-tint); }
.bb-badge-digital { background: var(--bb-learn-tint); color: var(--bb-free); }

/* =====================================================================
   7. FORM CONTROLS
   ===================================================================== */
.bb-field {
  width: 100%; height: 52px; padding: 0 18px;
  border-radius: var(--bb-r-pill); border: 1.5px solid var(--bb-border-2);
  background: var(--bb-field); font-family: var(--bb-font-body);
  font-size: 15px; color: var(--bb-ink);
}
.bb-field--boxy { border-radius: var(--bb-r-sm); height: 50px; }
.bb-field::placeholder { color: var(--bb-muted); }

/* =====================================================================
   8. DARK EDITORIAL SECTIONS
   ===================================================================== */
.bb-dark       { background: var(--bb-dark); color: var(--bb-on-dark); }
.bb-dark h1, .bb-dark h2, .bb-dark h3, .bb-dark h4 { color: var(--bb-on-dark); }
.bb-dark p     { color: var(--bb-on-dark-2); }
.bb-dark-green { background: var(--bb-dark-green); color: #EAF3EF; }
.bb-dark-warm  { background: var(--bb-dark-warm); color: var(--bb-on-dark); }

/* =====================================================================
   9. ANNOUNCEMENT BAR
   Copy is editable in Appearance > Customize > BauwaBox. One message per
   line; more than one line rotates via assets/js/bauwabox.js.
   ===================================================================== */
.bb-announce {
  background: var(--bb-ink); color: var(--bb-on-dark);
  font-size: 13.5px; letter-spacing: .01em; text-align: center;
  padding: 9px 16px; min-height: 38px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.bb-announce__spark {
  color: var(--bb-marigold); font-size: 12px;
  animation: bb-spark 3s ease-in-out infinite;
}
.bb-announce__link { color: var(--bb-on-dark); font-weight: 600; }
.bb-announce__link:hover { color: var(--bb-marigold); }
.bb-announce__link.is-swapping { animation: bb-fade .5s ease; }

/* =====================================================================
   10. GLOBAL HEADER + MOBILE DRAWER
   ===================================================================== */
.bb-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--bb-header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bb-header-border);
}
/* Keep the sticky header clear of the WP admin bar */
.admin-bar .bb-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .bb-header { top: 46px; } }

.bb-header__inner {
  max-width: var(--bb-maxw); margin: 0 auto;
  padding-inline: var(--bb-gutter);
  height: var(--bb-header-h);
  display: flex; align-items: center; gap: 18px;
}

/* --- Logo --- */
.bb-logo { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.bb-logo__mark {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--bb-primary); display: grid; place-items: center;
  box-shadow: 0 5px 12px rgba(192, 73, 46, .3);
  transform: rotate(-5deg);
}
.bb-logo__word {
  font-family: var(--bb-font-display); font-weight: 800; font-size: 21px;
  letter-spacing: -.03em; color: var(--bb-ink);
}
.bb-logo__word b { color: var(--bb-primary); font-weight: 800; }
.bb-logo:hover .bb-logo__word { color: var(--bb-ink); }

/* --- Desktop nav --- */
.bb-nav { display: flex; align-items: center; gap: 2px; margin: 0 auto; flex-wrap: nowrap; }
.bb-nav ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.bb-nav li { margin: 0; }
.bb-nav a {
  display: block; font-size: 14.5px; font-weight: 600; color: var(--bb-nav-ink);
  padding: 8px 11px; border-radius: 9px; white-space: nowrap;
  transition: background .15s, color .15s;
}
.bb-nav a:hover,
.bb-nav .current-menu-item > a,
.bb-nav .current-product_cat-ancestor > a {
  background: var(--bb-header-hover); color: var(--bb-primary);
}

/* --- Header icon cluster --- */
.bb-header__actions { display: flex; align-items: center; gap: 6px; flex: 0 0 auto; }
.bb-icon-btn {
  width: 40px; height: 40px; border-radius: 11px; border: none;
  background: transparent; cursor: pointer; display: grid; place-items: center;
  color: var(--bb-nav-ink); transition: background .15s;
}
.bb-icon-btn:hover { background: var(--bb-header-hover); color: var(--bb-primary); }

.bb-cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  height: 40px; padding: 0 15px; border-radius: var(--bb-r-pill); border: none;
  background: var(--bb-ink); color: var(--bb-on-dark);
  font-weight: 700; font-size: 14px; cursor: pointer;
  font-family: var(--bb-font-body);
}
.bb-cart-btn:hover { background: var(--bb-primary); color: #fff; }
.bb-cart-btn__count {
  min-width: 20px; height: 20px; padding: 0 5px; border-radius: var(--bb-r-pill);
  background: var(--bb-marigold); color: var(--bb-ink);
  font-size: 12px; font-weight: 800; display: grid; place-items: center;
}

/* --- Mobile header cluster --- */
.bb-header__mobile { display: none; align-items: center; gap: 6px; margin-left: auto; }
.bb-cart-btn--icon {
  position: relative; width: 42px; height: 42px; padding: 0;
  border-radius: 12px; display: grid; place-items: center;
}
.bb-cart-btn--icon .bb-cart-btn__count {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px; padding: 0 4px; font-size: 11px;
  border: 2px solid var(--bb-cream);
}
.bb-menu-toggle {
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--bb-header-border); background: var(--bb-card);
  display: grid; place-items: center; cursor: pointer; color: var(--bb-ink);
}

/* --- Breakpoint: hamburger takes over before the 8-item nav can overflow --- */
@media (max-width: 1179px) {
  .bb-nav, .bb-header__actions { display: none; }
  .bb-header__mobile { display: flex; }
}

/* --- Mobile drawer --- */
.bb-drawer {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(36, 30, 26, .4);
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  animation: bb-fade .2s ease;
}
.bb-drawer[hidden] { display: none !important; }
.bb-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(88vw, 380px); background: var(--bb-cream);
  box-shadow: -16px 0 40px rgba(36, 30, 26, .2);
  display: flex; flex-direction: column; padding: 20px;
  overflow-y: auto;
}
.bb-drawer__head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px;
}
.bb-drawer__word { font-family: var(--bb-font-display); font-weight: 800; font-size: 19px; }
.bb-drawer__word b { color: var(--bb-primary); font-weight: 800; }
.bb-drawer__close {
  width: 40px; height: 40px; border-radius: 11px;
  border: 1px solid var(--bb-header-border); background: var(--bb-card);
  display: grid; place-items: center; cursor: pointer;
}
.bb-drawer__search {
  display: flex; align-items: center; gap: 8px;
  background: var(--bb-card); border: 1px solid var(--bb-header-border);
  border-radius: var(--bb-r-btn); padding: 11px 14px; margin-bottom: 14px;
  color: var(--bb-muted);
}
.bb-drawer__search input {
  border: none; background: transparent; outline: none; width: 100%;
  font-family: var(--bb-font-body); font-size: 14.5px; color: var(--bb-ink);
}
.bb-drawer__nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.bb-drawer__nav a {
  font-family: var(--bb-font-display); font-weight: 600; font-size: 19px;
  color: var(--bb-ink); padding: 13px 6px;
  border-bottom: 1px solid #F0E6D6;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 44px;
}
.bb-drawer__nav a::after { content: '\2192'; color: var(--bb-primary); }
.bb-drawer__foot { margin-top: auto; display: flex; gap: 10px; padding-top: 16px; }
.bb-drawer__foot a {
  flex: 1; text-align: center; border-radius: 12px; padding: 12px;
  font-weight: 700; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.bb-drawer__foot .is-secondary {
  background: var(--bb-card); border: 1px solid var(--bb-header-border); color: var(--bb-ink);
}
.bb-drawer__foot .is-primary { background: var(--bb-primary); color: #fff; }

/* Header search panel */
.bb-search-panel {
  border-bottom: 1px solid var(--bb-header-border);
  background: var(--bb-cream);
}
.bb-search-panel[hidden] { display: none !important; }
.bb-search-panel form {
  max-width: var(--bb-maxw); margin: 0 auto;
  padding: 14px var(--bb-gutter); display: flex; gap: 10px;
}

body.bb-no-scroll { overflow: hidden; }

/* =====================================================================
   11. GLOBAL FOOTER
   ===================================================================== */
.bb-footer {
  background: var(--bb-dark); color: var(--bb-on-dark-2);
  padding: clamp(44px, 6vw, 72px) 0 32px;
}
.bb-footer__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 32px 24px; padding-bottom: 36px;
  border-bottom: 1px solid var(--bb-dark-rule);
}
.bb-footer__brand { min-width: 210px; }
.bb-footer__logo { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.bb-footer__logo .bb-logo__mark { box-shadow: none; }
.bb-footer__word {
  font-family: var(--bb-font-display); font-weight: 800; font-size: 20px; color: var(--bb-on-dark);
}
.bb-footer__word b { color: var(--bb-play); font-weight: 800; }
.bb-footer__tag {
  font-size: 14px; line-height: 1.6; max-width: 32ch; margin: 0 0 16px; color: var(--bb-on-dark-2);
}
.bb-footer__tag strong { color: var(--bb-on-dark); font-weight: 700; }
.bb-socials { display: flex; gap: 8px; }
.bb-socials a {
  width: 38px; height: 38px; border-radius: 11px; background: var(--bb-dark-rule);
  display: grid; place-items: center; color: var(--bb-on-dark);
  font-size: 12px; font-weight: 700; transition: background .15s;
}
.bb-socials a:hover { background: var(--bb-primary); color: #fff; }

.bb-footer__col h2 {
  font-family: var(--bb-font-display); font-weight: 800; font-size: 15px;
  color: var(--bb-on-dark); margin: 0 0 14px; letter-spacing: 0; line-height: 1.2;
}
.bb-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.bb-footer__col a { font-size: 14px; color: var(--bb-on-dark-2); }
.bb-footer__col a:hover { color: var(--bb-marigold); }

.bb-footer__legal {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px; padding-top: 24px; font-size: 13px; color: var(--bb-muted);
}
.bb-footer__legal-links { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.bb-footer__legal ul { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; list-style: none; margin: 0; padding: 0; }
.bb-footer__legal a { color: var(--bb-muted); }
.bb-footer__legal a:hover { color: var(--bb-marigold); }

/* --- Fallback templates (blog list, single post, prose pages) --- */
.bb-post-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-bottom: 40px;
}
.bb-post-card { overflow: hidden; }
.bb-post-card__media img { width: 100%; height: 200px; object-fit: cover; display: block; }
.bb-post-card__body { padding: 22px; }
.bb-post-card__body h2 { font-size: clamp(19px, 2.2vw, 24px); margin-bottom: 8px; }
.bb-post-card__body h2 a { color: var(--bb-ink); }
.bb-post-card__body h2 a:hover { color: var(--bb-primary); }
.bb-post-hero img { border-radius: var(--bb-r-card); }

.bb-prose { max-width: 760px; }
.bb-prose > * + * { margin-top: 1em; }
.bb-prose h2, .bb-prose h3 { margin-top: 1.6em; }
.bb-prose img { border-radius: var(--bb-r-sm); }
.bb-prose blockquote {
  margin: 1.6em 0; padding: 4px 0 4px 20px;
  border-left: 3px solid var(--bb-marigold); border-radius: 0;
  font-size: clamp(17px, 2vw, 20px); color: var(--bb-ink);
}
/* Cart, checkout and account pages need the full width, not the prose column */
.woocommerce-cart .bb-prose,
.woocommerce-checkout .bb-prose,
.woocommerce-account .bb-prose { max-width: none; }

.bb-page-links, .pagination, .nav-links {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.nav-links .page-numbers {
  display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px;
  border-radius: var(--bb-r-sm); border: 1px solid var(--bb-border);
  background: var(--bb-card); color: var(--bb-ink); font-weight: 700;
}
.nav-links .page-numbers.current,
.nav-links .page-numbers:hover { background: var(--bb-primary); color: #fff; border-color: var(--bb-primary); }

/* =====================================================================
   12. WOOCOMMERCE OVERRIDES
   Light global layer only: page-level shop/product/cart/checkout designs
   are implemented in their own templates in a later pass.
   ===================================================================== */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--bb-font-body); font-weight: 800; font-size: 16px;
  padding: 15px 26px; border-radius: var(--bb-r-pill); border: none;
  background: var(--bb-primary); color: #fff; box-shadow: var(--bb-shadow-cta);
  line-height: 1.2; text-transform: none;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background: var(--bb-primary-dk); color: #fff;
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
  border-top-color: var(--bb-primary);
  background: var(--bb-card);
  border-radius: var(--bb-r-sm);
  font-family: var(--bb-font-body);
}
.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before { color: var(--bb-primary); }

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-page form .form-row input.input-text {
  border-radius: var(--bb-r-sm); border: 1.5px solid var(--bb-border-2);
  background: var(--bb-field); font-family: var(--bb-font-body);
  font-size: 15px; color: var(--bb-ink); padding: 13px 16px; min-height: 50px;
}

.woocommerce .price, .woocommerce span.amount {
  font-family: var(--bb-font-display); font-weight: 800; color: var(--bb-ink);
}

/* WooCommerce content sits inside the shared container */
.bb-main .woocommerce { max-width: var(--bb-maxw); margin-inline: auto; }

/* =====================================================================
   13. ACCESSIBILITY + REDUCED MOTION
   ===================================================================== */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--bb-primary);
  outline-offset: 2px;
  border-radius: 4px;
}
.bb-field:focus-visible, .bb-select:focus-visible {
  outline: 2px solid var(--bb-primary); outline-offset: 2px;
}

/* Touch targets stay at 44px on small screens */
@media (max-width: 780px) {
  .bb-icon-btn, .bb-menu-toggle, .bb-cart-btn--icon, .bb-drawer__close { min-width: 44px; min-height: 44px; }
}

@keyframes bb-spark {
  0%, 100% { opacity: .25; transform: scale(.7) rotate(0deg); }
  50%      { opacity: 1;   transform: scale(1) rotate(20deg); }
}
@keyframes bb-fade {
  0%   { opacity: 0; transform: translateY(4px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =====================================================================
   14. PAGE COMPOSITIONS
   ---------------------------------------------------------------------
   Homepage (sections C-N), shop archive and single product. Reproduced
   from the approved designs. Section numbering matches the design files.
   ===================================================================== */

/* --- Shared section furniture --- */
.bb-sechead {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 14px; margin-bottom: 30px;
}
.bb-sechead h2 { margin: 6px 0 4px; }
.bb-sechead p { margin: 0; color: var(--bb-text-soft); font-size: 16px; }
.bb-sechead.is-centred { display: block; text-align: center; max-width: 660px; margin: 0 auto 30px; }

.bb-spark { color: var(--bb-marigold); animation: bb-spark 3s ease-in-out infinite; }
.bb-rule { display: block; height: 8px; background: #F3E7D6; border-radius: 99px; margin-bottom: 7px; }
.bb-rule.is-short { width: 70%; }

.bb-draft-notice {
  max-width: var(--bb-maxw); margin: 16px auto 0; padding: 14px 18px;
  background: var(--bb-celebrate); color: #241E1A;
  border-radius: var(--bb-r-sm); font-size: 14px; line-height: 1.5;
  margin-inline: var(--bb-gutter);
}
.bb-draft-notice strong { display: block; font-family: var(--bb-font-display); }

.bb-btn--marigold { background: var(--bb-marigold); color: var(--bb-ink); box-shadow: none; }
.bb-btn--marigold:hover { background: #f2b556; color: var(--bb-ink); }
.bb-btn--cream { background: var(--bb-on-dark); color: #22332F; box-shadow: none; }
.bb-btn--cream:hover { background: #fff; color: #22332F; }
.bb-btn--free { background: var(--bb-free-ink); color: var(--bb-free-tint); box-shadow: none; white-space: nowrap; }
.bb-btn--free:hover { background: #0f2b27; color: var(--bb-free-tint); }

/* =====================================================================
   C. HERO
   ===================================================================== */
.bb-hero { padding-block: clamp(30px, 5vw, 64px) clamp(24px, 4vw, 48px); position: relative; }
.bb-hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.bb-hero__copy { position: relative; z-index: 2; }
.bb-hero__spark { position: absolute; top: 8%; right: 44%; color: var(--bb-learn); font-size: 18px; }

.bb-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #F3E4CC; color: var(--bb-link-hover);
  font-weight: 700; font-size: 13px; padding: 7px 14px;
  border-radius: var(--bb-r-pill); margin-bottom: 22px;
}
.bb-hero__title { font-size: clamp(40px, 6.4vw, 74px); line-height: .98; letter-spacing: -.03em; margin: 0 0 8px; }
.bb-hero__accent { position: relative; display: inline-block; color: var(--bb-primary); }
.bb-hero__accent svg { position: absolute; left: 0; bottom: -6px; }
.bb-hero__lede { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.55; max-width: 40ch; margin: 22px 0 30px; }
.bb-hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.bb-hero__trust {
  display: flex; flex-wrap: wrap; gap: 14px 24px; list-style: none; margin: 0; padding: 0;
  color: var(--bb-text-soft); font-size: 14px; font-weight: 600;
}
.bb-hero__trust li { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; }

.bb-hero__art { position: relative; min-height: clamp(380px, 44vw, 520px); z-index: 1; }
.bb-hero__wash {
  position: absolute; top: 8%; left: 2%; width: 78%; height: 78%;
  background: radial-gradient(circle at 55% 45%, #F6E3C6, transparent 68%);
  border-radius: 46% 54% 50% 50%;
}
.bb-hero__ring {
  position: absolute; top: 16%; right: 8%; width: 150px; height: 150px;
  border: 2px dashed #E7C79A; border-radius: 99px; opacity: .7;
}
.bb-hero__centre { position: absolute; left: 22%; top: 20%; width: 56%; transform: rotate(-2deg); z-index: 3; animation: bb-float 7s ease-in-out infinite; }
.bb-hero__page { position: absolute; border-radius: 14px; box-shadow: 0 10px 22px rgba(80,50,30,.12); }
.bb-hero__page--3 { left: 8%; top: -6%; width: 88%; height: 96%; background: #F3E7D3; transform: rotate(-9deg); }
.bb-hero__page--2 { left: 4%; top: -3%; width: 92%; height: 98%; background: #FBF3E4; transform: rotate(-4deg); }
.bb-hero__card {
  position: relative; background: #fff; border-radius: 14px; padding: 16px;
  box-shadow: 0 22px 44px rgba(80,50,30,.2); border: 1px solid #EFE4D2;
}
.bb-hero__tape { position: absolute; top: -9px; left: 20px; width: 60px; height: 16px; background: var(--bb-marigold); opacity: .85; border-radius: 3px; transform: rotate(-4deg); }
.bb-hero__cardlabel { display: block; font-family: var(--bb-font-display); font-weight: 800; font-size: 13px; color: var(--bb-play); margin-bottom: 12px; letter-spacing: .02em; }
.bb-hero__cardgrid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 10px; }
.bb-hero__chips { display: flex; gap: 8px; margin-top: 7px; }
.bb-hero__chips span { width: 38px; height: 38px; border-radius: 99px; border: 2px dashed; }
.bb-hero__icon { background: #F7EFE0; border-radius: 9px; display: grid; place-items: center; }

.bb-hero__planner {
  position: absolute; top: 3%; right: 1%; width: 38%; transform: rotate(6deg); z-index: 4;
  background: var(--bb-ink); color: var(--bb-on-dark); border-radius: 13px; padding: 14px;
  box-shadow: 0 18px 34px rgba(80,50,30,.24); animation: bb-float2 6s ease-in-out infinite .6s;
}
.bb-hero__plannerlabel { display: block; font-family: var(--bb-font-display); font-weight: 700; font-size: 11px; color: var(--bb-marigold); margin-bottom: 10px; }
.bb-hero__plannergrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.bb-hero__plannergrid i { height: 12px; background: var(--bb-dark-rule); border-radius: 3px; }

.bb-hero__bingo {
  position: absolute; bottom: 2%; left: 2%; width: 34%; transform: rotate(-7deg); z-index: 5;
  background: var(--bb-marigold); border-radius: 13px; padding: 13px;
  box-shadow: 0 16px 30px rgba(80,50,30,.2); animation: bb-float 6.5s ease-in-out infinite .3s;
}
.bb-hero__bingolabel { display: block; font-family: var(--bb-font-display); font-weight: 700; font-size: 11px; color: #5A3B10; margin-bottom: 8px; }
.bb-hero__bingogrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.bb-hero__bingogrid i { aspect-ratio: 1; background: #F7E4C0; border-radius: 5px; }

.bb-hero__festival {
  position: absolute; bottom: 10%; right: 4%; width: 24%; transform: rotate(5deg); z-index: 6;
  background: #fff; border: 1px solid #EFE4D2; border-radius: 11px; padding: 11px;
  box-shadow: 0 12px 24px rgba(80,50,30,.16); animation: bb-float2 5.5s ease-in-out infinite .9s; text-align: center;
}
.bb-hero__dot { display: inline-block; width: 16px; height: 16px; border-radius: 99px; background: var(--bb-primary); animation: bb-glow 2.4s ease-in-out infinite; }
.bb-hero__festivallabel { display: block; font-family: var(--bb-font-display); font-weight: 700; font-size: 10px; color: var(--bb-link-hover); margin-top: 6px; }
.bb-hero__spark2 { position: absolute; top: 38%; left: 0; font-size: 22px; z-index: 7; }
.bb-hero__spark3 { position: absolute; bottom: 26%; right: 0; color: var(--bb-learn); font-size: 15px; z-index: 7; animation-delay: .7s; }

.bb-breadth {
  margin-top: clamp(28px, 4vw, 48px); border-top: 1px solid var(--bb-header-rule, #ECE0CE);
  padding-top: 20px; display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center;
}
.bb-breadth__label { font-size: 12px; font-weight: 800; letter-spacing: .06em; color: var(--bb-muted); }
.bb-breadth__item { font-family: var(--bb-font-display); font-weight: 700; font-size: 14px; color: var(--bb-nav-ink); }

@keyframes bb-float { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-12px) rotate(-2deg); } }
@keyframes bb-float2 { 0%,100% { transform: translateY(0) rotate(6deg); } 50% { transform: translateY(-8px) rotate(6deg); } }
@keyframes bb-glow { 0%,100% { opacity: .5; } 50% { opacity: 1; } }

/* =====================================================================
   D. CATEGORY BENTO
   ===================================================================== */
.bb-cats { padding-block: clamp(40px, 6vw, 80px); }
.bb-bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(12px, 1.4vw, 18px); }
.bb-bento__tile {
  position: relative; display: flex; flex-direction: column; min-height: 250px;
  grid-column: span 2; padding: 24px; border-radius: var(--bb-r-lg);
  border: 1px solid var(--bb-border); background: var(--bb-card); overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease; color: var(--bb-ink);
}
.bb-bento__tile.is-feature { grid-column: span 3; min-height: 320px; }
.bb-bento__tile:hover { transform: translateY(-6px); box-shadow: var(--bb-shadow-card); color: var(--bb-ink); }
.bb-bento__blob { position: absolute; top: -46px; right: -46px; width: 150px; height: 150px; border-radius: 99px; }
.bb-bento__rings {
  position: absolute; right: 16px; bottom: 14px; width: 120px; height: 120px;
  border: 2px solid; border-radius: 99px; display: grid; place-items: center;
}
.bb-bento__rings > span { width: 78px; height: 78px; border: 2px solid; border-radius: 99px; display: grid; place-items: center; }
.bb-bento__rings > span > span { width: 34px; height: 34px; border-radius: 99px; }
.bb-bento__mark {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  color: #fff; font-family: var(--bb-font-display); font-weight: 800; font-size: 22px;
  position: relative; z-index: 1;
}
.bb-bento__tile h3 { font-size: 21px; letter-spacing: -.02em; margin: 16px 0 6px; position: relative; z-index: 1; }
.bb-bento__tile.is-feature h3 { font-size: clamp(24px, 2.4vw, 30px); }
.bb-bento__tagline { font-weight: 700; font-size: 14px; margin: 0 0 6px; position: relative; z-index: 1; }
.bb-bento__desc { font-size: 14px; line-height: 1.5; margin: 0; max-width: 34ch; position: relative; z-index: 1; }
.bb-bento__cta { margin-top: auto; padding-top: 16px; font-weight: 800; position: relative; z-index: 1; }

.bb-travelbanner {
  margin-top: clamp(12px, 1.4vw, 18px); position: relative;
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px; justify-content: space-between;
  border-radius: var(--bb-r-lg); padding: clamp(24px, 3vw, 38px);
  background: var(--bb-travel-tint); border: 1px solid #CFE4BE; overflow: hidden;
  transition: transform .18s; color: #2E4A1E;
}
.bb-travelbanner:hover { transform: translateY(-4px); color: #2E4A1E; }
.bb-travelbanner__copy { position: relative; z-index: 1; max-width: 44ch; }
.bb-travelbanner__mark {
  width: 48px; height: 48px; border-radius: 14px; background: var(--bb-travel); color: #fff;
  display: grid; place-items: center; font-family: var(--bb-font-display); font-weight: 800;
  font-size: 22px; margin-bottom: 14px;
}
.bb-travelbanner h3 { font-size: clamp(24px, 3vw, 34px); letter-spacing: -.02em; margin: 0 0 6px; color: #2E4A1E; }
.bb-travelbanner__tagline { font-weight: 700; color: var(--bb-travel); margin: 0 0 4px; }
.bb-travelbanner__desc { color: #4A5B3E; font-size: 15px; line-height: 1.5; margin: 0; }
.bb-travelbanner__route { position: relative; z-index: 1; display: flex; align-items: center; gap: 10px; min-width: 200px; flex: 1; justify-content: center; padding: 10px 0; }
.bb-travelbanner__pin { width: 14px; height: 14px; border-radius: 99px; background: var(--bb-travel); }
.bb-travelbanner__dash { flex: 1; height: 2px; max-width: 80px; background: repeating-linear-gradient(90deg, var(--bb-travel) 0 8px, transparent 8px 16px); }
.bb-travelbanner__plane { width: 36px; height: 36px; border-radius: 10px; background: #fff; border: 1px solid #CFE4BE; display: grid; place-items: center; }
.bb-travelbanner__flag { width: 14px; height: 14px; border-radius: 3px; background: var(--bb-marigold); }
.bb-travelbanner__cta { position: relative; z-index: 1; font-weight: 800; white-space: nowrap; }

/* =====================================================================
   E. SEASONAL SPOTLIGHT
   ===================================================================== */
.bb-seasonal { padding-block: clamp(48px, 6vw, 96px); position: relative; overflow: hidden; }
.bb-seasonal__inner { position: relative; z-index: 1; }
.bb-seasonal__s1 { position: absolute; top: 8%; left: 5%; font-size: 20px; }
.bb-seasonal__s2 { position: absolute; bottom: 12%; left: 12%; color: var(--bb-play); font-size: 26px; animation-delay: .5s; }
.bb-seasonal__burst {
  position: absolute; top: -80px; right: -80px; width: 340px; height: 340px;
  border: 2px solid rgba(235,162,58,.25); border-radius: 99px; display: grid; place-items: center;
}
.bb-seasonal__burst > span { width: 230px; height: 230px; border: 2px dashed rgba(235,162,58,.22); border-radius: 99px; display: grid; place-items: center; }
.bb-seasonal__burst > span > span { width: 120px; height: 120px; border: 2px solid rgba(192,73,46,.3); border-radius: 99px; }

.bb-seasonal__lights { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; opacity: .9; }
.bb-seasonal__bulb { width: 9px; height: 9px; border-radius: 99px; animation-name: bb-glow; animation-timing-function: ease-in-out; animation-iteration-count: infinite; }
.bb-seasonal__wire { flex: 1; height: 1px; background: var(--bb-dark-rule); max-width: 40px; }
.bb-seasonal__eyebrow {
  display: block; font-family: var(--bb-font-display); font-weight: 700;
  letter-spacing: .06em; font-size: 13px; color: var(--bb-marigold);
  margin-bottom: 16px; text-transform: uppercase;
}
.bb-seasonal__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.bb-seasonal h2 { font-size: clamp(34px, 5vw, 60px); line-height: 1; letter-spacing: -.03em; margin: 0 0 18px; }
.bb-seasonal__body { font-size: 17px; line-height: 1.6; max-width: 44ch; margin: 0 0 28px; }
.bb-seasonal__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; align-items: center; }
.bb-seasonal__secondary { color: var(--bb-on-dark); font-weight: 700; padding: 15px 8px; border-bottom: 2px solid #4a4038; }
.bb-seasonal__secondary:hover { color: var(--bb-marigold); }

.bb-diyas { display: flex; gap: 20px; align-items: flex-end; }
.bb-diya { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.bb-diya i { width: 10px; height: 16px; background: linear-gradient(#FCE9A6, #EBA23A); border-radius: 50% 50% 40% 40%/70% 70% 30% 30%; animation-name: bb-glow; animation-timing-function: ease-in-out; animation-iteration-count: infinite; }
.bb-diya b { width: 34px; height: 14px; background: var(--bb-primary); border-radius: 0 0 18px 18px; }

.bb-seasonal__feature { position: relative; }
.bb-seasonal__stack2 { position: absolute; left: 9%; top: 6%; width: 86%; height: 92%; background: var(--bb-dark-rule); border-radius: 20px; transform: rotate(6deg); }
.bb-seasonal__stack1 { position: absolute; left: 5%; top: 3%; width: 90%; height: 95%; background: #4a4038; border-radius: 20px; transform: rotate(3deg); }
.bb-seasonal__card { position: relative; background: var(--bb-on-dark); color: var(--bb-ink); border-radius: 20px; padding: 22px; box-shadow: 0 30px 60px rgba(0,0,0,.4); }
.bb-seasonal__tape { position: absolute; top: -10px; right: 26px; width: 70px; height: 18px; background: var(--bb-marigold); border-radius: 3px; transform: rotate(3deg); }
.bb-seasonal__cardhead { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.bb-seasonal__boxname { font-family: var(--bb-font-display); font-weight: 800; font-size: 19px; }
.bb-seasonal__live { background: var(--bb-primary); color: #fff; font-size: 11px; font-weight: 800; padding: 5px 11px; border-radius: 99px; animation: bb-glow 2.4s ease-in-out infinite; }
.bb-seasonal__tags { display: flex; flex-wrap: wrap; gap: 7px; }
.bb-seasonal__tags span { font-size: 12px; font-weight: 700; background: #F1E2C6; color: var(--bb-link-hover); padding: 5px 11px; border-radius: 99px; }

.bb-rangoli { display: grid; place-items: center; padding: 12px 0 16px; }
.bb-rangoli > span { width: 120px; height: 120px; border: 3px solid var(--bb-primary); border-radius: 99px; display: grid; place-items: center; position: relative; }
.bb-rangoli > span > span { width: 78px; height: 78px; border: 3px dashed var(--bb-marigold); border-radius: 99px; display: grid; place-items: center; transform: rotate(15deg); }
.bb-rangoli > span > span > span { width: 40px; height: 40px; background: var(--bb-learn); border-radius: 12px; transform: rotate(45deg); }
.bb-rangoli i { position: absolute; width: 10px; height: 10px; border-radius: 99px; background: var(--bb-marigold); }
.bb-rangoli i.t { top: -8px; left: 50%; transform: translateX(-50%); }
.bb-rangoli i.b { bottom: -8px; left: 50%; transform: translateX(-50%); }
.bb-rangoli i.l { left: -8px; top: 50%; transform: translateY(-50%); background: var(--bb-primary); }
.bb-rangoli i.r { right: -8px; top: 50%; transform: translateY(-50%); background: var(--bb-primary); }

.bb-timeline { margin-top: clamp(32px, 4vw, 52px); border-top: 1px solid var(--bb-dark-rule); padding-top: 24px; }
.bb-timeline__label { font-size: 12px; font-weight: 800; letter-spacing: .06em; color: var(--bb-muted); }
.bb-timeline__items { display: flex; flex-wrap: wrap; gap: 18px 12px; margin-top: 16px; align-items: center; }
.bb-timeline__item { display: inline-flex; align-items: center; gap: 12px; }
.bb-timeline__item strong { display: block; font-family: var(--bb-font-display); font-weight: 800; font-size: 17px; color: var(--bb-on-dark); }
.bb-timeline__item em { display: block; font-style: normal; font-size: 12px; color: #9c8f7d; }
.bb-timeline__item i { color: #5a5048; font-size: 18px; font-style: normal; }

/* =====================================================================
   F. FOR RIGHT NOW
   ===================================================================== */
.bb-moments { padding-block: clamp(44px, 6vw, 88px); }
.bb-moments__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 28px; }
.bb-moments__chip {
  font-family: var(--bb-font-display); font-weight: 700; font-size: 15px;
  padding: 11px 18px; border-radius: var(--bb-r-pill); cursor: pointer;
  border: 1.5px solid var(--bb-border-2); background: var(--bb-card);
  color: var(--bb-nav-ink); transition: all .15s; min-height: 44px;
}
.bb-moments__chip:hover { border-color: var(--bb-chip-accent); color: var(--bb-chip-accent); }
.bb-moments__chip.is-active { background: var(--bb-chip-accent); border-color: var(--bb-chip-accent); color: #fff; }

.bb-moment {
  background: var(--bb-card); border: 1px solid var(--bb-border); border-radius: 26px;
  overflow: hidden; box-shadow: 0 18px 44px rgba(80,50,30,.09);
  display: grid; grid-template-columns: 1.1fr .9fr;
}
.bb-moment[hidden] { display: none !important; }
.bb-moment__copy { padding: clamp(24px, 4vw, 46px); }
.bb-moment__flag { display: inline-block; font-weight: 800; font-size: 13px; padding: 6px 13px; border-radius: 99px; margin-bottom: 16px; }
.bb-moment__copy h3 { font-size: clamp(24px, 3vw, 36px); letter-spacing: -.02em; margin: 0 0 12px; }
.bb-moment__copy p { font-size: 16px; line-height: 1.6; margin: 0 0 20px; max-width: 40ch; }
.bb-moment__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.bb-moment__art { display: grid; place-items: center; padding: clamp(24px, 4vw, 46px); min-height: 260px; position: relative; overflow: hidden; }
.bb-moment__art img { border-radius: 14px; box-shadow: 0 18px 34px rgba(80,50,30,.18); }

/* =====================================================================
   G. LEARN & GROW SHELF
   ===================================================================== */
.bb-worlds { background: var(--bb-soft); padding-block: clamp(44px, 6vw, 88px); overflow: hidden; }
.bb-shelf {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 1fr);
  gap: 14px; overflow-x: auto; padding-bottom: 12px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.bb-shelf::-webkit-scrollbar { height: 8px; }
.bb-shelf::-webkit-scrollbar-thumb { background: var(--bb-border-2); border-radius: 99px; }
.bb-shelf::-webkit-scrollbar-track { background: transparent; }
.bb-world {
  scroll-snap-align: start; background: var(--bb-card); border: 1px solid #EADFCC;
  border-radius: var(--bb-r-card); padding: 24px; min-height: 230px;
  display: flex; flex-direction: column; transition: transform .18s; color: var(--bb-ink);
}
.bb-world:hover { transform: translateY(-6px); color: var(--bb-ink); }
.bb-world__head { display: flex; align-items: center; justify-content: space-between; }
.bb-world__mark { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; font-family: var(--bb-font-display); font-weight: 800; font-size: 24px; }
.bb-world__n { font-family: var(--bb-font-display); font-weight: 800; font-size: 34px; line-height: 1; }
.bb-world h3 { font-size: 22px; margin: 16px 0 6px; }
.bb-world p { font-size: 13.5px; line-height: 1.5; margin: 0 0 12px; }
.bb-world__tags { margin-top: auto; display: flex; flex-wrap: wrap; gap: 6px; }
.bb-world__tags span { font-size: 11.5px; font-weight: 700; padding: 4px 9px; border-radius: 99px; }

/* =====================================================================
   H. PARENT CORNER
   ===================================================================== */
.bb-parent { padding-block: clamp(44px, 6vw, 88px); }
.bb-parent__panel { border-radius: 30px; padding: clamp(26px, 4vw, 56px); position: relative; overflow: hidden; }
.bb-parent__ring { position: absolute; top: -60px; right: -40px; width: 220px; height: 220px; border-radius: 99px; border: 2px dashed rgba(127,212,196,.3); }
.bb-parent__spark { position: absolute; top: 18%; right: 14%; color: #7FD4C4; font-size: 18px; }
.bb-parent__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(26px, 4vw, 52px); position: relative; z-index: 1; }
.bb-parent h2 { margin: 8px 0 14px; font-size: clamp(28px, 3.8vw, 44px); letter-spacing: -.02em; color: #EAF3EF; }
.bb-parent p { color: #B7CFC8; font-size: 16px; line-height: 1.6; margin: 0 0 22px; max-width: 42ch; }
.bb-parent__spread {
  margin-top: 26px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 360px;
}
.bb-parent__spreadlabel { display: block; font-size: 10px; font-weight: 800; color: #7FD4C4; margin-bottom: 8px; }
.bb-parent__bar { display: block; height: 7px; background: rgba(255,255,255,.15); border-radius: 99px; margin-bottom: 6px; }
.bb-parent__bar.is-short { width: 70%; }
.bb-parent__bar.is-accent { background: #7FD4C4; width: 50%; }
.bb-parent__spreadgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.bb-parent__spreadgrid i { aspect-ratio: 1; border-radius: 5px; background: rgba(255,255,255,.12); }
.bb-parent__list { display: flex; flex-direction: column; }
.bb-parent__item {
  display: flex; align-items: center; gap: 16px; padding: 16px 4px;
  border-bottom: 1px solid rgba(255,255,255,.12); transition: padding-left .15s; color: inherit;
}
.bb-parent__item:hover { padding-left: 10px; color: inherit; }
.bb-parent__mark { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 11px; background: rgba(127,212,196,.16); color: #7FD4C4; display: grid; place-items: center; font-family: var(--bb-font-display); font-weight: 800; font-size: 16px; }
.bb-parent__text { flex: 1; min-width: 0; }
.bb-parent__text strong { display: block; font-family: var(--bb-font-display); font-weight: 800; font-size: 17px; color: var(--bb-on-dark); }
.bb-parent__text em { display: block; font-style: normal; color: #B7CFC8; font-size: 13px; }
.bb-parent__price { flex: 0 0 auto; font-weight: 800; color: #7FD4C4; font-size: 14px; }

/* =====================================================================
   I. SHOP BY AGE
   ===================================================================== */
.bb-ages { padding-block: clamp(20px, 3vw, 36px) clamp(44px, 6vw, 80px); }
.bb-agestrip { display: flex; flex-wrap: wrap; border-radius: var(--bb-r-lg); overflow: hidden; border: 1px solid var(--bb-border); background: var(--bb-card); }
.bb-agestrip__item {
  flex: 1 1 200px; min-width: 180px; padding: 26px 24px;
  border-left: 1px solid var(--bb-border); min-height: 200px;
  display: flex; flex-direction: column; transition: transform .18s;
}
.bb-agestrip__item:hover { transform: translateY(-4px); }
.bb-agestrip__range { font-family: var(--bb-font-display); font-weight: 800; font-size: clamp(34px, 4vw, 46px); letter-spacing: -.03em; line-height: 1; }
.bb-agestrip__unit { font-weight: 700; font-size: 13px; opacity: .75; margin-top: 2px; }
.bb-agestrip__head { font-family: var(--bb-font-display); font-weight: 800; font-size: 16px; margin-top: 16px; }
.bb-agestrip__desc { font-size: 14px; line-height: 1.5; margin-top: 6px; opacity: .9; }
.bb-agestrip__cta { margin-top: auto; font-weight: 800; padding-top: 16px; }

/* =====================================================================
   J. WEEKEND SERIES
   ===================================================================== */
.bb-weekend { padding-block: clamp(48px, 6vw, 96px); overflow: hidden; position: relative; }
.bb-weekend__spark { position: absolute; top: 10%; left: 6%; font-size: 16px; }
.bb-weekend__grid { display: grid; grid-template-columns: 1fr .85fr; gap: clamp(24px, 4vw, 56px); align-items: center; margin-bottom: 32px; }
.bb-weekend__seal {
  display: inline-grid; place-items: center; width: 76px; height: 76px;
  border: 2px solid var(--bb-marigold); border-radius: 99px; margin-bottom: 18px; transform: rotate(-8deg);
}
.bb-weekend__seal span {
  width: 58px; height: 58px; border: 1px dashed var(--bb-marigold); border-radius: 99px;
  display: grid; place-items: center; text-align: center;
  font-family: var(--bb-font-display); font-weight: 800; font-size: 10px; color: var(--bb-marigold); line-height: 1.1;
}
.bb-weekend h2 { font-size: clamp(34px, 5vw, 58px); line-height: .98; letter-spacing: -.03em; margin: 0 0 14px; }
.bb-weekend p { font-size: 17px; line-height: 1.6; margin: 0 0 26px; max-width: 42ch; }
.bb-weekend__ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.bb-weekend__secondary { color: var(--bb-on-dark); font-weight: 700; padding: 15px 8px; border-bottom: 2px solid var(--bb-dark-rule); }
.bb-weekend__secondary:hover { color: var(--bb-marigold); }
.bb-weekend__covers { position: relative; min-height: 230px; display: grid; place-items: center; }
.bb-weekend__cover { position: absolute; width: 58%; aspect-ratio: .72; border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,.4); }
.bb-weekend__cover--l { background: var(--bb-dark-green); transform: rotate(-10deg) translateX(-40%); }
.bb-weekend__cover--r { background: var(--bb-primary); transform: rotate(9deg) translateX(40%); }
.bb-weekend__cover--m {
  position: relative; width: 60%; background: var(--bb-marigold); box-shadow: 0 26px 50px rgba(0,0,0,.5);
  padding: 20px; display: flex; flex-direction: column; color: var(--bb-dark-warm);
}
.bb-weekend__no { font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.bb-weekend__name { font-family: var(--bb-font-display); font-weight: 800; font-size: clamp(24px, 3vw, 34px); line-height: 1; margin-top: auto; }
.bb-weekend__meta { font-size: 12px; margin-top: 6px; font-weight: 600; }

.bb-shelf--weekend { grid-auto-columns: minmax(200px, 1fr); }
.bb-wknd {
  scroll-snap-align: start; border-radius: 18px; padding: 20px; aspect-ratio: .78;
  display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform .18s;
}
.bb-wknd:hover { transform: translateY(-6px); }
.bb-wknd__blob { position: absolute; top: -20px; right: -20px; width: 90px; height: 90px; border-radius: 99px; }
.bb-wknd__no { font-size: 11px; font-weight: 800; letter-spacing: .06em; opacity: .85; position: relative; z-index: 1; }
.bb-wknd__name { font-family: var(--bb-font-display); font-weight: 800; font-size: 24px; line-height: 1; letter-spacing: -.02em; margin-top: 10px; position: relative; z-index: 1; }
.bb-wknd__desc { font-size: 13px; line-height: 1.5; margin-top: 8px; opacity: .9; position: relative; z-index: 1; }
.bb-wknd__cta { margin-top: auto; font-weight: 800; padding-top: 12px; position: relative; z-index: 1; }

/* =====================================================================
   K. PRODUCT GRID + CARD
   ===================================================================== */
.bb-products { padding-block: clamp(44px, 6vw, 88px); }
.bb-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.bb-tab {
  font-weight: 700; font-size: 14px; padding: 10px 17px; border-radius: var(--bb-r-pill);
  cursor: pointer; border: 1.5px solid var(--bb-border-2); background: var(--bb-card);
  color: var(--bb-nav-ink); transition: all .15s; min-height: 44px;
}
.bb-tab:hover { border-color: var(--bb-ink); }
.bb-tab.is-active { background: var(--bb-ink); border-color: var(--bb-ink); color: var(--bb-on-dark); }

.bb-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: clamp(14px, 1.6vw, 20px); }
.bb-grid[hidden] { display: none !important; }

.bb-card { display: flex; flex-direction: column; }
.bb-card__media { position: relative; aspect-ratio: 1.12; display: grid; place-items: center; padding: 26px 22px; }
.bb-card__media img { border-radius: 11px; box-shadow: 0 14px 26px rgba(80,50,30,.18); }
.bb-card__cat {
  position: absolute; top: 12px; left: 12px; background: #fff; font-size: 11px; font-weight: 800;
  letter-spacing: .03em; padding: 5px 10px; border-radius: 99px; z-index: 3;
}
.bb-card__flag { position: absolute; top: 12px; right: 12px; font-size: 11px; font-weight: 800; padding: 5px 10px; border-radius: 99px; z-index: 3; }
.bb-card__flag--draft { background: var(--bb-celebrate); color: #241E1A; }
.bb-card__flag--free { background: var(--bb-free-ink); color: var(--bb-free-tint); }
.bb-card__body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.bb-card__meta { display: flex; flex-wrap: wrap; gap: 4px 8px; margin: 0 0 6px; }
.bb-card__meta span { font-size: 11px; font-weight: 700; color: var(--bb-muted); }
.bb-card__format { width: 100%; }
.bb-card__title { font-size: 18px; letter-spacing: -.01em; margin: 0 0 5px; }
.bb-card__title a { color: var(--bb-ink); }
.bb-card__title a:hover { color: var(--bb-primary); }
.bb-card__outcome { font-size: 13.5px; line-height: 1.45; margin: 0 0 14px; }
.bb-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.bb-card__price { font-family: var(--bb-font-display); font-weight: 800; font-size: 19px; }
.bb-card__price .amount { font-size: 19px; }
.bb-card__price del { opacity: .5; font-size: 15px; }
.bb-card__cta {
  display: inline-flex; align-items: center; gap: 7px; background: var(--bb-ink); color: var(--bb-on-dark);
  font-weight: 700; font-size: 13.5px; padding: 10px 16px; border-radius: var(--bb-r-pill); min-height: 40px;
}
.bb-card__cta:hover { background: var(--bb-primary); color: #fff; }

/* --- BoxMockup --- */
.bb-mock { position: relative; display: block; width: 66%; }
.bb-mock__back1, .bb-mock__back2 { position: absolute; background: #fff; border-radius: 11px; }
.bb-mock__back2 { left: 12%; top: -6%; width: 88%; height: 100%; opacity: .5; transform: rotate(8deg); }
.bb-mock__back1 { left: 6%; top: -3%; width: 94%; height: 100%; opacity: .78; transform: rotate(4deg); }
.bb-mock__face {
  position: relative; display: block; aspect-ratio: .8; background: #fff; border-radius: 11px;
  box-shadow: 0 14px 26px rgba(80,50,30,.18); padding: 13px; transform: rotate(-2deg); overflow: hidden;
}
.bb-mock__face::after {
  content: ''; position: absolute; top: 0; right: 0; width: 0; height: 0;
  border-top: 22px solid var(--bb-mock-tint); border-left: 22px solid transparent;
}
.bb-mock__label { display: block; font-family: var(--bb-font-display); font-weight: 800; font-size: 10px; margin-bottom: 9px; }
.bb-mock__rule { display: block; height: 6px; background: #F1E7D7; border-radius: 99px; margin-bottom: 6px; }
.bb-mock__rule.is-short { width: 72%; margin-bottom: 11px; }
.bb-mock__squares { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.bb-mock__squares span { aspect-ratio: 1; border-radius: 7px; background: #F1E7D7; border: 1.5px dashed transparent; }
.bb-mock__star { display: block; text-align: center; font-size: 44px; line-height: 1; margin: 4px 0 10px; }
.bb-mock__bingo { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-bottom: 8px; }
.bb-mock__bingo span { aspect-ratio: 1; border-radius: 4px; }
.bb-mock__route { display: block; height: 2px; background: repeating-linear-gradient(90deg, var(--bb-mock-accent) 0 6px, transparent 6px 12px); }
.bb-mock__rangoli { display: grid; place-items: center; width: 56px; height: 56px; border: 3px solid; border-radius: 99px; margin: 6px auto 10px; }
.bb-mock__rangoli span { display: grid; place-items: center; width: 34px; height: 34px; border: 2px dashed; border-radius: 99px; }
.bb-mock__rangoli span span { width: 16px; height: 16px; border-radius: 4px; transform: rotate(45deg); border: 0; }
.bb-mock__diyas { display: flex; justify-content: center; gap: 8px; }
.bb-mock__diyas span { width: 16px; height: 7px; background: var(--bb-primary); border-radius: 0 0 9px 9px; }
.bb-mock__rows { display: flex; flex-direction: column; gap: 7px; }
.bb-mock__row { display: flex; align-items: center; gap: 6px; }
.bb-mock__check { flex: 0 0 auto; width: 10px; height: 10px; border: 1.5px solid; border-radius: 3px; }
.bb-mock__row .bb-mock__rule { flex: 1; margin-bottom: 0; }

/* =====================================================================
   L. FREE BAUWABOX
   ===================================================================== */
.bb-free { padding-block: 0 clamp(44px, 6vw, 80px); }
.bb-free__panel { background: var(--bb-free-tint); border: 1px solid #C4E2D9; border-radius: 30px; padding: clamp(26px, 4vw, 52px); position: relative; overflow: hidden; }
.bb-free__ring { position: absolute; top: -50px; right: -30px; width: 200px; height: 200px; border-radius: 99px; border: 2px dashed rgba(31,122,109,.25); }
.bb-free .bb-sechead { position: relative; z-index: 1; margin-bottom: 26px; }
.bb-free__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; position: relative; z-index: 1; }
.bb-freecard {
  background: #fff; border-radius: 18px; padding: 20px; display: flex; flex-direction: column;
  gap: 8px; border: 1px solid #C4E2D9; transition: transform .18s;
}
.bb-freecard:hover { transform: translateY(-5px); }
.bb-freecard__head { display: flex; align-items: center; justify-content: space-between; }
.bb-freecard__flag { background: var(--bb-free-tint); color: var(--bb-free); font-size: 11px; font-weight: 800; padding: 5px 11px; border-radius: 99px; }
.bb-freecard__name { font-family: var(--bb-font-display); font-weight: 800; font-size: 18px; color: var(--bb-free-ink); margin-top: 4px; }
.bb-freecard__desc { color: #5A6B67; font-size: 13.5px; line-height: 1.5; }

/* =====================================================================
   M. WHY BAUWABOX
   ===================================================================== */
.bb-why { padding-block: clamp(20px, 3vw, 40px) clamp(44px, 6vw, 80px); }
.bb-why__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.bb-why h2 { font-size: clamp(30px, 4.4vw, 52px); line-height: 1; letter-spacing: -.03em; margin: 8px 0 16px; }
.bb-why__body { font-size: 16.5px; line-height: 1.6; margin: 0 0 20px; max-width: 48ch; }
.bb-why__scatter { display: flex; flex-wrap: wrap; gap: 8px; }
.bb-why__scatter span {
  font-size: 13px; font-weight: 600; color: var(--bb-muted); background: var(--bb-soft);
  padding: 7px 13px; border-radius: 99px;
  text-decoration: line-through; text-decoration-color: var(--bb-primary);
}
.bb-why__points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bb-why__card { background: var(--bb-card); border: 1px solid var(--bb-border); border-radius: 20px; padding: 22px; }
.bb-why__mark { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; font-family: var(--bb-font-display); font-weight: 800; font-size: 19px; margin-bottom: 14px; }
.bb-why__card h3 { font-size: 18px; margin: 0 0 5px; }
.bb-why__card p { font-size: 13.5px; line-height: 1.5; margin: 0; }

/* =====================================================================
   N. EMAIL CAPTURE
   ===================================================================== */
.bb-signup { padding-block: 0 clamp(44px, 6vw, 80px); }
.bb-signup__panel {
  background: var(--bb-primary); color: #FDF3E6; border-radius: 30px;
  padding: clamp(30px, 5vw, 68px); text-align: center; position: relative; overflow: hidden;
}
.bb-signup__s1 { position: absolute; top: 14%; left: 8%; color: #F3C88A; font-size: 22px; }
.bb-signup__s2 { position: absolute; bottom: 16%; right: 10%; color: #F3C88A; font-size: 16px; animation-delay: .5s; }
.bb-signup__ring { position: absolute; top: -40px; left: 50%; transform: translateX(-50%); width: 220px; height: 220px; border: 2px dashed rgba(253,243,230,.25); border-radius: 99px; }
.bb-signup h2 { font-size: clamp(28px, 4.2vw, 48px); line-height: 1.04; letter-spacing: -.025em; margin: 0 auto 12px; max-width: 20ch; color: #FDF3E6; position: relative; z-index: 1; }
.bb-signup p { font-size: 16px; line-height: 1.6; color: #FAD9BE; max-width: 46ch; margin: 0 auto 26px; position: relative; z-index: 1; }
.bb-signup__form { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 520px; margin: 0 auto; position: relative; z-index: 1; }
.bb-signup__field {
  flex: 1; min-width: 220px; height: 54px; padding: 0 20px; border-radius: var(--bb-r-pill);
  border: none; font-size: 15px; font-family: inherit; color: var(--bb-ink); background: #fff;
}
.bb-signup__btn {
  height: 54px; padding: 0 28px; border-radius: var(--bb-r-pill); border: none;
  background: var(--bb-ink); color: var(--bb-on-dark); font-weight: 800; font-size: 15px;
  cursor: pointer; white-space: nowrap; font-family: var(--bb-font-body);
}
.bb-signup__btn:hover { background: #000; }
.bb-signup__micro { margin: 14px 0 0; font-size: 13px; color: #FAD9BE; }

/* =====================================================================
   15. RESPONSIVE
   The design collapses to a single column below 780px, matching the
   approved prototype's own stacking breakpoint.
   ===================================================================== */
@media (max-width: 980px) {
  .bb-bento { grid-template-columns: repeat(4, 1fr); }
  .bb-bento__tile, .bb-bento__tile.is-feature { grid-column: span 2; }
  .bb-why__grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .bb-hero__grid,
  .bb-seasonal__grid,
  .bb-moment,
  .bb-parent__grid,
  .bb-weekend__grid { grid-template-columns: 1fr; }

  .bb-hero__art { min-height: 330px; order: -1; }
  .bb-bento { grid-template-columns: 1fr; }
  .bb-bento__tile, .bb-bento__tile.is-feature { grid-column: auto; min-height: 190px; }
  .bb-bento__rings { display: none; }
  .bb-shelf { grid-auto-columns: 78%; }
  .bb-shelf--weekend { grid-auto-columns: 62%; }
  .bb-why__points { grid-template-columns: 1fr 1fr; }
  .bb-sechead { align-items: flex-start; }
  .bb-agestrip__item { border-left: none; border-top: 1px solid var(--bb-border); }
  .bb-signup__form { flex-direction: column; }
  .bb-signup__btn, .bb-signup__field { width: 100%; }
}

@media (max-width: 520px) {
  .bb-why__points { grid-template-columns: 1fr; }
  .bb-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   16. SHOP ARCHIVE
   ===================================================================== */
.bb-shophero {
  max-width: 1080px; margin: 0 auto; text-align: center; position: relative;
  padding: clamp(28px, 4vw, 52px) var(--bb-gutter) clamp(20px, 3vw, 32px);
}
.bb-shophero h1 { font-size: clamp(32px, 5.2vw, 58px); letter-spacing: -.03em; line-height: 1.02; margin: 8px auto 14px; max-width: 16ch; }
.bb-shophero p { font-size: clamp(15px, 1.6vw, 18px); line-height: 1.55; margin: 0 auto 26px; max-width: 52ch; }
.bb-shophero__art { position: absolute; top: 32%; width: 78px; opacity: .92; pointer-events: none; }
.bb-shophero__art--l { left: 3%; transform: rotate(-11deg); }
.bb-shophero__art--r { right: 4%; transform: rotate(10deg); }
.bb-shophero__art .bb-mock { width: 100%; }
.bb-shophero__s1 { position: absolute; right: 13%; top: 14%; font-size: 18px; }
.bb-shophero__s2 { position: absolute; left: 13%; top: 18%; color: var(--bb-learn); font-size: 14px; animation-delay: .5s; }
@media (max-width: 900px) { .bb-shophero__art, .bb-shophero__s1, .bb-shophero__s2 { display: none; } }

.bb-shopsearch { max-width: 540px; margin: 0 auto; position: relative; }
.bb-shopsearch__icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--bb-muted); display: grid; place-items: center; }
.bb-shopsearch input {
  width: 100%; height: 56px; padding: 0 18px 0 48px; border-radius: var(--bb-r-pill);
  border: 1.5px solid var(--bb-border-2); background: var(--bb-card);
  font-size: 15.5px; font-family: inherit; color: var(--bb-ink);
  box-shadow: 0 8px 24px rgba(80,50,30,.06);
}
.bb-shophero__shortcuts { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; }
.bb-shophero__shortcuts a {
  font-size: 13px; font-weight: 700; color: var(--bb-nav-ink); background: var(--bb-card);
  border: 1px solid var(--bb-border); border-radius: var(--bb-r-pill); padding: 8px 15px; transition: all .15s;
}
.bb-shophero__shortcuts a:hover { border-color: var(--bb-primary); color: var(--bb-primary); }

.bb-needfinder { padding-block: clamp(12px, 2vw, 24px) clamp(24px, 4vw, 40px); max-width: 1080px; }
.bb-needfinder__panel { background: var(--bb-soft); border-radius: var(--bb-r-lg); padding: clamp(20px, 3vw, 32px); }
.bb-needfinder__head { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.bb-needfinder__head span { color: var(--bb-primary); font-size: 15px; }
.bb-needfinder__head h2 { font-size: clamp(20px, 2.6vw, 26px); letter-spacing: -.02em; margin: 0; }
.bb-needfinder__chips { display: flex; flex-wrap: wrap; gap: 9px; }
.bb-needchip {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--bb-font-display); font-weight: 700; font-size: 14.5px;
  padding: 11px 16px; border-radius: var(--bb-r-pill); min-height: 44px;
  border: 1.5px solid var(--bb-border-2); background: var(--bb-card);
  color: var(--bb-nav-ink); transition: all .15s;
}
.bb-needchip:hover { border-color: var(--bb-chip-accent); color: var(--bb-chip-accent); }
.bb-needchip.is-active { background: var(--bb-chip-accent); border-color: var(--bb-chip-accent); color: #fff; }
.bb-needchip.is-active .bb-needchip__dot { background: #fff !important; }
.bb-needchip__dot { width: 9px; height: 9px; border-radius: 99px; }

.bb-merch { padding-block: clamp(20px, 3vw, 32px); }
.bb-merch__head { margin-bottom: 22px; }
.bb-merch__head h2 { font-size: clamp(26px, 3.6vw, 42px); letter-spacing: -.025em; margin: 6px 0 0; }
.bb-merch__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(14px, 1.8vw, 20px); align-items: start; }
.bb-merch__big { display: flex; flex-direction: column; border-radius: var(--bb-r-lg); overflow: hidden; color: var(--bb-ink); }
.bb-merch__big:hover { color: var(--bb-ink); }
.bb-merch__media { position: relative; display: grid; place-items: center; padding: clamp(24px, 3vw, 40px); min-height: clamp(220px, 26vw, 300px); }
.bb-merch__media .bb-mock { width: min(56%, 230px); }
.bb-merch__spark { position: absolute; top: 16px; right: 16px; font-size: 16px; }
.bb-merch__body { padding: clamp(20px, 2.4vw, 30px); display: block; }
.bb-merch__hook { font-family: var(--bb-font-display); font-weight: 800; font-size: 14px; }
.bb-merch__big h3 { font-size: clamp(22px, 2.8vw, 30px); letter-spacing: -.02em; margin: 6px 0 8px; }
.bb-merch__big p { font-size: 15px; line-height: 1.55; margin: 0 0 16px; max-width: 44ch; }
.bb-merch__chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.bb-merch__chips span { font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 99px; }
.bb-merch__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.bb-merch__price { font-family: var(--bb-font-display); font-weight: 800; font-size: 24px; }
.bb-merch__cta { font-weight: 800; color: var(--bb-primary); }
.bb-merch__small { display: flex; flex-direction: column; gap: 14px; }
.bb-merchmini {
  display: flex; align-items: center; gap: 16px; background: var(--bb-card);
  border: 1px solid var(--bb-border); border-radius: 20px; padding: 16px;
  transition: transform .18s; color: var(--bb-ink);
}
.bb-merchmini:hover { transform: translateY(-4px); color: var(--bb-ink); }
.bb-merchmini__media { flex: 0 0 auto; width: 112px; height: 112px; border-radius: 16px; display: grid; place-items: center; padding: 12px; }
.bb-merchmini__media .bb-mock { width: 84%; }
.bb-merchmini__body { flex: 1; min-width: 0; }
.bb-merchmini__cat { display: block; font-size: 11px; font-weight: 800; letter-spacing: .02em; }
.bb-merchmini__body strong { display: block; font-family: var(--bb-font-display); font-weight: 800; font-size: 17px; letter-spacing: -.01em; margin: 2px 0 4px; }
.bb-merchmini__foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-weight: 800; font-size: 15px; }
.bb-merchmini__cta { color: var(--bb-primary); font-size: 13px; }

.bb-catalogue { padding-block: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 36px); }
.bb-catalogue__count { font-size: 14px; font-weight: 700; color: var(--bb-muted); }

.bb-rail { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 10px; margin-bottom: 8px; }
.bb-rail::-webkit-scrollbar { height: 6px; }
.bb-rail::-webkit-scrollbar-thumb { background: var(--bb-border-2); border-radius: 99px; }
.bb-rail__item {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14px; padding: 10px 16px; border-radius: var(--bb-r-pill);
  white-space: nowrap; border: 1.5px solid var(--bb-border-2); background: var(--bb-card);
  color: var(--bb-nav-ink); transition: all .15s; min-height: 44px;
}
.bb-rail__item:hover { border-color: var(--bb-primary); color: var(--bb-primary); }
.bb-rail__item.is-active { background: var(--bb-ink); border-color: var(--bb-ink); color: var(--bb-on-dark); }
.bb-rail__dot { width: 8px; height: 8px; border-radius: 99px; }

.bb-controls { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; justify-content: space-between; margin-bottom: 16px; }
.bb-controls__ages { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.bb-controls__label { font-size: 13px; font-weight: 800; color: var(--bb-muted); }
.bb-agepill {
  font-family: var(--bb-font-display); font-weight: 800; font-size: 15px;
  padding: 11px 18px; border-radius: var(--bb-r-pill); min-height: 44px;
  display: inline-flex; align-items: center;
  border: 2px solid var(--bb-border-2); background: var(--bb-card);
  color: var(--bb-nav-ink); transition: all .15s;
}
.bb-agepill:hover { border-color: var(--bb-primary); color: var(--bb-primary); }
.bb-agepill.is-active {
  background: var(--bb-primary); border-color: var(--bb-primary); color: #fff;
  box-shadow: var(--bb-shadow-cta);
}
.bb-controls__sort { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--bb-muted); }
.bb-controls__sort select {
  font-family: inherit; font-weight: 700; font-size: 13.5px; color: var(--bb-ink);
  padding: 11px 12px; border-radius: var(--bb-r-sm); border: 1.5px solid var(--bb-border-2);
  background: var(--bb-card); cursor: pointer; min-height: 44px;
}

.bb-activechips { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 18px; }
.bb-activechip {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700;
  color: var(--bb-nav-ink); background: var(--bb-header-hover);
  border: 1px solid var(--bb-border-2); border-radius: var(--bb-r-pill); padding: 7px 12px;
}
.bb-activechip:hover { background: #EADFCC; color: var(--bb-nav-ink); }
.bb-activechip span { color: var(--bb-muted); font-size: 14px; }
.bb-clearall { font-size: 13px; font-weight: 800; color: var(--bb-link); padding: 7px 6px; }

.bb-loadmore { text-align: center; margin-top: clamp(24px, 3vw, 36px); }

.bb-empty {
  background: var(--bb-card); border: 1px solid var(--bb-border); border-radius: var(--bb-r-lg);
  padding: clamp(28px, 4vw, 52px); text-align: center; margin-top: 6px;
}
.bb-empty__mark {
  display: inline-grid; place-items: center; width: 64px; height: 64px;
  border-radius: 18px; background: var(--bb-soft); margin-bottom: 16px; transform: rotate(-4deg);
}
.bb-empty h3 { font-size: clamp(22px, 3vw, 30px); letter-spacing: -.02em; margin: 0 0 8px; }
.bb-empty p { font-size: 15px; margin: 0 auto 20px; max-width: 40ch; }
.bb-empty__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.bb-shopseasonal { padding-block: clamp(12px, 2vw, 20px) clamp(24px, 3vw, 40px); }
.bb-shopseasonal__panel {
  border-radius: var(--bb-r-lg); padding: clamp(24px, 3.5vw, 40px); position: relative; overflow: hidden;
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px; justify-content: space-between;
}
.bb-shopseasonal__ring { position: absolute; top: -60px; right: -40px; width: 200px; height: 200px; border: 2px dashed rgba(235,162,58,.28); border-radius: 99px; }
.bb-shopseasonal__spark { position: absolute; bottom: 12%; right: 22%; font-size: 16px; }
.bb-shopseasonal__copy { position: relative; z-index: 1; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.bb-shopseasonal__mark {
  flex: 0 0 auto; width: 56px; height: 56px; border-radius: 16px; background: var(--bb-marigold);
  display: grid; place-items: center;
}
.bb-shopseasonal__mark i { width: 14px; height: 20px; background: linear-gradient(#FCE9A6, #C0492E); border-radius: 50% 50% 40% 40%/70% 70% 30% 30%; }
.bb-shopseasonal__eyebrow { font-family: var(--bb-font-display); color: var(--bb-marigold); font-weight: 700; font-size: 13px; text-transform: uppercase; }
.bb-shopseasonal h3 { font-size: clamp(22px, 3vw, 32px); letter-spacing: -.02em; margin: 4px 0; color: var(--bb-on-dark); }
.bb-shopseasonal p { color: var(--bb-on-dark-2); font-size: 14.5px; margin: 0; max-width: 40ch; }
.bb-shopseasonal .bb-btn { position: relative; z-index: 1; }

.bb-trust {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; padding-block: clamp(24px, 3vw, 40px) clamp(44px, 6vw, 72px);
}
.bb-trust__item { display: flex; flex-direction: column; gap: 4px; }
.bb-trust__mark {
  width: 44px; height: 44px; border-radius: 13px; background: var(--bb-soft); color: var(--bb-primary);
  display: grid; place-items: center; font-size: 18px; margin-bottom: 8px;
}
.bb-trust__item strong { font-family: var(--bb-font-display); font-weight: 800; font-size: 16px; }
.bb-trust__item span { color: var(--bb-text-soft); font-size: 13.5px; line-height: 1.5; }

@media (max-width: 900px) {
  .bb-merch__grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   17. SINGLE PRODUCT
   ===================================================================== */
.bb-crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--bb-muted); padding: 20px 0 4px;
}
.bb-crumbs a { color: var(--bb-muted); }
.bb-crumbs a:hover { color: var(--bb-primary); }
.bb-crumbs [aria-current] { color: var(--bb-ink); }

.bb-pdp__hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 52px);
  padding: clamp(18px, 3vw, 32px) 0 clamp(40px, 5vw, 64px); align-items: start;
}
.bb-pdp__gallery { position: sticky; top: 88px; }
.bb-pdp__stage {
  position: relative; border-radius: 26px; border: 1px solid var(--bb-border);
  overflow: hidden; aspect-ratio: 1.04; display: grid; place-items: center;
  padding: clamp(24px, 4vw, 44px);
}
.bb-pdp__s1 { position: absolute; top: 14px; left: 16px; font-size: 18px; opacity: .6; }
.bb-pdp__s2 { position: absolute; bottom: 18px; right: 22px; font-size: 13px; opacity: .5; animation-delay: .6s; }
.bb-pdp__badge {
  position: absolute; top: 16px; right: 16px; background: var(--bb-ink); color: var(--bb-on-dark);
  font-size: 12px; font-weight: 800; padding: 6px 12px; border-radius: 99px; z-index: 5;
}
.bb-pdp__stageart { position: relative; width: min(74%, 320px); animation: bb-float 7s ease-in-out infinite; }
.bb-pdp__stageart .bb-mock { width: 100%; }
.bb-pdp__stageart img { border-radius: 14px; box-shadow: 0 26px 50px rgba(80,50,30,.2); }
.bb-pdp__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 14px; }
.bb-pdp__thumb { aspect-ratio: 1; border-radius: 14px; overflow: hidden; border: 1px solid var(--bb-border); display: grid; place-items: center; }
.bb-pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }

.bb-pdp__cat { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 13px; padding: 7px 14px; border-radius: 99px; margin-bottom: 16px; }
.bb-pdp__title { font-size: clamp(30px, 4.4vw, 46px); line-height: 1.02; letter-spacing: -.03em; margin: 0 0 12px; }
.bb-pdp__subtitle { font-family: var(--bb-font-display); font-weight: 700; font-size: clamp(17px, 2vw, 21px); color: var(--bb-nav-ink); line-height: 1.3; margin: 0 0 14px; }
.bb-pdp__desc { font-size: 16px; line-height: 1.6; margin: 0 0 22px; max-width: 46ch; }
.bb-pdp__desc p { margin: 0 0 1em; }
.bb-pdp__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.bb-pdp__chip {
  display: inline-flex; align-items: center; gap: 8px; background: var(--bb-card);
  border: 1px solid var(--bb-border); border-radius: var(--bb-r-sm); padding: 9px 14px;
  font-size: 13.5px; font-weight: 700; color: var(--bb-nav-ink);
}
.bb-pdp__chipdot { width: 7px; height: 7px; border-radius: 99px; }

.bb-buy { background: var(--bb-card); border: 1px solid var(--bb-border); border-radius: var(--bb-r-card); padding: 22px; box-shadow: var(--bb-shadow-soft); }
.bb-buy__digital {
  display: flex; align-items: center; gap: 9px; border-radius: 11px; padding: 9px 13px;
  font-size: 11.5px; font-weight: 800; line-height: 1.3; margin: 0 0 16px;
}
.bb-buy__price { display: flex; align-items: baseline; gap: 10px; margin: 0 0 16px; flex-wrap: wrap; }
.bb-buy__amount { font-family: var(--bb-font-display); font-weight: 800; font-size: 34px; letter-spacing: -.02em; color: var(--bb-ink); }
.bb-buy__amount .amount { font-size: 34px; }
.bb-buy__terms { font-size: 13px; font-weight: 700; color: var(--bb-muted); }
.bb-buy__form { margin: 0; }
.bb-buy__cta { border-radius: var(--bb-r-btn); font-size: 17px; padding: 17px; }
.bb-buy__preview { display: block; text-align: center; margin-top: 12px; font-weight: 700; color: var(--bb-ink); }
.bb-buy__preview:hover { color: var(--bb-primary); }
.bb-buy__unavailable { margin: 0; font-weight: 700; color: var(--bb-muted); text-align: center; }
.bb-buy__trust {
  display: flex; flex-wrap: wrap; gap: 8px 16px; justify-content: center;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--bb-drawer-rule, #F0E6D6);
  color: var(--bb-text-soft); font-size: 12.5px; font-weight: 600;
}
.bb-buy__trust span { display: inline-flex; align-items: center; gap: 6px; }

.bb-pdp__sechead { max-width: 640px; margin: 0 0 30px; }
.bb-pdp__sechead.is-centred { text-align: center; margin-inline: auto; }
.bb-pdp__sechead h2 { font-size: clamp(28px, 4vw, 44px); letter-spacing: -.025em; margin: 6px 0 8px; }
.bb-pdp__sechead p { margin: 0; }

.bb-pdp__inside { padding: clamp(40px, 5vw, 72px) 0 clamp(20px, 3vw, 32px); border-top: 1px solid var(--bb-header-border); }
.bb-previews { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: clamp(12px, 1.6vw, 18px); }
.bb-preview { border-radius: 18px; overflow: hidden; background: var(--bb-card); border: 1px solid var(--bb-border); transition: transform .18s; margin: 0; }
.bb-preview:hover { transform: translateY(-5px); }
.bb-preview__media { display: grid; place-items: center; aspect-ratio: .86; position: relative; padding: 16px; }
.bb-preview__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 9px; box-shadow: 0 10px 20px rgba(80,50,30,.14); }
.bb-preview__media .bb-mock { width: 74%; }
.bb-preview figcaption { padding: 12px 14px; font-family: var(--bb-font-display); font-weight: 800; font-size: 14px; }
.bb-preview.is-placeholder figcaption { font-family: var(--bb-font-body); font-weight: 600; font-size: 12.5px; color: var(--bb-muted); }
.bb-pdp__editornote { margin-top: 16px; font-size: 13px; color: var(--bb-muted); font-style: italic; }

.bb-pdp__split { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(24px, 4vw, 44px); padding: clamp(36px, 5vw, 64px) 0; }
.bb-inbox { border: 1px solid var(--bb-border); border-radius: var(--bb-r-lg); padding: clamp(24px, 3vw, 36px); }
.bb-inbox h2 { font-size: clamp(24px, 3vw, 32px); letter-spacing: -.02em; margin: 6px 0 18px; }
.bb-inbox__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.bb-inbox__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; font-weight: 600; color: var(--bb-ink); }
.bb-inbox__tick { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 99px; color: #fff; display: grid; place-items: center; margin-top: 1px; }
.bb-perfect h2 { font-size: clamp(24px, 3vw, 34px); letter-spacing: -.02em; margin: 6px 0; }
.bb-perfect > p { margin: 0 0 20px; font-size: 15px; }
.bb-perfect__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.bb-perfect__item { background: var(--bb-card); border: 1px solid var(--bb-border); border-radius: 16px; padding: 16px; display: flex; align-items: center; gap: 12px; }
.bb-perfect__mark { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; font-family: var(--bb-font-display); font-weight: 800; font-size: 16px; }
.bb-perfect__item span:last-child { font-weight: 700; font-size: 14.5px; line-height: 1.25; color: var(--bb-ink); }

.bb-how { padding: clamp(20px, 3vw, 32px) 0 clamp(40px, 5vw, 64px); }
.bb-how__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.bb-how__step { background: var(--bb-card); border: 1px solid var(--bb-border); border-radius: 20px; padding: 24px; position: relative; overflow: hidden; }
.bb-how__ghost { position: absolute; top: -14px; right: -2px; font-family: var(--bb-font-display); font-weight: 800; font-size: 80px; color: var(--bb-soft); line-height: 1; }
.bb-how__mark { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; position: relative; z-index: 1; font-family: var(--bb-font-display); font-weight: 800; font-size: 18px; }
.bb-how__step h3 { font-size: 19px; margin: 14px 0 5px; position: relative; z-index: 1; }
.bb-how__step p { font-size: 14px; line-height: 1.5; margin: 0; position: relative; z-index: 1; }

.bb-peek { border-radius: 28px; padding: clamp(26px, 4vw, 52px); margin-bottom: clamp(40px, 5vw, 64px); position: relative; overflow: hidden; }
.bb-peek__spark { position: absolute; top: 12%; right: 8%; font-size: 18px; }
.bb-peek__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 44px); align-items: center; position: relative; z-index: 1; }
.bb-peek h2 { font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -.02em; line-height: 1.05; margin: 6px 0 12px; }
.bb-peek p { font-size: 16px; line-height: 1.6; margin: 0 0 22px; max-width: 40ch; }
.bb-peek__ctas { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.bb-peek__secondary { color: var(--bb-on-dark); font-weight: 700; padding: 14px 8px; border-bottom: 2px solid #4a4038; }
.bb-peek__secondary:hover { color: var(--bb-marigold); }
.bb-peek__art { display: flex; gap: 14px; justify-content: center; }
.bb-peek__page { width: 38%; max-width: 150px; display: grid; place-items: center; background: var(--bb-on-dark); border-radius: 12px; padding: 14px; transform: rotate(-4deg); box-shadow: 0 20px 40px rgba(0,0,0,.35); }
.bb-peek__page .bb-mock { width: 100%; }
.bb-peek__locked {
  width: 38%; max-width: 150px; aspect-ratio: .78; background: var(--bb-dark-rule);
  border-radius: 12px; padding: 14px; transform: rotate(4deg);
  box-shadow: 0 20px 40px rgba(0,0,0,.4); position: relative; display: grid; place-items: center;
}
.bb-peek__lock { width: 40px; height: 40px; border-radius: 99px; background: #4a4038; display: grid; place-items: center; color: var(--bb-marigold); }
.bb-peek__more { position: absolute; bottom: 12px; left: 0; right: 0; text-align: center; font-size: 10px; font-weight: 800; color: #9c8f7d; letter-spacing: .04em; }

.bb-faq { padding: 0 0 clamp(40px, 5vw, 64px); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(24px, 4vw, 44px); align-items: start; }
.bb-faq__intro { position: sticky; top: 88px; }
.bb-faq__intro h2 { font-size: clamp(28px, 3.6vw, 42px); letter-spacing: -.025em; margin: 6px 0 10px; }
.bb-faq__intro p { margin: 0; font-size: 15px; max-width: 34ch; }
.bb-faq__list { display: flex; flex-direction: column; gap: 10px; }
.bb-faq__item { background: var(--bb-card); border: 1px solid var(--bb-border); border-radius: 16px; overflow: hidden; }
.bb-faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; cursor: pointer; list-style: none;
  font-family: var(--bb-font-display); font-weight: 800; font-size: 16.5px; color: var(--bb-ink);
  min-height: 44px;
}
.bb-faq__item summary::-webkit-details-marker { display: none; }
.bb-faq__sign { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 99px; background: var(--bb-soft); color: var(--bb-ink); display: grid; place-items: center; position: relative; }
.bb-faq__sign::before, .bb-faq__sign::after { content: ''; position: absolute; background: currentColor; border-radius: 2px; }
.bb-faq__sign::before { width: 12px; height: 2px; }
.bb-faq__sign::after { width: 2px; height: 12px; transition: transform .2s; }
.bb-faq__item[open] .bb-faq__sign::after { transform: scaleY(0); }
.bb-faq__item p { margin: 0; padding: 0 20px 20px; font-size: 15px; line-height: 1.6; }

.bb-related { padding: 0 0 clamp(44px, 6vw, 80px); border-top: 1px solid var(--bb-header-border); }
.bb-related .bb-pdp__sechead { padding-top: clamp(36px, 5vw, 56px); }

.bb-pdp__trust {
  background: var(--bb-soft); border-radius: var(--bb-r-lg); padding: clamp(24px, 3vw, 40px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.bb-pdp__trustitem { display: flex; gap: 14px; align-items: flex-start; }
.bb-pdp__trustmark { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 13px; background: var(--bb-card); color: var(--bb-primary); display: grid; place-items: center; font-size: 18px; }
.bb-pdp__trustitem h3 { font-size: 16px; margin: 2px 0 4px; }
.bb-pdp__trustitem p { font-size: 13.5px; line-height: 1.5; margin: 0; }

/* Mobile sticky purchase bar */
.bb-stickybuy {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none;
  align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px var(--bb-gutter); background: rgba(251,246,238,.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--bb-header-border); box-shadow: 0 -8px 24px rgba(80,50,30,.1);
}
.bb-stickybuy form { margin: 0; }
.bb-stickybuy__info { display: flex; flex-direction: column; min-width: 0; }
.bb-stickybuy__info strong { font-family: var(--bb-font-display); font-weight: 800; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bb-stickybuy__info span { font-weight: 800; font-size: 15px; color: var(--bb-primary); }
.bb-stickybuy .bb-btn { padding: 12px 20px; font-size: 15px; white-space: nowrap; }

@media (max-width: 900px) {
  .bb-pdp__hero, .bb-pdp__split, .bb-peek__grid, .bb-faq { grid-template-columns: 1fr; }
  .bb-pdp__gallery, .bb-faq__intro { position: static; }
}

@media (max-width: 780px) {
  .bb-stickybuy { display: flex; }
  .bb-pdp__trust { margin-bottom: 96px; }
}
