/* ===== Mobile Bottom Nav (แดงดำสไตล์ MxLarenShop) ===== */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  height: 60px;
  background: rgba(15, 15, 20, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
}
.mobile-bottom-nav a {
  flex: 1;
  text-align: center;
  color: #ccc;
  font-size: 13px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  transition: .2s;
}
.mobile-bottom-nav a i { font-size: 18px; }
.mobile-bottom-nav a.active { color: var(--red-2); }


@media (min-width: 801px){ .mobile-bottom-nav{ display:none; } }
