/* BlueMountain Store — page components */

/* ── Layout ── */
.bm-page { background: var(--bg-cream); min-height: 60vh; }
.bm-page-inner { padding: 36px 0 80px; }
.bm-breadcrumb {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.bm-breadcrumb a { color: var(--text-muted); }
.bm-breadcrumb a:hover { color: var(--primary); }

/* ── Home hero ── */
body.has-overlay-header { padding-top: 0; }
body.has-overlay-header .utility-bar { display: none; }
body.has-overlay-header .main-header {
  position: absolute;
  left: 0; right: 0;
  background: transparent;
  border: none;
}
.bm-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  margin-top: 0;
  padding: 140px 0 100px;
  overflow: hidden;
}
.bm-hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bm-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
  z-index: 0;
}
.bm-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
  animation: bmHeroKenBurns 9s ease-out forwards;
}
.bm-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(18, 21, 23, 0.25) 0%,
    rgba(18, 21, 23, 0.55) 55%,
    rgba(18, 21, 23, 0.75) 100%
  );
  pointer-events: none;
}
.bm-hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.bm-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.bm-hero-dot.is-active {
  background: var(--sage-btn);
  border-color: var(--sage-btn);
  transform: scale(1.15);
}
.bm-hero-dot:hover { border-color: var(--sage-btn); }
.bm-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
}
.bm-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18, 21, 23, 0.3) 0%,
    rgba(18, 21, 23, 0.55) 55%,
    rgba(18, 21, 23, 0.78) 100%
  );
}
.bm-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 0 20px;
  text-align: left;
}
.bm-hero-accent-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-peach);
  margin-bottom: 12px;
  font-weight: 700;
}
.bm-hero-accent {
  display: inline;
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}
.bm-hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.bm-btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 16px 32px;
  transition: var(--transition);
}
.bm-btn-ghost:hover {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}
@keyframes bmHeroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}
.bm-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 18px;
}
.bm-hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.bm-btn-sage {
  display: inline-block;
  background: var(--sage-btn);
  color: var(--sage-btn-text);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  border: none;
  transition: var(--transition);
  box-shadow: none;
}
.bm-btn-sage:hover {
  background: var(--sage);
  color: var(--sage-btn-text);
  transform: translateY(-1px);
}

/* ── Home sections ── */
.bm-banners { padding: 48px 0; background: var(--bg-cream); }
.bm-banners-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 18px; }
.bm-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  min-height: 300px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.bm-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  transition: transform 0.5s ease;
}
.bm-banner:hover img { transform: scale(1.06); }
.bm-banner:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(18, 21, 23, 0.22); }
.bm-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 35%, rgba(18,21,23,0.82) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
}
.bm-banner-tag {
  display: inline-block;
  background: var(--sage-btn);
  color: var(--sage-btn-text);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  width: fit-content;
}
.bm-banner h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}
.bm-banner p { font-size: 0.86rem; color: rgba(255,255,255,0.82); }

.bm-section { padding: 64px 0; }
.bm-sec-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.bm-sec-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--primary);
}
.bm-sec-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 400;
}
.bm-sec-link { color: var(--primary); font-weight: 600; font-size: 0.88rem; }
.bm-sec-link:hover { color: var(--accent-peach); }

.bm-prod-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.bm-prod-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.bm-prod-img { position: relative; aspect-ratio: 1/1; background: var(--bg-light); overflow: hidden; }
.bm-prod-img img { width: 100%; height: 100%; object-fit: cover; }
.bm-prod-sale {
  position: absolute; top: 12px; right: 12px;
  background: var(--accent-peach);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
}
.bm-prod-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.bm-prod-cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.bm-prod-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}
.bm-prod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.bm-prod-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
}
.bm-prod-cart,
.bm-prod-add {
  background: var(--sage-btn);
  color: var(--sage-btn-text);
  border: none;
  width: 36px; height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
  flex-shrink: 0;
}
.bm-prod-cart:hover,
.bm-prod-add:hover { background: var(--sage); }

.bm-drinks { padding: 40px 0 64px; background: var(--bg-cream); }
.bm-drinks-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.bm-drinks-visual { position: relative; background: var(--primary-dark); min-height: 320px; }
.bm-drinks-visual img { width: 100%; height: 100%; object-fit: cover; }
.bm-drinks-content {
  background: var(--sage-btn);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bm-drinks-kicker {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-peach);
  margin-bottom: 10px;
  font-weight: 700;
}
.bm-drinks-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--sage-btn-text);
  margin-bottom: 12px;
}
.bm-drinks-content p {
  color: var(--sage-btn-text);
  opacity: 0.82;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.bm-drinks-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bm-drinks-feat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--sage-btn-text);
}
.bm-drinks-feat i { color: var(--primary); }

.bm-trust {
  padding: 72px 0;
  background: var(--bg-light);
  text-align: center;
}
.bm-trust-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.bm-trust h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--primary);
  margin-bottom: 12px;
}
.bm-trust p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 28px;
}
.bm-trust-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
}
.bm-trust-form input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  font-size: 0.88rem;
  outline: none;
  background: var(--white);
}
.bm-trust-form button {
  background: var(--primary-dark);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.bm-trust-form button:hover { background: var(--primary); }

/* ── Footers ── */
footer.footer-home {
  background: var(--bg-section) !important;
  padding: 40px 0 !important;
  border-top: 1px solid var(--border);
}
.footer-home-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer-home-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: block;
  margin-bottom: 6px;
}
.footer-home-tagline { font-size: 0.82rem; color: var(--text-muted); max-width: 280px; }
.footer-home-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-home-links a {
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 500;
}
.footer-home-links a:hover { color: var(--primary); }
.footer-home-copy {
  text-align: right;
  font-size: 0.8rem;
  color: var(--text-muted);
}

footer.footer-dark {
  background: var(--navy-deep) !important;
  color: rgba(255,255,255,0.65);
  padding: 56px 0 0 !important;
  border-top: none;
}
.footer-dark-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-dark .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-dark .footer-tagline {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-dark .footer-col h4 {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-dark .footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.86rem;
}
.footer-dark .footer-links a:hover { color: var(--sage); }
.footer-dark .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 0;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
}
.footer-dark .footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-dark .footer-bottom a:hover { color: var(--sage); }
.footer-dark-icons { display: flex; gap: 14px; }
.footer-dark-icons a { color: rgba(255,255,255,0.45); font-size: 0.9rem; }

/* ── Shop page ── */
.bm-shop-page { background: var(--bg-cream); }
.bm-shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
.bm-sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 18px;
}
.bm-sidebar-store {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.bm-sidebar-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.bm-cat-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  margin: 2px 0;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}
.bm-cat-nav a i { width: 18px; color: var(--text-muted); text-align: center; }
.bm-cat-nav a:hover { background: var(--bg-light); }
.bm-cat-nav a.active {
  background: var(--sage-btn);
  color: var(--sage-btn-text);
  font-weight: 600;
}
.bm-cat-nav a.active i { color: var(--sage-btn-text); }
.bm-filter-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.bm-brand-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.86rem;
  color: var(--text-dark);
  cursor: pointer;
}
.bm-brand-check input { accent-color: var(--primary); }
.bm-price-range {
  width: 100%;
  accent-color: var(--accent-peach);
  margin: 12px 0 8px;
}
.bm-price-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.bm-btn-reset {
  width: 100%;
  background: var(--accent-peach);
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.bm-btn-reset:hover { background: var(--accent-peach-dark); }

.bm-shop-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.bm-shop-top h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.bm-shop-top .count { font-size: 0.86rem; color: var(--text-muted); }
.bm-sort-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bm-sort-wrap label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.bm-sort-wrap select {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.85rem;
  background: var(--white);
  cursor: pointer;
  outline: none;
}

.bm-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.bm-shop-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.bm-shop-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.bm-shop-card .img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--bg-light);
  overflow: hidden;
}
.bm-shop-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.bm-shop-card .badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 6px;
  z-index: 2;
}
.bm-shop-card .badge-sale { background: var(--accent-peach); color: var(--white); }
.bm-shop-card .badge-new { background: var(--sage); color: var(--primary-dark); }
.bm-shop-card .badge-out { background: #991b1b; color: var(--white); }
.bm-shop-card .body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.bm-shop-card .brand {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.bm-shop-card .name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1.35;
  margin-bottom: 8px;
}
.bm-shop-card .name a { color: inherit; }
.bm-shop-card .rating {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.bm-shop-card .rating i { color: var(--gold); }
.bm-shop-card .foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.bm-shop-card .price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
}
.bm-shop-card .price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  margin-left: 6px;
}
.bm-shop-card .add-btn {
  background: var(--sage-btn);
  color: var(--sage-btn-text);
  border: none;
  width: 36px; height: 36px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.bm-shop-card .add-btn:hover { background: var(--sage); color: var(--sage-btn-text); }

.bm-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.bm-pagination a {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
}
.bm-pagination a.active,
.bm-pagination a:hover {
  background: var(--accent-peach);
  color: var(--white);
  border-color: var(--accent-peach);
}

/* ── Product page ── */
.bm-pd-page { background: var(--white); }
.bm-pd-brand {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.bm-pd-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.15;
  margin-bottom: 12px;
}
.bm-pd-stars { color: var(--gold); font-size: 1rem; }
.bm-pd-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}
.bm-pd-price-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-left: 10px;
}
.bm-pd-stock {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #166534;
  margin: 16px 0;
}
.bm-size-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.bm-size-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.bm-size-btn {
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}
.bm-size-btn.active,
.bm-size-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.bm-pd-actions { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.bm-qty-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 50px;
}
.bm-qty-box button {
  width: 42px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-dark);
}
.bm-qty-box input {
  width: 40px;
  text-align: center;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.bm-btn-add-cart {
  flex: 1;
  height: 52px;
  background: var(--accent-peach);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: none;
}
.bm-btn-add-cart:hover { background: var(--accent-peach); color: var(--white); }
.bm-pd-ship-note { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

.bm-tabs { display: flex; gap: 28px; border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.bm-tab {
  padding: 14px 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.bm-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.bm-tab-panel { display: none; }
.bm-tab-panel.active { display: block; }
.bm-tab-panel p { font-family: var(--font-heading); font-size: 0.95rem; line-height: 1.8; color: var(--text-muted); }
.bm-tab-panel ul { margin: 16px 0 0 20px; color: var(--text-muted); line-height: 1.8; }

.bm-features-section { padding: 56px 0; background: var(--bg-cream); }
.bm-features-head {
  text-align: center;
  margin-bottom: 36px;
}
.bm-features-head h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary-dark);
}
.bm-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bm-feature-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.bm-feature-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(0, 98, 160, 0.12);
  color: var(--accent-peach);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}
.bm-feature-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.bm-feature-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

.bm-crosssell { padding: 56px 0 80px; }
.bm-crosssell-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.bm-crosssell-head h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-dark);
}
.bm-crosssell-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bm-xs-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.bm-xs-card .img {
  aspect-ratio: 1/1;
  background: var(--bg-light);
  overflow: hidden;
}
.bm-xs-card .img img { width: 100%; height: 100%; object-fit: cover; }
.bm-xs-card .info { padding: 14px 16px 16px; }
.bm-xs-card .info h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.bm-xs-card .info .price {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}
.bm-xs-card .xs-add {
  position: absolute;
  bottom: 14px; right: 14px;
  background: var(--sage-btn);
  border: none;
  width: 34px; height: 34px;
  border-radius: 8px;
  cursor: pointer;
  color: var(--sage-btn-text);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.bm-xs-card .xs-add:hover { background: var(--sage); }

.bm-gallery-main {
  flex: 1;
  aspect-ratio: 1/1;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.bm-gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }
.bm-gallery-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--sage);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
}
.bm-thumbs { display: flex; flex-direction: column; gap: 12px; width: 72px; }
.bm-thumb {
  width: 72px; height: 72px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
}
.bm-thumb.active { border-color: var(--primary); }
.bm-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ── Cart page ── */
.bm-cart-page { background: var(--bg-cream); }
.bm-cart-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 28px;
}
.bm-cart-table-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 0 28px 28px;
  overflow-x: auto;
}
.bm-cart-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.bm-cart-table th {
  text-align: left;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 20px 12px;
  border-bottom: 1px solid var(--border);
}
.bm-cart-table td {
  padding: 22px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.bm-cart-product { display: flex; align-items: center; gap: 16px; }
.bm-cart-product img {
  width: 72px; height: 72px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--bg-light);
}
.bm-cart-product h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.bm-cart-product p { font-size: 0.8rem; color: var(--text-muted); }
.bm-cart-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
}
.bm-cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.bm-cart-qty button {
  width: 32px; height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.bm-cart-qty input {
  width: 36px;
  text-align: center;
  border: none;
  font-weight: 700;
  font-size: 0.88rem;
}
.bm-cart-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  padding: 8px;
}
.bm-cart-remove:hover { color: var(--accent-peach); }
.bm-cart-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.bm-cart-continue {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--primary);
}
.bm-cart-promo { display: flex; gap: 0; }
.bm-cart-promo input {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 0.85rem;
  outline: none;
  min-width: 160px;
}
.bm-cart-promo button {
  padding: 12px 20px;
  border: 1.5px solid var(--primary);
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
}

.bm-summary-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.bm-summary-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 22px;
}
.bm-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.bm-summary-divider {
  border: none;
  border-top: 2px dashed var(--border);
  margin: 20px 0;
}
.bm-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}
.bm-summary-total span:first-child {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-dark);
}
.bm-summary-total span:last-child {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}
.bm-ship-box {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.bm-ship-box i { color: var(--primary); margin-top: 2px; }
.bm-ship-box strong { display: block; color: var(--primary-dark); margin-bottom: 4px; }
.bm-btn-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 54px;
  background: var(--accent-peach);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: none;
}
.bm-btn-checkout:hover { background: var(--accent-peach); color: var(--white); }
.bm-pay-icons {
  text-align: center;
  margin-top: 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.bm-pay-icons div { display: flex; justify-content: center; gap: 8px; margin-top: 10px; opacity: 0.6; }
.bm-secure-bar {
  margin-top: 16px;
  background: rgba(0, 98, 160, 0.10);
  border: 1px solid rgba(0, 98, 160, 0.22);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-peach-dark);
}
.bm-cart-grid { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }

/* ── Auth & content pages ── */
.bm-auth-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: var(--bg-cream);
}
.bm-auth-card {
  background: var(--white);
  padding: 48px;
  max-width: 480px;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.bm-auth-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 28px;
}
.bm-auth-card h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.bm-content-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}
.bm-content-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.bm-content-hero p {
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}
.bm-content-body { padding: 56px 0 80px; }
.bm-content-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.bm-content-card h2 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  font-size: 1.5rem;
  margin: 40px 0 16px;
}
.bm-content-card h2:first-child { margin-top: 0; }
.bm-content-card p, .bm-content-card li {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}
.bm-btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.bm-btn-primary:hover { background: var(--primary-dark); color: var(--white); }
.bm-btn-sage-fill {
  display: inline-block;
  background: var(--sage-btn);
  color: var(--sage-btn-text);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.bm-btn-sage-fill:hover { background: var(--sage); color: var(--sage-btn-text); }

/* Account */
.bm-account-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}
.bm-account-sidebar .user-info-card {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.bm-account-sidebar h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--primary-dark);
}
.bm-account-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.bm-account-content > h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 32px;
}
.bm-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.bm-pagination a, .bm-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary-dark);
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
}
.bm-pagination a:hover, .bm-pagination a.active {
  background: var(--accent-peach);
  color: var(--white);
  border-color: var(--accent-peach);
}
.bm-wishlist-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.bm-wishlist-head h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--primary);
}
.bm-empty-state {
  text-align: center;
  padding: 80px 20px;
}
.bm-empty-state i { font-size: 3.5rem; color: var(--border); margin-bottom: 20px; }
.bm-empty-state h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
.bm-form-input:focus {
  border-color: var(--primary) !important;
  background: var(--white) !important;
}

/* Legacy content pages — theme override */
.page-content-main {
  background: var(--bg-cream);
  padding: 0 0 80px;
}
.page-content-main .page-content-card,
main .container.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}
.page-content-card h1,
main .container.card > h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--primary);
  margin-bottom: 12px;
}
.page-content-card .page-intro,
main .container.card > p:first-of-type {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: 1rem;
}
.policy-content h2 {
  font-family: var(--font-heading);
  color: var(--primary-dark) !important;
  font-size: 1.4rem !important;
  margin: 36px 0 14px !important;
}
.policy-content p {
  color: var(--text-muted);
  line-height: 1.85;
}
.btn.btn-dark, .btn-dark {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-color: var(--primary) !important;
  border-radius: var(--radius-pill) !important;
}
.btn.btn-dark:hover, .btn-dark:hover {
  background: var(--primary-dark) !important;
}
.btn.btn-outline-dark, .btn-outline-dark {
  border: 2px solid var(--primary) !important;
  color: var(--primary) !important;
  border-radius: var(--radius-pill) !important;
  background: transparent !important;
}
.btn.btn-outline-dark:hover {
  background: var(--primary) !important;
  color: var(--white) !important;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .bm-shop-layout { grid-template-columns: 1fr; }
  .bm-products-grid { grid-template-columns: repeat(2, 1fr); }
  .bm-crosssell-grid { grid-template-columns: repeat(2, 1fr); }
  .bm-cart-grid { grid-template-columns: 1fr; }
  .footer-home-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-home-copy { text-align: center; }
  .footer-home-links { justify-content: center; }
}
@media (max-width: 992px) {
  .bm-account-layout { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .bm-banners-grid { grid-template-columns: 1fr; }
  .bm-drinks-split { grid-template-columns: 1fr; }
  .bm-drinks-features { grid-template-columns: 1fr; }
  .bm-features-grid { grid-template-columns: 1fr; }
  .bm-products-grid { grid-template-columns: 1fr; }
  .bm-hero { min-height: 70vh; padding: 100px 0 72px; }
  .bm-hero-content { max-width: 100%; padding: 0 8px; }
  .bm-hero-cta-row { flex-direction: column; align-items: stretch; }
  .bm-hero-cta-row a { text-align: center; width: 100%; }
  .bm-sec-head { flex-direction: column; align-items: flex-start !important; gap: 12px; }
  .bm-shop-top { flex-direction: column; align-items: flex-start !important; gap: 16px; }
  .bm-sort-wrap { width: 100%; }
  .bm-sort-wrap select { width: 100%; }
  .footer-dark-grid { grid-template-columns: 1fr; gap: 28px; }
  .bm-trust-form { flex-direction: column; gap: 10px; max-width: 100%; padding: 0 12px; }
  .bm-trust-form input, .bm-trust-form button { border-radius: var(--radius-pill); border-right: 1px solid var(--border); width: 100%; }
  .bm-page-inner { padding: 24px 0 56px; }
}
