.bottom-menu {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
  z-index: 50;
  border-radius: 1.5rem 1.5rem 0 0;
}

.bottom-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  color: rgba(77, 33, 40, 0.7);
  transition: all 0.3s ease-out;
  overflow: visible;
}

.bottom-menu-item:hover {
  color: #b7131a;
}

.bottom-menu-item:active {
  transform: scale(0.9);
}

.bottom-menu-item.active {
  color: #b7131a;
}

.bottom-menu-item .material-symbols-outlined {
  font-size: 24px;
  line-height: 1;
}

.bottom-menu-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  overflow: visible;
}

.cart-count-badge {
  position: absolute;
  top: -0.35rem;
  right: -0.6rem;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #a83206;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.cart-count-badge.has-items {
  display: inline-flex;
}

.bottom-menu-item.active .material-symbols-outlined {
  font-variation-settings: 'FILL' 1;
}

.bottom-menu-item-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
}
