/* ============================================================
   Aush — Mobile Bottom Navigation
   Home / Shop / Account / Cart, fixed, mobile-only (<=767px).
   The existing .wa-fab is repositioned above this bar on mobile
   (see rule at bottom) instead of overlapping it.
   ============================================================ */

.mobile-bottom-nav {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: var(--z-top);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0,0,0,.08);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.mobile-bottom-nav__list {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  list-style: none;
  margin: 0; padding: 0;
}
.mobile-bottom-nav__item { flex: 1; }
.mobile-bottom-nav__link {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px;
  padding-block: 8px 6px;
  color: rgba(0,0,0,.55);
  text-decoration: none;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .2px;
  position: relative;
  transition: color .15s ease;
}
.mobile-bottom-nav__link svg { width: 21px; height: 21px; }
.mobile-bottom-nav__link.is-active { color: var(--color-accent); }

.mobile-bottom-nav__badge {
  position: absolute;
  top: 2px; right: calc(50% - 18px);
  min-width: 15px; height: 15px; padding-inline: 3px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  color: #0a0a0a;
  font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.mobile-bottom-nav__badge[hidden] { display: none; }

@media (max-width: 767px) {
  .mobile-bottom-nav { display: block; }
  body { padding-bottom: calc(58px + env(safe-area-inset-bottom, 0)); }

  /* Move the WhatsApp FAB up so it sits above the bottom nav bar
     (this file is loaded after main.css, so no !important needed) */
  .wa-fab { bottom: calc(58px + var(--space-4) + env(safe-area-inset-bottom, 0)); }
}
