/** Shopify CDN: Minification failed

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

**/
/* =========================================================
   BELLA CURA — Custom CSS
   Paste into: Online Store > Themes > Edit Code
   > assets/bellacura-custom.css
   Then add  {{ 'bellacura-custom.css' | asset_url | stylesheet_tag }}
   to the <head> in layout/theme.liquid
   ========================================================= */

/* ── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  --bc-clay:    #C2705A;
  --bc-blush:   #E8B4A0;
  --bc-sage:    #8BAF9F;
  --bc-cream:   #FAF6F1;
  --bc-dark:    #2C2320;
  --bc-mid:     #6B5650;
  --bc-white:   #FFFFFF;
  --bc-light:   #F2EBE5;

  --bc-font-display: 'Playfair Display', Georgia, serif;
  --bc-font-body:    'DM Sans', system-ui, sans-serif;

  --bc-radius:  6px;
  --bc-transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --bc-shadow:  0 4px 24px rgba(44,35,32,0.10);
  --bc-shadow-lg: 0 12px 48px rgba(44,35,32,0.15);
}

/* ── GOOGLE FONTS IMPORT ──────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── GLOBAL RESETS ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--bc-font-body);
  color: var(--bc-dark);
  background-color: var(--bc-cream);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--bc-clay); text-decoration: none; transition: opacity var(--bc-transition); }
a:hover { opacity: 0.75; }

img { max-width: 100%; height: auto; display: block; }

/* ── ANNOUNCEMENT BAR ────────────────────────────────────── */
.bc-announcement-bar {
  background: var(--bc-clay);
  color: var(--bc-white);
  text-align: center;
  padding: 10px 20px;
  font-family: var(--bc-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.bc-announcement-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.bc-announcement-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bc-announcement-bar__item svg {
  width: 14px;
  height: 14px;
  fill: var(--bc-blush);
  flex-shrink: 0;
}

/* ── SECTION UTILITY CLASSES ─────────────────────────────── */
.bc-section {
  padding: 80px 0;
}

.bc-section--sm { padding: 48px 0; }
.bc-section--lg { padding: 120px 0; }
.bc-section--cream { background: var(--bc-cream); }
.bc-section--white { background: var(--bc-white); }
.bc-section--dark  { background: var(--bc-dark); color: var(--bc-cream); }
.bc-section--sage  { background: var(--bc-sage); }
.bc-section--light { background: var(--bc-light); }

.bc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.bc-container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.bc-display {
  font-family: var(--bc-font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--bc-dark);
}

.bc-display--xl { font-size: clamp(44px, 7vw, 88px); }
.bc-display--lg { font-size: clamp(36px, 5vw, 64px); }
.bc-display--md { font-size: clamp(28px, 4vw, 44px); }
.bc-display--sm { font-size: clamp(22px, 3vw, 32px); }

.bc-display--italic { font-style: italic; }
.bc-display--clay   { color: var(--bc-clay); }
.bc-display--white  { color: var(--bc-white); }
.bc-display--cream  { color: var(--bc-cream); }

.bc-body {
  font-family: var(--bc-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--bc-mid);
}

.bc-body--lg { font-size: 18px; }
.bc-body--sm { font-size: 14px; }
.bc-body--white { color: var(--bc-white); opacity: 0.85; }
.bc-body--dark  { color: var(--bc-dark); }

.bc-label {
  font-family: var(--bc-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bc-clay);
}

.bc-label--white { color: var(--bc-blush); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.bc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--bc-font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--bc-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--bc-transition);
  text-decoration: none;
  white-space: nowrap;
}

.bc-btn--primary {
  background: var(--bc-clay);
  color: var(--bc-white);
  border-color: var(--bc-clay);
}

.bc-btn--primary:hover {
  background: #a85c48;
  border-color: #a85c48;
  color: var(--bc-white);
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(194,112,90,0.35);
}

.bc-btn--secondary {
  background: transparent;
  color: var(--bc-clay);
  border-color: var(--bc-clay);
}

.bc-btn--secondary:hover {
  background: var(--bc-clay);
  color: var(--bc-white);
  opacity: 1;
  transform: translateY(-1px);
}

.bc-btn--ghost {
  background: transparent;
  color: var(--bc-white);
  border-color: rgba(255,255,255,0.6);
}

.bc-btn--ghost:hover {
  background: var(--bc-white);
  color: var(--bc-dark);
  border-color: var(--bc-white);
  opacity: 1;
}

.bc-btn--dark {
  background: var(--bc-dark);
  color: var(--bc-cream);
  border-color: var(--bc-dark);
}

.bc-btn--dark:hover {
  background: #3d2e2a;
  border-color: #3d2e2a;
  color: var(--bc-cream);
  opacity: 1;
  transform: translateY(-1px);
}

.bc-btn--sm {
  padding: 10px 20px;
  font-size: 13px;
}

.bc-btn--full { width: 100%; justify-content: center; }

/* Arrow icon in button */
.bc-btn svg {
  width: 16px;
  height: 16px;
  transition: transform var(--bc-transition);
}
.bc-btn:hover svg { transform: translateX(3px); }

/* ── HERO SECTION ────────────────────────────────────────── */
.bc-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bc-dark);
}

.bc-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bc-hero__media img,
.bc-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(44,35,32,0.72) 0%,
    rgba(44,35,32,0.30) 55%,
    rgba(194,112,90,0.12) 100%
  );
  z-index: 1;
}

.bc-hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 40px 24px;
}

.bc-hero__eyebrow {
  display: inline-block;
  background: rgba(232,180,160,0.18);
  border: 1px solid rgba(232,180,160,0.4);
  color: var(--bc-blush);
  font-family: var(--bc-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.bc-hero__heading {
  font-family: var(--bc-font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.02;
  color: var(--bc-white);
  margin: 0 0 8px;
}

.bc-hero__heading em {
  font-style: italic;
  color: var(--bc-blush);
}

.bc-hero__subheading {
  font-family: var(--bc-font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  font-weight: 400;
  color: var(--bc-blush);
  margin: 0 0 20px;
}

.bc-hero__body {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(250,246,241,0.82);
  margin: 0 0 36px;
  max-width: 480px;
}

.bc-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.bc-hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250,246,241,0.5);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bc-scroll-hint 2.4s ease-in-out infinite;
}

.bc-hero__scroll-hint svg {
  width: 20px;
  height: 20px;
  stroke: rgba(250,246,241,0.5);
}

@keyframes bc-scroll-hint {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.9; transform: translateX(-50%) translateY(6px); }
}

/* ── BRAND PROMISE STRIP ─────────────────────────────────── */
.bc-promise-strip {
  background: var(--bc-cream);
  border-top: 1px solid rgba(194,112,90,0.15);
  border-bottom: 1px solid rgba(194,112,90,0.15);
  padding: 56px 24px;
  text-align: center;
}

.bc-promise-strip__text {
  font-family: var(--bc-font-display);
  font-size: clamp(20px, 3vw, 34px);
  font-style: italic;
  font-weight: 400;
  color: var(--bc-dark);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.5;
}

.bc-promise-strip__text strong {
  font-style: normal;
  font-weight: 700;
  color: var(--bc-clay);
}

/* ── PRODUCT GRID ────────────────────────────────────────── */
.bc-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) { .bc-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .bc-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.bc-product-card {
  background: var(--bc-white);
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--bc-transition), box-shadow var(--bc-transition);
  display: flex;
  flex-direction: column;
}

.bc-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bc-shadow-lg);
}

.bc-product-card__image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bc-light);
  overflow: hidden;
}

.bc-product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bc-product-card:hover .bc-product-card__image-wrap img {
  transform: scale(1.04);
}

.bc-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bc-clay);
  color: var(--bc-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.bc-product-card__body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bc-product-card__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bc-clay);
  margin-bottom: 6px;
}

.bc-product-card__title {
  font-family: var(--bc-font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--bc-dark);
  margin: 0 0 4px;
  line-height: 1.25;
}

.bc-product-card__tagline {
  font-size: 13px;
  color: var(--bc-mid);
  line-height: 1.5;
  margin: 0 0 16px;
  flex: 1;
}

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

.bc-product-card__price {
  font-family: var(--bc-font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--bc-dark);
}

.bc-product-card__price s {
  font-size: 13px;
  color: var(--bc-mid);
  font-weight: 400;
  margin-right: 4px;
}

.bc-product-card__add {
  background: var(--bc-clay);
  color: var(--bc-white);
  border: none;
  border-radius: var(--bc-radius);
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--bc-transition);
  white-space: nowrap;
  font-family: var(--bc-font-body);
}

.bc-product-card__add:hover {
  background: #a85c48;
  transform: translateY(-1px);
}

/* ── COLLECTION SPLIT ────────────────────────────────────── */
.bc-collection-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

@media (max-width: 768px) { .bc-collection-split { grid-template-columns: 1fr; } }

.bc-collection-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.bc-collection-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bc-collection-card:hover .bc-collection-card__img {
  transform: scale(1.05);
}

.bc-collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(44,35,32,0.75) 0%, rgba(44,35,32,0.05) 60%);
}

.bc-collection-card__content {
  position: relative;
  z-index: 2;
  padding: 40px 36px;
  width: 100%;
}

.bc-collection-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bc-blush);
  margin-bottom: 10px;
}

.bc-collection-card__title {
  font-family: var(--bc-font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--bc-white);
  margin: 0 0 8px;
  line-height: 1.1;
}

.bc-collection-card__desc {
  font-size: 15px;
  color: rgba(250,246,241,0.8);
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 340px;
}

/* ── VALUES STRIP ────────────────────────────────────────── */
.bc-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

@media (max-width: 768px) { .bc-values { grid-template-columns: 1fr; } }

.bc-value-card {
  background: var(--bc-white);
  padding: 52px 40px;
  text-align: center;
  transition: background var(--bc-transition);
}

.bc-value-card:hover { background: var(--bc-light); }

.bc-value-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  background: var(--bc-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-value-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--bc-clay);
  fill: none;
  stroke-width: 1.5;
}

.bc-value-card__title {
  font-family: var(--bc-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--bc-dark);
  margin: 0 0 12px;
}

.bc-value-card__body {
  font-size: 15px;
  color: var(--bc-mid);
  line-height: 1.65;
  margin: 0;
}

/* ── MANIFESTO / FULL-BLEED TEXT ─────────────────────────── */
.bc-manifesto {
  background: var(--bc-dark);
  padding: 100px 24px;
  text-align: center;
}

.bc-manifesto__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bc-blush);
  margin-bottom: 28px;
}

.bc-manifesto__text {
  font-family: var(--bc-font-display);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--bc-white);
  max-width: 900px;
  margin: 0 auto 16px;
}

.bc-manifesto__text em {
  font-style: italic;
  color: var(--bc-blush);
}

.bc-manifesto__sub {
  font-family: var(--bc-font-display);
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  color: rgba(250,246,241,0.55);
  max-width: 600px;
  margin: 0 auto 44px;
}

/* ── REVIEW CARDS ────────────────────────────────────────── */
.bc-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.bc-review-card {
  background: var(--bc-white);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid rgba(194,112,90,0.12);
  position: relative;
}

.bc-review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.bc-review-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--bc-clay);
}

.bc-review-card__quote {
  font-family: var(--bc-font-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: var(--bc-dark);
  margin: 0 0 20px;
}

.bc-review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bc-review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bc-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bc-font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--bc-clay);
  flex-shrink: 0;
}

.bc-review-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--bc-dark);
}

.bc-review-card__city {
  font-size: 12px;
  color: var(--bc-mid);
}

/* ── NEWSLETTER ──────────────────────────────────────────── */
.bc-newsletter {
  background: var(--bc-sage);
  padding: 80px 24px;
  text-align: center;
}

.bc-newsletter__title {
  font-family: var(--bc-font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--bc-dark);
  margin: 0 0 12px;
}

.bc-newsletter__body {
  font-size: 16px;
  color: rgba(44,35,32,0.7);
  margin: 0 0 36px;
}

.bc-newsletter__form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.bc-newsletter__input {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  border: 2px solid rgba(44,35,32,0.2);
  border-radius: var(--bc-radius);
  font-family: var(--bc-font-body);
  font-size: 15px;
  background: rgba(255,255,255,0.75);
  color: var(--bc-dark);
  outline: none;
  transition: border-color var(--bc-transition);
}

.bc-newsletter__input:focus { border-color: var(--bc-dark); background: var(--bc-white); }
.bc-newsletter__input::placeholder { color: var(--bc-mid); }

/* ── FOOTER ──────────────────────────────────────────────── */
.bc-footer {
  background: var(--bc-dark);
  color: var(--bc-cream);
  padding: 72px 0 32px;
}

.bc-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

@media (max-width: 900px) { .bc-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .bc-footer__grid { grid-template-columns: 1fr; } }

.bc-footer__brand-tagline {
  font-family: var(--bc-font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--bc-blush);
  margin: 16px 0 20px;
}

.bc-footer__social {
  display: flex;
  gap: 14px;
}

.bc-footer__social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(250,246,241,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bc-cream);
  transition: all var(--bc-transition);
}

.bc-footer__social-link:hover {
  border-color: var(--bc-blush);
  background: rgba(232,180,160,0.15);
  color: var(--bc-blush);
  opacity: 1;
}

.bc-footer__social-link svg { width: 18px; height: 18px; fill: currentColor; }

.bc-footer__heading {
  font-family: var(--bc-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bc-blush);
  margin: 0 0 18px;
}

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

.bc-footer__list li + li { margin-top: 10px; }

.bc-footer__list a {
  color: rgba(250,246,241,0.7);
  font-size: 14px;
  transition: color var(--bc-transition);
}

.bc-footer__list a:hover { color: var(--bc-blush); opacity: 1; }

.bc-footer__address {
  font-size: 13px;
  color: rgba(250,246,241,0.55);
  line-height: 1.7;
  margin: 0;
}

.bc-footer__bottom {
  border-top: 1px solid rgba(250,246,241,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.bc-footer__copy {
  font-size: 13px;
  color: rgba(250,246,241,0.4);
}

.bc-footer__legal {
  display: flex;
  gap: 20px;
}

.bc-footer__legal a {
  font-size: 13px;
  color: rgba(250,246,241,0.4);
}

.bc-footer__legal a:hover { color: var(--bc-blush); opacity: 1; }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.bc-about-hero {
  background: var(--bc-dark);
  padding: 100px 24px;
  text-align: center;
}

.bc-about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 768px) {
  .bc-about-story { grid-template-columns: 1fr; gap: 40px; }
}

.bc-about-story__img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.bc-about-story__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-about-story__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bc-clay);
  margin-bottom: 16px;
}

.bc-about-story__title {
  font-family: var(--bc-font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--bc-dark);
  margin: 0 0 20px;
  line-height: 1.2;
}

.bc-about-story__body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--bc-mid);
  margin: 0 0 16px;
}

/* ── PRODUCT PAGE ────────────────────────────────────────── */
.bc-product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 64px 0;
}

@media (max-width: 900px) {
  .bc-product-hero { grid-template-columns: 1fr; gap: 40px; }
}

.bc-product-hero__gallery {
  position: sticky;
  top: 100px;
}

.bc-product-hero__main-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--bc-light);
}

.bc-product-hero__main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-product-hero__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.bc-product-hero__thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--bc-transition);
  flex-shrink: 0;
}

.bc-product-hero__thumb.active,
.bc-product-hero__thumb:hover {
  border-color: var(--bc-clay);
}

.bc-product-hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-product-hero__info {
  padding-top: 8px;
}

.bc-product-hero__category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bc-clay);
  margin-bottom: 10px;
}

.bc-product-hero__title {
  font-family: var(--bc-font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  color: var(--bc-dark);
  margin: 0 0 8px;
  line-height: 1.15;
}

.bc-product-hero__hook {
  font-family: var(--bc-font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--bc-clay);
  margin: 0 0 24px;
}

.bc-product-hero__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(194,112,90,0.15);
}

.bc-product-hero__price {
  font-size: 28px;
  font-weight: 700;
  color: var(--bc-dark);
}

.bc-product-hero__price-compare {
  font-size: 18px;
  color: var(--bc-mid);
  text-decoration: line-through;
}

.bc-product-hero__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.bc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--bc-mid);
  background: var(--bc-light);
  border-radius: 100px;
  padding: 5px 12px;
}

.bc-badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--bc-clay);
  fill: none;
  stroke-width: 1.5;
}

.bc-product-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.bc-product-hero__benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bc-product-hero__benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--bc-mid);
  line-height: 1.5;
}

.bc-product-hero__benefit-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(194,112,90,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.bc-product-hero__benefit-icon svg {
  width: 10px;
  height: 10px;
  stroke: var(--bc-clay);
  fill: none;
  stroke-width: 2.5;
}

/* ── INGREDIENT ACCORDION ────────────────────────────────── */
.bc-accordion {
  border-top: 1px solid rgba(194,112,90,0.2);
}

.bc-accordion__item {
  border-bottom: 1px solid rgba(194,112,90,0.2);
}

.bc-accordion__trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--bc-font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--bc-dark);
  text-align: left;
  transition: color var(--bc-transition);
}

.bc-accordion__trigger:hover { color: var(--bc-clay); }

.bc-accordion__icon {
  width: 20px;
  height: 20px;
  stroke: var(--bc-clay);
  fill: none;
  stroke-width: 2;
  transition: transform var(--bc-transition);
  flex-shrink: 0;
}

.bc-accordion__item.open .bc-accordion__icon {
  transform: rotate(45deg);
}

.bc-accordion__body {
  display: none;
  padding-bottom: 20px;
  font-size: 15px;
  color: var(--bc-mid);
  line-height: 1.7;
}

.bc-accordion__item.open .bc-accordion__body {
  display: block;
}

/* ── COLLECTION PAGE ─────────────────────────────────────── */
.bc-collection-header {
  background: var(--bc-dark);
  padding: 72px 24px;
  text-align: center;
}

/* ── FAQ PAGE ────────────────────────────────────────────── */
.bc-faq {
  max-width: 720px;
  margin: 0 auto;
}

/* ── CART PAGE ───────────────────────────────────────────── */
.bc-cart-header {
  text-align: center;
  padding: 56px 24px 32px;
  border-bottom: 1px solid rgba(194,112,90,0.15);
}

.bc-cart-empty {
  text-align: center;
  padding: 80px 24px;
}

.bc-cart-empty__title {
  font-family: var(--bc-font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--bc-dark);
  margin: 0 0 12px;
}

.bc-cart-empty__body {
  font-size: 16px;
  color: var(--bc-mid);
  margin: 0 0 32px;
}

/* ── TRUST BADGES ────────────────────────────────────────── */
.bc-trust-strip {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 36px 24px;
  background: var(--bc-white);
  border-bottom: 1px solid rgba(194,112,90,0.1);
}

.bc-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--bc-mid);
}

.bc-trust-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--bc-clay);
  fill: none;
  stroke-width: 1.5;
}

/* ── SECTION HEADER (reusable) ───────────────────────────── */
.bc-section-header {
  text-align: center;
  margin-bottom: 56px;
}

.bc-section-header--left {
  text-align: left;
  margin-bottom: 40px;
}

.bc-section-header__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bc-clay);
  margin-bottom: 12px;
}

.bc-section-header__title {
  font-family: var(--bc-font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--bc-dark);
  margin: 0 0 12px;
  line-height: 1.2;
}

.bc-section-header__body {
  font-size: 16px;
  color: var(--bc-mid);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

.bc-section-header--left .bc-section-header__body { margin: 0; }

/* ── UTILITY ─────────────────────────────────────────────── */
.bc-text-center { text-align: center; }
.bc-text-left   { text-align: left; }
.bc-mt-4  { margin-top: 16px; }
.bc-mt-6  { margin-top: 24px; }
.bc-mt-8  { margin-top: 32px; }
.bc-mt-10 { margin-top: 40px; }
.bc-mb-6  { margin-bottom: 24px; }
.bc-mb-8  { margin-bottom: 32px; }
.bc-flex  { display: flex; }
.bc-gap-4 { gap: 16px; }
.bc-items-center { align-items: center; }
.bc-justify-center { justify-content: center; }

/* ── LOGO TEXT ───────────────────────────────────────────── */
.bc-logo {
  font-family: var(--bc-font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--bc-dark);
  letter-spacing: 0.02em;
}

.bc-logo span {
  color: var(--bc-clay);
}

.bc-logo--white { color: var(--bc-white); }
.bc-logo--white span { color: var(--bc-blush); }

/* ── RESPONSIVE UTILITIES ────────────────────────────────── */
@media (max-width: 768px) {
  .bc-section { padding: 60px 0; }
  .bc-section--lg { padding: 80px 0; }
  .bc-hero { min-height: 80vh; }
  .bc-hero__content { max-width: 100%; }
  .bc-hero__actions { flex-direction: column; }
  .bc-hero__actions .bc-btn { width: 100%; justify-content: center; }
  .bc-promise-strip { padding: 40px 24px; }
  .bc-manifesto { padding: 72px 24px; }
  .bc-collection-card__content { padding: 28px 24px; }
  .bc-value-card { padding: 40px 28px; }
  .bc-newsletter__form { flex-direction: column; }
  .bc-newsletter__input { min-width: 0; }
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes bc-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bc-animate-on-load {
  animation: bc-fade-up 0.7s ease both;
}

.bc-animate-delay-1 { animation-delay: 0.1s; }
.bc-animate-delay-2 { animation-delay: 0.22s; }
.bc-animate-delay-3 { animation-delay: 0.36s; }
.bc-animate-delay-4 { animation-delay: 0.5s; }
