/* ==========================================================================
   MEYOUSH BOUTIQUE — EXECUTIVE LUXURY DESIGN SYSTEM (BABYBOO COUTURE)
   World-class high-fashion e-commerce design, micro-motion & mobile perfection.
   Palette: Silk White, Alabaster Ivory, Obsidian Noir & Metallic Champagne Gold.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;1,6..96,400;1,6..96,500&family=Cinzel:wght@400;500;600;700&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Color Palette */
  --bb-bg: #ffffff;
  --bb-bg-subtle: #faf9f6;
  --bb-bg-card: #f5f4ef;
  --bb-noir: #111111;
  --bb-noir-deep: #0a0a0a;
  --bb-noir-light: #242424;
  --bb-text: #1a1a1a;
  --bb-text-muted: #666666;
  --bb-text-light: #949494;
  
  /* Metallic Champagne Gold */
  --bb-gold: #c5a059;
  --bb-gold-hover: #b08d46;
  --bb-gold-light: #ecdcb3;
  --bb-gold-pale: #faf6ec;
  --bb-gold-tint: rgba(197, 160, 89, 0.12);
  --bb-gold-border: rgba(197, 160, 89, 0.35);
  --bb-gold-glow: rgba(197, 160, 89, 0.28);

  /* Borders & Dividers */
  --bb-border: #eceae5;
  --bb-border-subtle: #f0eee9;
  --bb-border-dark: #2a2a2a;
  
  /* Haute Couture Typography */
  --font-display: 'Cinzel', 'Bodoni Moda', serif;
  --font-editorial: 'Bodoni Moda', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout Dimensions */
  --site-max-width: 1440px;
  --header-height: 74px;
  --announcement-height: 38px;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 45px -10px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 8px 24px rgba(197, 160, 89, 0.25);

  /* Motion Easings */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  font-size: 14px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bb-bg);
  color: var(--bb-text);
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
  touch-action: pan-y;
}

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f0eb;
}
::-webkit-scrollbar-thumb {
  background: var(--bb-gold);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--bb-gold-hover);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: var(--site-max-width);
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* ══════════════════════════════════════════════════════════════════
   1. KEYFRAME ANIMATIONS & SHIMMER
   ══════════════════════════════════════════════════════════════════ */
@keyframes goldShimmer {
  0% { transform: translateX(-150%) rotate(25deg); }
  100% { transform: translateX(250%) rotate(25deg); }
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes heartPulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

@keyframes toastSlideIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.bb-reveal {
  opacity: 1;
  transform: none;
}

.bb-reveal.is-revealed {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════════════════════════════
   2. TOP ANNOUNCEMENT BAR (BABYBOO STYLE ROTATOR)
   ══════════════════════════════════════════════════════════════════ */
.bb-announcement {
  background: linear-gradient(90deg, #0d0d0d 0%, #171717 50%, #0d0d0d 100%);
  color: #ffffff;
  height: var(--announcement-height);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 100;
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
}

.bb-announcement__track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bb-announcement__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.55s var(--ease-out);
  pointer-events: none;
  padding: 0 16px;
  text-align: center;
}

.bb-announcement__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.bb-announcement__link {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bb-announcement__link:hover {
  color: var(--bb-gold-light);
}

.bb-announcement__highlight {
  color: var(--bb-gold);
  font-weight: 600;
  text-shadow: 0 0 12px rgba(197, 160, 89, 0.4);
}

/* ══════════════════════════════════════════════════════════════════
   3. STICKY LUXURY HEADER & NAVIGATION
   ══════════════════════════════════════════════════════════════════ */
.bb-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--bb-border);
  z-index: 90;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}

.bb-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.99);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  height: 68px;
}

.bb-header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* Left Navigation */
.bb-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.bb-nav__link {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--bb-noir);
  position: relative;
  padding: 8px 0;
  display: inline-block;
  transition: color 0.25s ease;
}

.bb-nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--bb-gold);
  transition: width 0.3s var(--ease-out);
}

.bb-nav__link:hover::after,
.bb-nav__link.is-active::after {
  width: 100%;
}

.bb-nav__link:hover {
  color: var(--bb-gold-hover);
}

.bb-nav__link--gold {
  color: var(--bb-gold-hover);
  font-weight: 700;
}

/* Center Brand Logo */
.bb-brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 12px;
}

.bb-brand__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1;
  color: var(--bb-noir);
  text-transform: uppercase;
  transition: transform 0.25s ease, color 0.25s ease;
}

.bb-brand:hover .bb-brand__name {
  transform: scale(1.02);
  color: var(--bb-gold-hover);
}

.bb-brand__sub {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--bb-gold);
  margin-top: 5px;
}

/* Right Actions */
.bb-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.bb-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bb-noir);
  padding: 7px;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}

.bb-action-btn:hover {
  color: var(--bb-gold-hover);
  transform: translateY(-1.5px);
}

.bb-action-btn svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.5;
}

.bb-badge {
  position: absolute;
  top: 1px;
  right: -2px;
  background-color: var(--bb-noir);
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  border: 1.5px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s var(--ease-spring);
}

.bb-badge.has-items {
  background-color: var(--bb-gold);
  transform: scale(1.08);
}

.bb-currency-select {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bb-noir);
  background: transparent;
  border: 1px solid var(--bb-border);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease;
}

.bb-currency-select:hover {
  border-color: var(--bb-gold);
}

.bb-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 26px;
  height: 26px;
  padding: 2px;
}

.bb-mobile-toggle span {
  width: 100%;
  height: 1.5px;
  background-color: var(--bb-noir);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 1080px) {
  .bb-nav {
    display: none;
  }
  .bb-mobile-toggle {
    display: flex;
  }
  .bb-brand__name {
    font-size: 21px;
    letter-spacing: 0.18em;
  }
}

@media (max-width: 768px) {
  .bb-brand__name {
    font-size: 17.5px;
    letter-spacing: 0.15em;
  }
  .bb-currency-select {
    display: none;
  }
  .bb-actions {
    gap: 8px;
  }
  .bb-action-btn {
    padding: 6px;
  }
  .bb-action-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* ══════════════════════════════════════════════════════════════════
   4. EDITORIAL HERO SLIDESHOW
   ══════════════════════════════════════════════════════════════════ */
.bb-hero {
  position: relative;
  width: 100%;
  min-height: calc(88vh - var(--header-height));
  background-color: #0c0c0c;
  color: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bb-hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.05);
}

.bb-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  overflow: hidden;
}

@keyframes bbHeroKenBurns {
  0% { transform: scale(1); }
  50% { transform: scale(1.035); }
  100% { transform: scale(1); }
}

.bb-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.72);
  animation: bbHeroKenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}

.bb-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(10, 10, 10, 0.55) 45%,
    rgba(10, 10, 10, 0.3) 100%
  );
}

.bb-hero__content {
  position: relative;
  z-index: 10;
  max-width: 680px;
  padding: 80px 0;
}

.bb-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bb-gold-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bb-hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background-color: var(--bb-gold);
}

.bb-hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6.2vw, 68px);
  line-height: 1.06;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 22px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.bb-hero__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--bb-gold-light);
  margin-left: 4px;
}

.bb-hero__desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 36px;
  max-width: 530px;
}

.bb-hero__cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .bb-hero {
    min-height: 520px;
    height: 74vh;
  }
  .bb-hero__bg {
    object-position: center 25%;
    filter: brightness(0.65);
  }
  .bb-hero__overlay {
    background: linear-gradient(
      to top,
      rgba(10, 10, 10, 0.95) 0%,
      rgba(10, 10, 10, 0.55) 45%,
      rgba(10, 10, 10, 0.3) 100%
    );
  }
  .bb-hero__content {
    padding: 24px 0 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    max-width: 100%;
  }
  .bb-hero__eyebrow {
    font-size: 9.5px;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }
  .bb-hero__eyebrow::before {
    width: 18px;
  }
  .bb-hero__title {
    font-size: 42px;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
  }
  .bb-hero__desc {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.88);
  }
  .bb-hero__cta-group {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .bb-hero__cta-group .bb-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 11px;
    letter-spacing: 1.8px;
  }
}

/* High-Fashion Buttons with Shimmer */
.bb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: all 0.3s var(--ease-out);
  position: relative;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
}

.bb-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 40%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 60%
  );
  transform: translateX(-150%) rotate(25deg);
  transition: none;
}

.bb-btn:hover::before {
  animation: goldShimmer 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.bb-btn--solid {
  background-color: #ffffff;
  color: var(--bb-noir);
  border: 1px solid #ffffff;
}

.bb-btn--solid:hover {
  background-color: var(--bb-gold);
  color: #ffffff;
  border-color: var(--bb-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.bb-btn--noir {
  background-color: var(--bb-noir);
  color: #ffffff;
  border: 1px solid var(--bb-noir);
}

.bb-btn--noir:hover {
  background-color: var(--bb-gold);
  border-color: var(--bb-gold);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.bb-btn--outline-white {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.bb-btn--outline-white:hover {
  background-color: #ffffff;
  color: var(--bb-noir);
  border-color: #ffffff;
}

/* ══════════════════════════════════════════════════════════════════
   5. 3-COLUMN CURATED MOOD BANNERS (BABYBOO SIGNATURE)
   ══════════════════════════════════════════════════════════════════ */
.bb-categories {
  padding: 70px 0 35px;
  background-color: var(--bb-bg);
}

.bb-section-header {
  text-align: center;
  margin-bottom: 44px;
}

.bb-section-header__tag {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bb-gold);
  margin-bottom: 8px;
}

.bb-section-header__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.6vw, 36px);
  letter-spacing: 0.12em;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--bb-noir);
}

.bb-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.bb-category-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: var(--bb-bg-card);
  display: block;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-sm);
  transition: box-shadow 0.4s ease, transform 0.4s var(--ease-out);
}

.bb-category-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.bb-category-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--ease-out);
}

.bb-category-card:hover .bb-category-card__img {
  transform: scale(1.05);
}

.bb-category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.82) 0%,
    rgba(10, 10, 10, 0.25) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: #ffffff;
  transition: background 0.3s ease;
}

.bb-category-card:hover .bb-category-card__overlay {
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.9) 0%,
    rgba(10, 10, 10, 0.35) 50%,
    transparent 100%
  );
}

.bb-category-card__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--bb-gold-light);
  margin-bottom: 6px;
}

.bb-category-card__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: 0.12em;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
}

.bb-category-card__link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bb-category-card__link::after {
  content: '';
  width: 18px;
  height: 1.5px;
  background-color: var(--bb-gold);
  transition: width 0.3s var(--ease-out);
}

.bb-category-card:hover .bb-category-card__link::after {
  width: 34px;
}

@media (max-width: 860px) {
  .bb-category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .bb-category-card {
    aspect-ratio: 4 / 5;
    max-height: 480px;
  }
  .bb-category-card__overlay {
    padding: 24px 20px;
  }
  .bb-category-card__title {
    font-size: 26px;
    margin-bottom: 8px;
  }
  .bb-category-card__tag {
    font-size: 9.5px;
    letter-spacing: 1.8px;
  }
}

/* ══════════════════════════════════════════════════════════════════
   6. FILTER TABS & 4-COLUMN PRODUCT GRID
   ══════════════════════════════════════════════════════════════════ */
.bb-collection-section {
  padding: 60px 0 90px;
  background-color: var(--bb-bg);
}

.bb-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--bb-border);
  padding-bottom: 22px;
  margin-bottom: 38px;
  flex-wrap: wrap;
  gap: 18px;
}

.bb-filter-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bb-filter-pill {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: 1px solid var(--bb-border);
  background-color: transparent;
  color: var(--bb-noir);
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease-out);
}

.bb-filter-pill:hover {
  border-color: var(--bb-noir);
  transform: translateY(-1px);
}

.bb-filter-pill.is-active {
  background-color: var(--bb-noir);
  color: #ffffff;
  border-color: var(--bb-noir);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.bb-sort-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bb-sort-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--bb-text-muted);
}

.bb-sort-select {
  font-size: 12px;
  font-weight: 500;
  color: var(--bb-noir);
  border: 1px solid var(--bb-border);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background-color: #ffffff;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease;
}

.bb-sort-select:hover {
  border-color: var(--bb-gold);
}

@media (max-width: 768px) {
  .bb-filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 24px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .bb-filter-pills {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    padding: 2px 0 6px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .bb-filter-pills::-webkit-scrollbar {
    display: none;
  }
  .bb-filter-pill {
    flex-shrink: 0;
    font-size: 10px;
    padding: 8px 14px;
    letter-spacing: 1px;
    white-space: nowrap;
  }
  .bb-sort-wrap {
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .bb-sort-select {
    flex: 1;
    font-size: 11px;
    padding: 6px 10px;
    max-width: 100%;
  }
}

/* 4-Column Product Grid */
.bb-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 22px;
  width: 100%;
  min-width: 0;
}

@media (max-width: 1080px) {
  .bb-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 18px;
  }
}

@media (max-width: 768px) {
  .bb-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px 10px;
    width: 100%;
    min-width: 0;
  }
}

/* Product Card */
.bb-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
}

.bb-product-card__media {
  position: relative;
  aspect-ratio: 4 / 5; /* Matches exact 0.80 native ratio of all caplet images */
  background-color: var(--bb-bg-card);
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.bb-product-card__media::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 35%,
    rgba(255, 255, 255, 0.16) 48%,
    rgba(197, 160, 89, 0.12) 52%,
    transparent 65%
  );
  transform: translateX(-120%) rotate(25deg);
  pointer-events: none;
  z-index: 4;
  transition: transform 0.85s var(--ease-out);
}

.bb-product-card:hover .bb-product-card__media::after {
  transform: translateX(120%) rotate(25deg);
}

.bb-product-card:hover .bb-product-card__media {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.09);
  border-color: rgba(197, 160, 89, 0.35);
  transform: translateY(-3px);
}

/* Dual-Image Hover Flip (Signature Babyboo effect) */
.bb-product-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.5s ease, transform 0.65s var(--ease-out);
}

.bb-product-card__img--primary {
  opacity: 1;
  z-index: 1;
}

.bb-product-card__img--secondary {
  opacity: 0;
  z-index: 2;
}

.bb-product-card:hover .bb-product-card__img--primary {
  opacity: 0;
}

.bb-product-card:hover .bb-product-card__img--secondary {
  opacity: 1;
  transform: scale(1.05);
}

/* Floating Status Badges */
.bb-badge-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  background-color: var(--bb-noir);
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.bb-badge-tag--gold {
  background: linear-gradient(135deg, #c5a059 0%, #a88238 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 10px rgba(197, 160, 89, 0.35);
}

.bb-badge-tag--bridal {
  background-color: #ffffff;
  color: var(--bb-noir);
  border: 1px solid rgba(197, 160, 89, 0.45);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Wishlist Heart Button */
.bb-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 5;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-pill);
  background-color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bb-noir);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s var(--ease-spring), background 0.2s ease;
}

.bb-wishlist-btn:hover {
  transform: scale(1.15);
  background-color: #ffffff;
}

.bb-wishlist-btn.is-active svg {
  fill: #e53935;
  stroke: #e53935;
  animation: heartPulse 0.4s var(--ease-out);
}

.bb-wishlist-btn svg {
  width: 17px;
  height: 17px;
  transition: fill 0.2s ease;
}

/* Quick Add Button Bar (Appears on Hover on Desktop, Sleek Circular Button on Mobile) */
.bb-quick-add-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 6;
  background: rgba(17, 17, 17, 0.95);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease-out), background-color 0.2s ease;
  backdrop-filter: blur(8px);
}

.bb-product-card:hover .bb-quick-add-bar {
  transform: translateY(0);
}

.bb-quick-add-bar:hover {
  background-color: var(--bb-gold);
}

.bb-quick-add-bar.is-added {
  background-color: #2e7d32 !important;
}

@media (max-width: 768px) {
  .bb-quick-add-bar {
    position: absolute;
    bottom: 10px;
    right: 10px;
    left: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.90);
    color: #ffffff;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(0);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(197, 160, 89, 0.45);
    backdrop-filter: blur(8px);
    z-index: 6;
    touch-action: manipulation;
    transition: transform 0.2s var(--ease-spring), background-color 0.2s ease, border-color 0.2s ease;
  }
  .bb-quick-add-bar span {
    display: none;
  }
  .bb-quick-add-bar svg {
    width: 17px;
    height: 17px;
    margin: 0;
  }
  .bb-quick-add-bar.is-added {
    background: #2e7d32 !important;
    border-color: #2e7d32 !important;
    transform: scale(1.08);
  }
  .bb-quick-add-bar:active {
    transform: scale(0.90);
    background: var(--bb-gold) !important;
  }
  .bb-badge-tag {
    top: 8px;
    left: 8px;
    padding: 4px 7px;
    font-size: 8px;
    letter-spacing: 0.8px;
  }
  .bb-wishlist-btn {
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
  }
  .bb-wishlist-btn svg {
    width: 15px;
    height: 15px;
  }
}

/* Product Info */
.bb-product-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bb-product-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--bb-gold);
}

.bb-product-card__rating-text {
  font-size: 10px;
  color: var(--bb-text-muted);
}

.bb-product-card__title {
  font-family: var(--font-editorial);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bb-noir);
  line-height: 1.35;
  transition: color 0.25s ease;
}

.bb-product-card__title:hover {
  color: var(--bb-gold-hover);
}

.bb-product-card__price {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--bb-noir);
  margin-top: 3px;
}

.bb-product-card__material {
  font-size: 11px;
  color: var(--bb-text-muted);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ══════════════════════════════════════════════════════════════════
   7. EDITORIAL SPLIT FEATURE ("MADE FOR 'I DO'")
   ══════════════════════════════════════════════════════════════════ */
.bb-editorial-split {
  padding: 90px 0;
  background-color: var(--bb-bg-subtle);
  border-top: 1px solid var(--bb-border);
  border-bottom: 1px solid var(--bb-border);
}

.bb-editorial-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.bb-editorial-split__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--bb-border);
}

.bb-editorial-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.bb-editorial-split__media:hover img {
  transform: scale(1.04);
}

.bb-editorial-split__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.96);
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bb-gold-hover);
  border: 1px solid var(--bb-gold-border);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.bb-editorial-split__content {
  max-width: 530px;
}

.bb-editorial-split__tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bb-gold);
  margin-bottom: 12px;
}

.bb-editorial-split__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.15;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--bb-noir);
  margin-bottom: 22px;
}

.bb-editorial-split__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--bb-gold);
}

.bb-editorial-split__desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--bb-text-muted);
  margin-bottom: 26px;
}

.bb-editorial-split__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 38px;
}

.bb-editorial-split__perks li {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--bb-text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.bb-editorial-split__perks li svg {
  width: 19px;
  height: 19px;
  color: var(--bb-gold);
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .bb-editorial-split {
    padding: 48px 0;
  }
  .bb-editorial-split__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .bb-editorial-split__media {
    aspect-ratio: 4 / 5;
    max-height: 480px;
    width: 100%;
    margin: 0 auto;
    border-radius: var(--radius-sm);
  }
  .bb-editorial-split__title {
    font-size: 34px;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
  }
  .bb-editorial-split__desc {
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .bb-editorial-split__perks {
    gap: 10px;
    margin-bottom: 26px;
  }
}

/* ══════════════════════════════════════════════════════════════════
   8. ATELIER COUTURE PROMISE STRIP (INFINITE LUXURY MARQUEE)
   ══════════════════════════════════════════════════════════════════ */
.bb-atelier-strip {
  padding: 18px 0;
  background-color: var(--bb-noir-deep);
  border-top: 1px solid rgba(197, 160, 89, 0.3);
  border-bottom: 1px solid rgba(197, 160, 89, 0.3);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.bb-marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  width: 100%;
}

.bb-marquee-track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: bbMarqueeScroll 40s linear infinite;
  will-change: transform;
}

.bb-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes bbMarqueeScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.bb-marquee-item {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.bb-marquee-star {
  color: var(--bb-gold);
  font-size: 11px;
  display: inline-block;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .bb-atelier-strip {
    padding: 14px 0;
  }
  .bb-marquee-track {
    gap: 24px;
    animation-duration: 28s;
  }
  .bb-marquee-item {
    font-size: 9.5px;
    letter-spacing: 0.18em;
  }
}

/* ══════════════════════════════════════════════════════════════════
   9. REVIEWS & SOCIAL PROOF ("BEST DRESSED. GUARANTEED.")
   ══════════════════════════════════════════════════════════════════ */
.bb-reviews-section {
  padding: 75px 0;
  background-color: var(--bb-bg-subtle);
}

.bb-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.bb-review-card {
  background: #ffffff;
  padding: 34px 30px;
  border: 1px solid var(--bb-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bb-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bb-review-card__stars {
  color: var(--bb-gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.bb-review-card__quote {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--bb-text);
  font-style: italic;
  margin-bottom: 22px;
}

.bb-review-card__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--bb-border);
  padding-top: 16px;
}

.bb-review-card__name {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--bb-noir);
}

.bb-review-card__location {
  font-size: 10px;
  color: var(--bb-text-muted);
}

.bb-review-card__verified {
  font-size: 9.5px;
  font-weight: 600;
  color: #2e7d32;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 860px) {
  .bb-reviews-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ══════════════════════════════════════════════════════════════════
   10. INSTAGRAM GALLERY (@MEYOUSHBOUTIQUE)
   ══════════════════════════════════════════════════════════════════ */
.bb-insta-section {
  padding: 65px 0 0;
  background-color: #ffffff;
}

.bb-insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.bb-insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}

.bb-insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.bb-insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bb-insta-item:hover img {
  transform: scale(1.08);
}

.bb-insta-item:hover .bb-insta-overlay {
  opacity: 1;
}

.bb-insta-overlay svg {
  width: 26px;
  height: 26px;
}

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

/* ══════════════════════════════════════════════════════════════════
   11. NEWSLETTER CLUB & FOOTER
   ══════════════════════════════════════════════════════════════════ */
.bb-footer {
  background-color: var(--bb-noir);
  color: #ffffff;
  padding: 75px 0 45px;
}

.bb-newsletter {
  max-width: 620px;
  margin: 0 auto 65px;
  text-align: center;
}

.bb-newsletter__tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bb-gold);
  margin-bottom: 8px;
}

.bb-newsletter__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 32px);
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
}

.bb-newsletter__desc {
  font-size: 13.5px;
  color: #aaaaaa;
  margin-bottom: 26px;
}

.bb-newsletter__form {
  display: flex;
  max-width: 490px;
  margin: 0 auto;
}

.bb-newsletter__input {
  flex: 1;
  padding: 15px 20px;
  background-color: #1e1e1e;
  border: 1px solid #333333;
  color: #ffffff;
  font-size: 12px;
  outline: none;
  border-right: none;
  transition: border-color 0.25s ease;
}

.bb-newsletter__input::placeholder {
  color: #777777;
}

.bb-newsletter__input:focus {
  border-color: var(--bb-gold);
}

.bb-newsletter__submit {
  padding: 15px 26px;
  background-color: var(--bb-gold);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.bb-newsletter__submit:hover {
  background-color: var(--bb-gold-hover);
}

.bb-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 55px;
  margin-bottom: 55px;
}

.bb-footer__brand p {
  font-size: 12px;
  line-height: 1.65;
  color: #aaaaaa;
  max-width: 290px;
  margin-top: 14px;
}

.bb-footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 18px;
}

.bb-footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.bb-footer__col a {
  font-size: 12px;
  color: #aaaaaa;
}

.bb-footer__col a:hover {
  color: var(--bb-gold-light);
}

.bb-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 26px;
  font-size: 11px;
  color: #777777;
  flex-wrap: wrap;
  gap: 16px;
}

.bb-payment-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 100%;
}

.bb-payment-badge {
  background-color: #1e1e1e;
  border: 1px solid #333333;
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 2px;
  letter-spacing: 0.6px;
}

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

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

/* ══════════════════════════════════════════════════════════════════
   12. SLIDE-OUT CART DRAWER (AJAX BAG)
   ══════════════════════════════════════════════════════════════════ */
.bb-cart-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.bb-cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.bb-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 440px;
  max-width: 100vw;
  height: 100%;
  background-color: #ffffff;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.16);
}

.bb-cart-drawer.is-open {
  transform: translateX(0);
}

.bb-cart-drawer__header {
  padding: 22px 26px;
  border-bottom: 1px solid var(--bb-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bb-cart-drawer__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bb-noir);
}

.bb-cart-drawer__close {
  padding: 6px;
  color: var(--bb-noir);
  transition: transform 0.2s ease;
}

.bb-cart-drawer__close:hover {
  transform: scale(1.15);
}

/* Free shipping threshold bar */
.bb-shipping-bar {
  background-color: var(--bb-bg-subtle);
  border-bottom: 1px solid var(--bb-border);
  padding: 15px 26px;
  text-align: center;
}

.bb-shipping-bar__text {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--bb-noir);
  margin-bottom: 9px;
}

.bb-shipping-bar__text span {
  color: var(--bb-gold-hover);
}

.bb-shipping-bar__progress-track {
  width: 100%;
  height: 5px;
  background-color: var(--bb-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.bb-shipping-bar__progress-fill {
  height: 100%;
  background-color: var(--bb-gold);
  width: 0%;
  transition: width 0.5s var(--ease-out), background-color 0.3s ease;
}

.bb-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bb-cart-empty {
  text-align: center;
  padding: 65px 20px;
  color: var(--bb-text-muted);
}

.bb-cart-empty p {
  margin-bottom: 22px;
  font-size: 14.5px;
}

.bb-cart-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--bb-border);
  padding-bottom: 18px;
}

.bb-cart-item__thumb {
  width: 74px;
  aspect-ratio: 0.72;
  object-fit: cover;
  background-color: var(--bb-bg-card);
  border-radius: var(--radius-sm);
}

.bb-cart-item__title {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--bb-noir);
  margin-bottom: 4px;
}

.bb-cart-item__price {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--bb-gold-hover);
  margin-bottom: 8px;
}

.bb-cart-item__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--bb-border);
  border-radius: var(--radius-sm);
}

.bb-cart-item__qty button {
  width: 28px;
  height: 28px;
  font-size: 14px;
  color: var(--bb-noir);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.bb-cart-item__qty button:hover {
  background-color: var(--bb-bg-card);
}

.bb-cart-item__qty span {
  font-size: 11px;
  font-weight: 600;
  padding: 0 10px;
}

.bb-cart-item__remove {
  color: var(--bb-text-light);
  font-size: 18px;
  padding: 6px;
  transition: color 0.2s, transform 0.2s;
}

.bb-cart-item__remove:hover {
  color: #e53935;
  transform: scale(1.15);
}

.bb-cart-drawer__footer {
  border-top: 1px solid var(--bb-border);
  padding: 22px 26px calc(22px + env(safe-area-inset-bottom, 0px));
  background-color: #ffffff;
}

@media (max-width: 640px) {
  .bb-cart-drawer {
    width: 100vw;
    max-width: 100vw;
  }
  .bb-cart-drawer__footer {
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 12px));
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
  }
  .bb-cart-checkout-btn {
    padding: 18px;
    font-size: 13px;
  }
}

.bb-cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  color: var(--bb-noir);
  margin-bottom: 16px;
}

.bb-cart-subtotal__val {
  font-size: 17px;
  color: var(--bb-noir);
}

.bb-cart-checkout-btn {
  width: 100%;
  padding: 16px;
  background-color: var(--bb-noir);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.bb-cart-checkout-btn:hover {
  background-color: var(--bb-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.bb-cart-trust {
  text-align: center;
  font-size: 10.5px;
  color: var(--bb-text-muted);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ══════════════════════════════════════════════════════════════════
   13. SEARCH OVERLAY MODAL
   ══════════════════════════════════════════════════════════════════ */
.bb-search-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(17, 17, 17, 0.96);
  backdrop-filter: blur(12px);
  z-index: 1010;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
}

.bb-search-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.bb-search-modal__close {
  align-self: flex-end;
  color: #ffffff;
  font-size: 26px;
  padding: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.bb-search-modal__close:hover {
  transform: scale(1.15);
  color: var(--bb-gold);
}

.bb-search-box {
  max-width: 720px;
  width: 100%;
  margin: 40px auto 0;
}

.bb-search-input-wrap {
  position: relative;
  border-bottom: 2px solid var(--bb-gold);
  padding-bottom: 14px;
  display: flex;
  align-items: center;
}

.bb-search-input {
  width: 100%;
  background: transparent;
  border: none;
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: 2px;
  color: #ffffff;
  outline: none;
}

.bb-search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.bb-search-results {
  margin-top: 32px;
  max-height: 55vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 640px) {
  .bb-search-results {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════════
   14. MOBILE NAVIGATION DRAWER & FLOATING BAG
   ══════════════════════════════════════════════════════════════════ */
.bb-mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background-color: #ffffff;
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.14);
}

.bb-mobile-nav-drawer.is-open {
  transform: translateX(0);
}

.bb-mobile-nav-header {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--bb-border);
}

.bb-mobile-nav-links {
  list-style: none;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bb-mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bb-noir);
  transition: color 0.2s ease;
}

.bb-mobile-nav-links a:hover {
  color: var(--bb-gold-hover);
}

/* ══════════════════════════════════════════════════════════════════
   15. DESKTOP LUXURY FLUID CURSOR & STAGGER MOTION
   ══════════════════════════════════════════════════════════════════ */
.bb-cursor {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .bb-cursor {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transition: opacity 0.3s ease;
  }

  .bb-cursor__dot {
    position: fixed;
    top: -3px;
    left: -3px;
    width: 6px;
    height: 6px;
    background-color: var(--bb-gold);
    border-radius: 50%;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    transition: transform 0.08s ease-out, opacity 0.2s ease;
    box-shadow: 0 0 8px rgba(197, 160, 89, 0.6);
  }

  .bb-cursor__ring {
    position: fixed;
    top: -18px;
    left: -18px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(197, 160, 89, 0.55);
    border-radius: 50%;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), top 0.35s var(--ease-out), left 0.35s var(--ease-out), border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .bb-cursor.is-hovering .bb-cursor__ring {
    width: 52px;
    height: 52px;
    top: -26px;
    left: -26px;
    border-color: var(--bb-gold);
    background-color: rgba(197, 160, 89, 0.08);
    box-shadow: 0 0 24px rgba(197, 160, 89, 0.25);
  }

  .bb-cursor.is-hidden {
    opacity: 0;
  }
}

@media (max-width: 860px) {
  .bb-cursor {
    display: none !important;
  }
}

/* Card Entrance Cascade */
.bb-product-card {
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
