/* ========== FOOTER ========== */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 48px 24px 0;
  margin-top: 40px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #333;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--warm-gray);
  margin-top: 2px;
}

.footer-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 4px;
}

.footer-detail {
  font-size: 14px;
  color: var(--cream);
  opacity: 0.85;
  line-height: 1.6;
}

.footer-bottom {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
  font-size: 12px;
  color: var(--warm-gray);
  opacity: 0.6;
}

.footer-dev-note {
  opacity: 0.8;
}

/* ========== MOBILE BOTTOM NAV ========== */
/* Host sits outside #app so fixed positioning is never tied to transformed page content */
#jiangnanMobileNavHost {
  display: contents;
}

.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  z-index: 220;
  border-top: 1px solid #333;
  padding: 0 0 env(safe-area-inset-bottom, 0);
}

.mobile-nav-inner {
  display: flex;
  align-items: stretch;
  height: 52px;
}

.mobile-nav button {
  flex: 1;
  background: none;
  border: none;
  color: var(--warm-gray);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0;
  transition: color 0.2s;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.mobile-nav button .nav-icon {
  font-size: 18px;
  line-height: 1;
}

.mobile-nav button.active {
  color: var(--gold);
}

.mobile-nav button.cart-btn {
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  gap: 1px;
}

.mobile-nav button.cart-btn .nav-icon {
  font-size: 16px;
}

.mobile-nav button.cart-btn.active {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
  filter: brightness(0.97);
}

.mobile-nav button.cart-btn.cart-btn--empty {
  background: transparent;
  color: var(--warm-gray);
  border: 1px solid rgba(184, 149, 95, 0.5);
  font-size: 11px;
  font-weight: 600;
  box-sizing: border-box;
}

.mobile-nav button.cart-btn.cart-btn--empty .nav-icon {
  font-size: 16px;
  opacity: 0.95;
}

.mobile-nav button.cart-btn.cart-btn--empty.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(184, 149, 95, 0.14);
  box-shadow: inset 0 0 0 1px rgba(184, 149, 95, 0.35);
  filter: none;
}

.mobile-nav button.total-btn {
  background: var(--rust);
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  flex-direction: row;
  gap: 0;
}

.mobile-nav button .mobile-nav-cart-count {
  font-size: 9px;
  font-weight: 600;
  opacity: 0.92;
  line-height: 1.1;
  max-width: 100%;
  text-align: center;
}

