/** Shopify CDN: Minification failed

Line 505:0 All "@import" rules must come first

**/
/* ============================================================
   R2 — Sticky filter pill bar (collection pages)
   ============================================================ */
.product-grid-section .facets-container,
.product-grid-section .facets-horizontal,
.collection .facets-container {
  position: sticky !important;
  top: 70px;
  z-index: 50;
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%) !important;
  border: 1.5px solid var(--ink) !important;
  border-radius: 100px !important;
  padding: 8px 16px !important;
  box-shadow: var(--shadow-card) !important;
  margin: 12px auto 24px !important;
  max-width: 1200px !important;
}
.product-grid-section .facets__form,
.facets-horizontal .facets__form {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
  flex-wrap: nowrap !important;
}
.product-grid-section .facets__form::-webkit-scrollbar { display: none !important; }
.facets-container .facets__heading {
  border: none !important;
  border-right: 1px solid var(--line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 6px 14px 6px 0 !important;
  margin-right: 4px !important;
  flex-shrink: 0 !important;
}
.facets-container .facets__filters,
.facets-container .facets__wrap {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
}

@media (max-width: 749px) {
  .product-grid-section .facets-container,
  .product-grid-section .facets-horizontal,
  .collection .facets-container {
    border-radius: 18px !important;
    padding: 10px 14px !important;
    top: 60px;
    margin: 8px 12px 16px !important;
  }
}

/* ============================================================
   v8 — Collection page PREMIUM polish
   Same 8 refinements as homepage applied to collection grid,
   filters, sort dropdown, pagination, quick-add buttons.
   ============================================================ */

/* Premium product cards on collection grid */
.product-grid-section .card-wrapper,
.product-grid-section .grid-item .card,
.collection .card-wrapper,
.product-card-wrapper {
  border: 1.5px solid var(--ink) !important;
  border-radius: 16px !important;
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%) !important;
  box-shadow: var(--shadow-card) !important;
  overflow: hidden !important;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease) !important;
  position: relative;
}
.product-grid-section .card-wrapper:hover,
.product-card-wrapper:hover {
  transform: translate(-2px, -2px) !important;
  box-shadow: var(--shadow-card-hover) !important;
}
.product-grid-section .card-media,
.product-card-wrapper .card-media {
  background: var(--bg-2) !important;
  padding: 16px !important;
  border-bottom: 1.5px solid var(--ink) !important;
  position: relative;
}
.product-grid-section .card-media img,
.product-card-wrapper .card-media img {
  object-fit: contain !important;
  background: transparent !important;
  transition: transform 0.4s var(--ease) !important;
}
.product-grid-section .card-wrapper:hover .card-media img,
.product-card-wrapper:hover .card-media img {
  transform: scale(1.04);
}
.product-grid-section .card-content,
.product-card-wrapper .card-content {
  padding: 14px 16px 16px !important;
  background: transparent !important;
}
.product-grid-section .card-heading,
.product-card-wrapper .card-heading,
.product-grid-section .card-information .card-heading {
  font-family: 'Fraunces', serif !important;
  font-weight: 700 !important;
  font-style: italic !important;
  font-size: 15px !important;
  color: var(--ink) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em !important;
  font-variation-settings: 'opsz' 144 !important;
  margin-bottom: 6px !important;
}
.product-grid-section .card-heading a,
.product-card-wrapper .card-heading a {
  color: var(--ink) !important;
  text-decoration: none !important;
}

/* Premium price treatment with gradient text + save badge */
.product-grid-section .price__regular .price-item,
.product-grid-section .price-item--regular,
.product-card-wrapper .price-item--regular {
  font-family: 'Fraunces', serif !important;
  font-weight: 700 !important;
  font-style: italic !important;
  font-size: 17px !important;
  letter-spacing: -0.01em !important;
  background: linear-gradient(135deg, var(--ink) 0%, var(--green-deep) 100%);
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.product-grid-section .price-item--sale,
.product-card-wrapper .price-item--sale {
  font-family: 'Fraunces', serif !important;
  font-style: italic !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, var(--ink) 0%, var(--green-deep) 100%);
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.product-grid-section .price__sale .price-item--regular,
.product-card-wrapper .price__sale .price-item--regular {
  color: var(--ink-soft) !important;
  -webkit-text-fill-color: var(--ink-soft) !important;
  text-decoration: line-through !important;
  font-size: 13px !important;
  background: none !important;
  font-style: normal !important;
}

/* Compact pill badge (top-left, doesn't stretch the card) */
.product-grid-section .card-badge,
.product-card-wrapper .card-badge,
.product-grid-section .card-badge.first-badge {
  background: var(--lime) !important;
  color: var(--ink) !important;
  border: 1.5px solid var(--ink) !important;
  border-radius: 100px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 3px 9px !important;
  transform: rotate(-3deg) !important;
  box-shadow: 2px 2px 0 var(--ink) !important;
  position: absolute !important;
  top: 10px !important;
  left: 10px !important;
  z-index: 3 !important;
  width: auto !important;
  max-width: 90px !important;
  height: auto !important;
  line-height: 1.2 !important;
  display: inline-block !important;
  white-space: nowrap !important;
}
.product-grid-section .card-badge::before,
.product-card-wrapper .card-badge::before { content: none !important; }

/* Premium quick-add / quick-buy buttons */
.product-grid-section .quick-add__submit,
.product-grid-section button.quick-add-button,
.product-card-wrapper .quick-add__submit {
  background: var(--ink) !important;
  color: var(--lime) !important;
  border: 1.5px solid var(--ink) !important;
  border-radius: 10px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 10px 14px !important;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease) !important;
}
.product-grid-section .quick-add__submit:hover,
.product-card-wrapper .quick-add__submit:hover {
  background: var(--green-deep) !important;
  transform: translateY(-1px);
}

/* ── Collection FILTERS / FACETS — premium chip styling ── */
.facets-container .facets__summary,
.facets__heading,
.facets__filter-button {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--ink) !important;
  border: 1.5px solid var(--ink) !important;
  border-radius: 100px !important;
  background: #fff !important;
  padding: 8px 16px !important;
  box-shadow: var(--shadow-sm) !important;
  transition: all 0.2s var(--ease) !important;
}
.facets-container .facets__summary:hover,
.facets__filter-button:hover {
  background: var(--paper) !important;
  border-color: var(--green) !important;
}
.facets-container .facets__summary[aria-expanded="true"],
.facets__summary--open {
  background: var(--ink) !important;
  color: var(--lime) !important;
}
/* Filter chips inside dropdowns */
.facets-container input[type="checkbox"] + label,
.facet-checkbox label,
.facets-vertical .facets__item label {
  font-size: 12px !important;
  color: var(--ink) !important;
  padding: 6px 12px !important;
  border-radius: 100px !important;
  border: 1px solid var(--line) !important;
  background: #fff !important;
  transition: all 0.15s var(--ease) !important;
}
.facets-container input[type="checkbox"]:checked + label,
.facet-checkbox input:checked + label {
  background: var(--lime) !important;
  border-color: var(--ink) !important;
  font-weight: 700 !important;
}
/* Active filter chips at top */
.active-facets__button {
  background: var(--ink) !important;
  color: var(--lime) !important;
  border: 1.5px solid var(--ink) !important;
  border-radius: 100px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  padding: 5px 12px !important;
  box-shadow: 2px 2px 0 rgba(44,62,45,0.15) !important;
}
.active-facets__button:hover { background: var(--green-deep) !important; }
.active-facets__button-remove::before {
  content: '×';
  margin-left: 6px;
  font-size: 14px;
  font-weight: 400;
}

/* ── SORT dropdown — premium styling ── */
.facets__form select,
.collection-sort select,
select.facet-filters__sort,
.sorting select {
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--ink) !important;
  background: #fff !important;
  border: 1.5px solid var(--ink) !important;
  border-radius: 100px !important;
  padding: 9px 36px 9px 16px !important;
  box-shadow: var(--shadow-sm) !important;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%232C3E2D' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 12px 12px !important;
  transition: all 0.2s var(--ease) !important;
}
.facets__form select:hover, .collection-sort select:hover {
  background-color: var(--paper) !important;
}
.facets__form select:focus, .collection-sort select:focus {
  outline: none;
  border-color: var(--green) !important;
  box-shadow: 0 0 0 3px rgba(168,192,32,0.25) !important;
}

/* Product count text — premium meta */
.product-count, .collection-product-count, .facets__product-count {
  font-family: 'Fraunces', serif !important;
  font-style: italic !important;
  font-size: 13px !important;
  color: var(--ink-soft) !important;
}
.product-count strong { color: var(--gold) !important; font-weight: 700; }

/* ── PAGINATION — premium ── */
.pagination__list, .pagination ul {
  display: flex !important; gap: 8px !important; justify-content: center !important;
  list-style: none; padding: 0; margin: 32px 0 0;
}
.pagination__item a, .pagination__item span,
.pagination li a, .pagination li span {
  display: inline-flex !important;
  align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 10px;
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  background: #fff !important;
  border: 1.5px solid var(--ink) !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  box-shadow: 2px 2px 0 var(--ink) !important;
  transition: all 0.15s var(--ease) !important;
}
.pagination__item a:hover, .pagination li a:hover {
  background: var(--paper) !important;
  transform: translate(-1px,-1px);
  box-shadow: 3px 3px 0 var(--ink) !important;
}
.pagination__item--current span,
.pagination__item.is-active a,
.pagination li.active a {
  background: var(--lime) !important;
  color: var(--ink) !important;
}

/* "Load more" pagination button — same as CTA */
.pagination__load-more, button.load-more,
.pagination__load-button {
  background: linear-gradient(180deg, var(--lime) 0%, var(--lime-deep) 100%) !important;
  color: var(--ink) !important;
  border: 2px solid var(--ink) !important;
  border-radius: 12px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 14px 32px !important;
  margin: 32px auto 0 !important;
  display: inline-block;
  box-shadow: var(--shadow-cta) !important;
  transition: all 0.25s var(--ease) !important;
}
.pagination__load-more:hover, button.load-more:hover {
  transform: translate(-1px,-1px);
  box-shadow: var(--shadow-cta-hover) !important;
}

/* ── Subcollections section — premium tile polish ── */
.subcollections .collection-list-item,
.subcollection-card,
.collection-list-three .grid-item {
  border: 1.5px solid var(--ink) !important;
  border-radius: 14px !important;
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%) !important;
  box-shadow: var(--shadow-card) !important;
  overflow: hidden !important;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease) !important;
}
.subcollections .collection-list-item:hover,
.subcollection-card:hover {
  transform: translate(-2px,-2px) !important;
  box-shadow: var(--shadow-card-hover) !important;
}
.subcollections .heading,
.subcollection-card h3 {
  font-family: 'Fraunces', serif !important;
  font-style: italic !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

/* Hide vendor row on cards (already requested earlier — reaffirm) */
.product-grid-section .card-vendor,
.product-card-wrapper .card-vendor,
.collection .card-vendor { display: none !important; }

/* MOBILE collection page polish */
@media (max-width: 749px) {
  .product-grid-section .card-media,
  .product-card-wrapper .card-media { padding: 12px !important; }
  .product-grid-section .card-heading,
  .product-card-wrapper .card-heading { font-size: 13px !important; }
  .product-grid-section .price__regular .price-item,
  .product-grid-section .price-item--regular,
  .product-card-wrapper .price-item--regular { font-size: 15px !important; }
  .product-grid-section .card-badge,
  .product-card-wrapper .card-badge { padding: 5px 10px 6px !important; font-size: 8px !important; }
  /* Filters become horizontal scroll on mobile */
  .facets-container .facets__form { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .facets-container .facets__form::-webkit-scrollbar { display: none; }
  .facets__form select { padding: 8px 30px 8px 12px !important; font-size: 10px !important; }
  .pagination__item a, .pagination li a { min-width: 32px; height: 32px; font-size: 11px !important; }
  /* Disable hover on touch */
  .product-grid-section .card-wrapper:hover .card-media img,
  .product-card-wrapper:hover .card-media img { transform: none; }
}

/* ============================================================
   Cart drawer (existing) — refreshed with premium polish
   ============================================================ */
/* Cart drawer Chillhouse style */
cart-drawer .drawer__inner,
.cart-drawer__container {
  background: var(--bg) !important;
  border-left: 1.5px solid var(--ink) !important;
}
cart-drawer .drawer__heading,
.cart-drawer__heading {
  font-family: 'Fraunces', serif !important;
  font-weight: 700 !important; font-style: italic !important;
  color: var(--ink) !important;
  border-bottom: 1.5px solid var(--ink) !important;
}
cart-drawer .cart-item,
.cart-drawer .cart-item {
  border: 1.5px solid var(--ink) !important;
  border-radius: 12px !important;
  background: #fff !important;
  padding: 12px !important;
  margin-bottom: 10px !important;
  box-shadow: 2px 2px 0 var(--ink) !important;
}
cart-drawer .cart__checkout-button,
.cart-drawer .cart__checkout-button {
  background: var(--lime) !important;
  color: var(--ink) !important;
  border: 2px solid var(--ink) !important;
  border-radius: 12px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  box-shadow: 4px 4px 0 var(--ink) !important;
}

/* ============================================================
   Mobile responsive polish for all Chillhouse sections
   ============================================================ */
@media (max-width: 749px) {
  .bch-section { padding: 32px 18px !important; }
  .section-heading { font-size: 22px !important; }
  .stats-strip .stat-num { font-size: 22px !important; }
  .promise-strip { padding: 12px 14px !important; }
  .ps-pill { font-size: 9px !important; padding: 5px 11px !important; }
  .product-card { width: 170px !important; }
  .product-grid-section .card-heading { font-size: 13px !important; }
  .product-grid-section .price-item { font-size: 14px !important; }
  cart-drawer { width: 100% !important; }
}

/* ============================================================
   BSCLY CHILLHOUSE — Shared Stylesheet — v6-hero-imgs
   Extracted verbatim from bscly-homepage-chillhouse.html
   and bscly-pdp-chillhouse.html. Demo-only wrappers removed.
   ============================================================ */

/* Universal hero image styles — all hero ::img */
.ab-hero-img, .sci-hero-img, .ing-hero-img, .bch-contact-hero-img,
.bch-wh-hero-img, .bb-hero-img, .bch-col-hero-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 0 !important;
}
.ab-hero-tint, .sci-hero-tint, .ing-hero-tint, .bch-contact-hero-tint,
.bch-wh-hero-tint, .bb-hero-tint, .bch-col-hero-tint {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
}

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,600;1,9..144,700&family=Inter:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body { background: #FAF6EF; font-family: 'Inter', sans-serif; padding-top: 0 !important; margin-top: 0 !important; }

/* Kill any JS-injected header-offset padding from the base theme */
body > main,
#main,
.main-content,
[id="main-content"],
.shopify-section + .shopify-section { margin-top: 0; }
body { padding-top: 0 !important; }
#main { padding-top: 0 !important; }

:root {
  --bg: #FAF6EF;
  --bg-2: #EEE6D3;
  --paper: #FBF8F1;
  --ink: #2C3E2D;
  --ink-soft: #7A8F6E;
  --ink-faint: rgba(44,62,45,0.55);
  --line: #C8D8B8;
  --lime: #C8E03A;
  --lime-deep: #A8C020;
  --green: #3D6B4F;
  --green-deep: #2A4A35;
  --amber: #C4873A;
  --blue: #5DA8FF;
  --teal: #3ABFB8;
  --gold: #B8985A;
  --champagne: #E6D9B8;

  /* Layered shadow system */
  --shadow-sm: 0 1px 2px rgba(44,62,45,0.06), 0 4px 8px rgba(44,62,45,0.04);
  --shadow-md: 0 2px 4px rgba(44,62,45,0.08), 0 8px 24px rgba(44,62,45,0.06);
  --shadow-card: 3px 3px 0 var(--ink), 0 6px 18px rgba(44,62,45,0.08);
  --shadow-card-hover: 5px 5px 0 var(--ink), 0 12px 32px rgba(44,62,45,0.14);
  --shadow-cta: 4px 4px 0 var(--ink), 0 8px 20px rgba(168,192,32,0.3);
  --shadow-cta-hover: 5px 5px 0 var(--ink), 0 12px 28px rgba(168,192,32,0.4);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ============================================================
   PREMIUM REFINEMENTS — applied site-wide
   v6 polish: layered shadows, gold accent, gradient text,
   editorial typography, micro-interactions, paper grain.
   ============================================================ */

/* Editorial type rendering site-wide */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01','ss02','liga','calt','onum';
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, h6,
.hero-headline, .pdp-h1, .section-heading,
.bch-col-h1, .ab-hero h1, .sci-hero__h1, .ing-hero__h1,
.bch-contact-hero__h1, .bch-wh-hero h1, .bb-hero h1 {
  font-feature-settings: 'liga','calt','dlig','ss01';
  text-rendering: optimizeLegibility;
  letter-spacing: -0.02em;
}

/* Display headlines get tighter tracking + opsz axis */
.hero-headline, .pdp-h1, .ab-hero .hero-headline,
.sci-hero__h1, .ing-hero__h1, .bch-contact-hero__h1,
.bch-wh-hero h1, .bb-hero h1, .bch-col-h1 {
  font-variation-settings: 'opsz' 144;
  letter-spacing: -0.025em !important;
  line-height: 1.0 !important;
}

/* ── Refinement #1: Hero noise overlay (paper grain) ── */
.bch-hero-top, .ab-hero, .sci-hero, .ing-hero,
.bch-contact-hero, .bch-wh-hero, .bb-hero, .bch-col-hero {
  filter: contrast(1.03) saturate(0.96);
}
.bch-hero-top::before, .ab-hero::before, .sci-hero::before,
.ing-hero::before, .bch-contact-hero::before, .bch-wh-hero::before,
.bb-hero::before, .bch-col-hero::before {
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E"),
    var(--bg-overlay, none);
  background-blend-mode: overlay;
}

/* Hero bottom accent ribbon */
.bch-hero, .ab-hero, .sci-hero, .ing-hero,
.bch-contact-hero, .bch-wh-hero, .bb-hero, .bch-col-hero {
  position: relative;
}
.bch-hero::after, .ab-hero::after, .sci-hero::after,
.ing-hero::after, .bch-contact-hero::after, .bch-wh-hero::after,
.bb-hero::after, .bch-col-hero::after {
  /* keep existing ::after for image — only add ribbon if no ::after */
}
.hero-headline em, .pdp-h1 em, .ab-hero h1 em,
.sci-hero__h1 em, .ing-hero__h1 em, .bch-contact-hero__h1 em,
.bch-wh-hero h1 em, .bb-hero h1 em, .bch-col-h1 em,
.section-heading em, .pdp-section-heading em {
  font-style: italic !important;
  color: var(--champagne, #E6D9B8) !important;
  position: relative;
}

/* On light section headings, italic em becomes green */
.section-heading em, .pdp-section-heading em {
  color: var(--green) !important;
  position: relative;
  display: inline-block;
}
.section-heading em::after, .pdp-section-heading em::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--lime) 20%, var(--lime) 80%, transparent 100%);
  opacity: 0.7;
  border-radius: 2px;
}

/* ── Refinement #2: Premium Stats Strip ── */
.stats-strip {
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%) !important;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}
.stats-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--gold), var(--lime));
  z-index: 1;
}
.stat-col { position: relative; padding: 22px 8px 20px !important; }
.stat-col:not(:last-child) {
  border-right: none !important;
}
.stat-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--line) 30%, var(--line) 70%, transparent 100%);
}
.stat-num {
  background: linear-gradient(135deg, var(--ink) 0%, var(--green-deep) 100%);
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144;
}
.stat-label {
  position: relative;
  padding-top: 8px;
}
.stat-label::before {
  content: '';
  display: block;
  width: 12px; height: 1px;
  background: var(--gold);
  margin: 0 auto 6px;
}

/* ── Refinement #3: Premium Product Cards ── */
.product-card {
  border-radius: 16px !important;
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%) !important;
  box-shadow: var(--shadow-card) !important;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease) !important;
}
.product-card:hover {
  transform: translate(-2px, -2px) !important;
  box-shadow: var(--shadow-card-hover) !important;
}
.product-badge {
  /* Ribbon-style badge hanging from top */
  top: 0 !important;
  left: 14px !important;
  background: linear-gradient(180deg, var(--lime) 0%, var(--lime-deep) 100%) !important;
  border-top: none !important;
  border-radius: 0 0 6px 6px !important;
  padding: 6px 12px 8px !important;
  transform: none !important;
  box-shadow: 2px 3px 0 rgba(44,62,45,0.18) !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.product-now {
  background: linear-gradient(135deg, var(--ink) 0%, var(--green-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  letter-spacing: -0.01em;
}
.product-add {
  background: var(--ink) !important;
  color: var(--lime) !important;
  border-color: var(--ink) !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s var(--ease) !important;
}
.product-add::after { content: '→'; transition: transform 0.2s var(--ease); margin-left: 8px; }
.product-card:hover .product-add { background: var(--green-deep) !important; }
.product-card:hover .product-add::after { transform: translateX(3px); }

/* ── Refinement #4: Premium Section Headers ── */
.eyebrow, .section-eyebrow {
  display: flex !important;
  align-items: center;
  gap: 10px;
  color: var(--gold) !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
}
.eyebrow::before, .section-eyebrow::before {
  content: '';
  width: 24px; height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-heading, .pdp-section-heading {
  font-variation-settings: 'opsz' 144;
  letter-spacing: -0.025em !important;
}

/* ── Refinement #5: Premium CTA Buttons ── */
.hero-cta, .cta-btn, .ab-cta-btn,
.bch-wh-cta, .sci-cta-btn,
.email-submit, .bch-wh-form button {
  background: linear-gradient(180deg, var(--lime) 0%, var(--lime-deep) 100%) !important;
  box-shadow: var(--shadow-cta) !important;
  letter-spacing: 0.08em !important;
  font-weight: 800 !important;
  transition: all 0.25s var(--ease) !important;
  position: relative;
  overflow: hidden;
}
.hero-cta::before, .cta-btn::before, .ab-cta-btn::before,
.bch-wh-cta::before, .sci-cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  transition: left 0.6s var(--ease);
  pointer-events: none;
}
.hero-cta:hover, .cta-btn:hover, .ab-cta-btn:hover,
.bch-wh-cta:hover, .sci-cta-btn:hover {
  transform: translate(-1px,-1px) !important;
  box-shadow: var(--shadow-cta-hover) !important;
}
.hero-cta:hover::before, .cta-btn:hover::before,
.ab-cta-btn:hover::before, .bch-wh-cta:hover::before,
.sci-cta-btn:hover::before { left: 100%; }

/* ── Refinement #6: Premium Reviews ── */
.pdp-rev-item, .review-after {
  border-radius: 16px !important;
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%) !important;
  box-shadow: var(--shadow-card) !important;
  position: relative;
  overflow: hidden;
}
.pdp-rev-item::before {
  content: '"';
  position: absolute;
  top: -10px; right: 14px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 900;
  font-size: 96px;
  line-height: 1;
  color: var(--lime);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.pdp-rev-item > * { position: relative; z-index: 1; }
.pdp-rev-title {
  letter-spacing: -0.01em;
  font-variation-settings: 'opsz' 144;
}

/* ── Refinement #7: Pulsing dot for "live" badges ── */
.hero-badge::before, .ab-hero .hero-badge::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--ink);
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  animation: bsclyPulse 2s var(--ease) infinite;
}
@keyframes bsclyPulse {
  0%,100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* ── Refinement #8: Card-style FAQ accordions ── */
.pdp-faq-list {
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%) !important;
  box-shadow: var(--shadow-card) !important;
}

/* Save/sale badges in gold */
.save-badge {
  background: linear-gradient(180deg, var(--lime) 0%, var(--gold) 100%) !important;
  color: var(--ink) !important;
}

/* Subtle hover lift on cards globally */
.bch-wh-partner-card, .bch-wh-benefit, .ab-value-card,
.ab-team-card, .ab-timeline-card, .sci-step, .ing-card,
.ritual-card, .ritual-step-card, .coat-tile {
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.bch-wh-partner-card:hover, .bch-wh-benefit:hover, .ab-value-card:hover,
.ab-team-card:hover, .ab-timeline-card:hover, .sci-step:hover,
.ing-card:hover, .ritual-card:hover, .coat-tile:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink), 0 10px 24px rgba(44,62,45,0.1);
}

/* ── MOBILE PREMIUM POLISH ── */
@media (max-width: 749px) {
  /* Tighten display type on mobile (still premium) */
  .hero-headline, .pdp-h1, .ab-hero .hero-headline,
  .sci-hero__h1, .ing-hero__h1, .bch-contact-hero__h1,
  .bch-wh-hero h1, .bb-hero h1, .bch-col-h1 {
    letter-spacing: -0.02em !important;
    line-height: 1.02 !important;
  }
  .section-heading, .pdp-section-heading { font-size: 24px !important; }

  /* Stats: smaller padding, but keep premium gradient + accent */
  .stat-col { padding: 18px 6px 16px !important; }
  .stat-num { font-size: 24px !important; }
  .stat-label { font-size: 9px !important; letter-spacing: 0.1em !important; }
  .stat-label::before { width: 10px; }

  /* Product cards: tighter, but still premium */
  .product-card { width: 168px !important; }
  .bch-pcard-img { height: 150px !important; padding: 10px; }
  .product-badge { padding: 5px 10px 7px !important; font-size: 8px !important; }

  /* CTA: full width on mobile, no shimmer (reduce paint cost) */
  .hero-cta, .cta-btn, .ab-cta-btn, .bch-wh-cta, .sci-cta-btn {
    width: 100%; box-sizing: border-box;
    font-size: 12px !important;
    padding: 14px 18px !important;
  }
  .hero-cta::before, .cta-btn::before, .ab-cta-btn::before,
  .bch-wh-cta::before, .sci-cta-btn::before { display: none; }

  /* Eyebrow line shorter on mobile */
  .eyebrow::before, .section-eyebrow::before { width: 18px; }
  .eyebrow, .section-eyebrow { font-size: 9px !important; letter-spacing: 0.14em !important; }

  /* Reviews quote mark smaller */
  .pdp-rev-item::before { font-size: 64px; right: 10px; top: -6px; }
  .pdp-rev-title { font-size: 14px !important; }

  /* Disable hover lifts on touch (prevent stuck-state) */
  .product-card:hover, .bch-wh-partner-card:hover, .bch-wh-benefit:hover,
  .ab-value-card:hover, .ab-team-card:hover, .ab-timeline-card:hover,
  .sci-step:hover, .ing-card:hover, .ritual-card:hover, .coat-tile:hover {
    transform: none;
    box-shadow: var(--shadow-card);
  }

  /* Section padding mobile-tighter */
  .bch-section { padding: 28px 16px !important; }
}

/* ── Reduce motion preference ── */
@media (prefers-reduced-motion: reduce) {
  .hero-badge::before, .ab-hero .hero-badge::before { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ── Higher contrast preference ── */
@media (prefers-contrast: more) {
  .stat-num, .product-now { -webkit-text-fill-color: var(--ink) !important; background: none !important; color: var(--ink) !important; }
}

/* Smooth scroll site-wide for anchor jumps */
html { scroll-behavior: smooth; }

/* Refined focus ring for keyboard nav */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}



/* TOPBAR */
.bch-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px 12px;
  border-bottom: 1.5px solid var(--ink);
}
.bch-topbar .menu { font-size: 18px; cursor: pointer; }
.bch-topbar .brand {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0.06em;
}
.bch-topbar .icons { display: flex; gap: 12px; font-size: 18px; cursor: pointer; }

/* ANNOUNCEMENT BAR */
.announce-bar {
  background: var(--lime);
  border-bottom: 1.5px solid var(--ink);
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}
.announce-inner {
  display: inline-flex;
  animation: ticker 18s linear infinite;
  white-space: nowrap;
}
.announce-inner span {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 12px;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* HERO */
.bch-hero { position: relative; overflow: hidden; }
.bch-hero-top {
  background: var(--green);
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 24px 20px;
  position: relative;
}
.hero-badge {
  position: absolute;
  top: 16px;
  left: 20px;
  background: var(--lime);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 100px;
  border: 1.5px solid var(--ink);
  transform: rotate(-3deg);
  box-shadow: 2px 2px 0 var(--ink);
}
.hero-heart-circle {
  position: absolute;
  top: 14px;
  right: 20px;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.02;
  margin-top: 32px;
  margin-bottom: 10px;
}
.hero-sub {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.hero-cta {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 13px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.1s, box-shadow 0.1s;
  text-align: center;
  margin-bottom: 10px;
  text-decoration: none;
  align-self: flex-start;
  width: auto;
  max-width: 280px;
}
@media (min-width: 750px) {
  .hero-cta { padding: 14px 32px; font-size: 12px; max-width: 320px; }
}
.hero-cta:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.hero-cta:hover { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--ink); }
.hero-secondary-link {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
}
.hero-secondary-link:hover { color: #fff; }

.hero-swatches {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1.5px solid var(--ink);
}
.hero-swatch-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 4px;
  border-right: 1.5px solid var(--ink);
}
.hero-swatch-col:last-child { border-right: none; }
.hero-swatch-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  margin-bottom: 5px;
}
.hero-swatch-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
}

/* PROMISE STRIP */
.promise-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 16px;
  border-bottom: 1.5px solid var(--ink);
  scrollbar-width: none;
}
.promise-strip::-webkit-scrollbar { display: none; }
.ps-pill {
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1.5px solid var(--ink);
  white-space: nowrap;
}
.ps-lime { background: var(--lime); color: var(--ink); transform: rotate(-2deg); }
.ps-teal { background: var(--teal); color: #fff; transform: rotate(1.5deg); }
.ps-green { background: var(--green); color: #fff; transform: rotate(-1deg); }
.ps-amber { background: var(--amber); color: #fff; transform: rotate(2deg); }

/* SECTION WRAPPER */
.bch-section {
  padding: 20px 16px;
  border-bottom: 1.5px dashed var(--line);
}
.bch-section:last-child { border-bottom: none; }

.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.section-heading {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-heading em { font-style: italic; }

/* STATS STRIP */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-bottom: 1.5px solid var(--ink);
}
.stat-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 8px;
  border-right: 1.5px solid var(--ink);
  text-align: center;
}
.stat-col:last-child { border-right: none; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  color: var(--green);
  line-height: 1;
  margin-bottom: 3px;
}
.stat-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.35;
  text-align: center;
}

/* BEST SELLERS */
.products-scroller {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.products-scroller::-webkit-scrollbar { display: none; }
.product-card {
  flex-shrink: 0;
  width: 156px;
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 3px 3px 0 var(--ink);
  background: #fff;
}
.product-card-img {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1.5px solid var(--ink);
}
.product-card-emoji { font-size: 38px; }
.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  border: 1.5px solid var(--ink);
  transform: rotate(-3deg);
}
.product-card-body { padding: 10px 10px 12px; }
.product-name {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2px;
  color: var(--ink);
}
.product-subname {
  font-size: 10px;
  color: var(--ink-soft);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-stars { font-size: 10px; color: var(--amber); margin-bottom: 6px; }
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 8px;
}
.product-now { font-family: 'Fraunces', serif; font-size: 15px; font-weight: 700; color: var(--ink); }
.product-was { font-size: 10px; color: var(--ink-soft); text-decoration: line-through; }
.product-add {
  width: 100%;
  background: var(--lime);
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  padding: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform 0.1s;
  display: block;
  text-align: center;
  text-decoration: none;
}
.product-add:active { transform: translate(1px,1px); box-shadow: 1px 1px 0 var(--ink); }

/* RITUAL STEPS */
.ritual-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ritual-step-card {
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 3px 3px 0 var(--ink);
}
.ritual-step-top {
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0 16px;
}
.ritual-step-num {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 700;
  font-style: italic;
  color: rgba(255,255,255,0.9);
}
.ritual-step-body { padding: 12px 14px; }
.ritual-step-name {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.ritual-step-desc { font-size: 12px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 8px; }
.ritual-step-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.ritual-step-link:hover { text-decoration: underline; }

/* SHOP BY COAT */
.coat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.coat-tile {
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  overflow: hidden;
  padding: 14px;
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.coat-icon { font-size: 22px; margin-bottom: 6px; }
.coat-name {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
}
.coat-breeds {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 10.5px;
  line-height: 1.5;
  margin-bottom: 10px;
  opacity: 0.75;
}
.coat-link { font-size: 11px; font-weight: 700; letter-spacing: 0.04em; }

/* WHY BSCLY */
.compare-table {
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  overflow: hidden;
}
.compare-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1.5px solid var(--ink);
}
.compare-head-cell {
  padding: 10px 10px 8px;
  border-right: 1.5px solid var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}
.compare-head-cell:last-child { border-right: none; }
.compare-head-cell.bscly-col {
  background: var(--lime);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px dashed var(--line);
}
.compare-row:last-child { border-bottom: none; }
.compare-cell {
  padding: 10px 10px;
  border-right: 1.5px solid var(--ink);
  font-size: 11px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare-cell:last-child { border-right: none; }
.compare-cell.feature-col {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: left;
  justify-content: flex-start;
  padding-left: 10px;
}
.compare-cell.bscly-col { background: rgba(200,224,58,0.1); font-weight: 700; color: var(--green); }
.tick { color: var(--green); font-size: 14px; }
.cross { color: #E05555; font-size: 14px; }

/* SCIENCE CARD */
.science-card {
  background: var(--green);
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 4px 4px 0 var(--ink);
}
.science-stat {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 700;
  font-style: italic;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 10px;
}
.science-copy { font-size: 12px; color: rgba(255,255,255,0.85); line-height: 1.65; margin-bottom: 14px; }
.ghost-btn {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
}
.ghost-btn:hover { background: rgba(255,255,255,0.1); }

/* BUNDLE CTA */
.bundle-card {
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}
.bundle-card::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--lime);
  border-radius: 50%;
  opacity: 0.1;
}
.bundle-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 8px;
}
.bundle-heading {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
}
.bundle-sub { font-size: 12px; color: rgba(255,255,255,0.65); margin-bottom: 16px; line-height: 1.5; }
.bundle-products {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.bundle-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.bundle-plus {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
}
.bundle-cta {
  width: 100%;
  background: var(--lime);
  color: var(--ink);
  border: 2px solid var(--lime);
  border-radius: 12px;
  padding: 13px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 3px 3px 0 rgba(200,224,58,0.4);
  transition: transform 0.1s;
  display: block;
  text-align: center;
  text-decoration: none;
}
.bundle-cta:hover { transform: translate(-1px,-1px); }
.bundle-micro {
  text-align: center;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

/* VET ENDORSEMENT */
.vet-strip {
  background: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.vet-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--teal);
  border-radius: 50%;
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.vet-badge {
  display: block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--teal);
  color: #fff;
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid var(--ink);
  margin-bottom: 6px;
  transform: rotate(-1deg);
  width: fit-content;
}
.vet-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 5px;
}
.vet-attr { font-size: 10px; font-weight: 600; color: var(--ink-soft); }

/* UGC */
.ugc-scroller {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.ugc-scroller::-webkit-scrollbar { display: none; }
.ugc-tile {
  flex-shrink: 0;
  width: 148px;
  height: 180px;
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 3px 3px 0 var(--ink);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
}
.ugc-stars {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 9px;
  color: var(--lime);
  letter-spacing: 1px;
}
.ugc-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 11px;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 5px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.ugc-meta { display: flex; flex-direction: column; gap: 1px; }
.ugc-handle { font-size: 9px; color: rgba(255,255,255,0.85); font-weight: 600; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.ugc-breed { font-size: 8.5px; color: rgba(255,255,255,0.6); text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.ugc-dog-icon { position: absolute; top: 10px; left: 10px; font-size: 18px; }

/* FOUNDER NOTE */
.founder-card {
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
}
.founder-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.founder-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 16px;
  border-left: 3px solid var(--lime);
  padding-left: 14px;
}
.founder-sig {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 14px;
}
.ghost-btn-ink {
  display: inline-block;
  border: 1.5px solid var(--ink);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
}
.ghost-btn-ink:hover { background: var(--bg-2); }

/* GUARANTEE STRIP */
.guarantee-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  overflow: hidden;
}
.guarantee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 8px;
  text-align: center;
  border-right: 1.5px solid var(--ink);
}
.guarantee-item:last-child { border-right: none; }
.guarantee-icon { font-size: 22px; margin-bottom: 5px; }
.guarantee-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.3;
}
.guarantee-sub { font-size: 9px; color: var(--ink-soft); margin-top: 2px; }

/* EMAIL CAPTURE */
.email-card {
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 4px 4px 0 var(--ink);
}
.email-heading {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 6px;
}
.email-heading em { font-style: italic; }
.email-sub { font-size: 12px; color: var(--ink); margin-bottom: 14px; line-height: 1.5; opacity: 0.8; }
.email-row { display: flex; gap: 8px; }
.email-input {
  flex: 1;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  padding: 10px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  background: #fff;
  color: var(--ink);
  outline: none;
}
.email-input::placeholder { color: var(--ink-soft); }
.email-submit {
  background: var(--ink);
  color: var(--bg);
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.email-micro { font-size: 10px; color: var(--ink); opacity: 0.65; margin-top: 8px; }

/* FAQ */
.faq-card {
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
}
.faq-item { border-bottom: 1px dashed var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  gap: 10px;
}
.faq-q-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  flex: 1;
}
.faq-toggle {
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-toggle.open { transform: rotate(45deg); }
.faq-a {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.65;
  padding: 0 16px 14px;
  display: none;
}
.faq-a.open { display: block; }

/* FOOTER */
.bch-footer {
  background: var(--ink);
  padding: 24px 20px 30px;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 6px;
}
.footer-tagline { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 20px;
}
.footer-link {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.footer-link:hover { color: #fff; }
.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

/* ============================================================
   PDP-SPECIFIC STYLES (from bscly-pdp-chillhouse.html)
   ============================================================ */

.sticker-scroller {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 16px;
  border-bottom: 1.5px solid var(--ink);
  scrollbar-width: none;
}
.sticker-scroller::-webkit-scrollbar { display: none; }

.sticker {
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 100px;
  border: 1.5px solid var(--ink);
  white-space: nowrap;
}
.sticker-lime { background: var(--lime); color: var(--ink); transform: rotate(-2deg); }
.sticker-teal { background: var(--teal); color: #fff; transform: rotate(1.5deg); }
.sticker-green { background: var(--green); color: #fff; transform: rotate(-1deg); }
.sticker-amber { background: var(--amber); color: #fff; transform: rotate(2deg); }
.sticker-blue { background: var(--blue); color: #fff; transform: rotate(-2deg); }

.pdp-hero { position: relative; overflow: hidden; }
.pdp-hero-top {
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
}
.pdp-hero-inner {
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 18px 22px;
  text-align: center;
  width: 100%;
}
.pdp-hero-name {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  font-style: italic;
}
.pdp-hero-heart {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.badge-pill {
  position: absolute;
  top: 14px;
  left: 20px;
  background: var(--lime);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1.5px solid var(--ink);
  transform: rotate(-3deg);
  box-shadow: 2px 2px 0 var(--ink);
}

.swatch-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1.5px solid var(--ink);
}
.swatch-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 4px;
  border-right: 1.5px solid var(--ink);
}
.swatch-col:last-child { border-right: none; }
.swatch-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  margin-bottom: 5px;
}
.swatch-label {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
}

.pdp-content { padding: 0 16px 32px; }
.pdp-section { padding: 16px 0; border-bottom: 1.5px dashed var(--line); }
.pdp-section:last-child { border-bottom: none; }

.pdp-h1 {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 8px;
}
.pdp-h1 em { font-style: italic; }

.tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.stars-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}
.stars { color: #F5B800; font-size: 14px; }
.rating-text { font-size: 11px; color: var(--ink-soft); font-weight: 500; }

.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.price-main {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
}
.price-was {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: line-through;
}
.save-badge {
  background: var(--lime);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1.5px solid var(--ink);
  transform: rotate(-2deg);
  display: inline-block;
}
.price-note {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 4px;
}

.variant-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.pill-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--ink);
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
}
.pill.active { background: var(--ink); color: var(--bg); }

.size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.size-card {
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
  cursor: pointer;
  background: var(--bg);
}
.size-card.active { background: var(--ink); box-shadow: 3px 3px 0 rgba(44,62,45,0.4); }
.size-card.active .size-ml,
.size-card.active .size-price { color: var(--bg); }
.size-ml { font-size: 12px; font-weight: 700; color: var(--ink); }
.size-price { font-family: 'Fraunces', serif; font-size: 15px; font-weight: 700; color: var(--ink); margin-top: 2px; }
.size-tag {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--lime);
  color: var(--ink);
  padding: 2px 6px;
  border-radius: 100px;
  border: 1px solid var(--ink);
  display: inline-block;
  margin-top: 4px;
}

.cta-btn {
  width: 100%;
  background: var(--lime);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 16px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.1s, box-shadow 0.1s;
  margin-top: 16px;
  display: block;
  text-align: center;
  text-decoration: none;
}
.cta-btn:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.cta-btn:hover { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--ink); }

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  overflow: hidden;
}
.guarantee-col {
  text-align: center;
  padding: 12px 6px;
  border-right: 1.5px solid var(--ink);
}
.guarantee-col:last-child { border-right: none; }
.guarantee-col .guarantee-icon { font-size: 20px; margin-bottom: 4px; }
.guarantee-col .guarantee-label { font-size: 10px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); }
.guarantee-col .guarantee-sub { font-size: 9px; color: var(--ink-soft); margin-top: 2px; }

.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }
.gnf-card { border: 1.5px solid var(--ink); border-radius: 12px; overflow: hidden; }
.gnf-header {
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--ink);
}
.gnf-good .gnf-header { background: var(--green); color: #fff; }
.gnf-bad .gnf-header { background: var(--amber); color: #fff; }
.gnf-list { list-style: none; }
.gnf-list li {
  font-size: 10px;
  padding: 7px 10px;
  border-bottom: 1px dashed var(--line);
  display: flex;
  align-items: flex-start;
  gap: 5px;
  line-height: 1.3;
}
.gnf-list li:last-child { border-bottom: none; }
.gnf-icon { flex-shrink: 0; font-style: normal; }

.pdp-science-card {
  background: var(--green);
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 4px 4px 0 var(--ink);
  margin-top: 8px;
}
.pdp-science-stat {
  font-family: 'Fraunces', serif;
  font-size: 50px;
  font-weight: 700;
  font-style: italic;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 10px;
}
.pdp-science-copy { font-size: 12px; color: rgba(255,255,255,0.85); line-height: 1.65; }

.steps-card {
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 8px;
}
.step-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px dashed var(--line);
}
.step-row:last-child { border-bottom: none; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  flex-shrink: 0;
  line-height: 1;
  min-width: 30px;
}
.step-text { font-size: 12px; color: var(--ink); line-height: 1.5; padding-top: 3px; }

.ingr-list { margin-top: 8px; }
.ingr-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.ingr-row:last-child { border-bottom: none; }
.ingr-emoji {
  width: 36px;
  height: 36px;
  background: var(--bg-2);
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.ingr-name { font-weight: 700; font-size: 12px; color: var(--ink); }
.ingr-benefit { font-size: 11px; color: var(--ink-soft); margin-top: 2px; }

.ritual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }
.ritual-card {
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 3px 3px 0 var(--ink);
}
.ritual-img {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}
.ritual-body { padding: 10px; }
.ritual-name { font-family: 'Fraunces', serif; font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.ritual-price { font-size: 11px; color: var(--ink-soft); margin-top: 2px; }
.ritual-atc {
  width: 100%;
  background: var(--lime);
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  padding: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 2px 2px 0 var(--ink);
  display: block;
  text-align: center;
  text-decoration: none;
}

.pdp-ugc-tile {
  flex-shrink: 0;
  width: 148px;
  height: 168px;
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 3px 3px 0 var(--ink);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
}
.pdp-ugc-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 11px;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 6px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.pdp-ugc-handle { font-size: 9px; color: rgba(255,255,255,0.85); font-weight: 600; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.pdp-ugc-dog { position: absolute; top: 10px; left: 10px; font-size: 18px; }

.never-card {
  background: var(--amber);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 4px 4px 0 var(--ink);
  margin-top: 8px;
}
.never-title {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.never-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.never-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff;
  text-decoration: line-through;
  background: rgba(0,0,0,0.15);
}

.section-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.pdp-section-heading {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 10px;
}
.pdp-section-heading em { font-style: italic; }

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */

/* Hide "Skip to content" — show only on keyboard focus */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  top: 0; left: 0;
  width: auto; height: auto;
  padding: 8px 20px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  z-index: 9999;
  border: 2px solid var(--ink);
}

/* ── DESKTOP (≥750px) ──────────────────────────────────── */
@media (min-width: 750px) {

  /* Hero */
  .bch-hero-top {
    height: 520px;
    padding: 0 60px;
    justify-content: center;
    max-width: none;
  }
  .hero-badge { left: 60px; top: 24px; font-size: 11px; padding: 6px 14px; }
  .hero-heart-circle { right: 60px; top: 24px; width: 48px; height: 48px; font-size: 22px; }
  .hero-headline { font-size: 80px; line-height: 0.95; margin-top: 0; margin-bottom: 16px; }
  .hero-sub { font-size: 16px; margin-bottom: 32px; }
  .hero-cta { display: inline-block; width: auto; min-width: 320px; font-size: 14px; padding: 18px 40px; }
  .hero-secondary-link { text-align: left; margin-top: 14px; font-size: 13px; }
  .hero-swatch-dot { width: 44px; height: 44px; }
  .hero-swatch-col { padding: 16px 8px; }
  .hero-swatch-label { font-size: 11px; }

  /* Stats */
  .stats-strip { gap: 0; }
  .stat-num { font-size: 52px; }
  .stat-label { font-size: 13px; }

  /* Promise */
  .promise-strip { flex-wrap: wrap; justify-content: center; padding: 20px 60px; overflow-x: visible; }

  /* Sections generic */
  .bch-section { padding: 64px 60px; }
  .section-heading { font-size: 48px; }
  .eyebrow { font-size: 11px; }

  /* Bestsellers */
  .bestsellers-scroller { gap: 16px; padding: 0 60px 16px; }
  .product-card { flex: 0 0 240px; }
  .product-card-img { height: 180px; }
  .product-name { font-size: 16px; }

  /* Ritual */
  .ritual-grid-4 { grid-template-columns: repeat(4,1fr); gap: 16px; padding: 0 60px; }

  /* Bundle */
  .bundle-card { margin: 0 60px; padding: 40px 48px; }
  .bundle-headline { font-size: 32px; }

  /* Coat */
  .coat-grid { grid-template-columns: repeat(4,1fr); gap: 16px; padding: 0 60px; }

  /* Compare */
  .compare-table-wrap { padding: 0 60px; }

  /* Science */
  .science-card { margin: 0 60px; padding: 40px 56px; }
  .science-text { font-size: 24px; line-height: 1.5; }

  /* Vet */
  .vet-card { margin: 0 60px; padding: 40px 56px; }
  .vet-quote { font-size: 24px; }

  /* UGC */
  .ugc-scroller { padding: 0 60px 16px; }
  .ugc-card { flex: 0 0 300px; height: 220px; }

  /* Founder */
  .founder-card { margin: 0 60px; padding: 40px 56px; }
  .founder-quote { font-size: 22px; line-height: 1.55; }

  /* Guarantee */
  .guarantee-strip { padding: 28px 60px; gap: 40px; flex-wrap: wrap; justify-content: center; }

  /* Email */
  .email-section { padding: 48px 60px; }
  .email-form { flex-direction: row; max-width: 540px; }
  .email-input { flex: 1; }

  /* FAQ */
  .faq-card { margin: 0 60px; }

  /* Footer */
  .bch-footer { padding: 64px 60px 40px; flex-direction: row; flex-wrap: wrap; gap: 40px; }
  .footer-logo { font-size: 42px; }
  .footer-links { grid-template-columns: repeat(4,1fr); gap: 12px 40px; }
  .footer-bottom { width: 100%; }
}

/* ── MOBILE (≤749px) ───────────────────────────────────── */
@media (max-width: 749px) {

  /* Hero — auto height so content is never clipped */
  .bch-hero-top { height: auto; min-height: 320px; padding: 64px 20px 28px; }
  .hero-headline { font-size: 40px; margin-top: 20px; margin-bottom: 12px; }
  .hero-sub { font-size: 12px; }
  .hero-cta { font-size: 12px; padding: 14px 20px; }

  /* Stats */
  .stats-strip { padding: 14px 0; }
  .stat-num { font-size: 32px; }
  .stat-label { font-size: 11px; }

  /* Generic sections */
  .bch-section { padding: 28px 16px; }
  .section-heading { font-size: 28px; }

  /* Coat — 2-column on mobile */
  .coat-grid { grid-template-columns: 1fr 1fr; }

  /* Bundle */
  .bundle-card { margin: 0 16px; padding: 24px 20px; }

  /* Science / Vet / Founder */
  .science-card,
  .vet-card,
  .founder-card { margin: 0 16px; padding: 24px 20px; }
  .science-text { font-size: 17px; }
  .vet-quote { font-size: 18px; }
  .founder-quote { font-size: 16px; }

  /* FAQ */
  .faq-card { margin: 0 16px; }

  /* Header */
  .ch-topbar { padding: 10px 16px; }

  /* Footer */
  .bch-footer { padding: 36px 20px 28px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 10px 20px; }
  .footer-logo { font-size: 30px; }
}
