.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #c00207;
  /* Màu đỏ nổi bật */
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  height: 20px;
  min-width: 20px;
  padding: 0 5px;
  border-radius: 20px;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  pointer-events: none;
  /* Không chặn click chuột */
}

.cart-badge.show {
  display: flex;
}

/* Ẩn thông báo ở nút menu ngoài (dấu 3 chấm) khi menu đang mở */

#right-menu-btn.open .cart-badge {
  display: none !important;
}
