/* ============================================================
   B&C Frames — storefront + inventory manager styles
   Black & Gold luxury theme matching the B&C Frames logo.
   primary #c5a55a (gold)  ·  accent #d4b96e  ·  ink #1a1a1a
   Fonts: Montserrat (display) / Open Sans (body)
   ============================================================ */
:root {
  --bc-primary: #c5a55a;
  --bc-primary-dark: #a8893d;
  --bc-accent: #d4b96e;
  --bc-olive: #c5a55a;
  --bc-ink: #1a1a1a;
  --bc-muted: #8a8a8a;
  --bc-line: #2a2a2a;
  --bc-bg: #111111;
  --bc-header-bg: #111111;
  --bc-surface: #0a0a0a;
  --bc-card: #1e1e1e;
  --bc-text: #e8e8e8;
  --bc-text-secondary: #b0b0b0;
  --bc-radius: 14px;
  --bc-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  --bc-shadow-lg: 0 18px 50px rgba(0, 0, 0, 0.5);
  --bc-ok: #2ebd6b;
  --bc-warn: #d4a017;
  --bc-danger: #e05555;
}

.bc-body {
  background: var(--bc-bg);
  font-family: 'Open Sans', 'Montserrat', sans-serif;
  color: var(--bc-text);
}
.bc-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.bc-mono { font-variant-numeric: tabular-nums; }
h1, h2, h3, h4, .bc-display { font-family: 'Montserrat', sans-serif; }

/* ---------- focus-visible (keyboard accessibility) ---------- */
:focus-visible {
  outline: 2px solid var(--bc-primary);
  outline-offset: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* ---------- header / navigation ---------- */
.bc-topbar { background: #0a0a0a; border-bottom: 1px solid #222; }
.bc-header { background: var(--bc-header-bg); border-bottom: 1px solid var(--bc-line); position: sticky; top: 0; z-index: 600; }
.bc-header-inner { display: flex; align-items: center; gap: 20px; padding-top: 12px; padding-bottom: 12px; }
.bc-logo { flex-shrink: 0; }
.bc-logo img { height: 48px; width: 48px; object-fit: contain; border-radius: 6px; }
.bc-nav { display: flex; gap: 4px; flex: 1; flex-wrap: wrap; }
.bc-nav-link { color: var(--bc-text-secondary); text-decoration: none; font-family: 'Montserrat', sans-serif; font-size: .82rem; font-weight: 600; padding: 8px 14px; border-radius: 999px; transition: all .15s; text-transform: uppercase; letter-spacing: .5px; }
.bc-nav-link:hover { color: var(--bc-primary); }
/* Nav dropdown for appointments */
.bc-nav-dropdown { position: relative; }
.bc-nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; background: #1a1a1a;
  border: 1px solid #333; border-radius: 8px; min-width: 220px; z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,.4); overflow: hidden; margin-top: 4px;
}
.bc-nav-dropdown:hover .bc-nav-dropdown-menu { display: block; }
.bc-nav-dropdown-menu a {
  display: block; padding: 10px 16px; color: #ccc; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-size: .78rem; font-weight: 600;
  letter-spacing: .3px; transition: all .15s;
}
.bc-nav-dropdown-menu a:hover { background: rgba(197,165,90,.15); color: var(--bc-primary); }
.bc-nav-dropdown-menu a span { display: block; font-size: .68rem; font-weight: 400; color: #888; margin-top: 2px; }
/* Concierge banner */
.bc-concierge-banner {
  background: linear-gradient(90deg, #111 0%, #1a1a1a 100%);
  border-bottom: 1px solid #c5a55a; padding: 8px 24px; text-align: center;
}
.bc-concierge-banner p {
  margin: 0; font-family: 'Montserrat', sans-serif; font-size: .78rem;
  font-weight: 600; color: #ccc; letter-spacing: .3px;
}
.bc-concierge-banner a { color: var(--bc-primary); text-decoration: none; font-weight: 700; }
.bc-concierge-banner a:hover { text-decoration: underline; }
/* Floating CTA button */
.bc-floating-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 500;
  background: var(--bc-primary); color: #111; text-decoration: none;
  font-family: 'Montserrat', sans-serif; font-size: .82rem; font-weight: 700;
  padding: 12px 20px; border-radius: 999px;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
  transition: all .2s; opacity: 0; pointer-events: none;
  letter-spacing: .3px;
}
.bc-floating-cta.is-visible { opacity: 1; pointer-events: auto; }
.bc-floating-cta:hover { background: #d4b96e; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.5); }
.bc-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.bc-hamburger span { display: block; width: 22px; height: 2px; background: var(--bc-text); transition: all .2s; }
.bc-cart-btn { background: none; border: none; color: var(--bc-text); cursor: pointer; position: relative; padding: 8px; display: flex; align-items: center; }
.bc-cart-btn .bc-cart-count { position: absolute; top: 0; right: 0; background: var(--bc-primary); color: #111; font-size: .65rem; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
@media (max-width: 760px) {
  .bc-hamburger { display: flex; }
  .bc-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bc-header-bg); flex-direction: column; padding: 16px 24px; border-bottom: 1px solid var(--bc-line); gap: 0; }
  .bc-nav.is-open { display: flex; }
  .bc-nav-link { padding: 12px 0; border-bottom: 1px solid #1e1e1e; }
  .bc-nav-dropdown-menu { position: static; border: none; box-shadow: none; margin: 0; min-width: 0; background: transparent; display: block; }
  .bc-nav-dropdown-menu a { padding: 10px 0 10px 16px; border-bottom: 1px solid #1e1e1e; }
  .bc-nav-dropdown > .bc-nav-link { display: none; }
  .bc-concierge-banner { font-size: .72rem; padding: 6px 16px; }
  .bc-floating-cta { bottom: 16px; right: 16px; font-size: .75rem; padding: 10px 16px; }
  .bc-brand-banner { min-height: auto !important; }
  .bc-brand-banner > div:first-child { display: none !important; }
  .bc-brand-banner > div:nth-child(2) { display: none !important; }
  .bc-brand-banner > div:nth-child(3) { max-width: 100% !important; position: static !important; padding: 20px !important; border-left: 3px solid #c5a55a; }
  .bc-floating-cta { bottom: 16px; right: 70px; font-size: .72rem; padding: 8px 14px; }
  .bc-auth-area { position: static; transform: none; max-width: none; }
  .bc-user-toggle { max-width: 130px; }
  .bc-user-toggle span { max-width: 70px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}
@media (max-width: 480px) {
  .bc-wrap { padding: 0 14px; }
  .bc-user-toggle { padding: 4px 10px 4px 4px; font-size: .78rem; }
  .bc-user-toggle span { max-width: 55px; }
  .bc-footer-tagline { white-space: normal; font-size: .65rem; letter-spacing: .5px; }
}

/* ---------- hero split ---------- */
.bc-hero-split {
  display: flex; justify-content: center;
  background: var(--bc-surface);
}
.bc-hero-brand {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 20px 30px; text-align: center; background: var(--bc-surface);
}
.bc-hero-logo {
  width: 240px; height: 240px; margin-bottom: 12px;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,.5));
}
.bc-hero-slogan {
  font-family: 'Montserrat', sans-serif; font-size: .95rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--bc-primary);
  margin: 0 0 16px;
}
.bc-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.bc-hero-actions .bc-btn { padding: 9px 20px; font-size: .85rem; }
.bc-verse {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 24px 20px; text-align: center; max-width: 180px;
  border-left: 2px solid var(--bc-line);
}
.bc-verse-text { font-style: italic; color: var(--bc-text-secondary); font-size: .8rem; line-height: 1.6; margin: 0 0 8px; }
.bc-verse-ref { color: var(--bc-primary); font-size: .7rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin: 0; }
@media (max-width: 900px) {
  .bc-verse { display: none; }
}
.bc-verse-mobile { display: none; text-align: center; padding: 10px 24px 0; }
.bc-verse-mobile .bc-verse-text { font-size: .78rem; }
.bc-verse-mobile .bc-verse-ref { font-size: .68rem; }
@media (max-width: 900px) {
  .bc-verse-mobile { display: block; }
}
.bc-hero-image { overflow: hidden; display: flex; }
.bc-hero-image img {
  height: 420px; width: auto; display: block;
  transition: transform 8s ease;
}
.bc-hero-image:hover img { transform: scale(1.03); }

/* gold value strip divider */
.bc-value-strip {
  background: var(--bc-primary); color: #111; text-align: center;
  padding: 18px 24px; position: relative; z-index: 10;
  box-shadow: 0 4px 20px rgba(197,165,90,.3);
}
.bc-value-strip p, .bc-value-strip .bc-value-msg {
  margin: 0; font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .9rem; letter-spacing: .5px; color: #111 !important;
}

@media (max-width: 900px) {
  .bc-hero-split { grid-template-columns: 1fr; }
  .bc-hero-brand { padding: 28px 24px; }
  .bc-hero-logo { width: 180px; height: 180px; }
  .bc-hero-slogan { font-size: .85rem; letter-spacing: 2px; }
  .bc-hero-image img { height: 320px; width: 100%; object-fit: cover; object-position: top center; }
}
@media (max-width: 480px) {
  .bc-hero-logo { width: 150px; height: 150px; }
  .bc-hero-slogan { font-size: .78rem; letter-spacing: 1.5px; }
  .bc-hero-image img { height: 260px; }
}

/* ---------- hero (legacy) ---------- */
.bc-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.bc-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.5) 55%, rgba(0,0,0,.25) 100%);
}
/* ---------- about / mission section ---------- */
.bc-about {
  background: var(--bc-header-bg); border-top: 1px solid var(--bc-line); border-bottom: 1px solid var(--bc-line);
  padding: 60px 0;
}
.bc-about-header { text-align: center; max-width: 700px; margin: 0 auto 40px; }
.bc-about-header h2 {
  font-family: 'Montserrat', sans-serif; font-size: 1.8rem; font-weight: 800;
  color: var(--bc-primary); margin: 0 0 16px; letter-spacing: 1px;
}
.bc-about-header p { color: var(--bc-text-secondary); font-size: 1rem; line-height: 1.7; margin: 0; }
.bc-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.bc-about-card {
  background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: var(--bc-radius);
  padding: 30px; }
.bc-about-card h3 {
  font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: var(--bc-primary); margin: 0 0 12px;
}
.bc-about-card p { color: var(--bc-text-secondary); font-size: .9rem; line-height: 1.7; margin: 0; }
.bc-values { text-align: center; }
.bc-values h3 {
  font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: #fff; margin: 0 0 20px; letter-spacing: 1px;
}
.bc-values-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.bc-value {
  background: #1a1a1a; border: 1px solid #2a2a2a; border-radius: 12px;
  padding: 20px 14px; display: flex; flex-direction: column; gap: 6px;
}
.bc-value-title { color: var(--bc-primary); font-weight: 700; font-size: .85rem; font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: .5px; }
.bc-value-desc { color: var(--bc-text-secondary); font-size: .8rem; line-height: 1.4; }
@media (max-width: 900px) {
  .bc-about-grid { grid-template-columns: 1fr; }
  .bc-values-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .bc-values-grid { grid-template-columns: repeat(2, 1fr); }
}

.bc-footer { background: #111111; border-top: 3px solid var(--bc-primary); }
.bc-footer-inner {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 40px;
  padding-top: 44px; padding-bottom: 36px;
}
.bc-footer-brand {
  display: flex; align-items: center; gap: 14px;
}
.bc-footer-logo { width: 80px; height: 80px; border-radius: 10px; flex-shrink: 0; }
.bc-footer-tagline { color: var(--bc-primary); font-size: .75rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin: 0; white-space: nowrap; }
.bc-footer-col h4 { font-family: 'Montserrat', sans-serif; font-size: .82rem; color: #fff; margin: 0 0 12px; text-transform: uppercase; letter-spacing: 1px; }
.bc-footer-col p { margin: 0 0 6px; font-size: .85rem; color: #aaa; line-height: 1.6; }
.bc-footer-col a { color: #aaa; text-decoration: none; transition: color .15s; }
.bc-footer-col a:hover { color: var(--bc-primary); }
.bc-footer-qr { text-align: center; }
.bc-qr-row { display: flex; gap: 16px; justify-content: center; }
.bc-qr-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.bc-qr-item img { border-radius: 6px; }
.bc-qr-item span { font-size: .72rem; color: #888; text-transform: uppercase; letter-spacing: 1px; }
.bc-footer-bottom { border-top: 1px solid #2a2a2a; text-align: center; padding: 16px 24px; }
.bc-footer-bottom p { margin: 0; font-size: .78rem; color: #555; }
@media (max-width: 760px) {
  .bc-footer-inner { flex-wrap: wrap; gap: 28px; }
  .bc-footer-brand { width: 100%; }
}
@media (max-width: 480px) {
  .bc-footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .bc-footer-brand { flex-direction: column; align-items: center; }
}

/* ---------- quick view ---------- */
.bc-quickview-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 1000;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.bc-quickview-overlay.is-open { opacity: 1; pointer-events: auto; }
.bc-quickview {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(.95);
  z-index: 1001; background: #1a1a1a; border-radius: 16px; overflow: hidden;
  display: flex; max-width: 820px; width: 92vw; max-height: 90vh;
  box-shadow: 0 24px 60px rgba(0,0,0,.6); opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.bc-quickview.is-open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.bc-qv-close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  font-size: 1.8rem; color: var(--bc-muted); background: rgba(0,0,0,.5);
  border: none; cursor: pointer; width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.bc-qv-close:hover { color: #fff; background: rgba(0,0,0,.8); }
.bc-qv-image {
  flex: 1; background: #f5f5f5; display: flex; align-items: center; justify-content: center;
  min-height: 300px;
}
.bc-qv-image img { width: 100%; height: 100%; object-fit: contain; max-height: 70vh; }
.bc-qv-details {
  flex: 1; padding: 32px; display: flex; flex-direction: column; justify-content: center;
  overflow-y: auto;
}
.bc-qv-details h2 {
  font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 700;
  color: #fff; margin: 8px 0 12px;
}
.bc-qv-desc { color: var(--bc-text-secondary); font-size: .9rem; line-height: 1.6; margin: 0 0 16px; }
@media (max-width: 700px) {
  .bc-quickview { flex-direction: column; max-height: 92vh; }
  .bc-qv-image { min-height: 200px; max-height: 40vh; }
  .bc-qv-details { padding: 20px; }
}
.bc-hero .bc-wrap { position: relative; z-index: 2; padding-top: 54px; padding-bottom: 54px; }
.bc-hero-eyebrow {
  text-transform: uppercase; letter-spacing: 3px; font-size: .78rem;
  font-weight: 700; color: var(--bc-accent); margin: 0 0 12px;
}
.bc-hero h1 { font-size: 2.8rem; line-height: 1.05; margin: 0 0 14px; font-weight: 800; }
.bc-hero p { font-size: 1.05rem; max-width: 520px; margin: 0 0 26px; opacity: .92; }

/* ---------- buttons ---------- */
.bc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .9rem;
  border: 2px solid transparent; border-radius: 999px;
  padding: 11px 22px; cursor: pointer; text-decoration: none;
  transition: all .18s ease; line-height: 1; white-space: nowrap;
}
.bc-btn-primary { background: var(--bc-primary); color: #111; }
.bc-btn-primary:hover { background: var(--bc-primary-dark); color: #111; }
.bc-btn-dark { background: #e8e8e8; color: #111; }
.bc-btn-dark:hover { background: #fff; color: #111; }
.bc-btn-ghost { background: transparent; color: var(--bc-text); border-color: #555; }
.bc-btn-ghost:hover { background: #333; color: #fff; }
.bc-btn-light { background: var(--bc-primary); color: #111; border-color: var(--bc-primary); }
.bc-btn-light:hover { background: var(--bc-accent); border-color: var(--bc-accent); color: #111; }
.bc-btn-danger { background: transparent; color: var(--bc-danger); border-color: var(--bc-danger); }
.bc-btn-danger:hover { background: var(--bc-danger); color: #fff; }
.bc-btn-sm { padding: 7px 14px; font-size: .8rem; }
.bc-btn:disabled, .bc-btn.is-disabled { opacity: .45; cursor: not-allowed; pointer-events: none; }
.bc-btn-block { width: 100%; }

/* ---------- shop toolbar ---------- */
.bc-shop {
  padding: 50px 0 80px; margin-top: 0;
  background: #ffffff !important; color: #1a1a1a !important;
}
.bc-toolbar {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
  justify-content: space-between; margin-bottom: 26px;
}
.bc-toolbar-shop { flex-direction: column; align-items: stretch; gap: 12px; }
.bc-toolbar-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between; }
.bc-value-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.bc-value-msg { margin: 0; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .85rem; letter-spacing: 1.5px; font-style: italic; white-space: nowrap; }
@media (max-width: 760px) {
  .bc-value-strip { padding: 10px 16px; }
  .bc-value-row { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 4px 12px; }
  .bc-value-msg { font-size: .65rem; white-space: normal; text-align: center; letter-spacing: .3px; }
}
.bc-qv-add { margin-top: 16px; }
.bc-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.bc-chip {
  border: 1px solid #ccc; background: #f5f5f5; color: #555;
  border-radius: 999px; padding: 8px 16px; font-size: .85rem; font-weight: 600;
  cursor: pointer; transition: all .15s ease; font-family: 'Montserrat', sans-serif;
}
.bc-chip:hover { border-color: var(--bc-primary); color: var(--bc-primary); }
.bc-chip.is-active { background: var(--bc-primary); border-color: var(--bc-primary); color: #fff; }
.bc-tools-right { display: flex; gap: 10px; align-items: center; }
.bc-input, .bc-select {
  border: 1px solid #ccc; border-radius: 10px; padding: 9px 12px;
  font-size: .88rem; font-family: 'Open Sans', sans-serif; background: #fff; color: #1a1a1a;
}
.bc-input:focus, .bc-select:focus { outline: none; border-color: var(--bc-primary); box-shadow: 0 0 0 3px rgba(197,165,90,.25); }
.bc-search { min-width: 210px; }

/* ---------- product grid ---------- */
.bc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.bc-card {
  background: #fff; border-radius: var(--bc-radius); overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.1); border: 1px solid #eee;
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.bc-card.bc-fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity .5s ease, transform .5s ease, box-shadow .18s ease;
}
.bc-card.bc-fade-in.is-visible {
  opacity: 1; transform: translateY(0);
}
.bc-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.15); }
.bc-card-media { position: relative; height: 220px; background: #f5f5f5; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.bc-card-media img { width: 100%; height: 100%; object-fit: contain; padding: 12px; display: block; transition: transform .35s ease; }
.bc-card:hover .bc-card-media img { transform: scale(1.05); }
.bc-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: .68rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; font-family: 'Montserrat', sans-serif;
}
.bc-badge-sale { background: var(--bc-olive); color: #fff; }
.bc-badge-out { background: #6b7280; color: #fff; right: 12px; left: auto; }
.bc-badge-low { background: var(--bc-warn); color: #fff; right: 12px; left: auto; }
.bc-card-body { padding: 18px; display: flex; flex-direction: column; flex: 1; background: #fff; overflow: hidden; }
.bc-card-cat { font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; color: #a8893d; font-weight: 700; margin-bottom: 6px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bc-card-title { font-size: 1.05rem; font-weight: 700; margin: 0 0 8px; font-family: 'Montserrat', sans-serif; color: #1a1a1a; word-wrap: break-word; overflow-wrap: break-word; }
.bc-card-desc { font-size: .82rem; color: #555; line-height: 1.5; margin: 0 0 14px; flex: 1; word-wrap: break-word; overflow-wrap: break-word; }
.bc-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.bc-price { font-size: 1.4rem; font-weight: 800; color: #1a1a1a; font-family: 'Montserrat', sans-serif; }
.bc-old-price { font-size: .95rem; color: #999; text-decoration: line-through; }
.bc-stock-note { font-size: .76rem; margin-bottom: 12px; font-weight: 600; }
.bc-stock-in { color: var(--bc-ok); }
.bc-stock-low { color: var(--bc-warn); }
.bc-stock-out { color: var(--bc-danger); }
.bc-empty {
  grid-column: 1 / -1; text-align: center; padding: 70px 20px; color: #888;
}

/* loading spinner */
.bc-loading {
  grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: #888;
}
.bc-spinner {
  width: 36px; height: 36px; border: 3px solid #ddd; border-top-color: var(--bc-primary);
  border-radius: 50%; margin: 0 auto 12px; animation: bc-spin .8s linear infinite;
}
@keyframes bc-spin { to { transform: rotate(360deg); } }
.bc-loading p { margin: 0; font-size: .88rem; }

/* ---------- color swatches ---------- */
.bc-swatches { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.bc-swatch { width: 20px; height: 20px; min-width: 20px; min-height: 20px; border-radius: 50%; cursor: pointer; border: 2px solid #ccc; transition: all .15s; }
.bc-swatch:hover { transform: scale(1.2); border-color: var(--bc-primary); }
.bc-swatch.is-active { border-color: var(--bc-primary); box-shadow: 0 0 0 2px var(--bc-primary); }

/* ---------- best seller toggle ---------- */
.bc-bestseller-active { color: var(--bc-primary) !important; }

/* ---------- cart drawer ---------- */
.bc-overlay {
  position: fixed; inset: 0; background: rgba(10,16,30,.5); z-index: 1000;
  opacity: 0; visibility: hidden; transition: opacity .25s ease;
}
.bc-overlay.is-open { opacity: 1; visibility: visible; }
.bc-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 400px; max-width: 92vw;
  background: #1a1a1a; color: var(--bc-text); z-index: 1001; box-shadow: var(--bc-shadow-lg);
  transform: translateX(100%); transition: transform .28s ease;
  display: flex; flex-direction: column;
}
.bc-drawer.is-open { transform: translateX(0); }
.bc-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--bc-line);
}
.bc-drawer-head h3 { margin: 0; font-size: 1.2rem; }
.bc-close { background: none; border: none; font-size: 1.6rem; line-height: 1; cursor: pointer; color: var(--bc-muted); }
.bc-close:hover { color: #fff; }
.bc-drawer-body { flex: 1; overflow-y: auto; padding: 12px 24px; }
.bc-drawer-foot { border-top: 1px solid var(--bc-line); padding: 20px 24px; }

.bc-line { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--bc-line); }
.bc-line-img { width: 68px; height: 68px; border-radius: 10px; object-fit: contain; background: #f5f5f5; flex-shrink: 0; border: 1px solid #333; padding: 4px; }
.bc-line-main { flex: 1; min-width: 0; }
.bc-line-title { font-weight: 700; font-size: .9rem; margin: 0 0 2px; font-family: 'Montserrat', sans-serif; }
.bc-line-sku { font-size: .72rem; color: var(--bc-muted); margin-bottom: 8px; }
.bc-line-bottom { display: flex; align-items: center; justify-content: space-between; }
.bc-qty { display: inline-flex; align-items: center; border: 1px solid var(--bc-line); border-radius: 999px; overflow: hidden; }
.bc-qty button { border: none; background: #2a2a2a; min-width: 44px; min-height: 44px; cursor: pointer; font-size: 1.1rem; color: var(--bc-text); }
.bc-qty button:hover { background: #444; }
.bc-qty span { min-width: 30px; text-align: center; font-size: .85rem; font-weight: 600; }
.bc-line-price { font-weight: 700; font-size: .95rem; }
.bc-line-remove { background: none; border: none; color: var(--bc-muted); font-size: .74rem; cursor: pointer; text-decoration: underline; padding: 0; margin-top: 4px; }
.bc-line-remove:hover { color: var(--bc-danger); }

.bc-summary-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: .9rem; }
.bc-summary-total { font-size: 1.25rem; font-weight: 800; font-family: 'Montserrat', sans-serif; }
.bc-cart-empty { text-align: center; color: var(--bc-muted); padding: 60px 10px; }

/* ---------- checkout / modal ---------- */
.bc-modal {
  position: fixed; inset: 0; z-index: 1100; display: none;
  align-items: center; justify-content: center; padding: 20px;
  background: rgba(10,16,30,.55);
}
.bc-modal.is-open { display: flex; }
.bc-modal-card {
  background: #1a1a1a; color: var(--bc-text); border-radius: 18px; width: 560px; max-width: 100%;
  max-height: 92vh; overflow-y: auto; box-shadow: var(--bc-shadow-lg);
}
.bc-modal-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 26px; border-bottom: 1px solid var(--bc-line); }
.bc-modal-head h3 { margin: 0; font-size: 1.25rem; }
.bc-modal-body { padding: 24px 26px; }
.bc-field { margin-bottom: 16px; }
.bc-field label { display: block; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--bc-muted); margin-bottom: 6px; }
.bc-field input, .bc-field select, .bc-field textarea {
  width: 100%; border: 1px solid #444; border-radius: 10px; padding: 11px 13px;
  font-family: 'Open Sans', sans-serif; font-size: .9rem; color: var(--bc-text); background: #252525;
}
.bc-field input:focus, .bc-field select:focus, .bc-field textarea:focus {
  outline: none; border-color: var(--bc-primary); box-shadow: 0 0 0 3px rgba(197,165,90,.22);
}
.bc-field-row { display: flex; gap: 14px; }
.bc-field-row .bc-field { flex: 1; }
.bc-form-error { color: var(--bc-danger); font-size: .82rem; margin: 6px 0 0; min-height: 1em; }
.bc-order-recap { background: #222; border-radius: 12px; padding: 14px 16px; margin-bottom: 20px; }
.bc-order-recap .bc-summary-row:last-child { margin-bottom: 0; }

.bc-success { text-align: center; padding: 20px 6px; }
.bc-success .bc-check { width: 66px; height: 66px; border-radius: 50%; background: rgba(31,157,85,.12); color: var(--bc-ok); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 2rem; }

/* ---------- toast ---------- */
.bc-toast-host { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 1200; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.bc-toast {
  background: var(--bc-ink); color: #fff; padding: 12px 20px; border-radius: 999px;
  font-size: .88rem; font-weight: 600; box-shadow: var(--bc-shadow-lg);
  opacity: 0; transform: translateY(12px); transition: all .25s ease; font-family: 'Montserrat', sans-serif;
}
.bc-toast.is-show { opacity: 1; transform: translateY(0); }

/* ============================================================
   ADMIN
   ============================================================ */
.bc-admin { padding: 34px 0 80px; }
.bc-admin-head { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.bc-admin-head h1 { font-size: 1.8rem; margin: 0 0 2px; }
.bc-admin-head p { margin: 0; color: var(--bc-muted); font-size: .9rem; }

.bc-stats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-bottom: 26px; }
.bc-stat { background: #1e1e1e; border-radius: var(--bc-radius); padding: 18px; box-shadow: var(--bc-shadow); transition: transform .15s, box-shadow .15s; color: var(--bc-text); }
.bc-stat:hover { transform: translateY(-2px); box-shadow: var(--bc-shadow-lg); }
.bc-stat-label { font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--bc-muted); font-weight: 700; margin-bottom: 8px; }
.bc-stat-value { font-size: 1.6rem; font-weight: 800; font-family: 'Montserrat', sans-serif; color: #fff; }
.bc-stat.accent { border-top: 3px solid var(--bc-primary); }
.bc-stat.warn { border-top: 3px solid var(--bc-warn); }
.bc-stat.money { border-top: 3px solid var(--bc-olive); }

.bc-panel { background: #1e1e1e; border-radius: var(--bc-radius); box-shadow: var(--bc-shadow); margin-bottom: 24px; overflow: hidden; color: var(--bc-text); }
.bc-panel-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--bc-line); }
.bc-panel-head h2 { font-size: 1.1rem; margin: 0; }
.bc-panel-body { padding: 6px 22px 20px; }

.bc-alert { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; background: rgba(201,138,0,.15); border: 1px solid rgba(201,138,0,.4); border-radius: 12px; padding: 14px 16px; margin: 16px 0; color: var(--bc-text); }
.bc-alert strong { color: var(--bc-warn); }
.bc-pill { display: inline-block; background: #2a2a2a; border: 1px solid #444; border-radius: 999px; padding: 4px 12px; font-size: .78rem; font-weight: 600; color: var(--bc-text); }

.bc-table { width: 100%; border-collapse: collapse; }
.bc-table th { text-align: left; font-size: .72rem; text-transform: uppercase; letter-spacing: .5px; color: var(--bc-muted); font-weight: 700; padding: 12px 10px; border-bottom: 2px solid var(--bc-line); }
.bc-table td { padding: 12px 10px; border-bottom: 1px solid var(--bc-line); font-size: .88rem; vertical-align: middle; }
.bc-table tr:last-child td { border-bottom: none; }
.bc-thumb { width: 46px; height: 46px; border-radius: 8px; object-fit: contain; background: #f0f0f0; padding: 3px; }
.bc-cell-title { font-weight: 700; font-family: 'Montserrat', sans-serif; }
.bc-cell-sub { font-size: .74rem; color: var(--bc-muted); }
.bc-tag { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: .72rem; font-weight: 700; }
.bc-tag-in { background: rgba(31,157,85,.12); color: var(--bc-ok); }
.bc-tag-low { background: rgba(201,138,0,.14); color: var(--bc-warn); }
.bc-tag-out { background: rgba(214,69,69,.12); color: var(--bc-danger); }
.bc-stepper { display: inline-flex; align-items: center; gap: 6px; }
.bc-stepper button { width: 26px; height: 26px; border-radius: 7px; border: 1px solid #444; background: #2a2a2a; cursor: pointer; font-size: 1rem; line-height: 1; color: var(--bc-text); }
.bc-stepper button:hover { background: #444; border-color: var(--bc-primary); }
.bc-stepper input { width: 52px; text-align: center; border: 1px solid #444; border-radius: 7px; padding: 5px; font-weight: 700; font-size: .85rem; background: #1e1e1e; color: var(--bc-text); }
.bc-row-actions { display: flex; gap: 6px; justify-content: flex-end; }
.bc-icon-btn { background: none; border: 1px solid #444; border-radius: 8px; width: 32px; height: 32px; cursor: pointer; color: var(--bc-text-secondary); display: inline-flex; align-items: center; justify-content: center; }
.bc-icon-btn:hover { border-color: var(--bc-primary); color: var(--bc-primary); }
.bc-icon-btn.danger:hover { border-color: var(--bc-danger); color: var(--bc-danger); }
.bc-admin-nav {
  position: sticky; top: 72px; z-index: 400; background: #161616;
  border-bottom: 2px solid #333; padding: 12px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
  color: var(--bc-text);
}
.bc-tabs { display: flex; gap: 6px; margin-bottom: 20px; flex-wrap: wrap; }
.bc-admin-nav .bc-tabs { margin-bottom: 0; }
.bc-tab { padding: 9px 18px; border-radius: 999px; border: 1px solid #444; background: #1e1e1e; cursor: pointer; font-weight: 600; font-family: 'Montserrat', sans-serif; font-size: .88rem; color: var(--bc-text-secondary); transition: all .15s; }
.bc-tab:hover { border-color: var(--bc-primary); color: var(--bc-primary); }
.bc-tab.is-active { background: var(--bc-primary); color: #111; border-color: var(--bc-primary); }
.bc-tab-group { position: relative; display: inline-block; }
.bc-tab-group-btn { cursor: pointer; }
.bc-tab-group-btn.has-active { border-color: var(--bc-primary); color: var(--bc-primary); }
.bc-tab-group-menu {
  display: none; position: absolute; top: 100%; left: 0; margin-top: 6px;
  background: #1e1e1e; border: 1px solid #444; border-radius: 10px;
  padding: 6px; z-index: 500; min-width: 160px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.bc-tab-group:hover .bc-tab-group-menu,
.bc-tab-group.is-open .bc-tab-group-menu { display: flex; flex-direction: column; gap: 2px; }
.bc-tab-group-menu .bc-tab {
  border: none; border-radius: 6px; text-align: left; padding: 10px 16px;
  font-size: .82rem; background: transparent; width: 100%;
}
.bc-tab-group-menu .bc-tab:hover { background: rgba(197,165,90,.15); color: var(--bc-primary); }
.bc-tab-group-menu .bc-tab.is-active { background: var(--bc-primary); color: #111; }

.bc-img-picker { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; max-height: 180px; overflow-y: auto; padding: 6px; border: 1px solid #444; border-radius: 10px; }
.bc-img-opt { border: 2px solid transparent; border-radius: 8px; overflow: hidden; cursor: pointer; aspect-ratio: 1/1; }
.bc-img-opt img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bc-img-opt.is-selected { border-color: var(--bc-primary); }
.bc-check-field { display: flex; align-items: center; gap: 8px; }
.bc-check-field input { width: auto; }

/* ---------- login gate ---------- */
.bc-gate { max-width: 400px; margin: 70px auto; background: #1e1e1e; border-radius: 18px; box-shadow: var(--bc-shadow); padding: 34px 32px; text-align: center; color: var(--bc-text); }
.bc-gate img { height: 54px; margin-bottom: 16px; }
.bc-gate h2 { margin: 0 0 6px; color: #fff; }
.bc-gate p { color: var(--bc-muted); font-size: .88rem; margin: 0 0 20px; }
.bc-gate .bc-hint { font-size: .76rem; margin-top: 14px; color: var(--bc-muted); }

/* ---------- auth UI ---------- */
.bc-auth-area {
  display: flex; align-items: center; gap: 10px;
  position: absolute; right: 80px; top: 50%; transform: translateY(-50%);
  z-index: 10;
}
.bc-user-menu { position: relative; }
.bc-user-toggle {
  display: flex; align-items: center; gap: 8px;
  background: none; border: 1px solid #555; border-radius: 999px;
  padding: 4px 14px 4px 4px; cursor: pointer; font-family: 'Montserrat', sans-serif;
  font-size: .85rem; font-weight: 600; color: var(--bc-text);
}
.bc-user-avatar {
  width: 30px; height: 30px; border-radius: 50%; object-fit: cover;
}
.bc-user-dropdown {
  display: none; position: absolute; top: 100%; right: 0; margin-top: 6px;
  background: #2a2a2a; border-radius: 10px; box-shadow: var(--bc-shadow-lg);
  min-width: 180px; overflow: hidden; z-index: 100;
}
.bc-user-dropdown.is-open { display: block; }
.bc-user-dropdown a,
.bc-user-dropdown button {
  display: block; width: 100%; padding: 10px 16px; text-align: left;
  font-size: .88rem; border: none; background: none; cursor: pointer;
  color: var(--bc-text); font-family: 'Open Sans', sans-serif;
  text-decoration: none;
}
.bc-user-dropdown a:hover,
.bc-user-dropdown button:hover { background: #444; }

/* ---------- appointments page ---------- */
.bc-appt-gate { background: #0d0d0d; }
.bc-appt-main { padding: 40px 0 100px; }

/* step indicator */
.bc-steps-bar {
  display: flex; gap: 4px; margin-bottom: 30px; border-bottom: 2px solid var(--bc-line);
  padding-bottom: 16px;
}
.bc-step {
  display: flex; align-items: center; gap: 8px; padding: 8px 18px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .88rem;
  color: var(--bc-muted); border-radius: 999px;
}
.bc-step.is-active { color: var(--bc-primary); background: rgba(197,165,90,.15); }
.bc-step.is-done { color: var(--bc-ok); }
.bc-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid currentColor; font-size: .78rem;
}
.bc-step.is-active .bc-step-num { background: var(--bc-primary); color: #fff; border-color: var(--bc-primary); }
.bc-step.is-done .bc-step-num { background: var(--bc-ok); color: #fff; border-color: var(--bc-ok); }

/* selectable card overrides */
.bc-card-selectable { cursor: pointer; position: relative; }
.bc-card-selectable.is-selected { outline: 3px solid var(--bc-primary); outline-offset: -3px; }
.bc-card-selectable.is-disabled { opacity: .45; pointer-events: none; }
.bc-card-check {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bc-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700; opacity: 0; transition: opacity .15s;
}
.bc-card-selectable.is-selected .bc-card-check { opacity: 1; }

/* selection bar */
.bc-selection-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: #1a1a1a; border-top: 2px solid var(--bc-primary);
  box-shadow: 0 -4px 20px rgba(0,0,0,.4); padding: 12px 24px; color: var(--bc-text);
}
.bc-sel-thumb {
  width: 40px; height: 40px; border-radius: 8px; object-fit: cover;
  border: 2px solid var(--bc-primary);
}

/* calendar */
.bc-calendar-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
}
.bc-calendar {
  background: #1e1e1e; border-radius: var(--bc-radius); padding: 20px;
  box-shadow: var(--bc-shadow); min-height: 300px; border: 1px solid #333; color: var(--bc-text);
}
.bc-cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.bc-cal-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.1rem; }
.bc-cal-nav {
  background: none; border: 1px solid #444; border-radius: 8px;
  width: 34px; height: 34px; cursor: pointer; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center; color: var(--bc-text);
}
.bc-cal-nav:hover { background: #333; }
.bc-cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.bc-cal-head {
  text-align: center; font-size: .72rem; font-weight: 700;
  color: var(--bc-muted); padding: 4px; text-transform: uppercase;
}
.bc-cal-day {
  text-align: center; padding: 10px 4px; border-radius: 8px;
  font-size: .88rem; cursor: pointer; transition: all .12s;
  color: var(--bc-text);
}
.bc-cal-day:hover { background: rgba(197,165,90,.2); }
.bc-cal-day.is-today { font-weight: 700; border: 2px solid var(--bc-primary); }
.bc-cal-day.is-past { color: #555; cursor: default; pointer-events: none; }
.bc-cal-day.is-selected { background: var(--bc-primary); color: #fff; font-weight: 700; }
.bc-cal-day.has-slots { background: rgba(197,165,90,.15); font-weight: 600; }
.bc-cal-day.has-slots:hover { background: rgba(197,165,90,.3); }
.bc-cal-day.has-slots.is-selected { background: var(--bc-primary); color: #fff; }
.bc-cal-legend { font-size: .78rem; color: var(--bc-muted); margin: 10px 0 0; display: flex; align-items: center; gap: 6px; }
.bc-cal-dot { width: 12px; height: 12px; border-radius: 3px; background: rgba(197,165,90,.2); display: inline-block; }

/* dashboard */
.bc-dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.bc-dash-card { background: #1e1e1e; border-radius: var(--bc-radius); padding: 20px; border: 1px solid #333; color: var(--bc-text); }
.bc-dash-title { margin: 0 0 12px; font-family: 'Montserrat', sans-serif; font-size: 1rem; }
.bc-dash-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--bc-line); font-size: .88rem; }
.bc-dash-item:last-of-type { border-bottom: none; }

/* appointment sub-tabs */
.bc-subtab { background: none; border: 1px solid #444; color: var(--bc-text-secondary); }
.bc-subtab.is-active { background: var(--bc-primary); color: #fff; border-color: var(--bc-primary); }
.bc-cal-empty { cursor: default; }

/* time slots */
.bc-time-slots {
  background: #1e1e1e; border-radius: var(--bc-radius); padding: 20px;
  box-shadow: var(--bc-shadow); color: var(--bc-text);
}
.bc-time-slots h3 { margin: 0 0 12px; font-family: 'Montserrat', sans-serif; }
.bc-slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.bc-slot-btn {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 12px; border: 2px solid #444; border-radius: 10px;
  background: #2a2a2a; color: var(--bc-text); cursor: pointer; font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: .92rem; transition: all .15s;
}
.bc-slot-btn:hover { border-color: var(--bc-primary); color: var(--bc-primary); }
.bc-slot-btn.is-selected { background: var(--bc-primary); color: #fff; border-color: var(--bc-primary); }
.bc-slot-dur { font-size: .72rem; font-weight: 400; opacity: .7; }

/* confirmation */
.bc-confirm-wrap { max-width: 600px; }
.bc-confirm-section {
  background: #1e1e1e; border-radius: var(--bc-radius); padding: 20px;
  box-shadow: var(--bc-shadow); margin-bottom: 16px; color: var(--bc-text);
}
.bc-confirm-section h3 { margin: 0 0 12px; font-family: 'Montserrat', sans-serif; }
.bc-confirm-frame {
  display: flex; align-items: center; gap: 14px; padding: 8px 0;
  border-bottom: 1px solid var(--bc-line);
}
.bc-confirm-frame:last-child { border-bottom: none; }
.bc-confirm-frame img { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; }
.bc-confirm-date { font-weight: 700; font-size: 1.1rem; }
.bc-confirm-time-val { color: var(--bc-primary); font-weight: 600; font-size: 1rem; margin-top: 4px; }

/* appointment cards */
.bc-appt-card {
  background: #1e1e1e; border-radius: var(--bc-radius); padding: 18px;
  box-shadow: var(--bc-shadow); margin-bottom: 14px; color: var(--bc-text);
}
.bc-appt-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px; flex-wrap: wrap; gap: 8px;
}
.bc-appt-status {
  font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  padding: 4px 10px; border-radius: 999px;
}
.bc-status-booked { background: rgba(197,165,90,.2); color: var(--bc-primary); }
.bc-status-done { background: rgba(31,157,85,.12); color: var(--bc-ok); }
.bc-status-cancel { background: rgba(107,114,128,.12); color: var(--bc-muted); }
.bc-appt-dur { color: var(--bc-muted); font-size: .82rem; }
.bc-appt-frames {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 10px;
}
.bc-appt-frame-thumb {
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem; color: var(--bc-text);
}
.bc-appt-frame-thumb img {
  width: 40px; height: 40px; border-radius: 6px; object-fit: cover;
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .bc-grid { grid-template-columns: repeat(3, 1fr); }
  .bc-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .bc-img-picker { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .bc-grid { grid-template-columns: repeat(2, 1fr); }
  .bc-hero h1 { font-size: 2rem; }
  .bc-toolbar { flex-direction: column; align-items: stretch; }
  .bc-tools-right { flex-direction: column; align-items: stretch; }
  .bc-search { min-width: 0; }
  .bc-table-scroll { overflow-x: auto; }
  .bc-table { min-width: 720px; }
  .bc-calendar-wrap { grid-template-columns: 1fr; }
  .bc-dash-grid { grid-template-columns: 1fr; }
  .bc-slot-grid { grid-template-columns: repeat(2, 1fr); }
  .bc-auth-area { right: 60px; position: static; transform: none; }
  .bc-steps-bar { flex-direction: column; gap: 6px; }
}
@media (max-width: 520px) {
  .bc-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .bc-stats { grid-template-columns: repeat(2, 1fr); }
  .bc-wrap { padding: 0 16px; }
  .bc-field-row { flex-direction: column; gap: 0; }
  .bc-card-body { padding: 10px; }
  .bc-card-title { font-size: .88rem; }
  .bc-card-desc { font-size: .75rem; margin-bottom: 8px; }
  .bc-price { font-size: 1.1rem; }
  .bc-old-price { font-size: .8rem; }
  .bc-card-cat { font-size: .65rem; letter-spacing: .5px; }
  .bc-swatch { width: 28px; height: 28px; min-width: 28px; min-height: 28px; }
}

/* ============================================================
   SHOP SECTION — forced light theme (overrides JS theme vars)
   ============================================================ */
/* Shop light theme overrides are in shop.html inline styles */
