/* ================================================================
   Muzuri Designs — Animations & Motion
   ================================================================ */

/* ── Preloader ────────────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { text-align: center; }

/* Logo wrapper — contains img + shimmer overlay */
.preloader-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 4px;
}

.preloader-logo {
  width: 224px;
  display: block;
  position: relative;
  z-index: 1;
  animation: logo-breathe 4s ease-in-out infinite;
}

/* Gold shimmer sweep across the logo */
.preloader-shimmer {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(212, 175, 55, 0.22) 48%,
    rgba(255, 235, 150, 0.35) 52%,
    transparent 70%
  );
  transform: translateX(-150%);
  animation: shimmer-sweep 3s ease-in-out infinite 1.5s;
  pointer-events: none;
}

@keyframes shimmer-sweep {
  0%   { transform: translateX(-150%) skewX(-8deg); }
  100% { transform: translateX(250%)  skewX(-8deg); }
}

@keyframes logo-breathe {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.15));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 28px rgba(212,175,55,0.55)) drop-shadow(0 0 60px rgba(212,175,55,0.2));
    transform: scale(1.025);
  }
}

.preloader-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 2.25rem;
  font-family: var(--font-sans);
  opacity: 0;
  animation: fade-up-in 0.8s ease forwards 0.4s;
}

.preloader-bar {
  width: 240px; height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  margin: 0 auto 0.6rem;
  overflow: hidden;
  position: relative;
}
.preloader-fill {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 50%, #f5dfa0 100%);
  border-radius: 2px;
  transition: width 0.08s linear;
  position: relative;
}
/* Travelling sparkle on the fill bar */
.preloader-fill::after {
  content: '';
  position: absolute;
  top: -1px; right: -2px;
  width: 8px; height: 5px;
  background: radial-gradient(circle, #fff 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
}

.preloader-pct {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-family: var(--font-sans);
  margin-bottom: 0.5rem;
}

.preloader-status {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.45);
  font-family: var(--font-sans);
  min-height: 1em;
  transition: opacity 0.5s ease;
}

@keyframes fade-up-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0);   }
}

/* ── Announcement Bar ─────────────────────────────────────────── */
.announcement-bar {
  background: linear-gradient(90deg, var(--charcoal), var(--dark-2));
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 100;
}
.announcement-inner { display: flex; justify-content: center; align-items: center; gap: 1rem; }
.announcement-close { background: none; border: none; color: var(--text-muted); cursor: pointer; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); }
.announcement-close:hover { color: var(--gold); }

/* ── Navbar ───────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1050;
  transition: var(--transition);
}
.announcement-bar + .site-header { top: auto; position: sticky; }

.muzuri-navbar {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
  padding: 1rem 0;
  transition: var(--transition);
}
.muzuri-navbar.scrolled {
  padding: 0.6rem 0;
  background: rgba(0,0,0,0.96);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-logo       { height: 48px; transition: var(--transition); }
.muzuri-navbar.scrolled .nav-logo { height: 38px; }

.muzuri-brand   { display: flex; flex-direction: column; align-items: center; line-height: 1; }
/* white-space: nowrap only on desktop where there is room for it */
.nav-tagline    { font-size: 0.52rem; letter-spacing: 0.14em; text-transform: uppercase; color: #ffffff; font-weight: 700; margin-top: 3px; white-space: nowrap; max-width: 100%; }

.navbar-nav .nav-link {
  color: var(--off-white) !important;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--gold) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { left: 1rem; right: 1rem; }

.nav-actions { gap: 0.5rem; }
.nav-icon-btn {
  background: none; border: none; color: var(--off-white);
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  cursor: pointer; font-size: 1rem;
}
.nav-icon-btn:hover { color: var(--gold); background: var(--gold-faded); }
.no-caret::after { display: none !important; }

.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--gold); color: var(--black);
  font-size: 0.6rem; font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.wishlist-badge { background: var(--red); color: #fff; }

/* Mega Menu */
.mega-menu {
  width: 100vw; max-width: 800px;
  padding: 0;
  border-top: 2px solid var(--gold);
  animation: fadeDown 0.25s ease;
}
.mega-heading { color: var(--gold); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--font-sans); font-weight: 600; }
.mega-link { display: block; color: var(--text-muted); font-size: 0.9rem; padding: 0.25rem 0; transition: var(--transition); }
.mega-link:hover { color: var(--gold); padding-left: 0.5rem; }

@keyframes fadeDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }

/* Account Dropdown */
.account-dropdown { min-width: 220px; padding: 0.5rem 0; }

/* Toggler */
.muzuri-toggler { border: none; background: none; padding: 0.25rem; }
.toggler-line {
  display: block; width: 24px; height: 1.5px;
  background: var(--off-white); margin: 5px 0;
  transition: var(--transition);
}

/* Offcanvas — z-index above EVERYTHING including WhatsApp (9990) & back-to-top (9989) */
.muzuri-offcanvas {
  /* Override Bootstrap's --bs-offcanvas-bg (defaults to white = --bs-body-bg).
     Must set the CSS variable AND background-color so the panel is fully opaque. */
  --bs-offcanvas-bg: #111111;
  background-color: #111111 !important;
  border-right: 1px solid var(--border);
  z-index: 9999 !important;
}
/* Backdrop: sits above page content, below offcanvas panel (9999).
   WhatsApp & back-to-top are hidden via JS when offcanvas opens — no need
   for backdrop to be higher than those. Opacity kept at 0.55 so the
   backdrop dims the background without bleeding darkness into the panel. */
.offcanvas-backdrop,
.offcanvas-backdrop.show {
  z-index: 1060 !important;
  background-color: #000 !important;
  opacity: 0.55 !important;
}
/* ── When any offcanvas is open: hide the site header, announcement bar,
   and all high-z floaters so nothing bleeds through the panel or backdrop ── */
body.offcanvas-active .site-header,
body.offcanvas-active .announcement-bar,
body.offcanvas-active .whatsapp-float,
body.offcanvas-active .back-to-top {
  visibility: hidden !important;
  pointer-events: none !important;
}

.offcanvas-logo { height: 50px; }
.mobile-nav-list { list-style: none; padding: 0; }
.mobile-nav-list li a {
  display: block; padding: 0.85rem 0;
  color: var(--off-white); font-size: 1rem;
  border-bottom: 1px solid var(--border-dark);
  transition: var(--transition);
}
.mobile-nav-list li a:hover { color: var(--gold); padding-left: 0.75rem; }

/* Mobile Bottom Nav */
.mobile-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(17,17,17,0.97);
  border-top: 1px solid var(--border-dark);
  display: flex; justify-content: space-around; align-items: center;
  padding: 0.6rem 0 calc(0.6rem + env(safe-area-inset-bottom));
  z-index: 1040;
  backdrop-filter: blur(20px);
}
.mobile-bottom-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.65rem; letter-spacing: 0.05em;
  text-transform: uppercase; gap: 0.2rem; padding: 0.25rem 0.5rem;
  position: relative; transition: var(--transition);
}
.mobile-bottom-item i { font-size: 1.1rem; }
.mobile-bottom-item.active,
.mobile-bottom-item:hover { color: var(--gold); }
.mobile-badge { position: absolute; top: -2px; right: 2px; background: var(--red); color: #fff; font-size: 0.55rem; width: 14px; height: 14px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ── Search Overlay ───────────────────────────────────────────── */
.search-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.97);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s ease;
}
.search-overlay.active { display: flex; opacity: 1; }
.search-overlay-inner { width: 100%; max-width: 700px; padding: 2rem; text-align: center; }
.search-form-main { display: flex; gap: 0; border-bottom: 1px solid var(--gold); padding-bottom: 0.5rem; }
.search-form-main input { flex: 1; background: none; border: none; color: var(--off-white); font-size: 2rem; font-family: var(--font-serif); outline: none; }
.search-form-main button { background: none; border: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; }
.search-close { position: absolute; top: 2rem; right: 2rem; background: none; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; transition: var(--transition); }
.search-close:hover { color: var(--gold); }
.search-suggestions { margin-top: 2rem; }
.search-suggestion-item { display: flex; align-items: center; gap: 1rem; padding: 0.75rem; color: var(--off-white); text-align: left; border-bottom: 1px solid var(--border-dark); transition: var(--transition); }
.search-suggestion-item:hover { background: var(--gold-faded); color: var(--gold); cursor: pointer; }
.search-suggestion-item img { width: 50px; height: 50px; object-fit: cover; border-radius: var(--radius-sm); }

/* ── Hero Section ─────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--black);
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1);
}
.hero-slide.active { opacity: 1; }

.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  z-index: 1;
}
.hero-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-slide.active .hero-bg { transform: scale(1); }

.hero-content {
  position: relative; z-index: 2;
  padding: 0 1rem;
  display: flex; align-items: center; justify-content: flex-start;
  min-height: 100vh;
}
.hero-inner { max-width: 650px; }
.hero-label  { font-size: 0.75rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: block; }
.hero-title  { font-size: clamp(3rem, 8vw, 6rem); line-height: 1.05; margin-bottom: 1.5rem; }
.hero-desc   { font-size: 1.1rem; color: rgba(245,245,245,0.8); max-width: 420px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-controls {
  position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.75rem; z-index: 10;
}
.hero-dot {
  width: 28px; height: 3px;
  background: rgba(255,255,255,0.3); border-radius: 2px;
  cursor: pointer; transition: var(--transition); border: none;
}
.hero-dot.active { background: var(--gold); width: 48px; }

.hero-scroll-hint {
  position: absolute; bottom: 2rem; right: 2rem; z-index: 10;
  writing-mode: vertical-rl; font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted);
  display: flex; align-items: center; gap: 0.5rem;
}
.hero-scroll-hint::before {
  content: ''; display: block;
  width: 1px; height: 60px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scroll-line 2s ease infinite;
}
@keyframes scroll-line {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(0.6); }
}

/* ── Product Cards ────────────────────────────────────────────── */
.product-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  height: 100%;
}
.product-card:hover { transform: translateY(-6px); border-color: var(--border); box-shadow: var(--shadow-dark); }

.product-card-img-wrap {
  position: relative; overflow: hidden;
  padding-top: 125%; /* 4:5 portrait ratio */
  background: var(--dark-3);
}
.product-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-card-img { transform: scale(1.06); }

.product-card-img-hover {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.product-card:hover .product-card-img-hover { opacity: 1; }

.product-card-badges { position: absolute; top: 0.75rem; left: 0.75rem; display: flex; flex-direction: column; gap: 0.3rem; z-index: 2; }

.product-card-actions {
  position: absolute; top: 0.75rem; right: 0.75rem;
  display: flex; flex-direction: column; gap: 0.5rem; z-index: 2;
  opacity: 0; transform: translateX(20px);
  transition: var(--transition);
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }
.product-action-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(17,17,17,0.9); border: 1px solid var(--border-dark);
  color: var(--off-white); font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.product-action-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.product-action-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

.product-card-body { padding: 1.25rem; }
.product-card-category { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; }
.product-card-name { font-size: 1rem; color: var(--off-white); margin-bottom: 0.5rem; font-family: var(--font-serif); }
.product-card-name a { color: inherit; }
.product-card-name a:hover { color: var(--gold); }
.product-card-price { display: flex; align-items: center; gap: 0.75rem; }
.price-current  { color: var(--gold); font-size: 1.1rem; font-weight: 500; }
.price-original { color: var(--text-dim); font-size: 0.9rem; text-decoration: line-through; }

.product-card-footer {
  padding: 0.75rem 1.25rem 1.25rem;
  border-top: 1px solid var(--border-dark);
}
.add-to-cart-btn {
  width: 100%; background: transparent; border: 1px solid var(--border-dark);
  color: var(--off-white); padding: 0.65rem;
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: var(--radius-pill); transition: var(--transition); cursor: pointer;
  font-family: var(--font-sans); font-weight: 500;
}
.add-to-cart-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* ── Color Swatches ───────────────────────────────────────────── */
.color-swatches { display: flex; gap: 0.35rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.color-swatch {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid transparent; cursor: pointer;
  transition: var(--transition); display: inline-block;
}
.color-swatch:hover,
.color-swatch.active { border-color: var(--gold); transform: scale(1.2); }

/* ── Size Selector ────────────────────────────────────────────── */
.size-options { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.size-option {
  padding: 0.3rem 0.65rem; font-size: 0.75rem;
  border: 1px solid var(--border-dark); border-radius: var(--radius-sm);
  color: var(--text-muted); cursor: pointer; transition: var(--transition);
  font-family: var(--font-sans);
}
.size-option:hover  { border-color: var(--gold); color: var(--gold); }
.size-option.active { border-color: var(--gold); background: var(--gold); color: var(--black); }
.size-option.out    { opacity: 0.35; text-decoration: line-through; cursor: not-allowed; }

/* ── Footer ───────────────────────────────────────────────────── */
.muzuri-footer { background: var(--charcoal); border-top: 1px solid var(--border-dark); }
.footer-top { padding: 80px 0 60px; }
.footer-logo { height: 60px; }
.footer-tagline { font-family: var(--font-serif); font-style: italic; font-size: 1.2rem; letter-spacing: 0.1em; }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.footer-heading { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; font-family: var(--font-sans); font-weight: 600; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 0.4rem; }

.social-links { display: flex; gap: 0.75rem; }
.social-link { width: 38px; height: 38px; border: 1px solid var(--border-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: var(--transition); }
.social-link:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-faded); }

.newsletter-input { background: var(--dark-3) !important; border-right: none !important; }
.newsletter-form .btn-gold { border-radius: 0 var(--radius-pill) var(--radius-pill) 0 !important; padding: 0.75rem 1.25rem; }

.footer-bottom { background: var(--black); padding: 1.25rem 0; border-top: 1px solid var(--border-dark); }
.footer-copy { color: var(--text-dim); font-size: 0.8rem; }
.payment-icons { display: flex; align-items: center; justify-content: flex-end; gap: 1rem; }
.payment-icon { color: var(--text-muted); font-size: 1.2rem; }

/* ── Back to Top ──────────────────────────────────────────────── */
/* Sits BELOW the WhatsApp bubble (WhatsApp = bottom:30px, back-to-top = bottom:92px) */
.back-to-top {
  position: fixed; bottom: 92px; right: 1.5rem; z-index: 9989;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--black); border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); background: var(--gold-light); }

/* ── Toast ────────────────────────────────────────────────────── */
.muzuri-toast {
  background: var(--dark-2); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--off-white);
  min-width: 300px;
}
.muzuri-toast .toast-header { background: transparent; border-color: var(--border-dark); color: var(--off-white); }

/* ── Category Grid ────────────────────────────────────────────── */
.category-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  aspect-ratio: 3/4; display: block;
}
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 30%, transparent);
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.category-card-label { color: var(--off-white); }
.category-card-label span { display: block; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.category-card-label h4 { font-size: 1.5rem; margin: 0.25rem 0 0; }

/* ── Editorial Banner ─────────────────────────────────────────── */
.editorial-banner {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  min-height: 400px; display: flex; align-items: center;
}
.editorial-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.editorial-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
}
.editorial-banner-content { position: relative; z-index: 1; padding: 3rem; }

/* ── Parallax Section ─────────────────────────────────────────── */
.parallax-section { position: relative; overflow: hidden; }
.parallax-bg { position: absolute; inset: -20%; background-attachment: fixed; background-size: cover; background-position: center; }

/* ── Quantity Selector ────────────────────────────────────────── */
.qty-selector { display: flex; align-items: center; border: 1px solid var(--border-dark); border-radius: var(--radius-pill); overflow: hidden; width: fit-content; }
.qty-btn { width: 38px; height: 38px; background: none; border: none; color: var(--off-white); font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.qty-btn:hover { color: var(--gold); }
.qty-input { width: 50px; background: none; border: none; border-left: 1px solid var(--border-dark); border-right: 1px solid var(--border-dark); color: var(--off-white); text-align: center; font-size: 0.9rem; padding: 0; height: 38px; }
.qty-input:focus { outline: none; }

/* ── Page Hero (inner pages) ──────────────────────────────────── */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
  border-bottom: 1px solid var(--border-dark);
  text-align: center;
}
.page-hero-title { font-size: clamp(2.5rem, 5vw, 4rem); }

/* ── Stars ────────────────────────────────────────────────────── */
.stars .fa-star,
.stars .fa-star-half-alt { color: var(--gold); font-size: 0.85rem; }
.stars .fa-star.far { color: var(--text-dim); }

/* ── Sidebar Filters ──────────────────────────────────────────── */
.filter-sidebar { background: var(--charcoal); border: 1px solid var(--border-dark); border-radius: var(--radius-lg); padding: 1.5rem; }
.filter-group { border-bottom: 1px solid var(--border-dark); padding-bottom: 1.25rem; margin-bottom: 1.25rem; }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-title { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: 600; }
.form-check-input:checked { background-color: var(--gold); border-color: var(--gold); }
.form-check-label { color: var(--text-muted); font-size: 0.9rem; }

/* ── Dashboard Layout ─────────────────────────────────────────── */
.dashboard-sidebar {
  background: var(--charcoal);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  min-height: 400px;
}
.dash-nav-link {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem; border-radius: var(--radius);
  color: var(--text-muted); font-size: 0.9rem;
  transition: var(--transition); margin-bottom: 0.25rem;
}
.dash-nav-link:hover,
.dash-nav-link.active { background: var(--gold-faded); color: var(--gold); }
.dash-nav-link i { width: 16px; text-align: center; }

.stat-card {
  background: var(--charcoal); border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg); padding: 1.5rem;
  text-align: center; transition: var(--transition);
}
.stat-card:hover { border-color: var(--border); }
.stat-number { font-size: 2.5rem; color: var(--gold); font-family: var(--font-serif); line-height: 1; }
.stat-label  { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.5rem; }
